chromium/third_party/blink/web_tests/css2.1/t0805-c5516-ibrdr-c-00-a.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: border-color</title>
  <style type="text/css">
   p { margin: 3em; }
   .one {border-color: green; border-style: solid;}
   .two {border-color: green; border-width: medium; border-style: solid;}
   .three {border-color: purple green blue yellow; border-width: 2em; border-style: solid;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
 </head>
 <body>
  <p>
   <span class="one">This box should have a green border.</span>
  </p>
  <p>
   <span class="two">This box should have a green border.</span>
  </p>
  <p>
   <span class="three">Clockwise from top, the borders should be: PURPLE, GREEN, BLUE, YELLOW.</span>
  </p>
 </body>
</html>