tor-browser

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

browser_async.js (201B)


      1 function test() {
      2  waitForExplicitFinish();
      3  function done() {
      4    ok(true, "timeout ran");
      5    finish();
      6  }
      7  // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
      8  setTimeout(done, 500);
      9 }