about summary refs log tree commit diff stats
path: root/test/layout/table-overlapping-rowspan-and-colspan.html
blob: 9f4d7353cb407c0267cfd77e528d35f90d9814ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<table>
<tr>
<td>
test
</td>
<td rowspan=2 bgcolor=blue>
test<br>
test
</td>
</tr>
<tr>
<td colspan=2>
col2
</td>
<td>
col4
</td>
</tr>
</table>