8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
// META: global=window,worker
|
|
// META: title=EventSource: constructor (invalid URL)
|
|
|
|
test(() => {
|
|
assert_throws_dom('SyntaxError', () => { new EventSource("http://this is invalid/"); });
|
|
});
|
|
|
|
done();
|