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

content / test / data / accessibility / html / col.html [blame]

<!--
@AURALINUX-ALLOW:
  table-cell-index*
@BLINK-ALLOW:
  *ColumnCount*
  *ColumnIndex*
@MAC-ALLOW:
  AXColumnIndexRange
  AXIndex
  AXRowIndexRange
@WIN-ALLOW:
  column_*
  row_*
  table*
-->
<!DOCTYPE html>
<html>
<body>
<table>
  <colgroup>
    <col span="1" style="background-color:blue">
    <col style="background-color:green">
  </colgroup>
  <tr>
    <th>Browser</th>
    <th>Rendering Engine</th>
  </tr>
  <tr>
    <td>Chrome</td>
    <td>Blink</td>
  </tr>
</table>

</body>
</html>