Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug42043.html
blob67ff5cfc4a483e2d295f2cbe165c91db0269c32d
1 <html>
2 <body>
3 <p>(1) Table with 2 columns. Relative width value for first column is "1*" and for column 2 is "3*". Table width is 100%. The first column should span 1/4 of the window width and the second column should span 3/4 of the window width. <b>5.0 renders this correctly.</b></p>
5 <table width="100%" border="1">
6 <colgroup>
7 <col width="1*">
8 <col width="3*">
9 </colgroup>
10 <tr>
11 <td>Test</td>
12 <td>Test</td>
13 </tr>
14 </table>
15 <br><br>
16 <p>(2) Table with 1 column. Relative width value for column is "0*" with table width of 100%. The column should span the minimum width necessary to hold the column's contents. <b>Problem.</b></p>
18 <table width="100%" border="1">
19 <colgroup>
20 <col width="0*">
21 </colgroup>
22 <tr>
23 <td>Test</td>
24 </tr>
25 </table>
27 <br><br>
28 <p>(3) Table with 2 columns. Relative width value for first column is "0*" and for column 2 is "3*". Table width is 100%. The first column should span the minimum width necessary to hold the column's contents. The second column should ????<b>The first column is rendered properly, but there seems to be a problem with the width of the second column.</b></p>
30 <table width="100%" border="1">
31 <colgroup>
32 <col width="0*">
33 <col width="3*">
34 </colgroup>
35 <tr>
36 <td>Test</td>
37 <td>Test</td>
38 </tr>
39 </table>
42 </body>
43 </html>