1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34

content / test / data / accessibility / aria / aria-mismatched-table-attr.html [blame]

<!DOCTYPE html>
<!--
@WIN-ALLOW:colcount*
@WIN-ALLOW:colindex*
@WIN-ALLOW:rowcount*
@WIN-ALLOW:rowindex*
@WIN-ALLOW:ia2_table_cell_row_index*
@WIN-ALLOW:ia2_table_cell_column_index*
@MAC-ALLOW:AXARIAColumnCount*
@MAC-ALLOW:AXARIARowCount*
@MAC-ALLOW:AXARIARowIndex*
@MAC-ALLOW:AXARIAColumnIndex*
@BLINK-ALLOW:*ColumnCount*
@BLINK-ALLOW:ariaCellColumnIndex*
@BLINK-ALLOW:*RowCount*
@BLINK-ALLOW:ariaCellRowIndex*
-->
<table role="grid" aria-rowcount="1" aria-colcount="1">
  <tbody><tr>
    <th aria-rowindex="1" aria-colindex="1">Column 1</th>
    <th aria-rowindex="1" aria-colindex="2">Column 2</th>
    <th aria-rowindex="1" aria-colindex="2">Column 3</th>
  </tr>
  <tr>
    <td role="gridcell" tabindex="0" aria-rowindex="2" aria-colindex="2">Cell A2</td>
    <td role="gridcell" tabindex="-1" aria-rowindex="2" aria-colindex="1">Cell A3</td>
  </tr>
  <tr>
    <td role="gridcell" tabindex="0" aria-rowindex="2" aria-colindex="1">Cell B1</td>
    <td role="gridcell" tabindex="-1" aria-rowindex="2" aria-colindex="2">Cell B2</td>
  </tr>
  </tbody>
</table>
<p></p>