Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-images/infinite-radial-gradient-refcrash.html
<!doctype html> <title>CSS Images Test: repeating-radial-gradient with huge size crashes Chrome</title> <link rel="help" href="https://crbug.com/1009307"> <link rel="match" href="infinite-radial-gradient-crash-ref.html"> <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000"> <style> #crash { background-image: repeating-radial-gradient(closest-corner circle at 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999%, green, green); width: 300px; height: 300px; } </style> <p>You should see a 300x300px green square below and no crash.</p> <div id="crash"></div>
/css/css-images/infinite-radial-gradient-crash-ref.html
<!doctype html> <p>You should see a 300x300px green square below and no crash.</p> <div style="width:300px;height:300px;background:green"></div>