tor-browser

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

chrome-bug-404743651.html (422B)


      1 <!DOCTYPE html>
      2 <title>CSS Animations: Chrome crash for getKeyframes() when animating background-image</title>
      3 <link rel="help" href="https://crbug.com/404743651">
      4 <style>
      5  @keyframes animate {
      6    to { background-image: url(foo.jpg); }
      7  }
      8  #target {
      9    animation: animate 100s;
     10  }
     11 </style>
     12 <div id="target"></div>
     13 <script>
     14  for (let anim of document.getAnimations()) {
     15    anim.effect.getKeyframes();
     16  }
     17 </script>