outline-007.html (899B)
1 <!doctype html> 2 <html lang=en> 3 <meta charset=utf-8> 4 <title>CSS-UI test: outline-style: auto</title> 5 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net"> 6 <meta name=flags content=""> 7 <meta name=assert content="outline-style:auto allows the UA to display any outline it wants, but it must display something."> 8 <link rel="mismatch" href="reference/outline-007-ref.html"> 9 <link rel=help href="https://drafts.csswg.org/css-ui-3/#outline-props"> 10 <style> 11 div { 12 width: 100px; 13 height: 100px; 14 outline-style: auto; 15 16 /* These values may be ignored by the UA, but just in case they are not, 17 set them to something that does not result in the outline being invisible */ 18 outline-width: 5px; 19 outline-color: green; 20 } 21 22 </style> 23 24 <p>Test passes if there is an outlined box below. The outline may be any shape or color so long as it is visible.</p> 25 <div></div>