tor-browser

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

browser_zz_fail_openwindow.js (283B)


      1 function test() {
      2  waitForExplicitFinish();
      3  function done() {
      4    ok(true, "timeout ran");
      5    finish();
      6  }
      7 
      8  ok(OpenBrowserWindow(), "opened browser window");
      9  // and didn't close it!
     10 
     11  // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
     12  setTimeout(done, 10000);
     13 }