blob: eb92837a71d38713c161171534f2539659995ebb [file] [log] [blame]
// META: global=window,worker
// META: title=EventSource: constructor (invalid URL)
test(() => {
assert_throws('SyntaxError', () => { new EventSource("http://this is invalid/"); });
});
done();