outline-011.html (812B)
1 <!doctype html> 2 <html lang=en> 3 <meta charset=utf-8> 4 <title>CSS-UI test: outline-color: currentcolor</title> 5 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net"> 6 <meta name=flags content=""> 7 <meta name=assert content="currentcolor computes to currentcolor on outline-color"> 8 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 9 <link rel=help href="https://drafts.csswg.org/css-ui-3/#outline-props"> 10 <style> 11 body > div { 12 width: 100px; 13 height: 100px; 14 background: red; 15 color: red; 16 display: table-cell; /* Make a BFC */ 17 } 18 div > div { 19 width: 0; 20 height: 0; 21 margin: 50px; 22 color: green; 23 outline: solid currentcolor 50px; 24 } 25 </style> 26 27 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 28 <div><div></div></div>