mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
480 B
HTML
25 lines
480 B
HTML
<!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>
|
|
<tr>
|
|
<td style="width: 100px; background-color: yellow"></td>
|
|
<td style="width: 300px; background-color: aqua"></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="background-color: blue"></td>
|
|
<td style="background-color: blue"></td>
|
|
</tr>
|
|
</table>
|