chromium/third_party/blink/web_tests/tables/mozilla/bugs/bug2509.html

<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>