summaryrefslogtreecommitdiffstats
path: root/dom/tests/browser/worker_bug1004814.js
blob: fa6701329ad58751d1bdb103467a3cfa4f54fcbf (plain)
1
2
3
4
5
6
onmessage = function () {
  console.time("bug1004814");
  setTimeout(function () {
    console.timeEnd("bug1004814");
  }, 200);
};