tenfourfox/layout/reftests/css-blending/mix-blend-mode-culling-1207041.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
360 B
HTML

<!DOCTYPE HTML>
<head>
<style>
.parent {
width: 200px;
height: 200px;
isolation: isolate;
background: orange;
}
.child {
width: 200px;
height: 200px;
mix-blend-mode: screen;
background: green;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
</div>
</body>