tor-browser

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

browser_requestLongerTimeout.js (236B)


      1 function test() {
      2  requestLongerTimeout(2);
      3  function end() {
      4    ok(true, "should not time out");
      5    finish();
      6  }
      7  waitForExplicitFinish();
      8  // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
      9  setTimeout(end, 40000);
     10 }