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