diff --git a/techniques/aria/ARIA11.html b/techniques/aria/ARIA11.html index bbd53be6ef..aa05f0544e 100644 --- a/techniques/aria/ARIA11.html +++ b/techniques/aria/ARIA11.html @@ -20,19 +20,19 @@
Landmarks also can help sighted keyboard-only users navigate to sections of a page using a browser plugin.
-Landmarks are inserted into the page using the role attribute on an element that marks the section. The value of the attribute is the name of the landmark. These role values are listed below. For HTML mappings of landmark roles, refer to the Rules of ARIA attribute usage by HTML element table in the ARIA In HTML recommendation.
+Landmarks are inserted into the page using the role attribute on an element that marks the section. The value of the attribute designates the type of landmark. These role values are listed below. For HTML mappings of landmark roles, refer to the Rules of ARIA attribute usage by HTML element table in the ARIA In HTML recommendation.
banner
: A region that contains the prime heading or internal title of a page.navigation
: A region that contains navigation links links to other pages or different parts of the same page.banner
: A region that contains mostly site-oriented content, such as the logo or a site-specific search tool.navigation
: A region that contains navigation links to other pages or different parts of the same page.main
: A region that contains a page's main content.region
: A region that contains a perceivable section of the page containing content that is sufficiently important for users to be able to navigate to the section. A region
landmark isn't exposed as a landmark region unless it has an accessible name.form
: A region of the document that represents a collection of form-associated elements, some of which can represent editable values that can be submitted to a server for processing.region
: A region that contains a perceivable section of the page containing content that is sufficiently important for users to be able to navigate to the section. A region
landmark isn't exposed as a landmark region unless it has an accessible name, often provided using aria-label
or aria-labelledby
.form
: A region of the document that represents a collection of form-associated elements, some of which can represent editable values that can be submitted to a server for processing. A form
landmark isn't exposed as a landmark region unless it has an accessible name.search
: A region of the page containing search functionality.complementary
: Any section of the document that supports the main content, yet is separate and meaningful on its own.contentinfo
: A region that contains information about the parent document such as copyrights and links to privacy statements.There are cases when a particular landmark role could be used more than once on a page, such as on primary and secondary blocks of navigation. In these cases, identical roles should be labeled using a valid technique for labelling regions.
+There are cases when a particular landmark role could be used more than once on a page, such as on primary and secondary blocks of navigation. In these cases, identical roles should be named using a valid technique for labeling regions.
Landmarks should supplement native semantic markup such as HTML headings, lists and other structural markup. Landmarks are interpretable by WAI-ARIA-aware assistive technologies and are not exposed by browsers directly to users.
@@ -112,12 +112,13 @@navigation
role has been used to mark up a section with navigation links, or the main
role is used to contain the page's main content.