Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-images/repeating-conic-gradient.html
<!doctype html> <meta charset="utf-8"> <title>Repeating conic gradient</title> <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> <link rel="help" href="https://drafts.csswg.org/css-images-4/#conic-gradients"> <meta name="assert" content="Rendering of repeating-conic-gradient"> <link rel="match" href="repeating-conic-gradient-ref.html"> <meta name="fuzzy" content="maxDifference=0-47; totalPixels=0-40000"> <style> #gradient { width: 200px; height: 200px; background-color: red; background-image: repeating-conic-gradient(black 0 25%, white 25% 50%); } </style> <div id="gradient"></div>
/css/css-images/repeating-conic-gradient-ref.html
<!doctype html> <meta charset="utf-8"> <style> #gradient { width: 200px; height: 200px; background-image: conic-gradient(black 25%, white 0 50%, black 0 75%, white 0); } </style> <div id="gradient"></div>