Title: [133831] trunk/LayoutTests
Revision
133831
Author
kei...@webkit.org
Date
2012-11-07 17:41:33 -0800 (Wed, 07 Nov 2012)

Log Message

[Chromium] platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=101408

Reviewed by Kent Tamura.

Mistake with timezone was making this test flaky.

* platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (133830 => 133831)


--- trunk/LayoutTests/ChangeLog	2012-11-08 01:39:35 UTC (rev 133830)
+++ trunk/LayoutTests/ChangeLog	2012-11-08 01:41:33 UTC (rev 133831)
@@ -1,3 +1,14 @@
+2012-11-07  Keishi Hattori  <kei...@webkit.org>
+
+        [Chromium] platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=101408
+
+        Reviewed by Kent Tamura.
+
+        Mistake with timezone was making this test flaky.
+
+        * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html:
+
 2012-11-07  Dirk Pranke  <dpra...@chromium.org>
 
         Unreviewed, new chromium-mac-mountainlion baselines for css3/selectors3.

Modified: trunk/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html (133830 => 133831)


--- trunk/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html	2012-11-08 01:39:35 UTC (rev 133830)
+++ trunk/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html	2012-11-08 01:41:33 UTC (rev 133831)
@@ -120,7 +120,7 @@
 function testToday() {
     eventSender.keyDown('t');
     var now = new Date();
-    var expectedDate = serializeDate(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate());
+    var expectedDate = serializeDate(now.getFullYear(), now.getMonth(), now.getDate());
     var expectedMonth = popupWindow.Month.createFromDate(now).toString();
     return selectedDate() === expectedDate && currentMonth() === expectedMonth;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to