gecko-dev/layout/reftests/css-blending/mix-blend-mode-soft-light.html
David Anderson 8f61148e20 Add full mix-blend mode support to the OpenGL compositor. (bug 1235995 part 1, r=mstange)
--HG--
extra : rebase_source : 6d0e32671be60f4a2bebdbf1b2cfade8c9fc0539
2016-01-19 13:24:19 +07:00

26 lines
413 B
HTML

<!DOCTYPE HTML>
<head>
<style>
.parent {
width: 200px;
height: 200px;
isolation: isolate;
background: #5856a2;
}
.child {
width: 200px;
height: 200px;
mix-blend-mode: soft-light;
opacity: 0.5;
background: white;
will-change: opacity;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
</div>
</body>