tor-browser

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

eventsource-constructor-url-bogus.js (171B)


      1 try {
      2  var source = new EventSource("http://this is invalid/")
      3  postMessage([false, 'no exception thrown'])
      4  source.close()
      5 } catch(e) {
      6  postMessage([true, e.code])
      7 }