tor-browser

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

stacking-context-offset-path-none-animation.html (450B)


      1 <!DOCTYPE html>
      2 <title>
      3 offset-path animation creates a stacking context even though it has only
      4 'offset-path:none' keyframes
      5 </title>
      6 <style>
      7 span {
      8  height: 100px;
      9  width: 100px;
     10  position: fixed;
     11  background: green;
     12  top: 50px;
     13 }
     14 @keyframes OffsetPathNone {
     15  from, to { offset-path: none }
     16 }
     17 #test {
     18  width: 100px; height: 100px;
     19  background: blue;
     20  animation: OffsetPathNone 100s infinite;
     21 }
     22 </style>
     23 <span></span>
     24 <div id="test"></div>