Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug91057.html
blobc0442abeea773cbd99fe42a97143f262b0b60a63
1 <!DOCTYPE html "-//W3C//DTD HTML 4.0//EN">
2 <html>
3 <head>
4 <title> Caption Margin Test bug 91057</title>
5 <style type="text/css">
6 * {border: 1px solid}
7 .one {
8 margin-left: 50px;
10 .two {
11 margin-right: 50px;
13 .three {
14 margin: 50px;
16 .four {
17 margin-left: 5%;
19 .five {
20 margin-right: 5%;
22 .six {
23 margin: 5%;
25 </style>
26 </head>
27 <body bgcolor="#FFFFFF">
29 <h1>Caption Margin Test</h1>
31 <div style="border: 1px solid green; width: 100px">
32 100px
33 </div>
34 <div style="border: 1px solid red; width: 50px">
35 50px
36 </div>
38 <h2>Control</h2>
40 <table>
41 <caption>TA</caption>
42 <tr>
43 <td>Table Cell 1</td>
44 <td>Table Cell 2</td>
45 </tr>
46 </table>
48 <table>
49 <caption>TB</caption>
50 <tr>
51 <td>Table Cell 1 Table Cell 1</td>
52 <td>Table Cell 2 Table Cell 2</td>
53 </tr>
54 </table>
56 <h2>Test 1 - "margin-left: 50px"</h2>
58 <table>
59 <caption class="one">TA</caption>
60 <tr>
61 <td>Table Cell 1</td>
62 <td>Table Cell 2</td>
63 </tr>
64 </table>
66 <table>
67 <caption class="one">TB</caption>
68 <tr>
69 <td>Table Cell 1 Table Cell 1</td>
70 <td>Table Cell 2 Table Cell 2</td>
71 </tr>
72 </table>
74 <h2>Test 2 - "margin-right: 50px"</h2>
76 <table>
77 <caption class="two">TA</caption>
78 <tr>
79 <td>Table Cell 1</td>
80 <td>Table Cell 2</td>
81 </tr>
82 </table>
84 <table>
85 <caption class="two">TB</caption>
86 <tr>
87 <td>Table Cell 1 Table Cell 1</td>
88 <td>Table Cell 2 Table Cell 2</td>
89 </tr>
90 </table>
92 <h2>Test 3 - "margin: 50px"</h2>
94 <table>
95 <caption class="three">TA</caption>
96 <tr>
97 <td>Table Cell 1</td>
98 <td>Table Cell 2</td>
99 </tr>
100 </table>
102 <table>
103 <caption class="three">TB</caption>
104 <tr>
105 <td>Table Cell 1 Table Cell 1</td>
106 <td>Table Cell 2 Table Cell 2</td>
107 </tr>
108 </table>
110 <table>
111 <caption class="three">TC</caption>
112 <tr>
113 <td>Table Cell 1 Table Cell 1 Table Cell 1</td>
114 <td>Table Cell 2 Table Cell 2 Table Cell 2</td>
115 </tr>
116 </table>
118 <h2>Test 4 - "margin-left: 5%"</h2>
120 <table>
121 <caption class="four">TA</caption>
122 <tr>
123 <td>Table Cell 1</td>
124 <td>Table Cell 2</td>
125 </tr>
126 </table>
128 <table>
129 <caption class="four">TB</caption>
130 <tr>
131 <td>Table Cell 1 Table Cell 1</td>
132 <td>Table Cell 2 Table Cell 2</td>
133 </tr>
134 </table>
136 <h2>Test 5 - "margin-right: 5%"</h2>
138 <table>
139 <caption class="five">TA</caption>
140 <tr>
141 <td>Table Cell 1</td>
142 <td>Table Cell 2</td>
143 </tr>
144 </table>
146 <table>
147 <caption class="five">TB</caption>
148 <tr>
149 <td>Table Cell 1 Table Cell 1</td>
150 <td>Table Cell 2 Table Cell 2</td>
151 </tr>
152 </table>
154 <h2>Test 6 - "margin: 5%"</h2>
156 <table>
157 <caption class="six">TA</caption>
158 <tr>
159 <td>Table Cell 1</td>
160 <td>Table Cell 2</td>
161 </tr>
162 </table>
164 <table>
165 <caption class="six">TB</caption>
166 <tr>
167 <td>Table Cell 1 Table Cell 1</td>
168 <td>Table Cell 2 Table Cell 2</td>
169 </tr>
170 </table>
172 <table>
173 <caption class="six">TB</caption>
174 <tr>
175 <td>Table Cell 1 Table Cell 1 Table Cell 1</td>
176 <td>Table Cell 2 Table Cell 2 Table Cell 2</td>
177 </tr>
178 </table>
180 </body>
181 </html>