Title: [258275] trunk/LayoutTests
Revision
258275
Author
[email protected]
Date
2020-03-11 13:06:22 -0700 (Wed, 11 Mar 2020)

Log Message

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>

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/finishing-an-animation.html:

LayoutTests:

* platform/ios/TestExpectations:
* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

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


--- trunk/LayoutTests/ChangeLog	2020-03-11 20:04:18 UTC (rev 258274)
+++ trunk/LayoutTests/ChangeLog	2020-03-11 20:06:22 UTC (rev 258275)
@@ -1,5 +1,16 @@
 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>
+
+        Reviewed by Dean Jackson.
+
+        * platform/ios/TestExpectations:
+        * platform/mac-wk1/TestExpectations:
+
+2020-03-11  Antoine Quint  <[email protected]>
+
         [Mac wk2 Release] imported/w3c/web-platform-tests/web-animations/timing-model/animations/updating-the-finished-state.html flaky fail
         https://bugs.webkit.org/show_bug.cgi?id=206746
         <rdar://problem/58867580>

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


--- trunk/LayoutTests/imported/w3c/ChangeLog	2020-03-11 20:04:18 UTC (rev 258274)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2020-03-11 20:06:22 UTC (rev 258275)
@@ -1,3 +1,15 @@
+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>
+
+        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/finishing-an-animation.html:
+
 2020-03-11  Chris Dumez  <[email protected]>
 
         Defer async scripts until DOMContentLoaded or first paint, whichever comes first

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


--- trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html	2020-03-11 20:04:18 UTC (rev 258274)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html	2020-03-11 20:06:22 UTC (rev 258275)
@@ -304,7 +304,7 @@
   const animation = createDiv(t).animate(null, 100 * MS_PER_SEC);
   await animation.ready;
 
-  const originalFinishPromise = animation.finished;
+  const originalFinishPromise = animation.finished.catch(() => {});
 
   animation.cancel();
   assert_equals(animation.startTime, null);

Modified: trunk/LayoutTests/platform/ios/TestExpectations (258274 => 258275)


--- trunk/LayoutTests/platform/ios/TestExpectations	2020-03-11 20:04:18 UTC (rev 258274)
+++ trunk/LayoutTests/platform/ios/TestExpectations	2020-03-11 20:06:22 UTC (rev 258275)
@@ -3424,8 +3424,6 @@
 
 webkit.org/b/207230 imported/w3c/web-platform-tests/fetch/stale-while-revalidate/fetch.html [ Pass Failure ]
 
-webkit.org/b/207278 imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html [ Pass Failure ]
-
 # Locale-specific shaping is only enabled on certain OSes.
 webkit.org/b/77568 fast/text/locale-shaping.html [ ImageOnlyFailure ]
 webkit.org/b/77568 fast/text/locale-shaping-complex.html [ ImageOnlyFailure ]

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


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2020-03-11 20:04:18 UTC (rev 258274)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2020-03-11 20:06:22 UTC (rev 258275)
@@ -908,8 +908,6 @@
 
 webkit.org/b/207237 http/tests/notifications/event-listener-crash.html [ Pass Crash ]
 
-webkit.org/b/207278 imported/w3c/web-platform-tests/web-animations/timing-model/animations/finishing-an-animation.html [ Pass Failure ]
-
 webkit.org/b/207469 [ Debug ] imported/w3c/web-platform-tests/svg/animations/slider-switch.html [ Pass Failure ]
 
 webkit.org/b/207470 [ Debug ] imported/w3c/web-platform-tests/workers/WorkerGlobalScope_ErrorEvent_colno.htm [ Pass Failure ]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to