outline-auto-width-001-ref.html (631B)
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: auto; 9 width: 100px; 10 height: 100px; 11 margin: 2em; 12 } 13 hr + div { 14 outline-style: solid; 15 outline-width: 1em; 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>