summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/mochitest/file_simple_iframe_worker.html
blob: d0c2f59844f5275918c8f861ab194bb7eb97e2d6 (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
<!DOCTYPE HTML>

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

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

fetch("file_simple_iframe.txt");
const worker = new Worker("file_simple_worker.js?iniframe=true");
worker.onmessage = () => {
  worker.postMessage("file_simple_iframe_worker.txt");
}

const sharedworker = new SharedWorker("file_simple_sharedworker.js?iniframe=true");
sharedworker.port.onmessage = () => {
  sharedworker.port.postMessage("file_simple_iframe_sharedworker.txt");
}
sharedworker.port.start();

</script>
</body>
</html>