summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-worker-scopes.html
blob: 2e1f3c4376efb4c16eb9adda48cbecb57ee821b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>

<script>
startWorker();

function startWorker() {
  w = new Worker("scopes-worker.js");
}
</script>

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