summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/support/WorkerLocation-origin.html
blob: 3d948030a79e431efd8d33974ca0f2cd2092ddca (plain)
1
2
3
4
5
6
<script>
const w = new Worker("./WorkerLocation.js");
w.onmessage = e => {
  parent.postMessage(e.data, "*");
}
</script>