tor-browser

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

stacking-context-ref.html (541B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>
      5      Reference: Individual transform properties' animations create stacking context in delay phase
      6    </title>
      7    <style>
      8      #back {
      9        height: 100px;
     10        width: 100px;
     11        position: fixed;
     12        background: green;
     13        margin-top: 50px;
     14      }
     15      #test {
     16        width: 100px;
     17        height: 100px;
     18        background: blue;
     19        will-change: transform;
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div id="back"></div>
     25    <div id="test"></div>
     26  </body>
     27 </html>