about summary refs log tree commit diff stats
path: root/test/layout/table-rowspan.html
blob: 60720a1fb9342fc4f679bff9b284c59c7cd65343 (plain) (blame)
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
<!DOCTYPE HTML>
<TABLE>
<TR>
<TD>
row 1, cell 1
</TD>
<TD ROWSPAN=3>
rowspan 3 (centered on row 2)
</TD>
<TD>
row 1, cell 3
</TD>
</TR>
<TR>
<TD>
row 2, cell 1
</TD>
<TD>
row 2, cell 3
</TD>
</TR>
<TR>
<TD>
row 3, cell 1
</TD>
<TD>
row 3, cell 3
</TD>
</TR>
</TABLE>