tor-browser

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

chrome-bug-405795970.html (302B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/405795970">
      3 <style>
      4  @keyframes --anim {
      5    from {
      6      width: calc(10px * sibling-index());
      7    }
      8    to {
      9      width: calc(50px);
     10    }
     11  }
     12  #target {
     13    animation: --anim 2s;
     14  }
     15 </style>
     16 <p>Pass if no crash</p>
     17 <div id="target"></div>