<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS inheritance: border-color</title>
  <style type="text/css">
   test { display: block; color: green; border: none; }
   test > inner { border-color: inherit; border-style: solid; color: red; }
   test > inner > text { color: green; }
  </style>
 </head>
 <body>
  <test xmlns="http://www.example.org/">
   <inner>
    <text>
     This should have a green border, because the computed value of
     'border-color' set to its initial value is the computed value
     of 'color', which is then inherited as a color.
    </text>
   </inner>
  </test>
 </body>
</html>
