wpt / css / css-contain / contain-paint-stacking-context-001b.html

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

/css/css-contain/contain-paint-stacking-context-001b.html

<!DOCTYPE HTML>
<title>'will-change: contain' establishes stacking context.</title>
<link rel="author" title="Psychpsyo" href="mailto:psychpsyo@gmail.com">
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#x43">
<link rel="help" href="https://drafts.csswg.org/css-contain/#containment-paint">
<link rel="match" href="contain-paint-stacking-context-001-ref.html">
<style>
  div {
    width: 100px;
    height: 100px;
  }
  #front {
    background-color: green;
    /* makes a stacking context and puts this on top */
    position: absolute;
    z-index: 10;
  }
  #back {
    will-change: contain;
  }
  #notOnTop {
    background-color: red;
    /* z-index is higher than on #front, but this should still be covered up because it is inside #back, which has 'will-change: contain' */
    position: absolute;
    z-index: 1000;
  }
</style>
<div id="front"></div>
<div id="back">
  <div id="notOnTop"></div>
</div>
Test succeeds if there is no red.

/css/css-contain/contain-paint-stacking-context-001-ref.html

<!DOCTYPE HTML>
<meta charset="utf-8">
<title>Paint Containment Stacking Context Reference</title>
<link rel="author" title="Psychpsyo" href="mailto:psychpsyo@gmail.com">
<style>
  div {
    width: 100px;
    height: 100px;
    background-color: green;
  }
</style>
<div></div>
Test succeeds if there is no red.