tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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();