tor-browser

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

neutral-var-keyframe-cycle-registered-crash.html (451B)


      1 <!DOCTYPE html>
      2 <title>CSS Animations: Crash when using neutral keyframes and a var()-cycle (registered)</title>
      3 <link rel="help" href="https://crbug.com/433196586">
      4 <style>
      5    @property --x {
      6        syntax: "<number>";
      7        initial-value: 0;
      8        inherits: false;
      9    }
     10    #test {
     11        animation: anim 1s;
     12    }
     13 
     14    @keyframes anim {
     15        to {
     16            --x: var(--x);
     17        }
     18    }
     19 </style>
     20 <div id="test">PASS if no crash</div>