Title: [89668] trunk/LayoutTests
Revision
89668
Author
tk...@chromium.org
Date
2011-06-24 05:02:11 -0700 (Fri, 24 Jun 2011)

Log Message

2011-06-24  Kent Tamura  <tk...@chromium.org>

        Reviewed by Dimitri Glazkov.

        Clean up some tests for search cancel buttons.
        https://bugs.webkit.org/show_bug.cgi?id=63121

        - Introduce a function to retrieve a reliable position of a search
          cancel button.
        - Convert two tests to dumpAsText().

        * fast/forms/resources/common.js:
        (searchCancelButtonPosition): Added.
        * fast/forms/search-abs-pos-cancel-button.html: Use searchCancelButtonPosition().
        * fast/forms/search-cancel-button-mouseup.html: Use searchCancelButtonPosition().
        * fast/forms/search-transformed-expected.txt: Added.
        * fast/forms/search-transformed.html:
          - Use searchCancelButtonPosition().
          - Convert to dumpAsText().
        * fast/forms/search-zoomed-expected.txt: Added.
        * fast/forms/search-zoomed.html:
          - Use searchCancelButtonPosition().
          - Convert to dumpAsText().
        * platform/chromium/test_expectation.txt:
          search-transformed.html should pass.
        * platform/chromium-linux/fast/forms/search-zoomed-expected.png: Removed.
        * platform/chromium-mac-leopard/fast/forms/search-transformed-expected.png: Removed.
        * platform/chromium-mac-leopard/fast/forms/search-zoomed-expected.png: Removed.
        * platform/chromium-mac/fast/forms/search-transformed-expected.png: Removed.
        * platform/chromium-win/fast/forms/search-zoomed-expected.png: Removed.
        * platform/chromium-win/fast/forms/search-zoomed-expected.txt: Removed.
        * platform/gtk/fast/forms/search-transformed-expected.png: Removed.
        * platform/gtk/fast/forms/search-transformed-expected.txt: Removed.
        * platform/gtk/fast/forms/search-zoomed-expected.png: Removed.
        * platform/gtk/fast/forms/search-zoomed-expected.txt: Removed.
        * platform/mac-leopard/fast/forms/search-zoomed-expected.png: Removed.
        * platform/mac/fast/forms/search-transformed-expected.png: Removed.
        * platform/mac/fast/forms/search-transformed-expected.txt: Removed.
        * platform/mac/fast/forms/search-zoomed-expected.png: Removed.
        * platform/mac/fast/forms/search-zoomed-expected.txt: Removed.
        * platform/qt/fast/forms/search-transformed-expected.txt: Removed.
        * platform/qt/fast/forms/search-zoomed-expected.txt: Removed.

Modified Paths

Added Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (89667 => 89668)


--- trunk/LayoutTests/ChangeLog	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/ChangeLog	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,5 +1,48 @@
 2011-06-24  Kent Tamura  <tk...@chromium.org>
 
+        Reviewed by Dimitri Glazkov.
+
+        Clean up some tests for search cancel buttons.
+        https://bugs.webkit.org/show_bug.cgi?id=63121
+
+        - Introduce a function to retrieve a reliable position of a search
+          cancel button.
+        - Convert two tests to dumpAsText().
+
+        * fast/forms/resources/common.js:
+        (searchCancelButtonPosition): Added.
+        * fast/forms/search-abs-pos-cancel-button.html: Use searchCancelButtonPosition().
+        * fast/forms/search-cancel-button-mouseup.html: Use searchCancelButtonPosition().
+        * fast/forms/search-transformed-expected.txt: Added.
+        * fast/forms/search-transformed.html:
+          - Use searchCancelButtonPosition().
+          - Convert to dumpAsText().
+        * fast/forms/search-zoomed-expected.txt: Added.
+        * fast/forms/search-zoomed.html:
+          - Use searchCancelButtonPosition().
+          - Convert to dumpAsText().
+        * platform/chromium/test_expectation.txt:
+          search-transformed.html should pass.
+        * platform/chromium-linux/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/chromium-mac-leopard/fast/forms/search-transformed-expected.png: Removed.
+        * platform/chromium-mac-leopard/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/chromium-mac/fast/forms/search-transformed-expected.png: Removed.
+        * platform/chromium-win/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/chromium-win/fast/forms/search-zoomed-expected.txt: Removed.
+        * platform/gtk/fast/forms/search-transformed-expected.png: Removed.
+        * platform/gtk/fast/forms/search-transformed-expected.txt: Removed.
+        * platform/gtk/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/gtk/fast/forms/search-zoomed-expected.txt: Removed.
+        * platform/mac-leopard/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/mac/fast/forms/search-transformed-expected.png: Removed.
+        * platform/mac/fast/forms/search-transformed-expected.txt: Removed.
+        * platform/mac/fast/forms/search-zoomed-expected.png: Removed.
+        * platform/mac/fast/forms/search-zoomed-expected.txt: Removed.
+        * platform/qt/fast/forms/search-transformed-expected.txt: Removed.
+        * platform/qt/fast/forms/search-zoomed-expected.txt: Removed.
+
+2011-06-24  Kent Tamura  <tk...@chromium.org>
+
         Remove an _javascript_ error in media-controls-clone.html.
         https://bugs.webkit.org/show_bug.cgi?id=63195
 

Modified: trunk/LayoutTests/fast/forms/resources/common.js (89667 => 89668)


--- trunk/LayoutTests/fast/forms/resources/common.js	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/fast/forms/resources/common.js	2011-06-24 12:02:11 UTC (rev 89668)
@@ -15,3 +15,10 @@
     rect.right += document.body.scrollLeft;
     return rect;
 }
+
+function searchCancelButtonPosition(element) {
+    var pos = {};
+    pos.x = element.offsetLeft + element.offsetWidth - 9;
+    pos.y = element.offsetTop + element.offsetHeight / 2;
+    return pos;
+}

Modified: trunk/LayoutTests/fast/forms/search-abs-pos-cancel-button.html (89667 => 89668)


--- trunk/LayoutTests/fast/forms/search-abs-pos-cancel-button.html	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/fast/forms/search-abs-pos-cancel-button.html	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,6 +1,7 @@
 <html>
 <head>
     <title>Search Field with Transform</title>
+    <script src=""
     <script type="text/_javascript_" charset="utf-8">
       if (window.layoutTestController)
         layoutTestController.dumpAsText();
@@ -18,9 +19,8 @@
     <script>
         if (window.eventSender) {
             var target = document.getElementById("target");
-            var x = target.offsetLeft + target.offsetWidth - 4;
-            var y = target.offsetTop + target.offsetHeight / 2;
-            eventSender.mouseMoveTo(x, y);
+            var cancelPos = searchCancelButtonPosition(target);
+            eventSender.mouseMoveTo(cancelPos.x, cancelPos.y);
             eventSender.mouseDown();
             eventSender.mouseUp();
             var result = document.getElementById("result");

Modified: trunk/LayoutTests/fast/forms/search-cancel-button-mouseup.html (89667 => 89668)


--- trunk/LayoutTests/fast/forms/search-cancel-button-mouseup.html	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/fast/forms/search-cancel-button-mouseup.html	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,6 +1,7 @@
 <html>
 <head>
     <title></title>
+    <script src=""
     <script>
         function test()
         {
@@ -13,16 +14,16 @@
             var s2 = document.getElementById("search2");
             var s3 = document.getElementById("search3");
 
-            var buttonX = s1.offsetLeft + s1.offsetWidth - 6;
+            var s1cancelPos = searchCancelButtonPosition(s1);
+            var buttonX = s1cancelPos.x;
             var middleX = s1.offsetLeft + s1.offsetWidth / 2;
 
-            var y1 = s1.offsetTop + s1.offsetHeight / 2;
             var y2 = s2.offsetTop + s2.offsetHeight / 2;
             var y3 = s3.offsetTop + s3.offsetHeight / 2;
 
-            eventSender.mouseMoveTo(buttonX, y1);
+            eventSender.mouseMoveTo(buttonX, s1cancelPos.y);
             eventSender.mouseDown();
-            eventSender.mouseMoveTo(middleX, y1);
+            eventSender.mouseMoveTo(middleX, s1cancelPos.y);
             eventSender.mouseUp();
             eventSender.leapForward(1000);
 

Added: trunk/LayoutTests/fast/forms/search-transformed-expected.txt (0 => 89668)


--- trunk/LayoutTests/fast/forms/search-transformed-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/forms/search-transformed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -0,0 +1,6 @@
+Test for https://bugs.webkit.org/show_bug.cgi?id=22190:
+Tests drawing and event handling on transformed search fields.
+
+
+
+PASS
Property changes on: trunk/LayoutTests/fast/forms/search-transformed-expected.txt
___________________________________________________________________

Added: svn:eol-style

Modified: trunk/LayoutTests/fast/forms/search-transformed.html (89667 => 89668)


--- trunk/LayoutTests/fast/forms/search-transformed.html	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/fast/forms/search-transformed.html	2011-06-24 12:02:11 UTC (rev 89668)
@@ -2,6 +2,7 @@
 <head>
     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
     <title>Search Field with Transform</title>
+    <script src=""
 </head>
 <body>
     <p>
@@ -15,12 +16,13 @@
         Clicking the (x) button should clear the field.
     </p>
     <script>
+        if (window.layoutTestController)
+            layoutTestController.dumpAsText();
         if (window.eventSender) {
             var target = document.getElementById("target");
             var translationAmount = 50;
-            var x = target.offsetLeft + target.offsetWidth + translationAmount - 5;
-            var y = target.offsetTop + target.offsetHeight + translationAmount - 5;
-            eventSender.mouseMoveTo(x, y);
+            var cancelPos = searchCancelButtonPosition(target);
+            eventSender.mouseMoveTo(cancelPos.x + translationAmount, cancelPos.y + translationAmount);
             eventSender.mouseDown();
             eventSender.mouseUp();
             var result = document.getElementById("result");

Added: trunk/LayoutTests/fast/forms/search-zoomed-expected.txt (0 => 89668)


--- trunk/LayoutTests/fast/forms/search-zoomed-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/forms/search-zoomed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -0,0 +1,6 @@
+Test for https://bugs.webkit.org/show_bug.cgi?id=24733:
+Tests event handling on search fields with zoom.
+
+
+
+PASS
Property changes on: trunk/LayoutTests/fast/forms/search-zoomed-expected.txt
___________________________________________________________________

Added: svn:eol-style

Modified: trunk/LayoutTests/fast/forms/search-zoomed.html (89667 => 89668)


--- trunk/LayoutTests/fast/forms/search-zoomed.html	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/fast/forms/search-zoomed.html	2011-06-24 12:02:11 UTC (rev 89668)
@@ -7,6 +7,7 @@
         zoom: 120%;
       }
     </style>
+    <script src=""
 </head>
 <body>
     <p>
@@ -20,13 +21,12 @@
         Clicking the (x) button should clear the field.
     </p>
     <script>
+        if (window.layoutTestController)
+            layoutTestController.dumpAsText();
         if (window.eventSender) {
             var target = document.getElementById("target");
-            var x = target.offsetLeft + target.offsetWidth - 5;
-            var y = target.offsetTop + target.offsetHeight - 5;
-            x = x * 1.2;
-            y = y * 1.2;
-            eventSender.mouseMoveTo(x, y);
+            var cancelPos = searchCancelButtonPosition(target);
+            eventSender.mouseMoveTo(cancelPos.x * 1.2, cancelPos.y * 1.2);
             eventSender.mouseDown();
             eventSender.mouseUp();
             var result = document.getElementById("result");

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (89667 => 89668)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1414,9 +1414,6 @@
 BUGCR5737 LINUX : fast/forms/001.html = FAIL
 BUGCR5737 LINUX : fast/forms/input-first-letter.html = FAIL
 
-// The (x) in type=search inputs appears to be slightly broken.  This test will also need a rebaseline.
-BUGCR20439 WIN LINUX : fast/forms/search-transformed.html = FAIL
-
 // New test. We should fix it, but it doesn't need to block the current release
 BUGCR10418 WIN DEBUG : animations/change-keyframes-name.html = FAIL PASS
 

Deleted: trunk/LayoutTests/platform/chromium-linux/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/chromium-mac/fast/forms/search-transformed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/chromium-mac-leopard/fast/forms/search-transformed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/chromium-mac-leopard/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/chromium-win/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/chromium-win/fast/forms/search-zoomed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/chromium-win/fast/forms/search-zoomed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/chromium-win/fast/forms/search-zoomed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,30 +0,0 @@
-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 (9,9) size 782x572
-      RenderBlock {P} at (0,0) size 782x44
-        RenderText {#text} at (0,0) size 65x21
-          text run at (0,0) width 65: "Test for "
-        RenderInline {A} at (0,0) size 359x21 [color=#0000EE]
-          RenderText {#text} at (65,0) size 359x21
-            text run at (65,0) width 359: "https://bugs.webkit.org/show_bug.cgi?id=24733"
-        RenderText {#text} at (424,0) size 4x21
-          text run at (424,0) width 4: ":"
-        RenderBR {BR} at (428,16) size 0x0
-        RenderText {#text} at (0,22) size 362x21
-          text run at (0,22) width 362: "Tests event handling on search fields with zoom."
-      RenderBlock {P} at (0,63) size 782x29
-        RenderTextControl {INPUT} at (2,2) size 184x25 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
-          RenderBlock {DIV} at (3,2) size 178x20
-            RenderBlock {DIV} at (2,0) size 22x16
-            RenderBlock {DIV} at (164,5) size 11x11
-        RenderText {#text} at (0,0) size 0x0
-      RenderBlock {P} at (0,164) size 782x22
-        RenderText {#text} at (0,0) size 46x21
-          text run at (0,0) width 46: "PASS"
-layer at (41,77) size 137x19
-  RenderBlock {DIV} at (27,1) size 137x19
-    RenderText {#text} at (1,0) size 109x18
-      text run at (1,0) width 109: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/gtk/fast/forms/search-transformed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/gtk/fast/forms/search-transformed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/gtk/fast/forms/search-transformed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/gtk/fast/forms/search-transformed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,31 +0,0 @@
-layer at (0,0) size 842x584
-  RenderView at (0,0) size 800x584
-layer at (0,0) size 800x584
-  RenderBlock {HTML} at (0,0) size 800x584
-    RenderBody {BODY} at (8,8) size 784x560
-      RenderBlock {P} at (0,0) size 784x38
-        RenderText {#text} at (0,0) size 53x19
-          text run at (0,0) width 53: "Test for "
-        RenderInline {A} at (0,0) size 305x19 [color=#0000EE]
-          RenderText {#text} at (53,0) size 305x19
-            text run at (53,0) width 305: "https://bugs.webkit.org/show_bug.cgi?id=22190"
-        RenderText {#text} at (358,0) size 4x19
-          text run at (358,0) width 4: ":"
-        RenderBR {BR} at (362,15) size 0x0
-        RenderText {#text} at (0,19) size 398x19
-          text run at (0,19) width 398: "Tests drawing and event handling on transformed search fields."
-      RenderBlock {P} at (0,143) size 784x19
-        RenderText {#text} at (0,0) size 39x19
-          text run at (0,0) width 39: "PASS"
-layer at (8,62) size 784x29
-  RenderBlock {P} at (0,54) size 784x29
-    RenderTextControl {INPUT} at (2,2) size 194x25 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
-      RenderBlock {DIV} at (3,2) size 188x20
-        RenderBlock {DIV} at (0,0) size 16x16
-        RenderBlock {DIV} at (172,0) size 16x16
-    RenderText {#text} at (0,0) size 0x0
-layer at (29,67) size 156x19
-  RenderBlock {DIV} at (16,1) size 156x19
-    RenderText {#text} at (1,0) size 111x19
-      text run at (1,0) width 111: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/gtk/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/gtk/fast/forms/search-zoomed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/gtk/fast/forms/search-zoomed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/gtk/fast/forms/search-zoomed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,30 +0,0 @@
-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 (9,9) size 782x572
-      RenderBlock {P} at (0,0) size 782x44
-        RenderText {#text} at (0,0) size 64x22
-          text run at (0,0) width 64: "Test for "
-        RenderInline {A} at (0,0) size 375x22 [color=#0000EE]
-          RenderText {#text} at (64,0) size 375x22
-            text run at (64,0) width 375: "https://bugs.webkit.org/show_bug.cgi?id=24733"
-        RenderText {#text} at (439,0) size 5x22
-          text run at (439,0) width 5: ":"
-        RenderBR {BR} at (444,17) size 0x0
-        RenderText {#text} at (0,22) size 373x22
-          text run at (0,22) width 373: "Tests event handling on search fields with zoom."
-      RenderBlock {P} at (0,63) size 782x33
-        RenderTextControl {INPUT} at (2,2) size 235x29 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
-          RenderBlock {DIV} at (3,3) size 229x23
-            RenderBlock {DIV} at (0,0) size 18x18
-            RenderBlock {DIV} at (211,0) size 18x18
-        RenderText {#text} at (0,0) size 0x0
-      RenderBlock {P} at (0,168) size 782x22
-        RenderText {#text} at (0,0) size 47x22
-          text run at (0,0) width 47: "PASS"
-layer at (32,77) size 193x23
-  RenderBlock {DIV} at (18,0) size 193x23
-    RenderText {#text} at (1,0) size 136x23
-      text run at (1,0) width 136: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/mac/fast/forms/search-transformed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/mac/fast/forms/search-transformed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/mac/fast/forms/search-transformed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/mac/fast/forms/search-transformed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,31 +0,0 @@
-layer at (0,0) size 842x585
-  RenderView at (0,0) size 800x585
-layer at (0,0) size 800x585
-  RenderBlock {HTML} at (0,0) size 800x585
-    RenderBody {BODY} at (8,8) size 784x561
-      RenderBlock {P} at (0,0) size 784x36
-        RenderText {#text} at (0,0) size 53x18
-          text run at (0,0) width 53: "Test for "
-        RenderInline {A} at (0,0) size 305x18 [color=#0000EE]
-          RenderText {#text} at (53,0) size 305x18
-            text run at (53,0) width 305: "https://bugs.webkit.org/show_bug.cgi?id=22190"
-        RenderText {#text} at (358,0) size 4x18
-          text run at (358,0) width 4: ":"
-        RenderBR {BR} at (362,14) size 0x0
-        RenderText {#text} at (0,18) size 398x18
-          text run at (0,18) width 398: "Tests drawing and event handling on transformed search fields."
-      RenderBlock {P} at (0,135) size 784x18
-        RenderText {#text} at (0,0) size 39x18
-          text run at (0,0) width 39: "PASS"
-layer at (8,60) size 784x23
-  RenderBlock {P} at (0,52) size 784x23
-    RenderTextControl {INPUT} at (2,2) size 125x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
-      RenderBlock {DIV} at (3,3) size 119x13
-        RenderBlock {DIV} at (0,0) size 22x11
-        RenderBlock {DIV} at (106,0) size 13x11
-    RenderText {#text} at (0,0) size 0x0
-layer at (35,65) size 84x13 scrollWidth 88
-  RenderBlock {DIV} at (22,0) size 84x13
-    RenderText {#text} at (1,0) size 86x13
-      text run at (1,0) width 86: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/mac/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/mac/fast/forms/search-zoomed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/mac/fast/forms/search-zoomed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/mac/fast/forms/search-zoomed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,30 +0,0 @@
-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 (9,9) size 782x572
-      RenderBlock {P} at (0,0) size 782x44
-        RenderText {#text} at (0,0) size 64x22
-          text run at (0,0) width 64: "Test for "
-        RenderInline {A} at (0,0) size 375x22 [color=#0000EE]
-          RenderText {#text} at (64,0) size 375x22
-            text run at (64,0) width 375: "https://bugs.webkit.org/show_bug.cgi?id=24733"
-        RenderText {#text} at (439,0) size 5x22
-          text run at (439,0) width 5: ":"
-        RenderBR {BR} at (444,17) size 0x0
-        RenderText {#text} at (0,22) size 373x22
-          text run at (0,22) width 373: "Tests event handling on search fields with zoom."
-      RenderBlock {P} at (0,63) size 782x26
-        RenderTextControl {INPUT} at (2,2) size 148x22 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
-          RenderBlock {DIV} at (3,2) size 142x18
-            RenderBlock {DIV} at (0,0) size 27x15
-            RenderBlock {DIV} at (123,0) size 19x15
-        RenderText {#text} at (0,0) size 0x0
-      RenderBlock {P} at (0,161) size 782x22
-        RenderText {#text} at (0,0) size 47x22
-          text run at (0,0) width 47: "PASS"
-layer at (41,78) size 96x16 scrollWidth 104
-  RenderBlock {DIV} at (27,2) size 96x16
-    RenderText {#text} at (1,0) size 102x16
-      text run at (1,0) width 102: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/mac-leopard/fast/forms/search-zoomed-expected.png


(Binary files differ)

Deleted: trunk/LayoutTests/platform/qt/fast/forms/search-transformed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/qt/fast/forms/search-transformed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/qt/fast/forms/search-transformed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,31 +0,0 @@
-layer at (0,0) size 842x584
-  RenderView at (0,0) size 800x584
-layer at (0,0) size 800x584
-  RenderBlock {HTML} at (0,0) size 800x584
-    RenderBody {BODY} at (8,8) size 784x560
-      RenderBlock {P} at (0,0) size 784x44
-        RenderText {#text} at (0,0) size 57x22
-          text run at (0,0) width 57: "Test for "
-        RenderInline {A} at (0,0) size 322x22 [color=#0000EE]
-          RenderText {#text} at (57,0) size 322x22
-            text run at (57,0) width 322: "https://bugs.webkit.org/show_bug.cgi?id=22190"
-        RenderText {#text} at (379,0) size 5x22
-          text run at (379,0) width 5: ":"
-        RenderBR {BR} at (384,16) size 0x0
-        RenderText {#text} at (0,22) size 430x22
-          text run at (0,22) width 430: "Tests drawing and event handling on transformed search fields."
-      RenderBlock {P} at (0,150) size 784x22
-        RenderText {#text} at (0,0) size 40x22
-          text run at (0,0) width 40: "PASS"
-layer at (8,68) size 784x30
-  RenderBlock {P} at (0,60) size 784x30
-    RenderTextControl {INPUT} at (2,2) size 166x26
-      RenderBlock {DIV} at (2,2) size 162x22
-        RenderBlock {DIV} at (0,16) size 0x0
-        RenderBlock {DIV} at (151,5) size 11x11
-    RenderText {#text} at (0,0) size 0x0
-layer at (12,72) size 151x22
-  RenderBlock {DIV} at (0,0) size 151x22
-    RenderText {#text} at (1,0) size 106x22
-      text run at (1,0) width 106: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body

Deleted: trunk/LayoutTests/platform/qt/fast/forms/search-zoomed-expected.txt (89667 => 89668)


--- trunk/LayoutTests/platform/qt/fast/forms/search-zoomed-expected.txt	2011-06-24 11:52:23 UTC (rev 89667)
+++ trunk/LayoutTests/platform/qt/fast/forms/search-zoomed-expected.txt	2011-06-24 12:02:11 UTC (rev 89668)
@@ -1,30 +0,0 @@
-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 (9,9) size 782x572
-      RenderBlock {P} at (0,0) size 782x52
-        RenderText {#text} at (0,0) size 68x26
-          text run at (0,0) width 68: "Test for "
-        RenderInline {A} at (0,0) size 393x26 [color=#0000EE]
-          RenderText {#text} at (68,0) size 393x26
-            text run at (68,0) width 393: "https://bugs.webkit.org/show_bug.cgi?id=24733"
-        RenderText {#text} at (461,0) size 6x26
-          text run at (461,0) width 6: ":"
-        RenderBR {BR} at (467,19) size 0x0
-        RenderText {#text} at (0,26) size 393x26
-          text run at (0,26) width 393: "Tests event handling on search fields with zoom."
-      RenderBlock {P} at (0,71) size 782x34
-        RenderTextControl {INPUT} at (2,2) size 206x30
-          RenderBlock {DIV} at (2,2) size 202x26
-            RenderBlock {DIV} at (0,19) size 0x0
-            RenderBlock {DIV} at (189,6) size 13x13
-        RenderText {#text} at (0,0) size 0x0
-      RenderBlock {P} at (0,177) size 782x26
-        RenderText {#text} at (0,0) size 48x26
-          text run at (0,0) width 48: "PASS"
-layer at (13,84) size 189x26
-  RenderBlock {DIV} at (0,0) size 189x26
-    RenderText {#text} at (1,0) size 128x26
-      text run at (1,0) width 128: "Some other text"
-caret: position 15 of child 0 {#text} of child 1 {DIV} of child 0 {DIV} of {#shadow-root} of child 1 {INPUT} of child 3 {P} of body
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to