chromium/third_party/blink/web_tests/fast/workers/chromium/resources/shared-worker-dynamic-import.js

onconnect = event => {
  const port = event.ports[0];
  import('./empty-worker.js')
      .catch(e => port.postMessage({ name: e.name, message: e.message }));
};