chromium/third_party/blink/web_tests/external/wpt/html/semantics/scripting-1/the-script-element/module/import-meta/postmessage-worker.js

if ('DedicatedWorkerGlobalScope' in self &&
    self instanceof DedicatedWorkerGlobalScope) {
  postMessage(import.meta.url);
} else if (
    'SharedWorkerGlobalScope' in self &&
    self instanceof SharedWorkerGlobalScope) {
  self.onconnect = function(e) {
    const port = e.ports[0];
    port.start();
    port.postMessage(import.meta.url);
  };
}