blob: a7e35d396bdf3791b03b06c0a43861925562edf3 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
table {
border-spacing: 0px;
}
th {
padding: 0px;
width: 100px;
height: 100px;
}
col, colgroup {
background-color: green;
}
</style>
</head>
<body>
<p><a href="http://webkit.org/b/87051">87051</a>: Centralize and clean-up table column iteration</p>
<p>This test passes if you see 3 rectangles below: green - purple - green (in this order, left to right).</p>
<table>
<col>
<caption>
<colgroup span="2">
<col style="background-color: purple">
<col>
</colgroup>
<tbody>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</tbody>
</table>
</body>
</html>
|