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

content / test / data / accessibility / mac / methods / accessibility-rows.html [blame]

<!--
@SCRIPT:
  table.accessibilityRows
  column:= table.AXChildren[1]
  column.accessibilityRows
  tree.accessibilityRows
  not_applicable.accessibilityRows
-->
<!DOCTYPE html>
<div id="table" role="table">
  <div role="row">
    <span role="cell">column 1</span>
  </div>
</div>
<div role="tree" id="tree">
   <div role="treeitem"></div>
</div>
<div id="not_applicable"></div>