summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-windowless-workers-early-breakpoint.html
blob: cb4936a15002efd195996506fa4455f1674f10b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html>

<script>
startWorker();

function startWorker() {
  new Worker("simple-worker.js");
}
function startWorkerWithMessage() {
  var w = new Worker("simple-worker.js");
  w.postMessage({yo: 'yo'})
}
</script>

<body>
Hello World!
</body>
</html>