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 @@

Using ARIA landmarks to identify regions of a page

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.

-

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 @@

Procedure

  • Examine each element with a landmark role.
  • Examine whether the correct element has been used to mark up content. For example: a 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.
  • If a landmark region needs to have an accessible name to be exposed as a landmark, check to see that there is an accessible name.
  • +
  • If the same type of landmark appears multiple times on the page, check that each one is given a unique and meaningful accessible name.
  • Expected Results

    @@ -126,6 +127,8 @@

    Related Techniques