1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-width/spanning-cell-sort-2-small.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<title>Testcase to exercise nsSpanningCellSorter</title> 1.6 +<style type="text/css"> 1.7 + 1.8 +table, td { 1.9 + border-spacing: 0; 1.10 + padding: 0; margin: 0; border: none; 1.11 + empty-cells: show; 1.12 +} 1.13 + 1.14 +td { height: 20px; } 1.15 + 1.16 +</style> 1.17 + 1.18 +<table> 1.19 + <tr> 1.20 + <td style="background-color: blue" colspan="2"><div style="width: 200px"></div></td> 1.21 + <td style="background-color: fuchsia"></td> 1.22 + <td style="background-color: maroon"></td> 1.23 + </tr> 1.24 + <tr> 1.25 + <td style="background-color: yellow"></td> 1.26 + <td style="background-color: aqua" colspan="3"><div style="width: 300px"></div></td> 1.27 + </tr> 1.28 +</table>