summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table_grid_size_col_colspan.html
blob: 2ac3e1032ff205226cdd257ae30ddd59fca6b3ef (plain)
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
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<link rel="help" href="https://www.w3.org/TR/css-tables-3/#dimensioning-the-row-column-grid">
<link rel="match" href="table_grid_size_col_colspan-ref.html">
<meta name="assert" content="colspanned cell fits inside grid defined by COL" />
<style>
  table {
    border-collapse: collapse;
    table-layout:fixed;
  }
  td {
    height:50px;
    background: yellow;
    border: 10px solid green;
    padding:0;
  }
  col {
    width:50px;
  }
</style>
<!--
  <p>Colspanned cell should not grow bigger than table grid.</p>
  <p>Test sizes of colspanned cell when grid width is defined by COL elements</p>
-->
<table>
  <col></col>
  <col></col>
  <col></col>
  <td colspan=1></td>
</table>
<table>
  <col></col>
  <col></col>
  <col></col>
  <td colspan=2></td>
</table>
<table>
  <col></col>
  <col></col>
  <col></col>
  <td colspan=4></td>
</table>
<table>
  <col></col>
  <td colspan=1></td>
</table>
<table>
  <col></col>
  <td colspan=2></td>
</table>