mirror of
https://github.com/servo/servo.git
synced 2025-08-01 19:50:30 +01:00
9 lines
No EOL
238 B
JavaScript
9 lines
No EOL
238 B
JavaScript
// META: global=window,worker
|
|
// META: title=EventSource: constructor (invalid URL)
|
|
// META: script=/resources/idlharness.js
|
|
|
|
test(() => {
|
|
assert_throws('SyntaxError', () => { new EventSource("http://this is invalid/"); });
|
|
});
|
|
|
|
done(); |