Title: [170691] trunk/LayoutTests
Revision
170691
Author
[email protected]
Date
2014-07-01 19:50:09 -0700 (Tue, 01 Jul 2014)

Log Message

Fix this test; it was waiting about 32 years for the end of an animation.
What we really care about is the start of the animation.

* compositing/animation/keyframe-order.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (170690 => 170691)


--- trunk/LayoutTests/ChangeLog	2014-07-02 02:43:32 UTC (rev 170690)
+++ trunk/LayoutTests/ChangeLog	2014-07-02 02:50:09 UTC (rev 170691)
@@ -1,3 +1,10 @@
+2014-07-01  Simon Fraser  <[email protected]>
+
+        Fix this test; it was waiting about 32 years for the end of an animation.
+        What we really care about is the start of the animation.
+
+        * compositing/animation/keyframe-order.html:
+
 2014-07-01  Chris Fleizach  <[email protected]>
 
         AX: iOS does not expose ARIA toggle buttons at all (not even as a regular button)

Modified: trunk/LayoutTests/compositing/animation/keyframe-order.html (170690 => 170691)


--- trunk/LayoutTests/compositing/animation/keyframe-order.html	2014-07-02 02:43:32 UTC (rev 170690)
+++ trunk/LayoutTests/compositing/animation/keyframe-order.html	2014-07-02 02:50:09 UTC (rev 170691)
@@ -52,7 +52,7 @@
         function doTest()
         {
             var box = document.getElementById('spinner');
-            box.addEventListener('webkitAnimationEnd', function() {
+            box.addEventListener('webkitAnimationStart', function() {
                 if (window.testRunner)
                     testRunner.notifyDone();
             }, false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to