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
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40

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

<!--
@AURALINUX-ALLOW:table-cell-index*
@BLINK-ALLOW:*ColumnCount*
@BLINK-ALLOW:*ColumnIndex*
@MAC-ALLOW:AXColumnIndexRange=*
@MAC-ALLOW:AXIndex=*
@MAC-ALLOW:AXRowIndexRange=*
@WIN-ALLOW:column_*
@WIN-ALLOW:row_*
@WIN-ALLOW:table*
-->
<!DOCTYPE html>
<html>
<head>
  <title>Table example with rowspan and colspan</title>
</head>
<body>

<table border=1>
  <tr>
    <td rowspan="2">AD</td>
    <td colspan="2">BC</td>
  </tr>
  <tr>
    <td colspan="2">EF</td>
  </tr>
</table>
<table border=1>
  <tr>
    <td rowspan="2">AD</td>
    <td colspan="2">BC</td>
  </tr>
  <tr>
    <td>EF</td>
    <td>GH</td>
  </tr>
</table>

</body>
</html>