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

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

<!--
@BLINK-ALLOW:table*
@MAC-ALLOW:AXRoleDescription
@WIN-ALLOW:*SELECTABLE
@WIN-ALLOW:xml-roles*
@WIN-ALLOW:colindex:*
@WIN-ALLOW:rowindex:*
@WIN-ALLOW:ia2_table_cell_column_index=*
@WIN-ALLOW:ia2_table_cell_row_index=*
@AURALINUX-ALLOW:xml-roles*
@AURALINUX-ALLOW:col*
@AURALINUX-ALLOW:row*
@AURALINUX-ALLOW:select*
-->
<!DOCTYPE html>
<html>
<body>
<div role="grid">
  <div role="row">
    <span role="columnheader">Browser</span>
    <span role="columnheader">Rendering Engine</span>
  </div>
  <div role="row">
    <span role="gridcell">Chrome</span>
    <span role="gridcell">Blink</span>
  </div>
</div>
</body>
</html>