Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug29058-2.html
blob547f141242e7c43491640b90f7fad141445f6333
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <HTML>
3 <!-- Created with GoldED 4.7.3 (23.6.97) -->
4 <HEAD>
5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <META name="description" lang="fr" content="Test sur les tables">
7 <META name="author" content="S&eacute;bastien Desvignes">
8 <META name="generator" content="WWW publishing extensions for GoldED">
9 <TITLE>Table width test</TITLE>
10 <STYLE type="text/css">
11 BODY
13 color: #000;
14 background-color: #999;
19 text-align: center;
22 TABLE
24 border: outset 1px grey;
29 border: inset 1px grey;
32 IMG
34 border: solid 1px white;
36 </STYLE>
37 </HEAD>
39 <BODY>
40 <TABLE>
41 <CAPTION>Table with no width attribute</CAPTION>
42 <COL width="50px">
43 <COL width="1*">
44 <COL width="50px">
45 <COL width="3*">
46 <TR>
47 <TD>50px</TD>
48 <TD>1*</TD>
49 <TD>50px</TD>
50 <TD>3*</TD>
51 </TR>
52 </TABLE>
53 <P>correct
55 <TABLE width="500px">
56 <CAPTION>Table with fixed width attribute =500px</CAPTION>
57 <COL width="50px">
58 <COL width="1*">
59 <COL width="50px">
60 <COL width="3*">
61 <TR>
62 <TD>50px</TD>
63 <TD>1*</TD>
64 <TD>50px</TD>
65 <TD>3*</TD>
66 </TR>
67 </TABLE>
68 <P>incorrect: it seems that the * columns start with the same width than the previous
69 example, and then all the columnss are expanded proportionally to occupy the extra space.
70 The * columns should use all the space unused by other columns, so no expand are needed
71 for other columns.
73 <TABLE width="100%">
74 <CAPTION>Table with width attribute =100%</CAPTION>
75 <COL width="50px">
76 <COL width="1*">
77 <COL width="50px">
78 <COL width="3*">
79 <TR>
80 <TD>50px</TD>
81 <TD>1*</TD>
82 <TD>50px</TD>
83 <TD>3*</TD>
84 </TR>
85 </TABLE>
86 <P>incorrect: same as above.
88 <TABLE width="500">
89 <CAPTION>Table with width attribute =500px</CAPTION>
90 <COL width="1*">
91 <COL width="2*">
92 <COL width="1*">
93 <COL width="6*">
94 <TR>
95 <TD>1*</TD>
96 <TD>2*</TD>
97 <TD>1*</TD>
98 <TD>6*</TD>
99 </TR>
100 </TABLE>
101 <P>correct
103 <TABLE width="100%">
104 <CAPTION>Table with width attribute =100%</CAPTION>
105 <COL width="1*">
106 <COL width="2*">
107 <COL width="1*">
108 <COL width="6*">
109 <TR>
110 <TD>1*</TD>
111 <TD>2*</TD>
112 <TD>1*</TD>
113 <TD>6*</TD>
114 </TR>
115 </TABLE>
116 <P>correct
117 </BODY>
119 </HTML>