Title: [217950] trunk/LayoutTests
Revision
217950
Author
[email protected]
Date
2017-06-08 15:12:32 -0700 (Thu, 08 Jun 2017)

Log Message

REGRESSION: fast/images/animated-gif-webkit-transform.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=170410
<rdar://problem/31409381>

Reviewed by Simon Fraser.

Fix flakiness and unskip test.

* fast/images/animated-gif-webkit-transform-expected.txt:
* fast/images/animated-gif-webkit-transform.html:
* platform/mac-wk2/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (217949 => 217950)


--- trunk/LayoutTests/ChangeLog	2017-06-08 22:03:00 UTC (rev 217949)
+++ trunk/LayoutTests/ChangeLog	2017-06-08 22:12:32 UTC (rev 217950)
@@ -1,3 +1,17 @@
+2017-06-08  Chris Dumez  <[email protected]>
+
+        REGRESSION: fast/images/animated-gif-webkit-transform.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=170410
+        <rdar://problem/31409381>
+
+        Reviewed by Simon Fraser.
+
+        Fix flakiness and unskip test.
+
+        * fast/images/animated-gif-webkit-transform-expected.txt:
+        * fast/images/animated-gif-webkit-transform.html:
+        * platform/mac-wk2/TestExpectations:
+
 2017-06-08  Antoine Quint  <[email protected]>
 
         [iOS] Buttons in top-left and bottom media controls bar are positioned too high

Modified: trunk/LayoutTests/fast/images/animated-gif-webkit-transform-expected.txt (217949 => 217950)


--- trunk/LayoutTests/fast/images/animated-gif-webkit-transform-expected.txt	2017-06-08 22:03:00 UTC (rev 217949)
+++ trunk/LayoutTests/fast/images/animated-gif-webkit-transform-expected.txt	2017-06-08 22:12:32 UTC (rev 217950)
@@ -3,7 +3,7 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS isFirstImagePaused() is false
+PASS isFirstImagePaused() became false
 PASS isSecondImagePaused() became true
 PASS isFirstImagePaused() is false
 Translating images left so that first image is no longer visible, but second image is.

Modified: trunk/LayoutTests/fast/images/animated-gif-webkit-transform.html (217949 => 217950)


--- trunk/LayoutTests/fast/images/animated-gif-webkit-transform.html	2017-06-08 22:03:00 UTC (rev 217949)
+++ trunk/LayoutTests/fast/images/animated-gif-webkit-transform.html	2017-06-08 22:12:32 UTC (rev 217950)
@@ -54,8 +54,9 @@
 }
 
 function runTest() {
-  shouldBeFalse("isFirstImagePaused()");
-  shouldBecomeEqual("isSecondImagePaused()", "true", translateImagesLeft);
+  shouldBecomeEqual("isFirstImagePaused()", "false", function() {
+      shouldBecomeEqual("isSecondImagePaused()", "true", translateImagesLeft);
+  });
 }
 
 </script>

Modified: trunk/LayoutTests/platform/mac-wk2/TestExpectations (217949 => 217950)


--- trunk/LayoutTests/platform/mac-wk2/TestExpectations	2017-06-08 22:03:00 UTC (rev 217949)
+++ trunk/LayoutTests/platform/mac-wk2/TestExpectations	2017-06-08 22:12:32 UTC (rev 217950)
@@ -638,8 +638,6 @@
 
 webkit.org/b/170203 fast/images/animated-image-different-dest-size.html [ Pass ImageOnlyFailure ]
 
-webkit.org/b/170410 fast/images/animated-gif-webkit-transform.html [ Pass Failure ]
-
 # Media loading via network cache requires Sierra or newer.
 [ ElCapitan ] http/tests/cache/disk-cache/disk-cache-media-small.html [ Failure ]
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to