diff options
Diffstat (limited to 'dom/tests/browser/worker_bug1004814.js')
-rw-r--r-- | dom/tests/browser/worker_bug1004814.js | 6 |
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 000000000..f49fe8dc8 --- /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); +} |