Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /wasm/serialization/module/nested-worker-success.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /wasm/serialization/module/nested-worker-success.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=dedicatedworker,sharedworker
// META: script=resources/test-incrementer.js
"use strict";
promise_test(t => {
const worker = new Worker("resources/incrementer-worker.js");
return testSharingViaIncrementerScript(t, worker, "parent worker", worker, "sub-worker");
}, "postMessaging to a dedicated sub-worker allows them to see each others' modifications");