RetroZilla/layout/html/tests/table/bugs/bug2509.html

21 lines
663 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<html><head><style>
TABLE {table-layout:fixed; border: solid red 1px; width: 400}
TD {border: solid green 1px;}
TD.one {border: solid blue 1px; width: 300}
TD.two {border: solid blue 1px;}
</style></head><body>
<!-- this table should derive the width of the second column from what's
left over from the table width after subtracting the first column width -->
<TABLE><TR>
<TD class="one">What's New on WebDeveloper.com</TD>
<TD class="two">umm</TD>
</TR><TR>
<TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
<TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
</TR></TABLE>
</body></html>