1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

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

<!--
@MAC-ALLOW:AXRoleDescription
@WIN-ALLOW:xml-roles*
@WIN-ALLOW:table*
-->
<!DOCTYPE html>
<html>
<body>
<div role="table">
  <div role="row">
    <span role="columnheader">Browser</span>
    <span role="columnheader">Rendering Engine</span>
  </div>
  <div role="row">
    <span role="cell">Chrome</span>
    <span role="cell">Blink</span>
  </div>
</div>
</body>
</html>