Summary

Harness status: OK

Found 3 tests

Details

ResultTest NameMessage
PassTest toString propagation exception.
Asserts run
Pass
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)
PassTest Sharedworker creation with no arguments
Asserts run
Pass
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)
PassTest invalid script URL.
Asserts run
Pass
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)