AboutSupportDeveloper GuideVersion 45.148.100.77

Accessibility options for layout tab navigation and ARIA support.

interface LayoutAccessibilityOptions {
    focusContentHotkey?: string | false;
    viewTabOptions?: ViewTabAccessibilityOptions;
}

Properties

focusContentHotkey?: string | false

Keyboard shortcut used to move focus from a tab header element into the active tab's web content.

  • Accepts an accelerator-like string, e.g. 'Ctrl+Enter', 'Meta+Enter', 'Alt+Enter', 'Mod+Enter'.
  • 'Mod'/'CmdOrCtrl'/'CtrlOrMeta' means Ctrl on Windows/Linux or Meta on macOS.
  • Set to false to disable this shortcut.
  • In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way: tab header -> web content.
'Mod+Enter'