Title: [212132] trunk/LayoutTests
Revision
212132
Author
fpi...@apple.com
Date
2017-02-10 12:34:15 -0800 (Fri, 10 Feb 2017)

Log Message

LayoutTest workers/sab/postMessage-clones.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=168129

Unreviewed, make this test more deterministic.

* workers/sab/postMessage-clones.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (212131 => 212132)


--- trunk/LayoutTests/ChangeLog	2017-02-10 20:26:30 UTC (rev 212131)
+++ trunk/LayoutTests/ChangeLog	2017-02-10 20:34:15 UTC (rev 212132)
@@ -1,3 +1,12 @@
+2017-02-10  Filip Pizlo  <fpi...@apple.com>
+
+        LayoutTest workers/sab/postMessage-clones.html is a flaky failure
+        https://bugs.webkit.org/show_bug.cgi?id=168129
+
+        Unreviewed, make this test more deterministic.
+
+        * workers/sab/postMessage-clones.html:
+
 2017-02-10  Dave Hyatt  <hy...@apple.com>
 
         [CSS Parser] Make intercap property values serialize correctly

Modified: trunk/LayoutTests/workers/sab/postMessage-clones.html (212131 => 212132)


--- trunk/LayoutTests/workers/sab/postMessage-clones.html	2017-02-10 20:26:30 UTC (rev 212131)
+++ trunk/LayoutTests/workers/sab/postMessage-clones.html	2017-02-10 20:34:15 UTC (rev 212132)
@@ -26,7 +26,11 @@
         testRunner.notifyDone();
 });
 
-postMessage(memory, "*");
+window.setTimeout(
+    function() {
+        window.postMessage(memory, "*");
+    },
+    0);
 </script>
 <script src=""
 </body>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to