Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / border-conflict-element-020-expected.html
blob1649d45b72d68dc3527bd14a83123205f26c645c
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 border-collapse: collapse;
9 height: 2in;
10 width: 2in;
12 tbody
14 border-left: 5px solid black;
15 border-right: 5px solid black;
17 #collapsing1
19 border-bottom: 5px solid black;
20 border-top: 5px solid black;
22 #collapsing2
24 border-bottom: 5px solid black;
25 border-top: 5px solid black;
27 #test
29 border: 5px solid black;
31 </style>
32 </head>
33 <body>
34 <p>Test passes if there is no red visible on the page.</p>
35 <table>
36 <tbody id="collapsing1">
37 <tr>
38 <td></td>
39 </tr>
40 </tbody>
41 <tbody>
42 <tr>
43 <td id="test"></td>
44 </tr>
45 </tbody>
46 <tbody id="collapsing2">
47 <tr>
48 <td></td>
49 </tr>
50 </tbody>
51 </table>
52 </body>
53 </html>