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 --- .../browser_opened_file_tab_navigated_to_web.js | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 browser/base/content/test/tabs/browser_opened_file_tab_navigated_to_web.js (limited to 'browser/base/content/test/tabs/browser_opened_file_tab_navigated_to_web.js') diff --git a/browser/base/content/test/tabs/browser_opened_file_tab_navigated_to_web.js b/browser/base/content/test/tabs/browser_opened_file_tab_navigated_to_web.js new file mode 100644 index 0000000000..e6b30a207d --- /dev/null +++ b/browser/base/content/test/tabs/browser_opened_file_tab_navigated_to_web.js @@ -0,0 +1,56 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set ft=javascript ts=2 et sw=2 tw=80: */ + +const TEST_FILE = "dummy_page.html"; +// eslint-disable-next-line @microsoft/sdl/no-insecure-url +const WEB_ADDRESS = "http://example.org/"; + +// Test for bug 1321020. +add_task(async function () { + let dir = getChromeDir(getResolvedURI(gTestPath)); + dir.append(TEST_FILE); + + // The file can be a symbolic link on local build. Normalize it to make sure + // the path matches to the actual URI opened in the new tab. + dir.normalize(); + + const uriString = Services.io.newFileURI(dir).spec; + const openedUriString = uriString + "?opened"; + + // Open first file:// page. + let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, uriString); + registerCleanupFunction(async function () { + BrowserTestUtils.removeTab(tab); + }); + + // Open new file:// tab from JavaScript in first file:// page. + let promiseTabOpened = BrowserTestUtils.waitForNewTab( + gBrowser, + openedUriString, + true + ); + await SpecialPowers.spawn(tab.linkedBrowser, [openedUriString], uri => { + content.open(uri, "_blank"); + }); + + let openedTab = await promiseTabOpened; + registerCleanupFunction(async function () { + BrowserTestUtils.removeTab(openedTab); + }); + + let openedBrowser = openedTab.linkedBrowser; + + // Ensure that new file:// tab can be navigated to web content. + // eslint-disable-next-line @microsoft/sdl/no-insecure-url + BrowserTestUtils.loadURIString(openedBrowser, "http://example.org/"); + let href = await BrowserTestUtils.browserLoaded( + openedBrowser, + false, + WEB_ADDRESS + ); + is( + href, + WEB_ADDRESS, + "Check that new file:// page has navigated successfully to web content" + ); +}); -- cgit v1.2.3