eventsource-constructor-url-bogus.any.js (202B)
1 // META: global=window,worker 2 // META: title=EventSource: constructor (invalid URL) 3 4 test(() => { 5 assert_throws_dom('SyntaxError', () => { new EventSource("http://this is invalid/"); }); 6 }); 7 8 done();