tor-browser

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

browser_private_no_prompt.js (316B)


      1 function test() {
      2  waitForExplicitFinish();
      3  var privateWin = OpenBrowserWindow({ private: true });
      4 
      5  whenDelayedStartupFinished(privateWin, function () {
      6    privateWin.BrowserCommands.openTab();
      7    privateWin.BrowserCommands.tryToCloseWindow();
      8    ok(true, "didn't prompt");
      9 
     10    executeSoon(finish);
     11  });
     12 }