non_shared_worker_1.js (297B)
1 onmessage = event => { 2 globalThis["loaded"] = []; 3 4 var ns = ChromeUtils.importESModule("resource://test/non_shared_1.mjs", { 5 global: "current", 6 }); 7 const c1 = ns.getCounter(); 8 ns.incCounter(); 9 const c2 = ns.getCounter(); 10 postMessage({ c1, c2, loaded: globalThis["loaded"] }); 11 };