Title: [258276] trunk/LayoutTests
Revision
258276
Author
[email protected]
Date
2020-03-11 13:09:27 -0700 (Wed, 11 Mar 2020)

Log Message

[ macOS wk1 ] imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html is flaky failing
https://bugs.webkit.org/show_bug.cgi?id=207566
<rdar://problem/59355382>

Patch by Antoine Quint <[email protected]> on 2020-03-11
Reviewed by Dean Jackson.

LayoutTests/imported/w3c:

We silence the unhandled Promise warning so that the test output is both cleaner and more stable.

* web-platform-tests/web-animations/timing-model/animations/pausing-an-animation-expected.txt:
* web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html:

LayoutTests:

* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (258275 => 258276)


--- trunk/LayoutTests/ChangeLog	2020-03-11 20:06:22 UTC (rev 258275)
+++ trunk/LayoutTests/ChangeLog	2020-03-11 20:09:27 UTC (rev 258276)
@@ -1,5 +1,15 @@
 2020-03-11  Antoine Quint  <[email protected]>
 
+        [ macOS wk1 ] imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html is flaky failing
+        https://bugs.webkit.org/show_bug.cgi?id=207566
+        <rdar://problem/59355382>
+
+        Reviewed by Dean Jackson.
+
+        * platform/mac-wk1/TestExpectations:
+
+2020-03-11  Antoine Quint  <[email protected]>
+
         REGRESSION: (r255821) [ iOS Mac wk1 ] imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html
         https://bugs.webkit.org/show_bug.cgi?id=207278
         <rdar://problem/59195524>

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (258275 => 258276)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2020-03-11 20:06:22 UTC (rev 258275)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2020-03-11 20:09:27 UTC (rev 258276)
@@ -1,5 +1,18 @@
 2020-03-11  Antoine Quint  <[email protected]>
 
+        [ macOS wk1 ] imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html is flaky failing
+        https://bugs.webkit.org/show_bug.cgi?id=207566
+        <rdar://problem/59355382>
+
+        Reviewed by Dean Jackson.
+
+        We silence the unhandled Promise warning so that the test output is both cleaner and more stable.
+
+        * web-platform-tests/web-animations/timing-model/animations/pausing-an-animation-expected.txt:
+        * web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html:
+
+2020-03-11  Antoine Quint  <[email protected]>
+
         REGRESSION: (r255821) [ iOS Mac wk1 ] imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html
         https://bugs.webkit.org/show_bug.cgi?id=207278
         <rdar://problem/59195524>

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation-expected.txt (258275 => 258276)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation-expected.txt	2020-03-11 20:06:22 UTC (rev 258275)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation-expected.txt	2020-03-11 20:09:27 UTC (rev 258276)
@@ -1,7 +1,4 @@
-CONSOLE MESSAGE: Unhandled Promise Rejection: AbortError: The operation was aborted.
 
-Harness Error (FAIL), message = Unhandled rejection: The operation was aborted.
-
 PASS Pausing clears the start time 
 PASS Aborting a pause preserves the start time 
 PASS A pending ready promise should be resolved and not replaced when the animation is paused 

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html (258275 => 258276)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html	2020-03-11 20:06:22 UTC (rev 258275)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html	2020-03-11 20:09:27 UTC (rev 258276)
@@ -94,7 +94,7 @@
 
   const animation = createDiv(t).animate(null, 100 * MS_PER_SEC);
 
-  const originalReadyPromise = animation.ready;
+  const originalReadyPromise = animation.ready.catch(() => {});
   animation.cancel();
   assert_equals(animation.startTime, null);
   assert_equals(animation.currentTime, null);

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (258275 => 258276)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2020-03-11 20:06:22 UTC (rev 258275)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2020-03-11 20:09:27 UTC (rev 258276)
@@ -922,8 +922,6 @@
 
 webkit.org/b/207153 [ Debug ] animations/animation-callback-timestamp.html [ Pass Failure ]
 
-webkit.org/b/207566 imported/w3c/web-platform-tests/web-animations/timing-model/animations/pausing-an-animation.html [ Pass Failure ]
-
 webkit.org/b/207568 inspector/page/overrideUserAgent.html [ Pass Failure ]
 
 webkit.org/b/207847 resize-observer/delete-observers-in-callbacks.html [ Pass Failure ]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to