Title: [235264] trunk/LayoutTests
Revision
235264
Author
[email protected]
Date
2018-08-23 17:43:31 -0700 (Thu, 23 Aug 2018)

Log Message

Store the timer we scheduled in the global object.
The underlying bug is tracked by https://webkit.org/b/188911.

* fast/files/blob-network-process-crash.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (235263 => 235264)


--- trunk/LayoutTests/ChangeLog	2018-08-24 00:16:44 UTC (rev 235263)
+++ trunk/LayoutTests/ChangeLog	2018-08-24 00:43:31 UTC (rev 235264)
@@ -1,3 +1,10 @@
+2018-08-23  Ryosuke Niwa  <[email protected]>
+
+        Store the timer we scheduled in the global object.
+        The underlying bug is tracked by https://webkit.org/b/188911.
+
+        * fast/files/blob-network-process-crash.html:
+
 2018-08-23  Andy Estes  <[email protected]>
 
         [Apple Pay] Introduce Apple Pay JS v4 on iOS 12 and macOS Mojave

Modified: trunk/LayoutTests/fast/files/blob-network-process-crash.html (235263 => 235264)


--- trunk/LayoutTests/fast/files/blob-network-process-crash.html	2018-08-24 00:16:44 UTC (rev 235263)
+++ trunk/LayoutTests/fast/files/blob-network-process-crash.html	2018-08-24 00:43:31 UTC (rev 235264)
@@ -20,7 +20,8 @@
 
     testRunner.terminateNetworkProcess();
 
-    setTimeout(() => {
+    // FIXME: If we don't store the timer, timer sometimes never fires.
+    window.timer = setTimeout(() => {
         const newBlob = new Blob(["some text"]);
         for (let i = 0; i < 100; i++) {
             for (let j = 0; j < 10; j++)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to