diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/workers/non-automated/infinite-sibling-and-nested.js')
m--------- | tests/wpt/web-platform-tests | 0 | ||||
-rw-r--r-- | tests/wpt/web-platform-tests/workers/non-automated/infinite-sibling-and-nested.js | 8 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests b/tests/wpt/web-platform-tests deleted file mode 160000 -Subproject 29dfb8944e535d439ca94cf7d1b1d9138a8ad11 diff --git a/tests/wpt/web-platform-tests/workers/non-automated/infinite-sibling-and-nested.js b/tests/wpt/web-platform-tests/workers/non-automated/infinite-sibling-and-nested.js new file mode 100644 index 00000000000..cf7b794a414 --- /dev/null +++ b/tests/wpt/web-platform-tests/workers/non-automated/infinite-sibling-and-nested.js @@ -0,0 +1,8 @@ +function createWorker() { + var worker = new Worker('infinite-nested.js?' + Math.random()); + worker.onmessage = function(e) { + postMessage(e.data); + createWorker(); + } +} +createWorker();
\ No newline at end of file |