diff --git a/third_party/aria-practices/src/content/patterns/tabs/examples/tabs-automatic.html b/third_party/aria-practices/src/content/patterns/tabs/examples/tabs-automatic.html index 21afc1aa628e8..3391828ca5420 100644 --- a/third_party/aria-practices/src/content/patterns/tabs/examples/tabs-automatic.html +++ b/third_party/aria-practices/src/content/patterns/tabs/examples/tabs-automatic.html @@ -2,51 +2,13 @@ - Example of Tabs with Automatic Activation - - - - - - - - - -
-

Example of Tabs with Automatic Activation

- -
-

About This Example

- -

- This example section demonstrates a tabs widget that implements the Tabs Pattern. - In this example, a tab is automatically activated and its associated panel is displayed when the tab receives focus. - It is recommended that authors consider implementing automatic activation of tabs only in circumstances where panels can be displayed instantly, i.e., all panel content is present in the DOM. - For additional guidance, see Deciding When to Make Selection Automatically Follow Focus. -

-

Similar examples include:

- -
- -
-
-

Example

-
-

Danish Composers

@@ -96,268 +58,5 @@
- -
- -
-

Accessibility Features

- -
- -
-

Keyboard Support

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
KeyFunction
Tab -
    -
  • When focus moves into the tab list, places focus on the active tab element .
  • -
  • When the tab list contains the focus, moves focus to the next element in the tab sequence, which is the tabpanel element.
  • -
-
Right Arrow -
    -
  • Moves focus to the next tab.
  • -
  • If focus is on the last tab, moves focus to the first tab.
  • -
  • Activates the newly focused tab.
  • -
-
Left Arrow -
    -
  • Moves focus to the previous tab.
  • -
  • If focus is on the first tab, moves focus to the last tab.
  • -
  • Activates the newly focused tab.
  • -
-
HomeMoves focus to the first tab and activates it.
EndMoves focus to the last tab and activates it.
-
- -
-

Role, Property, State, and Tabindex Attributes

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
RoleAttributeElementUsage
- tablist - - div - Indicates that the element serves as a container for a set of tabs.
- aria-labelledby="ID_REFERENCE" - - div - Provides a label that describes the purpose of the set of tabs.
- tab - - button - -
    -
  • Indicates the element serves as a tab control.
  • -
  • When focused, it is automatically activated, causing its associated tabpanel to be displayed.
  • -
  • Provides a label for its associated tabpanel.
  • -
-
- aria-selected="true" - - button - -
    -
  • Indicates the tab is selected and its associated tabpanel is displayed.
  • -
  • Set when a tab receives focus.
  • -
-
- aria-selected="false" - - button - -
    -
  • Indicates the tab is not selected and its associated tabpanel is NOT displayed.
  • -
  • Set for all tab elements in the tab set except the tab that is selected.
  • -
-
- tabindex="-1" - - button - -
    -
  • Removes the element from the page Tab sequence.
  • -
  • Set when a tab is not selected so that only the selected tab is in the page Tab sequence.
  • -
  • Since an HTML button element is used for the tab, it is not necessary to set tabindex="0" on the selected (active) tab element.
  • -
  • - This approach to managing focus is described in the section on - Managing Focus Within Components Using a Roving tabindex. -
  • -
-
- aria-controls="ID_REFERENCE" - - button - Refers to the element with role=tabpanel associated with the tab.
- tabpanel - - div - -
    -
  • Indicates the element serves as a container for tab panel content.
  • -
  • Is hidden unless its associated tab control is activated.
  • -
-
- aria-labelledby="ID_REFERENCE" - - div - -
    -
  • Refers to the tab element that controls the panel.
  • -
  • Provides an accessible name for the tab panel.
  • -
-
- tabindex="0" - - div - -
    -
  • Puts the tabpanel in the page Tab sequence.
  • -
  • Facilitates navigation to panel content for assistive technology users.
  • -
  • Focusable tabpanel elements are recommended if any panels in a set contain content where the first element in the panel is not focusable.
  • -
-
-
- -
-

JavaScript and CSS Source Code

- -
- -
-

HTML Source Code

-

To copy the following HTML code, please open it in CodePen.

- -
- - -
-