outline-auto-width-001-b-ref.html (632B)
1 <!doctype html> 2 <html lang=en> 3 <meta charset=utf-8> 4 <title>CSS-UI test reference</title> 5 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> 6 <style> 7 div { 8 outline-style: solid; 9 outline-width: 1em; 10 width: 100px; 11 height: 100px; 12 margin: 2em; 13 } 14 div + div { 15 outline-style: none; 16 } 17 </style> 18 19 <p>Test passes if either: 20 <ul> 21 <li>there are three boxes below, two above the horizontal line and one below, and the two boxes above the line are identical 22 <li>there are two identical boxes below, one above the horizontal line and one below 23 </ul> 24 25 <div></div> 26 <div></div> 27 <hr> 28 <div></div>