summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/serialization/module/resources/broadcastchannel-sharedworker.js
blob: 310e0e9358446acaec0f13d8e2fb4437316953c2 (plain)
1
2
3
4
5
6
7
const channel = new BroadcastChannel("anne was here");
channel.onmessageerror = ({ data }) => {
  if(data === null) {
    channel.postMessage("sw-success");
  }
}
channel.postMessage("hi");