haikuwebkit/LayoutTests/tables/mozilla/core/col_widths_fix_autoFix.html

49 lines
1007 B
HTML

fixed table - fixed cells get expanded in Quirks mode, not in Standard
<table width=200 border>
<tr>
<td width=100>100px 100px 100px</td>
<td>auto auto</td></tr>
</table>
<BR>
<hr align=left style="width:100px;">
table fixed at 600, 1st 2 cells fixed at 100, 2nd not
<table width=600 border>
<tr>
<td width=100>foo
<td width=100>bar
<td>foo</td></tr>
</table>
<BR>
table fixed at 600, 1st 2 cells fixed at 100, 2nd not
<table width=600 border>
<tr>
<td width=100>foo
<td width=100>bar
<td>foo</td></tr>
</table>
<BR>
table fixed at 600, 1st 2 cells fixed at 50, 2nd not
<table width=600 border>
<tr>
<td width=50>foo
<td width=50>bar
<td>foo</td></tr>
</table>
<BR>
table fixed at 600, 1st 2 cells fixed at 1000, 2nd not
<table width=600 border>
<tr>
<td width=1000>foo
<td width=1000>bar
<td>foo</td></tr>
</table>
<BR>
table fixed at 600, 1st 2 cells fixed at 5, 2nd not
<table width=600 border>
<tr>
<td width=5>foo
<td width=5>bar
<td>foo</td></tr>
</table>
<BR>