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
   35
   36
   37
   38
   39
   40
   41

content / test / data / accessibility / aria / aria-col-row-index-undefined.html [blame]

<!--
@WIN-ALLOW:colcount*
@WIN-ALLOW:colindex*
@WIN-ALLOW:rowcount*
@WIN-ALLOW:rowindex*
@WIN-ALLOW:ia2_table_cell_column_index=*
@WIN-ALLOW:ia2_table_cell_row_index=*
@MAC-ALLOW:AXARIAColumnCount
@MAC-ALLOW:AXARIAColumnIndex
@MAC-ALLOW:AXARIARowCount
@MAC-ALLOW:AXARIARowIndex
@BLINK-ALLOW:ariaColumn*
@BLINK-ALLOW:ariaCellColumn*
@BLINK-ALLOW:ariaRow*
@BLINK-ALLOW:ariaCellRow*
@AURALINUX-ALLOW:colcount*
@AURALINUX-ALLOW:colindex*
@AURALINUX-ALLOW:rowcount*
@AURALINUX-ALLOW:rowindex*
-->
<div role="table">
  <div role="rowgroup">
    <div role="row" aria-rowindex="-1">
      <span role="columnheader" aria-colindex="-1">row1 colheader1</span>
      <span role="columnheader" aria-colindex="0">row1 colheader2</span>
      <span role="columnheader" aria-colindex="1">row1 colheader3</span>
    </div>
  </div>
  <div role="rowgroup">
    <div role="row" aria-rowindex="0">
      <span role="cell" aria-colindex="-1">row2 col1</span>
      <span role="cell" aria-colindex="0">row2 col2</span>
      <span role="cell" aria-colindex="1">row2 col3</span>
    </div>
    <div role="row" aria-rowindex="1">
      <span role="cell" aria-colindex="-1">row3 col1</span>
      <span role="cell" aria-colindex="0">row3 col2</span>
      <span role="cell" aria-colindex="1">row3 col3</span>
    </div>
  </div>
</div>