summaryrefslogtreecommitdiffstats
path: root/dom/tests/browser/worker_bug1004814.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/browser/worker_bug1004814.js')
-rw-r--r--dom/tests/browser/worker_bug1004814.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/tests/browser/worker_bug1004814.js b/dom/tests/browser/worker_bug1004814.js
new file mode 100644
index 0000000000..4fb54da692
--- /dev/null
+++ b/dom/tests/browser/worker_bug1004814.js
@@ -0,0 +1,6 @@
+onmessage = function (evt) {
+ console.time("bug1004814");
+ setTimeout(function () {
+ console.timeEnd("bug1004814");
+ }, 200);
+};