summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/support/WorkerFetchURL.js
blob: 4ad700bcce464611b3c3f07e8555b4c6ccb6cfd6 (plain)
1
2
3
4
5
6
7
8
onconnect = e => {
  let port = e.ports[0];
  port.onmessage = (e) => {
    fetch(e.data)
    .then(response => response.text())
    .then(text => port.postMessage('Worker reply:' + text));
  };
}