Title: [264444] trunk/LayoutTests
Revision
264444
Author
[email protected]
Date
2020-07-15 20:13:54 -0700 (Wed, 15 Jul 2020)

Log Message

Speculative fix for flaky fast/css-custom-paint/out-of-memory-while-adding-worklet-module.html.
https://bugs.webkit.org/show_bug.cgi?id=214386

Unreviewed gardening.

* fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (264443 => 264444)


--- trunk/LayoutTests/ChangeLog	2020-07-16 02:21:47 UTC (rev 264443)
+++ trunk/LayoutTests/ChangeLog	2020-07-16 03:13:54 UTC (rev 264444)
@@ -1,3 +1,12 @@
+2020-07-15  Mark Lam  <[email protected]>
+
+        Speculative fix for flaky fast/css-custom-paint/out-of-memory-while-adding-worklet-module.html.
+        https://bugs.webkit.org/show_bug.cgi?id=214386
+
+        Unreviewed gardening.
+
+        * fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js:
+
 2020-07-15  Ryan Haddad  <[email protected]>
 
         Unreviewed test gardening, move the Mojave baseline to the correct folder since I really messed up in r264373.

Modified: trunk/LayoutTests/fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js (264443 => 264444)


--- trunk/LayoutTests/fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js	2020-07-16 02:21:47 UTC (rev 264443)
+++ trunk/LayoutTests/fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js	2020-07-16 03:13:54 UTC (rev 264444)
@@ -7,7 +7,7 @@
         function foo() {
             new Uint8Array(a);
         }
-        new Promise(foo);
+        new Promise(foo).catch(() => {});
         while(1) {
             new ArrayBuffer(1000);
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to