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