forked from mirrors/gecko-dev
In order to support this, a new "findbarclose" event (mirroring the pre-existing "findbaropen" one) was added to the `MozFindbar.close` method in the findbar.js file.
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Tests find bar auto-close behavior
|
|
|
|
const TEST_PATH = getRootDirectory(gTestPath).replace("chrome://mochitests/content", "https://example.com");
|
|
|
|
add_task(async function findbar_test() {
|
|
let newTab = BrowserTestUtils.addTab(gBrowser, "about:blank");
|
|
gBrowser.selectedTab = newTab;
|
|
|
|
let url = TEST_PATH + "test_bug628179.html";
|
|
let promise = BrowserTestUtils.browserLoaded(newTab.linkedBrowser, false, url);
|
|
BrowserTestUtils.loadURI(newTab.linkedBrowser, url);
|
|
await promise;
|
|
|
|
await gFindBarPromise;
|
|
gFindBar.open();
|
|
|
|
await new ContentTask.spawn(newTab.linkedBrowser, null, async function() {
|
|
let iframe = content.document.getElementById("iframe");
|
|
let awaitLoad = ContentTaskUtils.waitForEvent(iframe, "load", false);
|
|
iframe.src = "https://example.org/";
|
|
await awaitLoad;
|
|
});
|
|
|
|
ok(!gFindBar.hidden, "the Find bar isn't hidden after the location of a " +
|
|
"subdocument changes");
|
|
|
|
let findBarClosePromise = promiseWaitForEvent(gBrowser, "findbarclose");
|
|
gFindBar.close();
|
|
await findBarClosePromise;
|
|
|
|
gBrowser.removeTab(newTab);
|
|
});
|
|
|