Details
-
Type:
Bug
-
Status: CLOSED
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.9.0
-
Component/s: Accessibility, Users (Admin User Management)
-
Labels:
-
Environment:Windows 7, Firefox 14. http://sakaicle1-trunk.uits.indiana.edu:8181/portal/ TRUNK - Sakai 2.9.0-b07 (Kernel 1.3.0-b07)
-
10 status:Resolved
Description
User Information table that is displayed when selecting the "View User Info" option is coded properly to be a valid data table. Rowspan and a <th> cell is used to fake a table caption. Header cells (for the rows) are not marked up as such.
Recommended remediation:
Replace the spanning table header with a table caption. Add row headers to the table.
<table>
<caption class="listHier">User Information</caption>
<thead>
</thead>
<tbody>
<tr>
<th>Name:</th>
<td>First Student</td>
</tr>
<tr>
<th>Email:</th>
<td>brichwin@indiana.edu</td>
</tr>
<tr>
<th>User Id:</th>
<td>arstu1</td>
</tr>
<tr>
<th>Internal Id:</th>
<td>b00d4f2f-ba0a-4a32-acdb-6c06203890dd</td>
</tr>
<tr>
<th>Type:</th>
<td>registered</td>
</tr>
<tr>
<th>Created:</th>
<td>Aug 19, 2012 3:35 pm</td>
</tr>
</tbody>
</table>