border-left-color-175

Border-left-color set to inherit

WeasyPrint

This browser

Assertion
The 'border-left-color' set to inherit causes the 'border-left-color' of the element to be the same as the 'border-left-color' designated on the parent element.

Source

 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-left-color set to inherit</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-border-left-color">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-color-properties">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'border-left-color' set to inherit causes the 'border-left-color' of the element to be the same as the 'border-left-color' designated on the parent element.">
10         <style type="text/css">
11             body
12             {
13                 border-left-color: green;
14             }
15             div
16             {
17                 border-left-style: solid;
18                 border-left-width: 1in;
19                 border-left-color: red;
20                 border-left-color: inherit;
21                 height: 1in;
22             }
23         </style>
24     </head>
25     <body>
26         <p>Test passes if there is a green box below.</p>
27         <div></div>
28     </body>
29 </html>