tor-browser

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

browser_sanityException2.js (249B)


      1 function test() {
      2  waitForExplicitFinish();
      3  ok(true, "ok called");
      4  executeSoon(function () {
      5    expectUncaughtException();
      6    throw new Error("this is a deliberately thrown exception");
      7  });
      8  executeSoon(function () {
      9    finish();
     10  });
     11 }