chromium/third_party/blink/web_tests/external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/resources/broadcastchannel-sharedworker.js

const channel = new BroadcastChannel("anne was here");
channel.onmessageerror = ({ data }) => {
  if(data === null) {
    channel.postMessage("sw-success");
  }
}
channel.postMessage("hi");