tor-browser

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

eventsource-constructor-no-new.any.js (155B)


      1 test(function() {
      2  assert_throws_js(TypeError,
      3  function() {
      4    EventSource('');
      5  },
      6  "Calling EventSource constructor without 'new' must throw");
      7 })