mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
7 lines
242 B
HTML
7 lines
242 B
HTML
|
|
<script>
|
||
|
|
window.sharedWorkerResponsePromise = new Promise(f => {
|
||
|
|
window.myWorker = new SharedWorker("shared-worker.js");
|
||
|
|
window.myWorker.port.postMessage('hello');
|
||
|
|
window.myWorker.port.onmessage = e => f(e.data);
|
||
|
|
});
|
||
|
|
</script>
|