summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/mochitest/file_simple_webrequest_worker.html
blob: a90c4509be6daec94ac7985b9215b08093e915ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>

<html>
<head>
<meta charset="utf-8">
</head>
<body>

<script type="application/javascript">
"use strict";

fetch("file_simple_toplevel.txt");
const worker = new Worker("file_simple_worker.js");
worker.onmessage = (msg) => {
  worker.postMessage("file_simple_worker.txt");
}

const sharedworker = new SharedWorker("file_simple_sharedworker.js");
sharedworker.port.onmessage = (msg) => {
  dump(`postMessage to sharedworker\n`);
  sharedworker.port.postMessage("file_simple_sharedworker.txt");
}
sharedworker.port.start();

</script>
<iframe src="file_simple_iframe_worker.html"></iframe>
</body>
</html>