Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-will-change/will-change-stacking-context-z-index-4.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: `will-change: z-index`</title>
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="
`will-change: z-index` doesn't establish a stacking context on a non-positioned block box,
because `z-index` doesn't apply in that case.
">
<style>
.test {
will-change: z-index;
width: 100px;
background: green;
}
.test::before {
content: "";
display: block;
position: relative;
z-index: -1;
height: 100px;
background: red;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="test"></div>