summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/html_worker-test-page.html
blob: 46f64368a194f2333bb322be2b98be18ca564288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
/* eslint-disable no-unused-vars */
"use strict";
startWorker();

var w;
function startWorker() {
  startWorkerInner();
}
function startWorkerInner() {
  w = new Worker("js_worker-test.js");
}
</script>