Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / border-conflict-element-032.htm
blob7fd00163e91b4399ef52f807c1559dfdf285a0f5
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): column vs. table - 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 (column, table) of same border-style and width, border collapsing favors the column.">
9 <style type="text/css">
10 table
12 border: 5px solid red;
13 border-collapse: collapse;
14 height: 2in;
15 width: 2in;
17 col
19 border: 5px solid black;
21 </style>
22 </head>
23 <body>
24 <p>Test passes if there is no red visible on the page.</p>
25 <table>
26 <col>
27 <tr>
28 <td></td>
29 </tr>
30 </table>
31 </body>
32 </html>