blob: 65a72c59dd534b4b242d992d41dea6170968ab8a [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<style>
.parent {
background-color: white;
width: 60px;
height: 60px;
float: left;
margin-left: 10px;
}
.child {
width: 60px;
height: 60px;
background-color: green;
}
</style>
<body>
<p>Test that mix-blend-mode multiply has no effect when applied over a white background, for both software and hardware paths.</p>
<p>This test passes if there are one black and two green boxes.</p>
<div class="parent">
<div class="child" style="background-color: black;"></div>
</div>
<div class="parent">
<div class="child" style="transform: rotateX(0deg);"></div>
</div>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>