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 / html / table-simple.html [blame]

<!--
@MAC-ALLOW:AXIndex=*
@MAC-ALLOW:AXColumnIndexRange=*
@MAC-ALLOW:AXRowIndexRange=*
-->
<!DOCTYPE html>
<html>
<head>
  <title>Table example</title>
</head>
<body>

<table border=1>
  <tr>
    <th>Pair</th>
    <th>Single</th>
  </tr>
  <tr>
    <td>AB</td>
     <td>B</td>
  </tr>
  <tr>
    <td>CD</td>
    <td>D</td>
  </tr>
</table>

</body>
</html>