wpt / css / css-images / normalization-conic-degenerate.html

Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-images/normalization-conic-degenerate.html

<!doctype html>
<meta charset="utf-8">
<title>Conic gradient stop normalization</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://www.w3.org/TR/css-images-3/#repeating-gradients">
<meta name="assert" content="Rendering of repeating-conic-gradient w/ stops at the same place">
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-10000">
<link rel="match" href="reference/100x100-blue.html">
<style>
  #gradient {
    width: 100px;
    height: 100px;
    background-image: repeating-conic-gradient(orange 50%, blue 50%);
  }
</style>
<div id="gradient"></div>

/css/css-images/reference/100x100-blue.html

<!doctype html>
<div style="width: 100px;height: 100px;background-color: blue;"></div>