Title: [123993] trunk/LayoutTests
Revision
123993
Author
[email protected]
Date
2012-07-29 21:19:10 -0700 (Sun, 29 Jul 2012)

Log Message

Fix opacity issue of fast/forms/date/calendar-picker-appearance.html
https://bugs.webkit.org/show_bug.cgi?id=92605

Reviewed by Hajime Morita.

We need to wait for pixel dumping until CSS transition completion for
the 'main' element, which has transition from opacity:0 to opacity:1.

* fast/forms/date/calendar-picker-appearance.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (123992 => 123993)


--- trunk/LayoutTests/ChangeLog	2012-07-30 01:58:03 UTC (rev 123992)
+++ trunk/LayoutTests/ChangeLog	2012-07-30 04:19:10 UTC (rev 123993)
@@ -1,3 +1,15 @@
+2012-07-29  Kent Tamura  <[email protected]>
+
+        Fix opacity issue of fast/forms/date/calendar-picker-appearance.html
+        https://bugs.webkit.org/show_bug.cgi?id=92605
+
+        Reviewed by Hajime Morita.
+
+        We need to wait for pixel dumping until CSS transition completion for
+        the 'main' element, which has transition from opacity:0 to opacity:1.
+
+        * fast/forms/date/calendar-picker-appearance.html:
+
 2012-07-29  Dan Bernstein  <[email protected]>
 
         Hit testing in the gap between pages returns incorrect results in flipped blocks writing modes

Modified: trunk/LayoutTests/fast/forms/date/calendar-picker-appearance.html (123992 => 123993)


--- trunk/LayoutTests/fast/forms/date/calendar-picker-appearance.html	2012-07-30 01:58:03 UTC (rev 123992)
+++ trunk/LayoutTests/fast/forms/date/calendar-picker-appearance.html	2012-07-30 04:19:10 UTC (rev 123993)
@@ -16,10 +16,10 @@
 
 sendKey(document.getElementById('date'), 'Down');
 var pickerWindow = document.getElementById('mock-page-popup').contentWindow;
-pickerWindow._onresize_ = function() {
+pickerWindow.document.getElementById('main').addEventListener('webkitTransitionEnd', function() {
     console.log(pickerWindow.pagePopupController);
     testRunner.notifyDone();
-}
+}, false);
 </script>
 </body>
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to