summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_private_no_prompt.js
blob: d8c9f8e7b57f9288a116276fc0c5a8378fe5212f (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);
  });
}