Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-images/multiple-position-color-stop-conic.html
<!DOCTYPE html> <title>Conic gradient with a two position color stop</title> <link rel="help" href="https://drafts.csswg.org/css-images-4/#color-stop-syntax"> <meta name="assert" content="A color stop with two positions create a hard transition"> <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-10000"> <link rel="match" href="reference/100x100-blue-green.html"> <style> #target { width: 100px; height: 100px; background-color: red; background-image: conic-gradient(green 0% 180deg, blue 180deg); } </style> <div id="target"></div>
/css/css-images/reference/100x100-blue-green.html
<!DOCTYPE html> <div style="width: 50px; height: 100px; background-color: green; border-left: 50px solid blue"></div>