Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / fixed-table-layout-cell-padding-expected.html
blob329057318ae7b8d3aacccd1611c527a26d31995c
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Reference Result</title>
5 <style type="text/css">
6 table
8 table-layout: fixed;
9 border-collapse: separate;
10 border-spacing: 0;
14 height: 100px;
15 padding: 0;
17 #blue
19 background: blue;
20 width: 30px;
22 #orange
24 background: orange;
25 width: 10px;
27 </style>
28 </head>
29 <body>
30 <p>Test passes if all of the blue lines below appear to have the same width.</p>
31 <table>
32 <tr>
33 <td id="orange"></td>
34 <td id="blue"></td>
35 <td id="orange"></td>
36 <td id="blue"></td>
37 <td id="orange"></td>
38 <td id="blue"></td>
39 <td id="orange"></td>
40 </tr>
41 </table>
42 </body>
43 </html>