Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /eventsource/dedicated-worker/eventsource-constructor-no-new.any.html - WPT Dashboard Interop Dashboard
- /eventsource/dedicated-worker/eventsource-constructor-no-new.any.worker.html - WPT Dashboard Interop Dashboard
test(function() {
assert_throws_js(TypeError,
function() {
EventSource('');
},
"Calling EventSource constructor without 'new' must throw");
})