From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../contextualidentity/tests/browser/browser.toml | 3 + .../tests/browser/browser_closeContainerTabs.js | 81 ++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 toolkit/components/contextualidentity/tests/browser/browser.toml create mode 100644 toolkit/components/contextualidentity/tests/browser/browser_closeContainerTabs.js (limited to 'toolkit/components/contextualidentity/tests/browser') diff --git a/toolkit/components/contextualidentity/tests/browser/browser.toml b/toolkit/components/contextualidentity/tests/browser/browser.toml new file mode 100644 index 0000000000..0678c38171 --- /dev/null +++ b/toolkit/components/contextualidentity/tests/browser/browser.toml @@ -0,0 +1,3 @@ +[DEFAULT] + +["browser_closeContainerTabs.js"] diff --git a/toolkit/components/contextualidentity/tests/browser/browser_closeContainerTabs.js b/toolkit/components/contextualidentity/tests/browser/browser_closeContainerTabs.js new file mode 100644 index 0000000000..16fa28e306 --- /dev/null +++ b/toolkit/components/contextualidentity/tests/browser/browser_closeContainerTabs.js @@ -0,0 +1,81 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +const { PromptTestUtils } = ChromeUtils.importESModule( + "resource://testing-common/PromptTestUtils.sys.mjs" +); + +const BUILDER_URL = "https://example.com/document-builder.sjs?html="; +const PAGE_MARKUP = ` + + + + +TEST PAGE + +`; +const TEST_URL = BUILDER_URL + encodeURI(PAGE_MARKUP); + +add_task(async function test_skipPermitUnload() { + await SpecialPowers.pushPrefEnv({ + set: [["dom.require_user_interaction_for_beforeunload", false]], + }); + + info("Create a test user context"); + const userContextId = ContextualIdentityService.create("test").userContextId; + + // Run tests in a new window to avoid affecting the main test window. + const win = await BrowserTestUtils.openNewBrowserWindow(); + registerCleanupFunction(async () => { + await BrowserTestUtils.closeWindow(win); + }); + + info("Create a tab owned by the test user context"); + const tab = await BrowserTestUtils.addTab(win.gBrowser, TEST_URL, { + userContextId, + }); + registerCleanupFunction(() => win.gBrowser.removeTab(tab)); + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + + info("Call closeContainerTabs without skipPermitUnload"); + const unloadDialogPromise = PromptTestUtils.handleNextPrompt( + tab.linkedBrowser, + { + modalType: Ci.nsIPrompt.MODAL_TYPE_CONTENT, + promptType: "confirmEx", + }, + // Click the cancel button. + { buttonNumClick: 1 } + ); + + const tabCountBeforeClose = win.gBrowser.tabs.length; + ContextualIdentityService.closeContainerTabs(userContextId); + + info("Wait for the unload dialog"); + await unloadDialogPromise; + is( + win.gBrowser.tabs.length, + tabCountBeforeClose, + "Tab was not closed because of the before unload prompt" + ); + + info("Call closeContainerTabs with skipPermitUnload"); + const closePromise = BrowserTestUtils.waitForTabClosing(tab); + ContextualIdentityService.closeContainerTabs(userContextId, { + skipPermitUnload: true, + }); + + info("Wait for the tab to be closed"); + await closePromise; + is( + win.gBrowser.tabs.length, + tabCountBeforeClose - 1, + "Tab was closed after ignoring the before unload prompt" + ); +}); -- cgit v1.2.3