Skip to content

Commit

Permalink
Fix #571
Browse files Browse the repository at this point in the history
  • Loading branch information
jnurthen committed May 16, 2018
1 parent 7bf3b4b commit 8c43c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aria-practices.html
Original file line number Diff line number Diff line change
Expand Up @@ -4389,14 +4389,14 @@ <h3>
text is explicitly hidden, e.g., styled with <code>display: none</code> or has <code>aria-hidden=&quot;true&quot;</code>.
</li>
<li>
The roles, states, and properties of each descendant element remains visible to assistive
The roles, states, and properties of each descendant element remain visible to assistive
technologies unless the descendant requires the context of the presentational
element. For example:
<ul>
<li> If <code>presentation</code> is applied to a <code>ul</code> or <code>ol</code> element, each child <code>li</code> element inherits the <code>presentation</code> role because ARIA requires the <code>listitem</code> elements to have the parent <code>list</code> element. So, the <code>li</code> elements are not exposed to assistive technologies, but elements contained inside of those <code>li</code> elements, including nested lists, are visible to assistive technologies. </li>
<li>
Similarly, if <code>presentation</code> is applied to a <code>table</code> element,
The descendant <code>caption</code>, <code>thead</code>, <code>tbody</code>, <code>tfooter</code>,
the descendant <code>caption</code>, <code>thead</code>, <code>tbody</code>, <code>tfooter</code>,
<code>tr</code>, <code>th</code>, and <code>td</code>
elements inherit role <code>presentation</code> and are thus not exposed to assistive technologies.
But, elements inside of the <code>th</code> and <code>td</code> elements, including nested tables, are exposed to assistive technologies.
Expand Down

0 comments on commit 8c43c85

Please sign in to comment.