Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / td-width-fifty-percent-regression.html
blobfeb9a74a49d3a292c8854ee6f25c7b0488998d6b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 table
7 font-size: 150%;
8 border:solid black 1px;
10 td.fiftyPercent
12 width: 50%;
14 </style>
15 </head>
16 <body>
17 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=84260">84260</a>: REGRESSION(102040): Auto-table layout with percent width doesn't shrink-to-fit content a cell with colspan</p>
18 <p>For this test to pass, the table below should fit its content.</p>
19 <table>
20 <tr>
21 <td class="fiftyPercent"></td><td class="fiftyPercent"></td>
22 </tr>
23 <tr>
24 <td colspan="2">Lorem</td>
25 </tr>
26 </table>
27 </body>
28 </html>