Skip to content

Commit

Permalink
Fix typo: aria-colcount → aria-rowcount in ARIA table role docs (#3167)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilypstewart committed Mar 16, 2021
1 parent 3d9696a commit e81f81e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h3 id="Associated_WAI-ARIA_roles_states_and_properties">Associated WAI-ARIA rol
<p>This attribute is only required if the columns are not present in the DOM all the time. It provides an explicit indication of the number of columns in the full table. Set the value to the total number of columns in the full table. If unknown, set <code>aria-colcount="-1"</code>.</p>
</dd>
<dt>aria-rowcount attribute</dt>
<dd>This attribute is only required if the rows are not present in the DOM all the time, such as scrollable tables that reuse rows to minimize the number of DOM nodes. It provides an explicit indication of the number of rows in the full table. Set the value to the total number of rows in the full table. If unknown, set <code>aria-colcount="-1"</code>.</dd>
<dd>This attribute is only required if the rows are not present in the DOM all the time, such as scrollable tables that reuse rows to minimize the number of DOM nodes. It provides an explicit indication of the number of rows in the full table. Set the value to the total number of rows in the full table. If unknown, set <code>aria-rowcount="-1"</code>.</dd>
</dl>

<h3 id="Keyboard_interactions">Keyboard interactions</h3>
Expand Down

0 comments on commit e81f81e

Please sign in to comment.