Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug2509.html
blobe21b6f847242d64c6f368f0c25f40ae724b7cda5
1 <html><head><style>
2 TABLE {table-layout:fixed; border: solid red 1px; width: 400}
3 TD {border: solid green 1px;}
4 TD.one {border: solid blue 1px; width: 300}
5 TD.two {border: solid blue 1px;}
6 </style></head><body>
8 <!-- this table should derive the width of the second column from what's
9 left over from the table width after subtracting the first column width -->
11 <TABLE><TR>
12 <TD class="one">What's New on WebDeveloper.com</TD>
13 <TD class="two">umm</TD>
14 </TR><TR>
15 <TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
16 <TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
17 </TR></TABLE>
19 </body></html>