Title: [290439] trunk/LayoutTests/imported/w3c
Revision
290439
Author
cdu...@apple.com
Date
2022-02-24 09:47:41 -0800 (Thu, 24 Feb 2022)

Log Message

Unreviewed, add some logging to imported/w3c/web-platform-tests/workers/semantics/multiple-workers/004.html to debug flakiness

* web-platform-tests/workers/semantics/multiple-workers/004.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (290438 => 290439)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2022-02-24 17:31:55 UTC (rev 290438)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2022-02-24 17:47:41 UTC (rev 290439)
@@ -1,3 +1,9 @@
+2022-02-24  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, add some logging to imported/w3c/web-platform-tests/workers/semantics/multiple-workers/004.html to debug flakiness
+
+        * web-platform-tests/workers/semantics/multiple-workers/004.html:
+
 2022-02-24  Martin Robinson  <mrobin...@webkit.org>
 
         Implement logical properties for CSS overscroll-behavior

Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/workers/semantics/multiple-workers/004.html (290438 => 290439)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/workers/semantics/multiple-workers/004.html	2022-02-24 17:31:55 UTC (rev 290438)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/workers/semantics/multiple-workers/004.html	2022-02-24 17:47:41 UTC (rev 290439)
@@ -28,10 +28,17 @@
     setTimeout(function() {
       assert_equals(load_count, 2);
       assert_equals(i, 3);
+      clearTimeout(timeoutHandle);
       done();
     }, 500);
   }
 }
+
+timeoutHandle = setTimeout(() => {
+    assert_equals(load_count, 2, 'Frame Load Count');
+    assert_equals(i, 3, 'Worker Message Count');
+    done();
+}, 10000);
 </script>
 <iframe src="" _onload_="iframe_loaded()"></iframe>
 <iframe src="" _onload_="iframe_loaded()"></iframe>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to