Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / min-width-with-spanned-cell.html
blobd95401bf8ceb5339adc4b27febf23c8348a119a6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 td {
6 color: #333333;
7 background-color: #eee;
9 </style>
10 </head>
11 <body>
13 <!--When a cell spans an entire row on a table with auto layout, ensure that cells containing text are not
14 squeezed smaller than the width of the text. The text in the first two cells in the first row should not overlap.-->
16 <table style="font: 12px Ahem;" width="100%">
17 <tr>
18 <td width="1%">
19 texttesttest
20 </td>
21 <td width="1%">
22 texttesttest
23 </td>
24 <td width='98%'>
25 </td>
26 </tr>
27 <tr>
28 <td colspan="3">
29 texttesttexttesttesttextte
30 </td>
31 </tr>
32 </table>
33 </body>
34 </html>