From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../test/popups/browser_popup_close_main_window.js | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 browser/base/content/test/popups/browser_popup_close_main_window.js (limited to 'browser/base/content/test/popups/browser_popup_close_main_window.js') diff --git a/browser/base/content/test/popups/browser_popup_close_main_window.js b/browser/base/content/test/popups/browser_popup_close_main_window.js new file mode 100644 index 0000000000..148e937bca --- /dev/null +++ b/browser/base/content/test/popups/browser_popup_close_main_window.js @@ -0,0 +1,84 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +function muffleMainWindowType() { + let oldWinType = document.documentElement.getAttribute("windowtype"); + // Check if we've already done this to allow calling multiple times: + if (oldWinType != "navigator:testrunner") { + // Make the main test window not count as a browser window any longer + document.documentElement.setAttribute("windowtype", "navigator:testrunner"); + + registerCleanupFunction(() => { + document.documentElement.setAttribute("windowtype", oldWinType); + }); + } +} + +/** + * Check that if we close the 1 remaining window, we treat it as quitting on + * non-mac. + * + * Sets the window type for the main browser test window to something else to + * avoid having to actually close the main browser window. + */ +add_task(async function closing_last_window_equals_quitting() { + if (navigator.platform.startsWith("Mac")) { + ok(true, "Not testing on mac"); + return; + } + muffleMainWindowType(); + + let observed = 0; + function obs() { + observed++; + } + Services.obs.addObserver(obs, "browser-lastwindow-close-requested"); + let newWin = await BrowserTestUtils.openNewBrowserWindow(); + let closedPromise = BrowserTestUtils.windowClosed(newWin); + newWin.BrowserTryToCloseWindow(); + await closedPromise; + is(observed, 1, "Got a notification for closing the normal window."); + Services.obs.removeObserver(obs, "browser-lastwindow-close-requested"); +}); + +/** + * Check that if we close the 1 remaining window and also have a popup open, + * we don't treat it as quitting. + * + * Sets the window type for the main browser test window to something else to + * avoid having to actually close the main browser window. + */ +add_task(async function closing_last_window_equals_quitting() { + if (navigator.platform.startsWith("Mac")) { + ok(true, "Not testing on mac"); + return; + } + muffleMainWindowType(); + let observed = 0; + function obs() { + observed++; + } + Services.obs.addObserver(obs, "browser-lastwindow-close-requested"); + let newWin = await BrowserTestUtils.openNewBrowserWindow(); + let popupPromise = BrowserTestUtils.waitForNewWindow("https://example.com/"); + SpecialPowers.spawn(newWin.gBrowser.selectedBrowser, [], function () { + content.open("https://example.com/", "_blank", "height=500"); + }); + let popupWin = await popupPromise; + let closedPromise = BrowserTestUtils.windowClosed(newWin); + newWin.BrowserTryToCloseWindow(); + await closedPromise; + is(observed, 0, "Got no notification for closing the normal window."); + + closedPromise = BrowserTestUtils.windowClosed(popupWin); + popupWin.BrowserTryToCloseWindow(); + await closedPromise; + is( + observed, + 0, + "Got no notification now that we're closing the last window, as it's a popup." + ); + Services.obs.removeObserver(obs, "browser-lastwindow-close-requested"); +}); -- cgit v1.2.3