Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug1128.html
blob6244b76aab886199c186eb9faa0700f396d4fb8d
1 <html>
2 <head>
3 <title>Table Column Proportional Width Contraints</title>
4 </head>
5 <body>
6 <h2>HTML 4.0 Table Column Proportional Width Constraints</h2>
7 <p>
8 The table below is 350 pixels wide. The columns are assigned proportional widths using COLs
9 as follows:
10 </p>
11 <tt>
12 &lt;col width=50&gt;<br>
13 &lt;col width=2*&gt;<br>
14 &lt;col width=1*&gt;<Br>
15 &lt;col width=3*&gt;
16 </tt>
17 <p>
18 This means the first column should be 50 pixels wide. The remaining width should be divided
19 among the three remaining columns according to the proportional width statements into six
20 (2+1+3)
21 parts. Since the Table is 350 pixels wide, and the remaining width is 300 pixels (350-50),
22 the remaining columns should be 100 (2*50), 50 (1*50) and 150 (3*50) pixels wide,
23 respectively.
24 </p>
25 <table border=1 width=350>
26 <colgroup>
27 <col width=50>
28 <col width=2*>
29 <col width=1*>
30 <col width=3*>
31 </colgroup>
32 <tr>
33 <th>One
34 <th>Two
35 <th>Three
36 <th>Four
37 </tr>
38 <tr>
39 <td>Red
40 <td>Green
41 <td>Blue
42 <td>Green
43 </tr>
44 </table>
45 </body>
46 </html>