chromium/third_party/blink/web_tests/external/wpt/service-workers/service-worker/resources/postmessage-blob-url.js

self.onmessage = e => {
  fetch(e.data)
  .then(response => response.text())
  .then(text => e.source.postMessage('Worker reply:' + text));
};