Title: [258960] trunk/LayoutTests
Revision
258960
Author
s...@apple.com
Date
2020-03-24 17:02:05 -0700 (Tue, 24 Mar 2020)

Log Message

[ macOS ] fast/images/slower-decoding-than-animation-image.html is flaky failing
https://bugs.webkit.org/show_bug.cgi?id=207859

Unreviewed tiny follow-up to make the test more reliable on slow bots.

* fast/images/slower-decoding-than-animation-image-expected.txt:
* fast/images/slower-decoding-than-animation-image.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (258959 => 258960)


--- trunk/LayoutTests/ChangeLog	2020-03-25 00:01:27 UTC (rev 258959)
+++ trunk/LayoutTests/ChangeLog	2020-03-25 00:02:05 UTC (rev 258960)
@@ -1,3 +1,13 @@
+2020-03-24  Said Abou-Hallawa  <sabouhall...@apple.com>
+
+        [ macOS ] fast/images/slower-decoding-than-animation-image.html is flaky failing
+        https://bugs.webkit.org/show_bug.cgi?id=207859
+
+        Unreviewed tiny follow-up to make the test more reliable on slow bots.
+
+        * fast/images/slower-decoding-than-animation-image-expected.txt:
+        * fast/images/slower-decoding-than-animation-image.html:
+
 2020-03-24  Jacob Uphoff  <jacob_uph...@apple.com>
 
         [ iOS ] http/tests/security/cookies/third-party-cookie-blocking.html is flaky timing out

Modified: trunk/LayoutTests/fast/images/slower-decoding-than-animation-image-expected.txt (258959 => 258960)


--- trunk/LayoutTests/fast/images/slower-decoding-than-animation-image-expected.txt	2020-03-25 00:01:27 UTC (rev 258959)
+++ trunk/LayoutTests/fast/images/slower-decoding-than-animation-image-expected.txt	2020-03-25 00:02:05 UTC (rev 258960)
@@ -3,9 +3,9 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS internals.imageFrameIndex(image) is 0
-PASS internals.imageFrameIndex(image) is 1
-PASS internals.imageFrameIndex(image) is 2
+PASS internals.imageFrameIndex(image) is >= 0
+PASS internals.imageFrameIndex(image) is >= 1
+PASS internals.imageFrameIndex(image) is >= 2
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/images/slower-decoding-than-animation-image.html (258959 => 258960)


--- trunk/LayoutTests/fast/images/slower-decoding-than-animation-image.html	2020-03-25 00:01:27 UTC (rev 258959)
+++ trunk/LayoutTests/fast/images/slower-decoding-than-animation-image.html	2020-03-25 00:02:05 UTC (rev 258960)
@@ -13,7 +13,7 @@
                 context.drawImage(image, 0, 0, 100, 100, 0, 0, canvas.width, canvas.height);
 
                 if (window.internals) {
-                    shouldBe("internals.imageFrameIndex(image)", frameIndex.toString());
+                    shouldBeGreaterThanOrEqual("internals.imageFrameIndex(image)", frameIndex.toString());
                     image.addEventListener("webkitImageFrameReady", function() {
                         resolve();
                     }, false);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to