tor-browser

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

1428993-2-ref.html (569B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      5 <meta charset="utf-8">
      6 <title>Retained display list test</title>
      7 <style type="text/css">
      8 #child {
      9    position: absolute;
     10    width: 100px;
     11    height: 100px;
     12    top: 300px;
     13    left: 0px;
     14    background-color: green;
     15 }
     16 
     17 .container {
     18    position: absolute;
     19    top: 0px;
     20    left: 0px;
     21    width: 200px;
     22    height: 200px;
     23    z-index: 1;
     24    background-color: green;
     25 }
     26 </style>
     27 </head>
     28 
     29 <body>
     30 <div class="container">
     31    <div id="child"></div>
     32 </div>
     33 </body>
     34 </html>