Skip to content

Files

Latest commit

 

History

History
172 lines (125 loc) · 15.5 KB

Menu.mdx

File metadata and controls

172 lines (125 loc) · 15.5 KB

Menu Accessibility Specification

Overview

A Menu is a widget that offers a list of choices to the user, such as a set of actions or functions. The various elements inside a menu are given as <MenuItem/>, or <MenuHeading/> in case of Menu Heading. Menus can also have nested menus using a SubMenu. A <MenuDivider/> can be used to separate between groups of similar menu items.

A menu is usually opened, or made visible, by activating a Dropdown, or DropdownButton, choosing an item in a menu that opens a sub menu, or by invoking a command, such as Shift + F10 in Windows, that opens a context specific menu. When a user activates a choice in a menu, the menu usually closes unless the choice opened a submenu.

A menu that is visually persistent is a menubar. A menubar is typically horizontal and is often used to create a menu bar similar to those found near the top of the window in many desktop applications, offering the user quick access to a consistent set of commands.

A common convention for indicating that a menu item launches a dialog box is to append "…" (ellipsis) to the menu item label, e.g., "Save as …".

WAI-ARIA Design Pattern

The Menu component implements the Menu or Menu bar design pattern, per WAI-ARIA 1.1.

Keyboard Interaction

The following description of keyboard behaviors assumes:

  1. A horizontal menubar containing several menuitem elements.
  2. All items in the menubar have child submenus that contain multiple vertically arranged items.
  3. Some of the menuitem elements in the submenus have child submenus with items that are also vertically arranged.

When reading the following descriptions, also keep in mind that:

  1. Focusable elements, which may have role menuitem, menuitemradio, or menuitemcheckbox, are referred to as items.
  2. If a behavior applies to only certain types of items, e.g., menuitem elements, the specific role name is used.
  3. Submenus, also known as pop-up menus, are elements with role menu.
  4. Except where noted, menus opened from a menu button behave the same as menus opened from a menubar.
  • When a menu opens, or when a menubar receives focus, keyboard focus is placed on the first item. All items are focusable and keyboard focus is managed within the menu using a roving tabindex as described in § 6.6 Keyboard Navigation Inside Components.

  • Enter:

    • When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item.
    • Otherwise, activates the item and closes the menu.
  • Space:

    • (Optional): When focus is on a menuitemcheckbox, changes the state without closing the menu.
    • (Optional): When focus is on a menuitemradio that is not checked, without closing the menu, checks the focused menuitemradio and unchecks any other checked menuitemradio element in the same group.
    • (Optional): When focus is on a menuitem that has a submenu, opens the submenu and places focus on its first item.
    • (Optional): When focus is on a menuitem that does not have a submenu, activates the menuitem and closes the menu.
  • Down Arrow:

    • When focus is on a menuitem in a menubar, opens its submenu and places focus on the first item in the submenu.
    • When focus is in a menu, moves focus to the next item, optionally wrapping from the last to the first.
  • Up Arrow:

    • When focus is in a menu, moves focus to the previous item, optionally wrapping from the first to the last.
    • (Optional): When focus is on a menuitem in a menubar, opens its submenu and places focus on the last item in the submenu.
  • Right Arrow:

    • When focus is in a menubar, moves focus to the next item, optionally wrapping from the last to the first.

    • When focus is in a menu and on a menuitem that has a submenu, opens the submenu and places focus on its first item.

    • When focus is in a menu and on an item that does not have a submenu, performs the following 3 actions:

      1. Closes the submenu and any parent menus.
      2. Moves focus to the next menuitem in the menubar.
      3. Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the submenu of that menuitem and places focus on the first item in the submenu.

      Note that if the menubar were not present, e.g., the menus were opened from a menu button, Right Arrow would not do anything when focus is on an item that does not have a submenu.

  • Left Arrow:

    • When focus is in a menubar, moves focus to the previous item, optionally wrapping from the first to the last.

    • When focus is in a submenu of an item in a menu, closes the submenu and returns focus to the parent menuitem.

    • When focus is in a submenu of an item in a menubar, performs the following 3 actions:

      1. Closes the submenu.
      2. Moves focus to the previous menuitem in the menubar.
      3. Either: (Recommended) opens the submenu of that menuitem without moving focus into the submenu, or opens the submenu of that menuitem and places focus on the first item in the submenu.
  • Home: If arrow key wrapping is not supported, moves focus to the first item in the current menu or menubar.

  • End: If arrow key wrapping is not supported, moves focus to the last item in the current menu or menubar.

  • Any key that corresponds to a printable character (Optional): Move focus to the next menu item in the current menu whose label begins with that printable character.

  • Escape: Close the menu that contains focus and return focus to the element or context, e.g., menu button or parent menuitem, from which the menu was opened.

  • Tab: Moves focus to the next element in the tab sequence, and if the item that had focus is not in a menubar, closes its menu and all open parent menu containers.

  • Shift + Tab: Moves focus to the previous element in the tab sequence, and if the item that had focus is not in a menubar, closes its menu and all open parent menu containers.

NOTE:

  1. Disabled menu items are focusable but cannot be activated.

  2. A separator, (e.g. MenuDivider) in a menu is not focusable or interactive.

  3. If a menu is opened or a menubar receives focus as a result of a context action, Escape or Enter may return focus to the invoking context. For example, a rich text editor may have a menubar that receives focus when a shortcut key, e.g., alt + F10, is pressed while editing. In this case, pressing Escape or activating a command from the menu may return focus to the editor.

  4. Although it is recommended that authors avoid doing so, some implementations of navigation menubars may have menuitem elements that both perform a function and open a submenu. In such implementations, Enter and Space perform a navigation function, e.g., load new content, while Down Arrow, in a horizontal menubar, opens the submenu associated with that same menuitem.

  5. When items in a menubar are arranged vertically and items in menu containers are arranged horizontally:

    • Down Arrow performs as Right Arrow is described above, and vice versa.
    • Up Arrow performs as Left Arrow is described above, and vice versa.

Roles, States, and Properties

  • A menu is a container of items that represent choices. The element serving as the menu has a role of either menu or menubar.

  • The items contained in a menu are child elements of the containing menu or menubar and have any of the following roles:

  • If activating a menuitem opens a submenu, the menuitem is known as a parent menuitem. A submenu's menu element is:

    • Contained inside the same menu element as its parent menuitem. (Note: React Spectrum uses aria-owns to define the relationship between the parent menuitem and its expanded submenu)
    • Is the sibling element immediately following its parent menuitem.
  • A parent menuitem has aria-haspopup set to either menu or true.

  • A parent menuitem has aria-expanded set to false when its child menu is not visible and set to true when the child menu is visible.

  • One of the following approaches is used to enable scripts to move focus among items in a menu as described in § 6.6 Keyboard Navigation Inside Components:

    • The menu container has tabindex set to -1 or 0 and aria-activedescendant set to the ID of the focused item.
    • Each item in the menu has tabindex set to -1, except in a menubar, where the first item has tabindex set to 0.
  • When a menuitemcheckbox or menuitemradio is checked, aria-checked is set to true.

  • When a menu item is disabled, aria-disabled is set to true.

  • Items in a menu may be divided into groups:

    • The simplest to define a group is by placing an element with a role of separator between groups. For example, this technique should be used when a menu contains a set of menuitemradio items.
    • To define a labelled group, items should be contained within an element with the role of group. The group element should be labelled using aria-label or with aria-labelledby referencing a visible text element heading, included as a child of the group, by id. Since a menu does not normally expect a text node or heading as a descendant, this visible text element heading should be removed from the accessibility tree as a standalone accessibility object using aria-hidden.
  • All separators should have aria-orientation consistent with the separator's orientation.

  • If a menubar has a visible label, the element with role menubar has aria-labelledby set to a value that refers to the labelling element. Otherwise, the menubar element has a label provided by aria-label.

  • If a menubar is vertically oriented, it has aria-orientation set to vertical. The default value of aria-orientation for a menubar is horizontal.

  • An element with role menu either has:

    • aria-labelledby set to a value that refers to the menuitem or button that controls its display.
    • A label provided by aria-label.
  • If a menu is horizontally oriented, it has aria-orientation set to horizontal. The default value of aria-orientation for a menu is vertical.

NOTE

If aria-owns is set on the menu container to include elements that are not DOM children of the container, those elements will appear in the reading order in the sequence they are referenced and after any items that are DOM children. Scripts that manage focus need to ensure the visual focus order matches this assistive technology reading order.

v2 Implementation details

In React Spectrum, Menu has been implemented as a List contained within a Popover. MenuItem, MenuHeading and MenuDivider

In the Menu component:

  • The Menu component uses role menu by default, but may also use role listbox depending on context. For example, in Autocomplete, the Menu uses role listbox).
  • MenuItem component accepts role menuitem, menuitemcheckbox, and menuitemradio, but may also use role option depending on context. For example, in Autocomplete, MenuItem uses role option)

When a MenuItem has role menuitemcheckbox or menuitemradio, aria-checked is used to indicate the selected state, rather than aria-selected.

Menu inherits keyboard interaction from List, which uses the FocusManager utility component with the following parameters:

  • itemSelector equal to .spectrum-Menu-item:not(.is-disabled).
  • selectedItemSelector equal to .spectrum-Menu-item:not(.is-disabled).is-selected.
  • typeToSelect defaults to true
  • In Menu, autoFocus defaults to true, so that the Menu will receive focus when it mounts within an Overlay.
  • When rendered in a Portal using an Overlay, Menu and SubMenu both trap focus, pressing Tab or Shift + Tab does not advance to the next or previous tabbable element, because the next focusable element before or after the element that opened the Menu is difficult to determine without crawling the DOM.

Dependencies

  • Popover
  • List
  • ListItem
  • OverlayTrigger

Dependees