forked from mirrors/gecko-dev
MozReview-Commit-ID: 7E7LPorrEje --HG-- extra : rebase_source : 0572a35415a766a3f31d266760ecd07f0dcc3f72
15 lines
648 B
JavaScript
15 lines
648 B
JavaScript
add_task(function*() {
|
|
let tab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, "about:mozilla");
|
|
|
|
let uri = NetUtil.newURI("http://bug1060642.example.com/beards/are/pretty/great");
|
|
yield PlacesTestUtils.addVisits([{uri, title: ""}]);
|
|
|
|
yield promiseAutocompleteResultPopup("bug1060642");
|
|
ok(gURLBar.popup.richlistbox.children.length > 1, "Should get at least 2 results");
|
|
let result = gURLBar.popup.richlistbox.children[1];
|
|
is(result._titleText.textContent, "bug1060642.example.com", "Result title should be as expected");
|
|
|
|
gURLBar.popup.hidePopup();
|
|
yield promisePopupHidden(gURLBar.popup);
|
|
gBrowser.removeTab(tab);
|
|
});
|