tor-browser

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

thin-element-render-ref.html (722B)


      1 <!DOCTYPE html>
      2 <title>Reference: Thin elements should paint even at small size</title>
      3 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
      4 <html>
      5  <head>
      6    <style>
      7        .disappearing-border {
      8            height:1px;
      9            width:100%;
     10            border-top:1px solid black;
     11        }
     12 
     13        .disappearing-box {
     14          height:1px;
     15          width:100%;
     16          background-color: black;
     17        }
     18 
     19        body {
     20            margin: 0px;
     21            padding: 0px;
     22            box-sizing: border-box;
     23        }
     24    </style>
     25 </head>
     26 <body>
     27    <div class="disappearing-border"></div>
     28    <div style="height:6.5px;"></div>
     29    <div class="disappearing-box"></div>
     30 </body>
     31 </html>