Files
sousa-gecko/browser/base/content/test/keyboard/browser_toolbarKeyNav.js
T
Dão Gottwald 75869655de Bug 2062823 - Let Tab land on the search input rather than the search button, behind a Nightly-only pref. r=daleharvey,Jamie,urlbar-reviewers
The search button declines to be the target of the toolbar tab stop in front
of the address bar and the search bar, so that Tab lands on the input and the
button is reached with Shift+Tab from there. In the address bar, forward
tabbing consequently stops on the first site information button, so the number
of stops before the input is unchanged.

The resulting tab order is asymmetric, which a11y review accepted while noting
that we may need to reconsider if users push back, so this is behind
browser.urlbar.searchModeSwitcher.skipTabStop, enabled on Nightly only.

The button's markup carries tabindex="-1", but the toolbar tab stop and the
view-open Tab cycle both treated it as an ordinary toolbar button, setting a
tabindex and removing it again on blur. Removing it from the moz-button host
is what left the button permanently tabbable. Both now leave the button's own
tabindex alone, which is a fix under either pref value and so isn't gated.

Differential Revision: https://phabricator.services.mozilla.com/D317259
2026-08-17 09:49:17 +00:00

826 lines
30 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
requestLongerTimeout(2);
/**
* Test browser toolbar keyboard navigation.
* These tests assume the default browser configuration for toolbars unless
* otherwise specified.
*/
const { CustomizableUITestUtils } = ChromeUtils.importESModule(
"resource://testing-common/CustomizableUITestUtils.sys.mjs"
);
let gCUITestUtils = new CustomizableUITestUtils(window);
const FirefoxViewTestUtils = ChromeUtils.importESModule(
"resource://testing-common/FirefoxViewTestUtils.sys.mjs"
);
FirefoxViewTestUtils.init(this);
const PERMISSIONS_PAGE =
"https://example.com/browser/browser/base/content/test/permissions/permissions.html";
const afterUrlBarButton = "fxa-toolbar-menu-button";
const sidebarRevampEnabled = Services.prefs.getBoolPref(
"sidebar.revamp",
false
);
// The DevEdition has the DevTools button in the toolbar by default. Remove it
// to prevent branch-specific rules what button should be focused.
function resetToolbarWithoutDevEditionButtons() {
CustomizableUI.reset();
CustomizableUI.removeWidgetFromArea("developer-button");
}
function AddHomeBesideReload() {
CustomizableUI.addWidgetToArea(
"home-button",
"nav-bar",
CustomizableUI.getPlacementOfWidget("stop-reload-button").position + 1
);
}
function RemoveHomeButton() {
CustomizableUI.removeWidgetFromArea("home-button");
}
function AddOldMenuSideButtons() {
// Make the FxA button visible even though we're signed out.
// We'll use oldfxastatus to restore the old state.
document.documentElement.setAttribute(
"oldfxastatus",
document.documentElement.getAttribute("fxastatus")
);
document.documentElement.setAttribute("fxastatus", "signed_in");
// The FxA button is supposed to be last, add these buttons before it.
CustomizableUI.addWidgetToArea(
"library-button",
"nav-bar",
CustomizableUI.getWidgetIdsInArea("nav-bar").length - 3
);
if (!sidebarRevampEnabled) {
CustomizableUI.addWidgetToArea(
"sidebar-button",
"nav-bar",
CustomizableUI.getWidgetIdsInArea("nav-bar").length - 3
);
}
CustomizableUI.addWidgetToArea(
"unified-extensions-button",
"nav-bar",
CustomizableUI.getWidgetIdsInArea("nav-bar").length - 3
);
}
function RemoveOldMenuSideButtons() {
CustomizableUI.removeWidgetFromArea("library-button");
if (!sidebarRevampEnabled) {
CustomizableUI.removeWidgetFromArea("sidebar-button");
}
document.documentElement.setAttribute(
"fxastatus",
document.documentElement.getAttribute("oldfxastatus")
);
document.documentElement.removeAttribute("oldfxastatus");
}
function startFromUrlBar(aWindow = window) {
aWindow.gURLBar.focus();
is(
aWindow.document.activeElement,
aWindow.gURLBar.inputField,
"URL bar focused for start of test"
);
}
// The Reload button is disabled for a short time even after the page finishes
// loading. Wait for it to be enabled.
async function waitUntilReloadEnabled() {
let button = document.getElementById("reload-button");
await TestUtils.waitForCondition(() => !button.disabled);
}
// Opens a new, blank tab, executes a task and closes the tab.
function withNewBlankTab(taskFn) {
return BrowserTestUtils.withNewTab("about:blank", async function () {
// For a blank tab, the Reload button should be disabled. However, when we
// open about:blank with BrowserTestUtils.withNewTab, this is unreliable.
// Therefore, explicitly disable the reload command.
// We disable the command (rather than disabling the button directly) so the
// button will be updated correctly for future page loads.
document.getElementById("Browser:Reload").setAttribute("disabled", "true");
await taskFn();
});
}
function removeFirefoxViewButton() {
CustomizableUI.removeWidgetFromArea("firefox-view-button");
}
const BOOKMARKS_COUNT = 100;
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [
["test.wait300msAfterTabSwitch", true],
["browser.urlbar.trustPanel.featureGate", true],
["browser.toolbars.keyboard_navigation", true],
["accessibility.tabfocus", 7],
// Taskbar Tabs' page action is controlled by a pref that differs across
// platforms and by runtime checks. Patching around it is currently
// onorous and creates issues with existing tests without improving test
// coverage, so disable it herein.
["browser.taskbarTabs.enabled", false],
// The tab stops these tests walk are otherwise channel-dependent. The
// skipping variant is covered by testTabStopsSkippingSearchButton.
["browser.urlbar.searchModeSwitcher.skipTabStop", false],
],
});
resetToolbarWithoutDevEditionButtons();
await PlacesUtils.bookmarks.eraseEverything();
// Add bookmarks.
let bookmarks = new Array(BOOKMARKS_COUNT);
for (let i = 0; i < BOOKMARKS_COUNT; ++i) {
// eslint-disable-next-line sdl/no-insecure-url
bookmarks[i] = { url: `http://test.places.${i}y/` };
}
await PlacesUtils.bookmarks.insertTree({
guid: PlacesUtils.bookmarks.toolbarGuid,
children: bookmarks,
});
await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.toolbarGuid,
title: "Test",
url: "https://example.com",
});
// Make sure the sidebar launcher is visible (when sidebar.revamp is true);
// previous tests might have hidden it.
await SidebarController.updateUIState({ launcherVisible: true });
});
// Test tab stops with no page loaded.
add_task(async function testTabStopsNoPageWithHomeButton() {
AddHomeBesideReload();
await withNewBlankTab(async function () {
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "home-button");
} else {
await expectFocusAfterKey("Shift+Tab", "home-button");
}
await expectFocusAfterKey("Shift+Tab", "tabs-newtab-button");
await expectFocusAfterKey("Shift+Tab", gBrowser.selectedTab);
await expectFocusAfterKey("Tab", "tabs-newtab-button");
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "home-button");
} else {
await expectFocusAfterKey("Tab", "home-button");
}
await expectFocusAfterKey(
"Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("Tab", gURLBar.inputField);
await expectFocusAfterKey("Tab", afterUrlBarButton);
if (sidebarRevampEnabled) {
let sidebar = document.querySelector("sidebar-main");
await expectFocusAfterKey("Tab", sidebar.toolButtons[0]);
await expectFocusAfterKey("Tab", sidebar.customizeButton);
}
await expectFocusAfterKey("Tab", gBrowser.selectedBrowser);
});
RemoveHomeButton();
});
async function doTestTabStopsPageLoaded(aPageActionsVisible) {
info(`doTestTabStopsPageLoaded(${aPageActionsVisible})`);
BrowserPageActions.mainButtonNode.style.display = aPageActionsVisible
? "flex"
: "none";
await BrowserTestUtils.withNewTab("https://example.com", async function () {
let sidebar = document.querySelector("sidebar-main");
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "reload-button");
} else {
await expectFocusAfterKey("Shift+Tab", "reload-button");
}
await expectFocusAfterKey("Shift+Tab", "tabs-newtab-button");
await expectFocusAfterKey("Shift+Tab", gBrowser.selectedTab);
await expectFocusAfterKey("Tab", "tabs-newtab-button");
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "reload-button");
} else {
await expectFocusAfterKey("Tab", "reload-button");
}
await expectFocusAfterKey(
"Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("Tab", gURLBar.inputField);
await expectFocusAfterKey(
"Tab",
aPageActionsVisible ? "pageActionButton" : "star-button-box"
);
await expectFocusAfterKey("Tab", afterUrlBarButton);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Tab", sidebar.toolButtons[0]);
await expectFocusAfterKey("Tab", sidebar.customizeButton);
}
await expectFocusAfterKey("Tab", gBrowser.selectedBrowser);
});
BrowserPageActions.mainButtonNode.style.removeProperty("display");
}
// Test tab stops with a page loaded.
add_task(async function testTabStopsPageLoaded() {
await doTestTabStopsPageLoaded(false);
await doTestTabStopsPageLoaded(true);
});
// Test tab stops with the search button declining to be one.
add_task(async function testTabStopsSkippingSearchButton() {
await SpecialPowers.pushPrefEnv({
set: [["browser.urlbar.searchModeSwitcher.skipTabStop", true]],
});
const searchButton = "#urlbar-container .searchmode-switcher";
AddHomeBesideReload();
await withNewBlankTab(async function () {
startFromUrlBar();
await expectFocusAfterKey("Shift+Tab", searchButton, true);
await expectFocusAfterKey("Tab", gURLBar.inputField);
await expectFocusAfterKey("Shift+Tab", searchButton, true);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "home-button");
} else {
await expectFocusAfterKey("Shift+Tab", "home-button");
}
await expectFocusAfterKey("Tab", gURLBar.inputField);
});
RemoveHomeButton();
await BrowserTestUtils.withNewTab("https://example.com", async function () {
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey("Shift+Tab", searchButton, true);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "reload-button");
} else {
await expectFocusAfterKey("Shift+Tab", "reload-button");
}
// The first site information button takes the tab stop the search button
// declined.
await expectFocusAfterKey("Tab", "trust-icon-container");
await expectFocusAfterKey("Tab", gURLBar.inputField);
});
await SpecialPowers.popPrefEnv();
});
// Test tab stops with a notification anchor visible.
// The notification anchor should not get its own tab stop.
add_task(async function testTabStopsWithNotification() {
await BrowserTestUtils.withNewTab(
PERMISSIONS_PAGE,
async function (aBrowser) {
let popupShown = BrowserTestUtils.waitForEvent(
PopupNotifications.panel,
"popupshown"
);
// Request a permission.
BrowserTestUtils.synthesizeMouseAtCenter("#geo", {}, aBrowser);
await popupShown;
startFromUrlBar();
// If the notification anchor were in the tab order, the next shift+tab
// would focus it instead of the expected element.
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
}
);
});
// Test tab stops with the Bookmarks toolbar visible.
add_task(async function testTabStopsWithBookmarksToolbarVisible() {
await BrowserTestUtils.withNewTab("about:blank", async function () {
CustomizableUI.setToolbarVisibility("PersonalToolbar", true);
await TestUtils.waitForCondition(() => {
return !document
.getElementById("PersonalToolbar")
.hasAttribute("collapsed");
});
startFromUrlBar();
await expectFocusAfterKey("Tab", afterUrlBarButton);
await expectFocusAfterKey("Tab", "PersonalToolbar", true);
if (sidebarRevampEnabled) {
let sidebar = document.querySelector("sidebar-main");
await expectFocusAfterKey("Tab", sidebar.toolButtons[0]);
await expectFocusAfterKey("Tab", sidebar.customizeButton);
}
await expectFocusAfterKey("Tab", gBrowser.selectedBrowser);
});
});
// Test tab stops with the Bookmarks toolbar hidden.
add_task(async function testTabStopsWithBookmarksToolbarHidden() {
await BrowserTestUtils.withNewTab("about:blank", async function () {
// Make sure the Bookmarks toolbar is no longer tabbable once hidden.
CustomizableUI.setToolbarVisibility("PersonalToolbar", false);
const toolbar = document.getElementById("PersonalToolbar");
await TestUtils.waitForCondition(() => toolbar.hasAttribute("collapsed"));
startFromUrlBar();
await expectFocusAfterKey("Tab", afterUrlBarButton);
if (sidebarRevampEnabled) {
let sidebar = document.querySelector("sidebar-main");
await expectFocusAfterKey("Tab", sidebar.toolButtons[0]);
await expectFocusAfterKey("Tab", sidebar.customizeButton);
}
await expectFocusAfterKey("Tab", gBrowser.selectedBrowser);
});
});
// Test a focusable toolbartabstop which has no navigable buttons.
add_task(async function testTabStopNoButtons() {
await withNewBlankTab(async function () {
// The Back, Forward and Reload buttons are all currently disabled.
if (!sidebarRevampEnabled) {
// The Home button is the only other button at that tab stop.
CustomizableUI.removeWidgetFromArea("home-button");
} else {
// The home and sidebar buttons are the only other button at that tab stop.
CustomizableUI.removeWidgetFromArea("home-button");
CustomizableUI.removeWidgetFromArea("sidebar-button");
}
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("Shift+Tab", "tabs-newtab-button");
await expectFocusAfterKey(
"Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("Tab", gURLBar.inputField);
resetToolbarWithoutDevEditionButtons();
AddHomeBesideReload();
if (!sidebarRevampEnabled) {
CustomizableUI.addWidgetToArea("sidebar-button", "nav-bar", 0);
}
// Make sure the button is reachable now that it has been re-added.
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("Shift+Tab", "sidebar-button", true);
await expectFocusAfterKey("ArrowRight", "home-button");
RemoveHomeButton();
});
});
// Test that right/left arrows move through toolbarbuttons.
// This also verifies that:
// 1. Right/left arrows do nothing when at the edges; and
// 2. The overflow menu button can't be reached by right arrow when it isn't
// visible.
add_task(async function testArrowsToolbarbuttons() {
AddOldMenuSideButtons();
await BrowserTestUtils.withNewTab("about:blank", async function () {
startFromUrlBar();
await expectFocusAfterKey("Tab", "library-button");
EventUtils.synthesizeKey("KEY_ArrowLeft");
is(
document.activeElement.id,
"library-button",
"ArrowLeft at end of button group does nothing"
);
if (!sidebarRevampEnabled) {
await expectFocusAfterKey("ArrowRight", "sidebar-button");
}
await expectFocusAfterKey("ArrowRight", "unified-extensions-button");
await expectFocusAfterKey("ArrowRight", "fxa-toolbar-menu-button");
// This next check also confirms that the overflow menu button is skipped,
// since it is currently invisible.
await expectFocusAfterKey("ArrowRight", "PanelUI-menu-button");
EventUtils.synthesizeKey("KEY_ArrowRight");
is(
document.activeElement.id,
"PanelUI-menu-button",
"ArrowRight at end of button group does nothing"
);
await expectFocusAfterKey("ArrowLeft", "fxa-toolbar-menu-button");
await expectFocusAfterKey("ArrowLeft", "unified-extensions-button");
if (!sidebarRevampEnabled) {
await expectFocusAfterKey("ArrowLeft", "sidebar-button");
}
await expectFocusAfterKey("ArrowLeft", "library-button");
});
RemoveOldMenuSideButtons();
});
// Test that right/left arrows move through buttons which aren't toolbarbuttons
// but have role="button".
add_task(async function testArrowsRoleButton() {
BrowserPageActions.mainButtonNode.style.display = "flex";
await BrowserTestUtils.withNewTab("https://example.com", async function () {
startFromUrlBar();
await expectFocusAfterKey("Tab", "pageActionButton");
await expectFocusAfterKey("ArrowRight", "star-button-box");
await expectFocusAfterKey("ArrowLeft", "pageActionButton");
});
BrowserPageActions.mainButtonNode.style.removeProperty("display");
});
// Test that right/left arrows do not land on disabled buttons.
add_task(async function testArrowsDisabledButtons() {
await BrowserTestUtils.withNewTab(
"https://example.com",
async function (aBrowser) {
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
// Back and Forward buttons are disabled.
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "reload-button");
} else {
await expectFocusAfterKey("Shift+Tab", "reload-button");
}
EventUtils.synthesizeKey("KEY_ArrowLeft");
if (sidebarRevampEnabled) {
is(
document.activeElement.id,
"sidebar-button",
"ArrowLeft on Reload button when prior buttons disabled navigates to sidebar-button"
);
} else {
is(
document.activeElement.id,
"reload-button",
"ArrowLeft on Reload button when prior buttons disabled does nothing"
);
}
BrowserTestUtils.startLoadingURIString(aBrowser, "https://example.com/2");
await BrowserTestUtils.browserLoaded(aBrowser);
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
if (sidebarRevampEnabled) {
await expectFocusAfterKey("Shift+Tab", "sidebar-button");
await expectFocusAfterKey("ArrowRight", "back-button");
} else {
await expectFocusAfterKey("Shift+Tab", "back-button");
}
// Forward button is still disabled.
await expectFocusAfterKey("ArrowRight", "reload-button");
}
);
});
// Test that right arrow reaches the overflow menu button when it is visible.
add_task(async function testArrowsOverflowButton() {
AddOldMenuSideButtons();
await BrowserTestUtils.withNewTab("about:blank", async function () {
// Move something to the overflow menu to make the button appear.
CustomizableUI.addWidgetToArea(
"home-button",
CustomizableUI.AREA_FIXED_OVERFLOW_PANEL
);
startFromUrlBar();
await expectFocusAfterKey("Tab", "library-button");
if (!sidebarRevampEnabled) {
await expectFocusAfterKey("ArrowRight", "sidebar-button");
}
await expectFocusAfterKey("ArrowRight", "unified-extensions-button");
await expectFocusAfterKey("ArrowRight", "fxa-toolbar-menu-button");
await expectFocusAfterKey("ArrowRight", "nav-bar-overflow-button");
// Make sure the button is not reachable once it is invisible again.
await expectFocusAfterKey("ArrowRight", "PanelUI-menu-button");
resetToolbarWithoutDevEditionButtons();
// Flush layout so its invisibility can be detected.
document.getElementById("nav-bar-overflow-button").clientWidth;
// We reset the toolbar above so the unified extensions button is now the
// "last" button.
await expectFocusAfterKey("ArrowLeft", "unified-extensions-button");
await expectFocusAfterKey("ArrowLeft", "fxa-toolbar-menu-button");
});
RemoveOldMenuSideButtons();
});
// Test that toolbar keyboard navigation doesn't interfere with PanelMultiView
// keyboard navigation.
// We do this by opening the Library menu and ensuring that pressing left arrow
// does nothing.
add_task(async function testArrowsInPanelMultiView() {
AddOldMenuSideButtons();
let button = document.getElementById("library-button");
await focusAndActivateElement(button, () => EventUtils.synthesizeKey(" "));
let view = document.getElementById("appMenu-libraryView");
let focused = BrowserTestUtils.waitForEvent(view, "focus", true);
let focusEvt = await focused;
ok(true, "Focus inside Library menu after toolbar button pressed");
EventUtils.synthesizeKey("KEY_ArrowLeft");
is(
document.activeElement,
focusEvt.target,
"ArrowLeft inside panel does nothing"
);
let hidden = BrowserTestUtils.waitForEvent(document, "popuphidden", true);
view.closest("panel").hidePopup();
await hidden;
RemoveOldMenuSideButtons();
});
// Test that right/left arrows move in the expected direction for RTL locales.
add_task(async function testArrowsRtl() {
AddOldMenuSideButtons();
await BrowserTestUtils.enableRtlLocale();
startFromUrlBar(window);
await expectFocusAfterKey("Tab", "library-button");
EventUtils.synthesizeKey("KEY_ArrowRight", {});
if (!sidebarRevampEnabled) {
await expectFocusAfterKey("ArrowLeft", "sidebar-button");
}
await expectFocusAfterKey("ArrowLeft", "unified-extensions-button");
await BrowserTestUtils.disableRtlLocale();
RemoveOldMenuSideButtons();
});
// Test that right arrow reaches the overflow menu button on the Bookmarks
// toolbar when it is visible.
add_task(async function testArrowsBookmarksOverflowButton() {
let toolbar = gNavToolbox.querySelector("#PersonalToolbar");
// Third parameter is 'persist' and true is the default.
// Fourth parameter is 'animated' and we want no animation.
setToolbarVisibility(toolbar, true, true, false);
Assert.ok(!toolbar.collapsed, "toolbar should be visible");
await BrowserTestUtils.waitForEvent(
toolbar,
"BookmarksToolbarVisibilityUpdated"
);
let items = document.getElementById("PlacesToolbarItems").children;
let lastVisible;
for (let item of items) {
if (item.style.visibility == "hidden") {
break;
}
lastVisible = item;
}
await focusAndActivateElement(lastVisible, () =>
expectFocusAfterKey("ArrowRight", "PlacesChevron")
);
setToolbarVisibility(toolbar, false, true, false);
});
registerCleanupFunction(async function () {
CustomizableUI.reset();
await PlacesUtils.bookmarks.eraseEverything();
});
// Test that when a toolbar button opens a panel, closing the panel restores
// focus to the button which opened it.
add_task(async function testPanelCloseRestoresFocus() {
AddOldMenuSideButtons();
await withNewBlankTab(async function () {
// We can't use forceFocus because that removes focusability immediately.
// Instead, we must let ToolbarKeyboardNavigator handle this properly.
startFromUrlBar();
await expectFocusAfterKey("Tab", "library-button");
let view = document.getElementById("appMenu-libraryView");
let shown = BrowserTestUtils.waitForEvent(view, "ViewShown");
EventUtils.synthesizeKey(" ");
await shown;
let hidden = BrowserTestUtils.waitForEvent(document, "popuphidden", true);
view.closest("panel").hidePopup();
await hidden;
is(
document.activeElement.id,
"library-button",
"Focus restored to Library button after panel closed"
);
});
RemoveOldMenuSideButtons();
});
// Test that the arrow key works in the group of the
// 'trust-icon-container' and the 'identity-box'.
add_task(async function testArrowKeyForTPIconContainerandIdentityBox() {
await BrowserTestUtils.withNewTab(
"https://example.com",
async function (browser) {
// Simulate geo sharing so the permission box shows
gBrowser.updateBrowserSharing(browser, { geo: true });
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey(
"Shift+Tab",
"#urlbar-container .searchmode-switcher",
true
);
await expectFocusAfterKey("ArrowRight", "trust-icon-container");
await expectFocusAfterKey("ArrowRight", "identity-permission-box");
await expectFocusAfterKey("ArrowLeft", "trust-icon-container");
gBrowser.updateBrowserSharing(browser, { geo: false });
}
);
});
// Test navigation by typed characters.
add_task(async function testCharacterNavigation() {
AddHomeBesideReload();
AddOldMenuSideButtons();
await BrowserTestUtils.withNewTab("https://example.com", async function () {
await waitUntilReloadEnabled();
startFromUrlBar();
await expectFocusAfterKey("Tab", "star-button-box");
await expectFocusAfterKey("h", "home-button");
// There's no button starting with "hs", so pressing s should do nothing.
EventUtils.synthesizeKey("s");
is(
document.activeElement.id,
"home-button",
"home-button still focused after s pressed"
);
// Escape should reset the search.
EventUtils.synthesizeKey("KEY_Escape");
if (!sidebarRevampEnabled) {
// Pressing s should find the button starting with s: Sidebars.
await expectFocusAfterKey("s", "sidebar-button");
}
});
RemoveHomeButton();
RemoveOldMenuSideButtons();
});
// Test that toolbar character navigation doesn't trigger in PanelMultiView for
// a panel anchored to the toolbar.
// We do this by opening the Library menu and ensuring that pressing s
// does nothing.
// This test should be removed if PanelMultiView implements character
// navigation.
add_task(async function testCharacterInPanelMultiView() {
AddOldMenuSideButtons();
let button = document.getElementById("library-button");
let view = document.getElementById("appMenu-libraryView");
let focused = BrowserTestUtils.waitForEvent(view, "focus", true);
await focusAndActivateElement(button, () => EventUtils.synthesizeKey(" "));
let focusEvt = await focused;
ok(true, "Focus inside Library menu after toolbar button pressed");
EventUtils.synthesizeKey("s");
is(document.activeElement, focusEvt.target, "s inside panel does nothing");
let hidden = BrowserTestUtils.waitForEvent(document, "popuphidden", true);
view.closest("panel").hidePopup();
await hidden;
RemoveOldMenuSideButtons();
});
// Test tab stops after the search bar is added.
add_task(async function testTabStopsAfterSearchBarAdded() {
AddOldMenuSideButtons();
await gCUITestUtils.addSearchBar();
await withNewBlankTab(async function () {
startFromUrlBar();
await expectFocusAfterKey(
"Tab",
"#searchbar-new .searchmode-switcher",
true
);
await expectFocusAfterKey("Tab", "searchbar-new", true);
await expectFocusAfterKey("Tab", "library-button");
await expectFocusAfterKey("Shift+Tab", "searchbar-new", true);
await expectFocusAfterKey(
"Shift+Tab",
"#searchbar-new .searchmode-switcher",
true
);
await expectFocusAfterKey("Shift+Tab", gURLBar.inputField);
});
gCUITestUtils.removeSearchBar();
RemoveOldMenuSideButtons();
});
// Test tab navigation when the Firefox View button is present
// and when the button is not present.
add_task(async function testFirefoxViewButtonNavigation() {
// Add enough tabs so that the new-tab-button appears in the toolbar
// and the tabs-newtab-button is hidden.
await BrowserTestUtils.overflowTabs(registerCleanupFunction, window);
// Assert that Firefox View button receives focus when tab navigating
// forward from the end of web content.
// Additionally, ensure that focus is not trapped between the
// selected tab and the new-tab button.
// Finally, assert that focus is restored to web content when
// navigating backwards from the Firefox View button.
await BrowserTestUtils.withNewTab(
PERMISSIONS_PAGE,
async function (aBrowser) {
FirefoxViewTestUtils.enableFirefoxViewButton(window);
await SpecialPowers.spawn(aBrowser, [], async () => {
content.document.querySelector("#camera").focus();
});
await expectFocusAfterKey("Tab", "firefox-view-button");
let selectedTab = document.querySelector("tab[selected]");
await expectFocusAfterKey("Tab", selectedTab);
await expectFocusAfterKey("Tab", "new-tab-button");
await expectFocusAfterKey("Shift+Tab", selectedTab);
await expectFocusAfterKey("Shift+Tab", "firefox-view-button");
// Moving from toolbar back into content
EventUtils.synthesizeKey("KEY_Tab", { shiftKey: true });
await SpecialPowers.spawn(aBrowser, [], async () => {
let activeElement = content.document.activeElement;
let expectedElement = content.document.querySelector("#camera");
is(
activeElement,
expectedElement,
"Focus should be returned to the 'camera' button"
);
});
}
);
// Assert that the selected tab receives focus before the new-tab button
// if there is no Firefox View button.
// Additionally, assert that navigating backwards from the selected tab
// restores focus to the last element in the web content.
await BrowserTestUtils.withNewTab(
PERMISSIONS_PAGE,
async function (aBrowser) {
removeFirefoxViewButton();
await SpecialPowers.spawn(aBrowser, [], async () => {
content.document.querySelector("#camera").focus();
});
let selectedTab = document.querySelector("tab[selected]");
await expectFocusAfterKey("Tab", selectedTab);
await expectFocusAfterKey("Tab", "new-tab-button");
await expectFocusAfterKey("Shift+Tab", selectedTab);
// Moving from toolbar back into content
EventUtils.synthesizeKey("KEY_Tab", { shiftKey: true });
await SpecialPowers.spawn(aBrowser, [], async () => {
let activeElement = content.document.activeElement;
let expectedElement = content.document.querySelector("#camera");
is(
activeElement,
expectedElement,
"Focus should be returned to the 'camera' button"
);
});
}
);
// Clean up extra tabs
while (gBrowser.tabs.length > 1) {
BrowserTestUtils.removeTab(gBrowser.tabs[0]);
}
CustomizableUI.reset();
});