summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/serialization/module/resources/broadcastchannel-worker.js
blob: 76a8177060498547ab1661319c20d5d5288cd96f (plain)
1
2
3
4
5
6
7
8
9
const channel = new BroadcastChannel("anne was here");
channel.onmessage = ({ data }) => {
  if(data === "hi" || data === "sw-success") {
    return;
  } else if(data instanceof WebAssembly.Module) {
    channel.postMessage("dw-success");
  }
}
channel.postMessage("hi");