Pass | Test toString propagation exception. | Asserts runPass | assert_throws_js(function "function Error() { [native code] }", function "function() { new SharedWorker({toString:function(){throw new Error()}})}", "toString exception should be propagated")
at Test.<anonymous> ( /workers/constructors/SharedWorker/SharedWorker-constructor.html:7:3) |
|
Pass | Test Sharedworker creation with no arguments | Asserts runPass | assert_throws_js(function "function TypeError() { [native code] }", function "function() { new SharedWorker(); }", "invoking SharedWorker constructor without arguments should result in an exception.")
at Test.<anonymous> ( /workers/constructors/SharedWorker/SharedWorker-constructor.html:14:3) |
|
Pass | Test invalid script URL. | Asserts runPass | assert_throws_dom("SyntaxError", function "function() { var Sharedworker = new SharedWorker('http://invalid:123$'); }", "Invoking SharedWorker constructor with invalid script URL should result in an exception.")
at Test.<anonymous> ( /workers/constructors/SharedWorker/SharedWorker-constructor.html:22:3) |
|