Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 413286-6.html
blob2b71da8ac237442292a0652ac8e3c0ec77ebde1d
1 <html>
2 <head><style>
3 table { width: 600px; }
4 td.smallSpec { width: 100px; }
5 td.zeroSpec { width: 0px; }
6 td.smallPct { width: 10%; }
7 td.pink { background: pink; }
8 td.teal { background: teal; }
9 </style></head>
10 <body>
12 <h2>Other column fixed-width; two zero columns with colspan; explicit 0 width on span</h2>
14 <table cellspacing="0" cellpadding="0">
15 <tr>
16 <td class="smallSpec pink">100</td>
17 <td class="zeroSpec teal" colspan="2"/>
18 </tr>
19 </table>
21 <h2>Other column percent-width; two zero columns with colspan; explicit 0 width on span</h2>
23 <table cellspacing="0" cellpadding="0">
24 <tr>
25 <td class="smallPct pink">10%</td>
26 <td class="zeroSpec teal" colspan="2"/>
27 </tr>
28 </table>
30 <h2>Other column fixed-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2>
32 <table cellspacing="0" cellpadding="0">
33 <tr>
34 <td class="smallSpec pink">100</td>
35 <td class="zeroSpec teal"/>
36 </tr>
37 <tr><td colspan="2"/></tr>
38 </table>
40 <h2>Other column percent-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2>
42 <table cellspacing="0" cellpadding="0">
43 <tr>
44 <td class="smallPct pink">10%</td>
45 <td class="zeroSpec teal"/>
46 </tr>
47 <tr><td colspan="2"/></tr>
48 </table>
50 </body>
51 </html>