blob: da7f067638f6e51a2c8493d47091ca4ba5428f7c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.container {
position: absolute;
padding: 50px;
background-color: blue;
z-index: 0;
}
.box {
height: 100px;
width: 100px;
background-color: hsl(270, 60%, 70%);
border: 1px solid black;
mix-blend-mode: saturation;
will-change: transform;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<p>This test should not assert (but the saturation blend mode may not be applied).
<div class="container">
<div class="box"></div>
</div>
</body>
</html>