Skip to content

Commit

Permalink
Add scope to TH in example template for #168
Browse files Browse the repository at this point in the history
modified examples/coding-template/Example-Template.html.
In the roles, states, and properties table, added scope attributes to all the TH elements.
  • Loading branch information
mcking65 committed Dec 1, 2016
1 parent de8e250 commit 1ed4d44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/coding-template/Example-Template.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ <h2 id="rps_label">Role, Property, State, and Tabindex Attributes</h2>
<table aria-labelledby="rps_label">
<thead>
<tr>
<th>Role</th>
<th>Attribute</th>
<th>Element</th>
<th>Usage</th>
<th scope="col">Role</th>
<th scope="col">Attribute</th>
<th scope="col">Element</th>
<th scope="col">Usage</th>
</tr>
</thead>
<tbody>
<tr>
<th><code>RoleName</code></th>
<th scope="row"><code>RoleName</code></th>
<td><!-- Leave this cell blank in rows where a role is being described. --></td>
<td><code>HTML_ELEMENT</code></td>
<td>
Expand All @@ -155,7 +155,7 @@ <h2 id="rps_label">Role, Property, State, and Tabindex Attributes</h2>
Make a row like this for each attribute/value pair.
-->
</td>
<th><code>AttributeName=<q>AttributeValue</q></code></th>
<th scope="row"><code>AttributeName=<q>AttributeValue</q></code></th>
<td><code>HTML_ELEMENT</code></td>
<td>
<ul>
Expand Down

0 comments on commit 1ed4d44

Please sign in to comment.