tor-browser

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

transform-overflow-002-ref.html (499B)


      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 > div {
      8        height: 200px;
      9        width: 200px;
     10        overflow: scroll;
     11      }
     12      body > div > div {
     13        height: 100px;
     14        width: 100px;
     15        background: blue;
     16        position: relative;
     17        left: 150px;
     18      }
     19    </style>
     20  </head>
     21  <body>
     22    <div>
     23      <div></div>
     24    </div>
     25  </body>
     26 </html>