diff options
Diffstat (limited to 'dom/workers/test/threadErrors_worker3.js')
-rw-r--r-- | dom/workers/test/threadErrors_worker3.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dom/workers/test/threadErrors_worker3.js b/dom/workers/test/threadErrors_worker3.js new file mode 100644 index 000000000..151ffbe5e --- /dev/null +++ b/dom/workers/test/threadErrors_worker3.js @@ -0,0 +1,9 @@ +/** + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ + */ +// Unhandled exception in body +onmessage = function(event) { +}; + +throw new Error("Bah!"); |