Title: [126869] trunk/LayoutTests
Revision
126869
Author
[email protected]
Date
2012-08-28 05:50:04 -0700 (Tue, 28 Aug 2012)

Log Message

Datalist RTL test fails on ports that have progress indicator on the range groove
https://bugs.webkit.org/show_bug.cgi?id=95074

Patch by Thiago Marcos P. Santos <[email protected]> on 2012-08-28
Reviewed by Kent Tamura.

Updated test case to draw a black box covering the range slider. The
ticks can still be seen and hopefully we can keep this test case a ref
test.

* fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html:
* fast/forms/datalist/input-appearance-range-with-datalist-rtl.html:
* platform/efl/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (126868 => 126869)


--- trunk/LayoutTests/ChangeLog	2012-08-28 12:25:28 UTC (rev 126868)
+++ trunk/LayoutTests/ChangeLog	2012-08-28 12:50:04 UTC (rev 126869)
@@ -1,3 +1,18 @@
+2012-08-28  Thiago Marcos P. Santos  <[email protected]>
+
+        Datalist RTL test fails on ports that have progress indicator on the range groove
+        https://bugs.webkit.org/show_bug.cgi?id=95074
+
+        Reviewed by Kent Tamura.
+
+        Updated test case to draw a black box covering the range slider. The
+        ticks can still be seen and hopefully we can keep this test case a ref
+        test.
+
+        * fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html:
+        * fast/forms/datalist/input-appearance-range-with-datalist-rtl.html:
+        * platform/efl/TestExpectations:
+
 2012-08-28  Kangil Han  <[email protected]>
 
         [WK2] SVG animation pause API missing

Modified: trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html (126868 => 126869)


--- trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html	2012-08-28 12:25:28 UTC (rev 126868)
+++ trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html	2012-08-28 12:50:04 UTC (rev 126869)
@@ -1,10 +1,21 @@
 <!DOCTYPE html>
 <html>
+<style>
+#mask {
+    position: absolute;
+    left: 0px;
+    top: 18px;
+    background-color: #000000;
+    height: 30px;
+    width: 180px
+}
+</style>
 <body>
 <input type=range list=foo />
 <datalist id=foo>
     <option>90</option>
     <option>100</option>
 </datalist>
+<div id=mask></div>
 </body>
 </html>

Modified: trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl.html (126868 => 126869)


--- trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl.html	2012-08-28 12:25:28 UTC (rev 126868)
+++ trunk/LayoutTests/fast/forms/datalist/input-appearance-range-with-datalist-rtl.html	2012-08-28 12:50:04 UTC (rev 126869)
@@ -1,10 +1,21 @@
 <!DOCTYPE html>
 <html>
+<style>
+#mask {
+    position: absolute;
+    left: 0px;
+    top: 18px;
+    background-color: #000000;
+    height: 30px;
+    width: 180px
+}
+</style>
 <body>
 <input type=range list=foo dir=rtl />
 <datalist id=foo>
     <option>0</option>
     <option>10</option>
 </datalist>
+<div id=mask></div>
 </body>
 </html>

Modified: trunk/LayoutTests/platform/efl/TestExpectations (126868 => 126869)


--- trunk/LayoutTests/platform/efl/TestExpectations	2012-08-28 12:25:28 UTC (rev 126868)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2012-08-28 12:50:04 UTC (rev 126869)
@@ -109,9 +109,6 @@
 BUGWK95071 : fast/forms/range/slider-in-multi-column.html = TEXT
 BUGWK95071 : fast/forms/range/slider-transformed.html = TEXT
 
-// Tests assumes sliders with no progress indicator.
-BUGWK95074 : fast/forms/datalist/input-appearance-range-with-datalist-rtl.html = IMAGE
-
 // The EFL port has no support for webarchives.
 BUGWKEFL SKIP : webarchive = PASS
 BUGWKEFL SKIP : http/tests/webarchive = PASS
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to