summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_private_no_prompt.js
blob: bf27fc18e17a7a01214ce369094b755a3d4f5609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function test() {
  waitForExplicitFinish();
  var privateWin = OpenBrowserWindow({ private: true });

  whenDelayedStartupFinished(privateWin, function() {
    privateWin.BrowserOpenTab();
    privateWin.BrowserTryToCloseWindow();
    ok(true, "didn't prompt");

    executeSoon(finish);
  });
}