diff --git a/aria-practices.html b/aria-practices.html index a6fe6a176a..a6cb7a035b 100644 --- a/aria-practices.html +++ b/aria-practices.html @@ -3285,22 +3285,22 @@

Landmark Regions

Landmark regions can also be used as targets for "skip links" and by browser extensions to enhanced keyboard navigation.

- This section explains how HTML5 sectioning elements and ARIA landmark roles + This section explains how HTML sectioning elements and ARIA landmark roles are used to make it easy for assistive technology users to understand the meaning of the layout of a page.

-

HTML5 Sectioning Elements

+

HTML Sectioning Elements

- Several HTML5 sectioning elements automatically create ARIA landmark regions. + Several HTML sectioning elements automatically create ARIA landmark regions. So, in order to provide assistive technology users with a logical view of a page, - it is important to understand the effects of using HTML5 sectioning elements. - More information on HTML5 element role mapping. + it is important to understand the effects of using HTML sectioning elements. + [[HTML-ARIA]] contains more information on HTML element role mapping.

- + - + @@ -3419,12 +3419,12 @@

Banner

-
HTML5 Techniques
+
HTML Techniques
@@ -3463,13 +3463,13 @@

Complementary

-
HTML5 Technique
+
HTML Technique
-

Use the HTML5 aside element to define a complementary landmark.

+

Use the HTML aside element to define a complementary landmark.

ARIA Technique
-

If the HTML5 aside element technique is not being used, use a role="complementary" attribute to define a complementary landmark.

+

If the HTML aside element technique is not being used, use a role="complementary" attribute to define a complementary landmark.

@@ -3498,13 +3498,13 @@

Contentinfo

-
HTML5 Techniques
+
HTML Techniques
    -
  • The HTML5 footer element defines a contentinfo landmark when its context is the body element.
  • +
  • The HTML footer element defines a contentinfo landmark when its context is the body element.
  • - The HTML5 footer element is not considered a contentinfo landmark when it is descendant of any of following elements (see HTML Accessibility Mappings [[HTML-AAM]]): + The HTML footer element is not considered a contentinfo landmark when it is descendant of any of following elements (see HTML Accessibility Mappings [[HTML-AAM]]):
    • article
    • aside
    • @@ -3517,7 +3517,7 @@
      HTML5 Techniques
      ARIA Technique
      -

      If the HTML5 footer element technique is not being used, a role="contentinfo" attribute should be used to define a contentinfo landmark.

      +

      If the HTML footer element technique is not being used, a role="contentinfo" attribute should be used to define a contentinfo landmark.

@@ -3556,9 +3556,9 @@

Form

-
HTML5 Techniques
+
HTML Techniques
-

The HTML5 form element defines a form landmark when it has an accessible name (e.g. aria-labelledby, aria-label or title).

+

The HTML form element defines a form landmark when it has an accessible name (e.g. aria-labelledby, aria-label or title).

ARIA Technique
@@ -3589,13 +3589,13 @@

Main

-
HTML5 Technique
+
HTML Technique
-

Use the HTML5 main element to define a main landmark.

+

Use the HTML main element to define a main landmark.

ARIA Technique
-

If the HTML5 main element technique is not being used, use a role="main" attribute to define a main landmark.

+

If the HTML main element technique is not being used, use a role="main" attribute to define a main landmark.

@@ -3617,13 +3617,13 @@

Navigation

-
HTML5 Technique
+
HTML Technique
-

Use the HTML5 nav element to define a navigation landmark.

+

Use the HTML nav element to define a navigation landmark.

ARIA Technique
-

If the HTML5 nav element technique is not being used, use a role="navigation" attribute to define a navigation landmark.

+

If the HTML nav element technique is not being used, use a role="navigation" attribute to define a navigation landmark.

@@ -3648,13 +3648,13 @@

Region

-
HTML5 Technique
+
HTML Technique
-

The HTML5 section element defines a region landmark when it has an accessible name (e.g. aria-labelledby, aria-label or title).

+

The HTML section element defines a region landmark when it has an accessible name (e.g. aria-labelledby, aria-label or title).

ARIA Technique
-

If the HTML5 section element technique is not being used, use a role="region" attribute to define a region landmark.

+

If the HTML section element technique is not being used, use a role="region" attribute to define a region landmark.

@@ -3676,8 +3676,8 @@

Search

-
HTML5 Technique
-

There is no HTML5 element that defines a search landmark.

+
HTML Technique
+

There is no HTML element that defines a search landmark.

ARIA Technique
@@ -5385,7 +5385,7 @@

Keyboard Navigation Between Components (The Tab Sequence)

As explained in section , all interactive UI components need to be reachable via the keyboard. This is best achieved by either including them in the tab sequence or by making them accessible from a component that is in the tab sequence, e.g., as part of a composite component. This section addresses building and managing the tab sequence, and subsequent sections cover making focusable elements that are contained within components keyboard accessible.

- The HTML tabindex and SVG tabindex attributes can be used to add and remove elements from the tab sequence. + The [[HTML]] tabindex and [[SVG2]] tabindex attributes can be used to add and remove elements from the tab sequence. The value of tabindex can also influence the order of the tab sequence, although authors are strongly advised not to use tabindex for that purpose.

diff --git a/examples/grid/LayoutGrids.html b/examples/grid/LayoutGrids.html index c6f98adc06..005d37f08a 100644 --- a/examples/grid/LayoutGrids.html +++ b/examples/grid/LayoutGrids.html @@ -65,7 +65,7 @@

Related Documents

Core Accessibility API Mappings 1.1 WAI-ARIA Overview WCAG Overview - HTML 5 Specification + HTML Specification SVG 2 Specification diff --git a/examples/landmarks/HTML5.html b/examples/landmarks/HTML5.html index 113dd4eea5..0e81c911fb 100644 --- a/examples/landmarks/HTML5.html +++ b/examples/landmarks/HTML5.html @@ -1,7 +1,7 @@ - HTML5 Sectioning Elements: ARIA Landmarks Example + HTML Sectioning Elements: ARIA Landmarks Example @@ -27,7 +27,7 @@

ARIA Landmarks Example

Default landmark roles for HTML5 sectioning elementsDefault landmark roles for HTML sectioning elements
HTML5 ElementHTML Element Default Landmark Role
+
- + @@ -62,7 +62,7 @@

HTML5 Sectioning Elements

HTML5 ElementHTML Element Default Landmark Role
footer contentinfo when in context of the body element. - The footer element is not a contentinfo landmark when it is a descendant of the following HTML5 sectioning elements: + The footer element is not a contentinfo landmark when it is a descendant of the following HTML sectioning elements:
  • article
  • aside
  • @@ -79,7 +79,7 @@

    HTML5 Sectioning Elements

header banner when in context of the body element. - The header element is not a banner landmark when it is a descendant of the following HTML5 sectioning elements: + The header element is not a banner landmark when it is a descendant of the following HTML sectioning elements:
  • article
  • aside
  • @@ -118,7 +118,7 @@

    Landmarks