summaryrefslogtreecommitdiffstats
path: root/browser/components/privatebrowsing/test/browser/browser_privatebrowsing_nonbrowser.js
blob: 24586d7464f3acd673e960f504e87c8891cfa005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"use strict";

/**
 * Tests that we fire the last-pb-context-exited observer notification
 * when the last private browsing window closes, even if a chrome window
 * was opened from that private browsing window.
 */
add_task(async function () {
  let win = await BrowserTestUtils.openNewBrowserWindow({ private: true });
  let chromeWin = win.open(
    "chrome://browser/content/places/places.xhtml",
    "_blank",
    "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar"
  );
  await BrowserTestUtils.waitForEvent(chromeWin, "load");
  let obsPromise = TestUtils.topicObserved("last-pb-context-exited");
  await BrowserTestUtils.closeWindow(win);
  await obsPromise;
  Assert.ok(true, "Got the last-pb-context-exited notification");
  chromeWin.close();
});