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_progress_keyword_search_handling.js | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 browser/base/content/test/tabs/browser_progress_keyword_search_handling.js (limited to 'browser/base/content/test/tabs/browser_progress_keyword_search_handling.js') diff --git a/browser/base/content/test/tabs/browser_progress_keyword_search_handling.js b/browser/base/content/test/tabs/browser_progress_keyword_search_handling.js new file mode 100644 index 0000000000..648cda9332 --- /dev/null +++ b/browser/base/content/test/tabs/browser_progress_keyword_search_handling.js @@ -0,0 +1,91 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +const { SearchTestUtils } = ChromeUtils.importESModule( + "resource://testing-common/SearchTestUtils.sys.mjs" +); + +SearchTestUtils.init(this); + +const kButton = document.getElementById("reload-button"); + +add_setup(async function () { + await SpecialPowers.pushPrefEnv({ + set: [["browser.fixup.dns_first_for_single_words", true]], + }); + + // Create an engine to use for the test. + await SearchTestUtils.installSearchExtension( + { + name: "MozSearch", + search_url: "https://example.com/", + search_url_get_params: "q={searchTerms}", + }, + { setAsDefault: true } + ); +}); + +/* + * When loading a keyword search as a result of an unknown host error, + * check that we can stop the load. + * See https://bugzilla.mozilla.org/show_bug.cgi?id=235825 + */ +add_task(async function test_unknown_host() { + await BrowserTestUtils.withNewTab("about:blank", async browser => { + const kNonExistingHost = "idontreallyexistonthisnetwork"; + let searchPromise = BrowserTestUtils.browserStarted( + browser, + Services.uriFixup.keywordToURI(kNonExistingHost).preferredURI.spec + ); + + gURLBar.value = kNonExistingHost; + gURLBar.select(); + EventUtils.synthesizeKey("KEY_Enter"); + + await searchPromise; + // With parent initiated loads, we need to give XULBrowserWindow + // time to process the STATE_START event and set the attribute to true. + await new Promise(resolve => executeSoon(resolve)); + + ok(kButton.hasAttribute("displaystop"), "Should be showing stop"); + + await TestUtils.waitForCondition( + () => !kButton.hasAttribute("displaystop") + ); + ok( + !kButton.hasAttribute("displaystop"), + "Should no longer be showing stop after search" + ); + }); +}); + +/* + * When NOT loading a keyword search as a result of an unknown host error, + * check that the stop button goes back to being a reload button. + * See https://bugzilla.mozilla.org/show_bug.cgi?id=1591183 + */ +add_task(async function test_unknown_host_without_search() { + await BrowserTestUtils.withNewTab("about:blank", async browser => { + const kNonExistingHost = "idontreallyexistonthisnetwork.example.com"; + let searchPromise = BrowserTestUtils.browserLoaded( + browser, + false, + // eslint-disable-next-line @microsoft/sdl/no-insecure-url + "http://" + kNonExistingHost + "/", + true /* want an error page */ + ); + gURLBar.value = kNonExistingHost; + gURLBar.select(); + EventUtils.synthesizeKey("KEY_Enter"); + await searchPromise; + await TestUtils.waitForCondition( + () => !kButton.hasAttribute("displaystop") + ); + ok( + !kButton.hasAttribute("displaystop"), + "Should not be showing stop on error page" + ); + }); +}); -- cgit v1.2.3