blob: ccdcc5cf76cd64ecaa1dc7a4b86e90fdd0b4050b [file] [log] [blame]
Tests exception message from eval on nested worker context in console contains stack trace.
function foo()
{
throw {a:239};
}
function boo()
{
foo();
}
boo();
VM:3 Uncaught {a: 239}a: 239__proto__: Object
foo @ VM:3
boo @ VM:7
(anonymous) @ VM:9