wpt / css / css-images / out-of-range-color-stop-conic.html

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

/css/css-images/out-of-range-color-stop-conic.html

<!doctype html>
<meta charset="utf-8">
<title>Conic gradient with out-of-range stops</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 conic-gradient with stops positioned outside of [0, 1]">
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000">
<link rel="match" href="reference/200x200-blue-black-green-red.html">
<style>
  #gradient {
    width: 200px;
    height: 200px;
    background-image: conic-gradient(orange -50% -25%, black -25% 25%, red 25% 50%, green 50% 75%, blue 75% 125%, purple 125% 150%);
  }
</style>
<div id="gradient"></div>

/css/css-images/reference/200x200-blue-black-green-red.html

<!doctype html>
<meta charset="utf-8">
<style>
  #box {
    width: 200px;
    height: 200px;
  }
  #top {
    border-left: 100px solid blue;
    border-right: 100px solid black;
    height: 100px;
  }
  #bottom {
    border-left: 100px solid green;
    border-right: 100px solid red;
    height: 100px;
  }
</style>
<div id="box">
  <div id="top"></div>
  <div id="bottom"></div>
</div>