gecko-dev/layout/reftests/css-blending/mix-blend-mode-culling-1207041-ref.html
David Anderson 6f796a3c17 Treat mix-blend-mode layers as transparent for occlusion culling. (bug 1207041, r=mstange)
--HG--
extra : rebase_source : 33afa0174cac1cdb4b83b2e695532b36984974cd
2015-09-30 00:02:00 -07:00

23 lines
332 B
HTML

<!DOCTYPE HTML>
<head>
<style>
.parent {
width: 200px;
height: 200px;
isolation: isolate;
background: orange;
}
.child {
width: 200px;
height: 200px;
background: #ffd200;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
</div>
</body>