mirror of
https://github.com/servo/servo.git
synced 2025-10-16 00:10:23 +01:00
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();
|