tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

outline-020-ref.html (610B)


      1 <!doctype html>
      2 <html lang=en>
      3  <meta charset=utf-8>
      4  <title>CSS-UI test: outline block with outline inline reference file</title>
      5  <link rel="author" title="Aleks Totic <atotic@chromium.org>">
      6  <meta name=assert content="inline child displays outline correctly">
      7 <style>
      8 #container {
      9  border: 5px solid green;
     10  width: 110px;
     11  height: 40px;
     12  position: relative;
     13  top: -5px;
     14  left: -5px;
     15 }
     16 
     17 #target {
     18  border: 5px solid blue;
     19  position: relative;
     20  top: 5px;
     21 }
     22 </style>
     23 
     24  <p>Test passes if blue outline touches top left of green outline.</p>
     25  <div id="container"><span id="target">x</span></div>