fune/browser/base/content/test/general/browser_bug565575.js
Victor Porof f9f5914039 Bug 1561435 - Format browser/base/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36041

--HG--
extra : source : 96b3895a3b2aa2fcb064c85ec5857b7216884556
2019-07-05 09:48:57 +02:00

21 lines
577 B
JavaScript

add_task(async function() {
gBrowser.selectedBrowser.focus();
await BrowserTestUtils.openNewForegroundTab(
gBrowser,
() => BrowserOpenTab(),
false
);
ok(gURLBar.focused, "location bar is focused for a new tab");
await BrowserTestUtils.switchTab(gBrowser, gBrowser.tabs[0]);
ok(
!gURLBar.focused,
"location bar isn't focused for the previously selected tab"
);
await BrowserTestUtils.switchTab(gBrowser, gBrowser.tabs[1]);
ok(gURLBar.focused, "location bar is re-focused when selecting the new tab");
gBrowser.removeCurrentTab();
});