mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic changes by ESLint, except for manual corrections for .xml files. Differential Revision: https://phabricator.services.mozilla.com/D4439 --HG-- extra : moz-landing-system : lando
60 lines
2.1 KiB
JavaScript
60 lines
2.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
add_task(async function() {
|
|
const url = "data:text/html;base64," +
|
|
btoa("<body><iframe srcdoc=\"content\"/></iframe>" +
|
|
"<a href=\"http://test.com\">test link</a>");
|
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, url);
|
|
|
|
let finder = tab.linkedBrowser.finder;
|
|
let listener = {
|
|
onFindResult() {
|
|
ok(false, "onFindResult callback wasn't replaced");
|
|
},
|
|
onHighlightFinished() {
|
|
ok(false, "onHighlightFinished callback wasn't replaced");
|
|
},
|
|
};
|
|
finder.addResultListener(listener);
|
|
|
|
function waitForFind(which = "onFindResult") {
|
|
return new Promise(resolve => {
|
|
listener[which] = resolve;
|
|
});
|
|
}
|
|
|
|
let promiseFind = waitForFind("onHighlightFinished");
|
|
finder.highlight(true, "content");
|
|
let findResult = await promiseFind;
|
|
Assert.ok(findResult.found, "should find string");
|
|
|
|
promiseFind = waitForFind("onHighlightFinished");
|
|
finder.highlight(true, "Bla");
|
|
findResult = await promiseFind;
|
|
Assert.ok(!findResult.found, "should not find string");
|
|
|
|
// Search only for links and draw outlines.
|
|
promiseFind = waitForFind();
|
|
finder.fastFind("test link", true, true);
|
|
findResult = await promiseFind;
|
|
is(findResult.result, Ci.nsITypeAheadFind.FIND_FOUND, "should find link");
|
|
|
|
await ContentTask.spawn(tab.linkedBrowser, {}, async function(arg) {
|
|
Assert.ok(!!content.document.getElementsByTagName("a")[0].style.outline, "outline set");
|
|
});
|
|
|
|
// Just a simple search for "test link".
|
|
promiseFind = waitForFind();
|
|
finder.fastFind("test link", false, false);
|
|
findResult = await promiseFind;
|
|
is(findResult.result, Ci.nsITypeAheadFind.FIND_FOUND, "should find link again");
|
|
|
|
await ContentTask.spawn(tab.linkedBrowser, {}, async function(arg) {
|
|
Assert.ok(!content.document.getElementsByTagName("a")[0].style.outline, "outline not set");
|
|
});
|
|
|
|
finder.removeResultListener(listener);
|
|
gBrowser.removeTab(tab);
|
|
});
|