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

<!--
@WIN-ALLOW:*row*:*
@WIN-ALLOW:*row*=*
@WIN-ALLOW:posinset*
@WIN-ALLOW:setsize*
@MAC-ALLOW:AXARIARowCount
@MAC-ALLOW:AXARIARowIndex
@BLINK-ALLOW:ariaRow*
@BLINK-ALLOW:ariaCellRow*
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@AURALINUX-ALLOW:*row*
-->
<!-- 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-rowcount="5">
  <div role="row">
    <span role="columnheader" aria-rowindex="3">cell 2</span>
    <span role="columnheader" aria-rowindex="3">cell 3</span>
    <span role="columnheader" aria-rowindex="3" aria-rowspan="2">cell 4</span>
  </div>
  <div role="row" aria-rowindex="4">
    <span role="gridcell">cell 2</span>
    <span role="gridcell">cell 3</span>
  </div>
</div>