mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
857 B
JavaScript
31 lines
857 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
let tab = gBrowser.addTab();
|
|
gBrowser.selectedTab = tab;
|
|
|
|
function observer(subject, topic, data) {
|
|
Services.obs.removeObserver(observer, "keyword-search");
|
|
is(topic, "keyword-search", "Got keyword-search notification");
|
|
|
|
let engine = Services.search.defaultEngine;
|
|
ok(engine, "Have default search engine.");
|
|
is(engine, subject, "Notification subject is engine.");
|
|
is("firefox health report", data, "Notification data is search term.");
|
|
|
|
executeSoon(function cleanup() {
|
|
gBrowser.removeTab(tab);
|
|
finish();
|
|
});
|
|
}
|
|
|
|
Services.obs.addObserver(observer, "keyword-search", false);
|
|
|
|
gURLBar.value = "firefox health report";
|
|
gURLBar.handleCommand();
|
|
}
|
|
|