tor-browser

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

transform-compound-notref-2.html (537B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <style>
      7      body {
      8        overflow: hidden;
      9      }
     10      body > div {
     11        position: relative;
     12        left: 200px;
     13        top: 0;
     14      }
     15      body > div > div {
     16        background-color: gold;
     17        width: 200px;
     18        height: 100px;
     19        border: 1px solid black;
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div>
     25      <div>
     26      </div>
     27    </div>
     28  </body>
     29 </html>