Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / border-conflict-element-005.htm
blobd82d54dc4c8f9cbdcbc62e4c427a739a3f4a2574
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: Border Conflict Resolution (by element): cell in row group - element with highest priority is the dominant border</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution">
7 <meta name="flags" content="">
8 <meta name="assert" content="With embedded elements (cell, row group) of same border-style and width, border collapsing favors the cell.">
9 <style type="text/css">
10 table
12 border-collapse: collapse;
13 height: 2in;
14 width: 2in;
16 tbody
18 border: 5px solid red;
22 border: 5px solid black;
24 </style>
25 </head>
26 <body>
27 <p>Test passes if there is no red visible on the page.</p>
28 <table>
29 <tbody>
30 <tr>
31 <td></td>
32 </tr>
33 </tbody>
34 </table>
35 </body>
36 </html>