tor-browser

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

animation-offscreen-to-onscreen-ref.html (434B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>Validates rendering of a transformed element when the element is initially off screen</title>
      4 <style type="text/css" media="screen">
      5  body {
      6    margin: 0;
      7  }
      8 
      9  #box {
     10    position: absolute;
     11    left: 0px;
     12    top: 100px;
     13    height: 100px;
     14    width: 100px;
     15    margin: 0;
     16    background-color: green;
     17    transform: translate(100px, 0px);
     18  }
     19 </style>
     20 <body>
     21  <div id="box"></div>
     22 </body>
     23 </html>