Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / border-conflict-element-001-expected.html
blob23c46a22edc521cc93d5a75d5feb84354538d393
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;
14 border: 5px solid black;
16 .collapsing1
18 border-left: black;
20 #collapsing2
22 border-top: black;
24 </style>
25 </head>
26 <body>
27 <p>Test passes if there is no red visible on the page.</p>
28 <table>
29 <tr>
30 <td></td>
31 <td></td>
32 <td></td>
33 </tr>
34 <tr>
35 <td></td>
36 <td class="collapsing1"></td>
37 <td class="collapsing1"></td>
38 </tr>
39 <tr>
40 <td></td>
41 <td id="collapsing2"></td>
42 <td></td>
43 </tr>
44 </table>
45 </body>
46 </html>