Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t0805-c5516-brdr-c-00-a.html
blob85df2fe9091e82de55365536fc22e193ad9d4541
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: border-color</title>
5 <style type="text/css">
6 .one {border-color: green; border-style: solid;}
7 .two {border-color: green; border-width: medium; border-style: solid;}
8 .three {border-color: purple green blue yellow; border-width: 2em; border-style: solid;}
9 </style>
10 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
11 </head>
12 <body>
13 <p class="one">
14 This box should have a green border.
15 </p>
16 <p class="two">
17 This box should have an identical green border.
18 </p>
19 <p class="three">
20 Clockwise from top, the borders should be: PURPLE, GREEN, BLUE, YELLOW.
21 </p>
22 </body>
23 </html>