blob: 151ffbe5e4220a6a815d5219e257ef6c016cb49c (
plain)
1
2
3
4
5
6
7
8
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!");
|