chromium/content/test/data/accessibility/aria/aria-col-attr.html

<!--
@WIN-ALLOW:colcount*
@WIN-ALLOW:colindex*
@WIN-ALLOW:colspan*
@WIN-ALLOW:ia2_table_cell_column_index=*
@WIN-ALLOW:ia2_table_cell_row_index=*
@MAC-ALLOW:AXARIAColumnCount
@MAC-ALLOW:AXARIAColumnIndex
@MAC-ALLOW:AXCellForColumnAndRow([0, 0])=*
@BLINK-ALLOW:ariaColumn*
@BLINK-ALLOW:ariaCellColumn*
@AURALINUX-ALLOW:colspan*
@AURALINUX-ALLOW:colcount*
@AURALINUX-ALLOW:colindex*
-->
<!-- For compatibility with earlier versions of Jaws, We do not expose
    aria-row/colcount and aria-row/colindex information if they match the
    physical coordinates of the table. -->
<div role="grid" aria-colcount="5">
  <div role="row">
    <span role="columnheader" aria-colindex="2" aria-colspan="2">cell 2</span>
    <span role="columnheader" aria-colindex="4">cell 4</span>
    <span role="columnheader" aria-colindex="5">cell 5</span>
  </div>
  <div role="row" aria-colindex="2">
    <span role="gridcell">cell 2</span>
    <span role="gridcell">cell 3</span>
    <span role="gridcell">cell 4</span>
    <span role="gridcell">cell 5</span>
  </div>
</div>