Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / border-conflict-style-079.htm
blob78ad0230d6ab9aca9dd84e39dddd31e0ab317dd8
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 border style): 'outset' vs. 'ridge' - border with highest priority border style should dominate</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="The 'ridge' border is the dominant border when it is collapsed with an 'outset' border of the same size.">
9 <style type="text/css">
10 #table1
12 margin-bottom: 20px;
14 table
16 border-collapse: collapse;
20 border: 5px outset lime;
21 height: 3em;
22 width: 3em;
24 #center, #table1 td
26 border: 5px ridge lime;
28 #top
30 border-top: 5px outset red;
32 #left
34 border-left: 5px outset red;
36 #bottom
38 border-bottom: 5px outset red;
40 #right
42 border-right: 5px outset red;
44 </style>
45 </head>
46 <body>
47 <p>Test passes if the center box in the table below has a border similar to this:</p>
48 <table id="table1">
49 <tr>
50 <td></td>
51 </tr>
52 </table>
53 <table>
54 <tr>
55 <td>outset</td>
56 <td id="bottom">outset</td>
57 <td>outset</td>
58 </tr>
59 <tr>
60 <td id="right">outset</td>
61 <td id="center">ridge</td>
62 <td id="left">outset</td>
63 </tr>
64 <tr>
65 <td>outset</td>
66 <td id="top">outset</td>
67 <td>outset</td>
68 </tr>
69 </table>
70 </body>
71 </html>