Title: [124419] trunk/LayoutTests
Revision
124419
Author
[email protected]
Date
2012-08-02 01:17:13 -0700 (Thu, 02 Aug 2012)

Log Message

Layout Test fast/forms/input-widths.html is failing
https://bugs.webkit.org/show_bug.cgi?id=92863

Reviewed by Kent Tamura.

This patch removes test cases for "date", "datetime", "datetime-local",
"month", "time" and "week" input types from fast/forms/input-widths.html
and updates its expectation, because these test cases aren't reasonable
any more.

This patch also removes test sample of input type "color".

After r124314, All chromium ports, except for Android, input type
"time" uses "monospace" font which makes input field wider.

* fast/forms/input-widths-expected.txt: Removed expectation of "date", "datetime", "datetime-local",
"month", "time" and "week" input types.
* fast/forms/input-widths.html: Removed test cases for "date", "datetime", "datetime-local",
"month", "time" and "week" input types, and a test sample for "color".
* platform/chromium/TestExpectations: Removed disabling line of fast/forms/input-widths.html

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (124418 => 124419)


--- trunk/LayoutTests/ChangeLog	2012-08-02 07:49:47 UTC (rev 124418)
+++ trunk/LayoutTests/ChangeLog	2012-08-02 08:17:13 UTC (rev 124419)
@@ -1,3 +1,26 @@
+2012-08-02  Yoshifumi Inoue  <[email protected]>
+
+        Layout Test fast/forms/input-widths.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=92863
+
+        Reviewed by Kent Tamura.
+
+        This patch removes test cases for "date", "datetime", "datetime-local",
+        "month", "time" and "week" input types from fast/forms/input-widths.html
+        and updates its expectation, because these test cases aren't reasonable
+        any more.
+
+        This patch also removes test sample of input type "color".
+
+        After r124314, All chromium ports, except for Android, input type
+        "time" uses "monospace" font which makes input field wider.
+
+        * fast/forms/input-widths-expected.txt: Removed expectation of "date", "datetime", "datetime-local",
+        "month", "time" and "week" input types.
+        * fast/forms/input-widths.html: Removed test cases for "date", "datetime", "datetime-local",
+        "month", "time" and "week" input types, and a test sample for "color".
+        * platform/chromium/TestExpectations: Removed disabling line of fast/forms/input-widths.html
+
 2012-08-02  Peter Kasting  <[email protected]>
 
         Rebaseline per bug 92904.

Modified: trunk/LayoutTests/fast/forms/input-widths-expected.txt (124418 => 124419)


--- trunk/LayoutTests/fast/forms/input-widths-expected.txt	2012-08-02 07:49:47 UTC (rev 124418)
+++ trunk/LayoutTests/fast/forms/input-widths-expected.txt	2012-08-02 08:17:13 UTC (rev 124419)
@@ -5,12 +5,6 @@
 PASS document.getElementById("password").offsetWidth is baseWidth
 PASS document.getElementById("tel").offsetWidth is baseWidth
 PASS document.getElementById("url").offsetWidth is baseWidth
-PASS document.getElementById("date").offsetWidth is baseWidth
-PASS document.getElementById("datetime").offsetWidth is baseWidth
-PASS document.getElementById("datetimelocal").offsetWidth is baseWidth
-PASS document.getElementById("month").offsetWidth is baseWidth
-PASS document.getElementById("time").offsetWidth is baseWidth
-PASS document.getElementById("week").offsetWidth is baseWidth
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/forms/input-widths.html (124418 => 124419)


--- trunk/LayoutTests/fast/forms/input-widths.html	2012-08-02 07:49:47 UTC (rev 124418)
+++ trunk/LayoutTests/fast/forms/input-widths.html	2012-08-02 08:17:13 UTC (rev 124419)
@@ -15,14 +15,6 @@
 <input type=password id=password>
 <input type=tel id=tel>
 <input type=url id=url>
-
-<input type=color id=color>
-<input type=date id=date>
-<input type=datetime id=datetime>
-<input type=datetime-local id=datetimelocal>
-<input type=month id=month>
-<input type=time id=time>
-<input type=week id=week>
 </div>
 
 <script>
@@ -36,14 +28,6 @@
 
 // type=search is not tested intentionally.
 
-// The folloiwng types should be removed when dedicated UIs are implemented.
-shouldBe('document.getElementById("date").offsetWidth', 'baseWidth');
-shouldBe('document.getElementById("datetime").offsetWidth', 'baseWidth');
-shouldBe('document.getElementById("datetimelocal").offsetWidth', 'baseWidth');
-shouldBe('document.getElementById("month").offsetWidth', 'baseWidth');
-shouldBe('document.getElementById("time").offsetWidth', 'baseWidth');
-shouldBe('document.getElementById("week").offsetWidth', 'baseWidth');
-
 document.getElementById('parent').innerHTML = '';
 </script>
 <script src=""

Modified: trunk/LayoutTests/platform/chromium/TestExpectations (124418 => 124419)


--- trunk/LayoutTests/platform/chromium/TestExpectations	2012-08-02 07:49:47 UTC (rev 124418)
+++ trunk/LayoutTests/platform/chromium/TestExpectations	2012-08-02 08:17:13 UTC (rev 124419)
@@ -3507,9 +3507,6 @@
 
 BUGWK92852 LINUX DEBUG : media/video-currentTime-set2.html = PASS CRASH
 
-// Started failing after http://trac.webkit.org/changeset/124314
-BUGWK92863 : fast/forms/input-widths.html = TEXT
-
 BUGWK92938 : compositing/layer-creation/animation-overlap-with-children.html = TEXT PASS
 
 BUGWK92941 WIN : accessibility/loading-iframe-updates-axtree.html = CRASH
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to