mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-04-20 14:16:49 +00:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
add_task(function*() {
|
|
yield PlacesTestUtils.clearHistory();
|
|
|
|
yield PlacesTestUtils.addVisits([
|
|
{ uri: makeURI("http://example.com/foo") },
|
|
{ uri: makeURI("http://example.com/foo/bar") },
|
|
]);
|
|
|
|
Services.prefs.setBoolPref("browser.urlbar.unifiedcomplete", true);
|
|
yield* do_test();
|
|
Services.prefs.setBoolPref("browser.urlbar.unifiedcomplete", false);
|
|
yield* do_test();
|
|
});
|
|
|
|
registerCleanupFunction(function* () {
|
|
Services.prefs.clearUserPref("browser.urlbar.unifiedcomplete");
|
|
yield PlacesTestUtils.clearHistory();
|
|
});
|
|
|
|
function* do_test() {
|
|
gBrowser.selectedTab = gBrowser.addTab("about:blank");
|
|
gURLBar.focus();
|
|
|
|
yield promiseAutocompleteResultPopup("http://example.com");
|
|
|
|
let popup = gURLBar.popup;
|
|
let list = popup.richlistbox;
|
|
let initialIndex = list.selectedIndex;
|
|
|
|
info("Key Down to select the next item.");
|
|
EventUtils.synthesizeKey("VK_DOWN", {});
|
|
|
|
let nextIndex = initialIndex + 1;
|
|
let nextValue = gURLBar.controller.getFinalCompleteValueAt(nextIndex);
|
|
is(list.selectedIndex, nextIndex, "The next item is selected.");
|
|
is(gURLBar.value, nextValue, "The selected URL is completed.");
|
|
|
|
info("Press backspace");
|
|
EventUtils.synthesizeKey("VK_BACK_SPACE", {});
|
|
yield promiseSearchComplete();
|
|
|
|
let editedValue = gURLBar.value;
|
|
is(list.selectedIndex, initialIndex, "The initial index is selected again.");
|
|
isnot(editedValue, nextValue, "The URL has changed.");
|
|
|
|
info("Press return to load edited URL.");
|
|
EventUtils.synthesizeKey("VK_RETURN", {});
|
|
yield Promise.all([
|
|
promisePopupHidden(gURLBar.popup),
|
|
waitForDocLoadAndStopIt("http://" + editedValue)]);
|
|
|
|
gBrowser.removeTab(gBrowser.selectedTab);
|
|
}
|