summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/timeoutTracing_worker.js
blob: 2eac367535823c4516f93bf37d0ea6c45a223f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

onmessage = function (event) {
  throw "No messages should reach me!";
};

setInterval(function () {
  postMessage("Still alive!");
}, 20);
// eslint-disable-next-line no-implied-eval
setInterval(";", 20);

postMessage("Begin!");