forked from mirrors/gecko-dev
17 lines
595 B
JavaScript
17 lines
595 B
JavaScript
add_task(async function() {
|
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, "about:mozilla");
|
|
await promiseAutocompleteResultPopup("www.mozilla.org");
|
|
|
|
gURLBar.selectTextRange(4, 4);
|
|
|
|
is(gURLBar.popup.state, "open", "Popup should be open");
|
|
is(gURLBar.popup.richlistbox.selectedIndex, 0, "Should have selected something");
|
|
|
|
EventUtils.synthesizeKey("VK_RIGHT", {});
|
|
await promisePopupHidden(gURLBar.popup);
|
|
|
|
is(gURLBar.selectionStart, 5, "Should have moved the cursor");
|
|
is(gURLBar.selectionEnd, 5, "And not selected anything");
|
|
|
|
gBrowser.removeTab(tab);
|
|
});
|