blob: c3cdf507f772e614ab328bc84644cc2073836ef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"use strict";
/**
* Disable keyword.enabled (so no keyword search), and check that when you type in
* "example" and hit enter, the browser loads and the URL bar is updated accordingly.
*/
add_task(function* () {
yield new Promise(resolve => SpecialPowers.pushPrefEnv({set: [["keyword.enabled", false]]}, resolve));
yield BrowserTestUtils.withNewTab({ gBrowser, url: "about:blank" }, function* (browser) {
gURLBar.value = "example";
gURLBar.select();
let loadPromise = BrowserTestUtils.browserLoaded(browser, false, url => url == "http://www.example.com/");
EventUtils.sendKey("return");
yield loadPromise;
is(gURLBar.textValue, "www.example.com");
});
});
|