tor-browser

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

infinite-radial-gradient-refcrash.html (645B)


      1 <!doctype html>
      2 <title>CSS Images Test: repeating-radial-gradient with huge size crashes Chrome</title>
      3 <link rel="help" href="https://crbug.com/1009307">
      4 <link rel="match" href="infinite-radial-gradient-crash-ref.html">
      5 <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000">
      6 <style>
      7  #crash {
      8    background-image: repeating-radial-gradient(closest-corner circle at 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999%, green, green);
      9    width: 300px;
     10    height: 300px;
     11  }
     12 </style>
     13 <p>You should see a 300x300px green square below and no crash.</p>
     14 <div id="crash"></div>