wpt / css / css-images / linear-gradient-sibling-index.html

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

/css/css-images/linear-gradient-sibling-index.html

<!DOCTYPE html>
<title>CSS Images Test: Linear gradient with sibling-index()</title>
<link rel="help" href="https://drafts.csswg.org/css-images/#linear-gradients">
<link rel="help" href="https://drafts.csswg.org/css-values-5/#tree-counting">
<link rel="match" href="linear-gradient-sibling-index-ref.html">
<style>
  .grad {
    width: 100px;
    height: 100px;
    background: linear-gradient(blue calc(10px * sibling-index()), yellow);
  }
</style>
<div>
  <div></div>
  <div class="grad"></div>
  <div></div>
  <div></div>
  <div class="grad"></div>
</div>

/css/css-images/linear-gradient-sibling-index-ref.html

<!DOCTYPE html>
<title>CSS Test Reference</title>
<style>
  div { width: 100px; height: 100px; }
</style>
<div style="background: linear-gradient(blue 20px, yellow)"></div>
<div style="background: linear-gradient(blue 50px, yellow)"></div>