forked from mirrors/gecko-dev
MozReview-Commit-ID: CxhKsIXnPxj --HG-- extra : rebase_source : 158631cd0b0dac610a5f89dd48b3b13e64ed0c6f extra : source : f6062f1139114f586e3ea9f6d946766f63dedb1d
19 lines
751 B
JavaScript
19 lines
751 B
JavaScript
"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(function* () {
|
|
let win = yield BrowserTestUtils.openNewBrowserWindow({private: true});
|
|
let chromeWin = win.open("chrome://browser/content/places/places.xul", "_blank",
|
|
"chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar");
|
|
yield BrowserTestUtils.waitForEvent(chromeWin, "load");
|
|
let obsPromise = TestUtils.topicObserved("last-pb-context-exited");
|
|
yield BrowserTestUtils.closeWindow(win);
|
|
yield obsPromise;
|
|
Assert.ok(true, "Got the last-pb-context-exited notification");
|
|
chromeWin.close();
|
|
});
|
|
|