summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/spanning-cell-sort-2-large-fixed.html
blob: 6bf7dc4d6fd2f7f656c5152f7bf42bf2514ac30c (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
<!DOCTYPE HTML>
<title>Testcase to exercise nsSpanningCellSorter</title>
<style type="text/css">

table, td {
	border-spacing: 0;
	padding: 0; margin: 0; border: none;
	empty-cells: show;
}

td { height: 20px; }

</style>

<table style="width: 600px">
  <tr>
    <td style="background-color: blue" colspan="20"><div style="width: 200px"></div></td>
    <td style="background-color: fuchsia" colspan="10"></td>
    <td style="background-color: maroon" colspan="10"></td>
  </tr>
  <tr>
    <td style="background-color: yellow" colspan="10"></td>
    <td style="background-color: aqua" colspan="30"><div style="width: 300px"></div></td>
  </tr>
</table>