summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/create-blob-url-worker.js
blob: 57e4882c24f7273e3469b9b60649ffa4b4f39617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const childWorkerScript = `
  self.onmessage = async (e) => {
    const response = await fetch(e.data);
    const text = await response.text();
    self.postMessage(text);
  };
`;
const blob = new Blob([childWorkerScript], { type: 'text/javascript' });
const blobUrl = URL.createObjectURL(blob);
const childWorker = new Worker(blobUrl);

// When a message comes from the parent frame, sends a resource url to the child
// worker.
self.onmessage = (e) => {
  childWorker.postMessage(e.data);
};

// When a message comes from the child worker, sends a content of fetch() to the
// parent frame.
childWorker.onmessage = (e) => {
  self.postMessage(e.data);
};