diff --git a/index.html b/index.html index e23b7255b..6f677bc9c 100644 --- a/index.html +++ b/index.html @@ -10213,7 +10213,13 @@
Presentational Role Inheritance
for details on implementing a tab set design pattern.

Authors MUST ensure [=elements=] with role tab are accessibility children of an element with the role tablist.

-

Authors MUST ensure that if a tab is active, a corresponding tabpanel that represents the active tab is rendered.

+ +

Authors MUST ensure that if a tab is active, a corresponding tabpanel that represents the active tab is rendered.

+

+ Authors SHOULD associate a tabpanel element with its tab, by using the aria-controls attribute on the tab to reference the tab panel, and/or + by using the aria-labelledby attribute on the tab panel to reference the tab. +

+

Authors SHOULD ensure the tabpanel associated with the currently active tab is perceivable to the user.

@@ -10547,10 +10553,13 @@

Presentational Role Inheritance
tabpanel

A container for the resources associated with a tab, where each tab is contained in a tablist.

+ +

Authors MUST ensure that if a tab is active, a corresponding tabpanel that represents the active tab is rendered.

Authors SHOULD associate a tabpanel element with its tab, by using the aria-controls attribute on the tab to reference the tab panel, and/or by using the aria-labelledby attribute on the tab panel to reference the tab.

+

tablist elements are typically placed near, and usually preceding, a series of tabpanel elements. See the