[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

tony at chromium.org tony at chromium.org
Wed Dec 22 13:29:29 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit cf1145549e7b19a3349a84028ce3ce826a664c8f
Author: tony at chromium.org <tony at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 16 23:15:53 2010 +0000

    2010-09-16  Tony Chang  <tony at chromium.org>
    
            Reviewed by Ojan Vafai.
    
            convert fast/events/5056619.html to a dump-as-markup test
            https://bugs.webkit.org/show_bug.cgi?id=45907
    
            * fast/events/5056619.html:
            * platform/chromium-linux/fast/events/5056619-expected.checksum: Removed.
            * platform/chromium-linux/fast/events/5056619-expected.png: Removed.
            * platform/chromium-win/fast/events/5056619-expected.checksum: Removed.
            * platform/chromium-win/fast/events/5056619-expected.png: Removed.
            * platform/chromium-win/fast/events/5056619-expected.txt: Removed.
            * platform/chromium/test_expectations.txt:
            * platform/mac/fast/events/5056619-expected.checksum: Removed.
            * platform/mac/fast/events/5056619-expected.png: Removed.
            * platform/mac/fast/events/5056619-expected.txt: Removed.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67678 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 37d7451..499e137 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,21 @@
+2010-09-16  Tony Chang  <tony at chromium.org>
+
+        Reviewed by Ojan Vafai.
+
+        convert fast/events/5056619.html to a dump-as-markup test
+        https://bugs.webkit.org/show_bug.cgi?id=45907
+
+        * fast/events/5056619.html:
+        * platform/chromium-linux/fast/events/5056619-expected.checksum: Removed.
+        * platform/chromium-linux/fast/events/5056619-expected.png: Removed.
+        * platform/chromium-win/fast/events/5056619-expected.checksum: Removed.
+        * platform/chromium-win/fast/events/5056619-expected.png: Removed.
+        * platform/chromium-win/fast/events/5056619-expected.txt: Removed.
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/fast/events/5056619-expected.checksum: Removed.
+        * platform/mac/fast/events/5056619-expected.png: Removed.
+        * platform/mac/fast/events/5056619-expected.txt: Removed.
+
 2010-09-15  Tony Chang  <tony at chromium.org>
 
         Reviewed by Kent Tamura.
diff --git a/LayoutTests/fast/events/5056619-expected.txt b/LayoutTests/fast/events/5056619-expected.txt
new file mode 100644
index 0000000..3fa469a
--- /dev/null
+++ b/LayoutTests/fast/events/5056619-expected.txt
@@ -0,0 +1,19 @@
+EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > BODY > HTML > #document to 6 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: shouldInsertText:Dragme replacingDOMRange:range from 0 of DIV to 0 of DIV givenAction:WebViewInsertActionDropped
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+This tests drag and drop into a form element that is removed in its onfocus handler.  Safari shouldn't crash and the dropped content shouldn't appear anywhere because there's no editable region left over underneath the mouse when the input element is removed on drop.
+| "
+"
+| <span>
+|   id="span"
+|   "Dragme<#selection-caret>"
+| "
+"
+| <script>
+|   "runTest();"
diff --git a/LayoutTests/fast/events/5056619.html b/LayoutTests/fast/events/5056619.html
index 4930315..028172f 100644
--- a/LayoutTests/fast/events/5056619.html
+++ b/LayoutTests/fast/events/5056619.html
@@ -1,6 +1,9 @@
 <html>
 <head>
+<script src="../../resources/dump-as-markup.js" type="text/javascript"></script>
 <script>
+Markup.description("This tests drag and drop into a form element that is removed in its onfocus handler.  Safari shouldn't crash and the dropped content shouldn't appear anywhere because there's no editable region left over underneath the mouse when the input element is removed on drop.");
+
 function focusHandler() {
     var input = document.getElementById("input");
     input.parentNode.removeChild(input);
@@ -10,7 +13,7 @@ function runTest() {
     if (!window.layoutTestController)
         return;
 
-    window.layoutTestController.dumpEditingCallbacks();
+    layoutTestController.dumpEditingCallbacks();
     
     var x, y;
     var span = document.getElementById("span");
@@ -36,12 +39,12 @@ function runTest() {
     eventSender.mouseMoveTo(x, y);
     eventSender.leapForward(500);
     eventSender.mouseUp();
+
+    Markup.dump(document.body);
 }
 </script>
 </head>
 <body>
-<p>This tests drag and drop into a form element that is removed in its onfocus handler.  Safari shouldn't crash and the dropped content shouldn't appear anywhere because there's no editable region left over underneath the mouse when the input element is removed on drop.</p>
-<hr>
 <span id="span">Dragme</span><input type="text" id="input" onfocus="focusHandler()">
 <script>runTest();</script>
-</body>
\ No newline at end of file
+</body>
diff --git a/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.checksum b/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.checksum
deleted file mode 100644
index e420d57..0000000
--- a/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.checksum
+++ /dev/null
@@ -1 +0,0 @@
-c1bac8ee6d357db20b81270bd14d6aaa
\ No newline at end of file
diff --git a/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.png b/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.png
deleted file mode 100644
index a91d36e..0000000
Binary files a/LayoutTests/platform/chromium-linux/fast/events/5056619-expected.png and /dev/null differ
diff --git a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.checksum b/LayoutTests/platform/chromium-win/fast/events/5056619-expected.checksum
deleted file mode 100644
index 1b383e3..0000000
--- a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.checksum
+++ /dev/null
@@ -1 +0,0 @@
-c62063945218c4a538f514ff0239fab7
\ No newline at end of file
diff --git a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.png b/LayoutTests/platform/chromium-win/fast/events/5056619-expected.png
deleted file mode 100644
index 2dca2bc..0000000
Binary files a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.png and /dev/null differ
diff --git a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.txt b/LayoutTests/platform/chromium-win/fast/events/5056619-expected.txt
deleted file mode 100644
index 465f70d..0000000
--- a/LayoutTests/platform/chromium-win/fast/events/5056619-expected.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > BODY > HTML > #document to 6 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertText:Dragme replacingDOMRange:range from 0 of DIV to 0 of DIV givenAction:WebViewInsertActionDropped
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-layer at (0,0) size 800x600
-  RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
-  RenderBlock {HTML} at (0,0) size 800x600
-    RenderBody {BODY} at (8,8) size 784x584
-      RenderBlock {P} at (0,0) size 784x60
-        RenderText {#text} at (0,0) size 779x59
-          text run at (0,0) width 499: "This tests drag and drop into a form element that is removed in its onfocus handler. "
-          text run at (499,0) width 280: "Safari shouldn't crash and the dropped content"
-          text run at (0,20) width 767: "shouldn't appear anywhere because there's no editable region left over underneath the mouse when the input element is removed"
-          text run at (0,40) width 52: "on drop."
-      RenderBlock {HR} at (0,76) size 784x2 [border: (1px inset #000000)]
-      RenderBlock (anonymous) at (0,86) size 784x20
-        RenderInline {SPAN} at (0,0) size 48x19
-          RenderText {#text} at (0,0) size 48x19
-            text run at (0,0) width 48: "Dragme"
-        RenderText {#text} at (0,0) size 0x0
-        RenderText {#text} at (0,0) size 0x0
-caret: position 6 of child 0 {#text} of child 5 {SPAN} of body
diff --git a/LayoutTests/platform/chromium/test_expectations.txt b/LayoutTests/platform/chromium/test_expectations.txt
index 3044787..ac0dcc1 100644
--- a/LayoutTests/platform/chromium/test_expectations.txt
+++ b/LayoutTests/platform/chromium/test_expectations.txt
@@ -1701,9 +1701,6 @@ BUG23560 MAC : fast/images/animated-svg-as-image.html = IMAGE PASS
 // because we enforce non-transparent color in Font::drawGlyphs.
 BUG24191 LINUX : fast/css/hsla-color.html = FAIL
 
-// TODO(tc): flaky.
-BUG10391 LINUX : fast/events/5056619.html = FAIL
-
 // Failed with r6844 (dglazkov)
 BUG10392 LINUX MAC : http/tests/navigation/error404-goback.html = FAIL
 
diff --git a/LayoutTests/platform/mac/fast/events/5056619-expected.checksum b/LayoutTests/platform/mac/fast/events/5056619-expected.checksum
deleted file mode 100644
index 02e1ea8..0000000
--- a/LayoutTests/platform/mac/fast/events/5056619-expected.checksum
+++ /dev/null
@@ -1 +0,0 @@
-1f1374ecfaaf8e27c762beb9c1b6f60f
\ No newline at end of file
diff --git a/LayoutTests/platform/mac/fast/events/5056619-expected.png b/LayoutTests/platform/mac/fast/events/5056619-expected.png
deleted file mode 100644
index 6819ed3..0000000
Binary files a/LayoutTests/platform/mac/fast/events/5056619-expected.png and /dev/null differ
diff --git a/LayoutTests/platform/mac/fast/events/5056619-expected.txt b/LayoutTests/platform/mac/fast/events/5056619-expected.txt
deleted file mode 100644
index 36d3bfa..0000000
--- a/LayoutTests/platform/mac/fast/events/5056619-expected.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > BODY > HTML > #document to 3 of #text > SPAN > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > BODY > HTML > #document to 6 of #text > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertText:Dragme replacingDOMRange:range from 0 of DIV to 0 of DIV givenAction:WebViewInsertActionDropped
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-layer at (0,0) size 800x600
-  RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
-  RenderBlock {HTML} at (0,0) size 800x600
-    RenderBody {BODY} at (8,8) size 784x584
-      RenderBlock {P} at (0,0) size 784x54
-        RenderText {#text} at (0,0) size 783x54
-          text run at (0,0) width 524: "This tests drag and drop into a form element that is removed in its onfocus handler. "
-          text run at (524,0) width 241: "Safari shouldn't crash and the dropped"
-          text run at (0,18) width 783: "content shouldn't appear anywhere because there's no editable region left over underneath the mouse when the input element"
-          text run at (0,36) width 126: "is removed on drop."
-      RenderBlock {HR} at (0,70) size 784x2 [border: (1px inset #000000)]
-      RenderBlock (anonymous) at (0,80) size 784x18
-        RenderInline {SPAN} at (0,0) size 51x18
-          RenderText {#text} at (0,0) size 51x18
-            text run at (0,0) width 51: "Dragme"
-        RenderText {#text} at (0,0) size 0x0
-        RenderText {#text} at (0,0) size 0x0
-caret: position 6 of child 0 {#text} of child 5 {SPAN} of body

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list