tor-browser

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

chrome-1512373-2-crash.html (406B)


      1 <!DOCTYPE html>
      2 <title>Chrome crash bug 1512373 with @position-try fallback</title>
      3 <link rel="help" href="https://crbug.com/1512373">
      4 <style>
      5  @position-try --foo { left: 0; }
      6  #t {
      7    position: absolute;
      8    left: 999999px; /* force fallback */
      9    position-try-fallbacks: --foo;
     10  }
     11 </style>
     12 <div id="t"></div>
     13 <script>
     14  t.animate([{"height":"100px"},{"height":"200px"}], {"duration":1});
     15 </script>