blob: f613748af3ac5bb59c9fa207937ae6207d71062e [file] [log] [blame]
<link rel="help" href="http://www.w3.org/TR/css3-color/#transparency">
<link rel="match" href="composited-filters-under-opacity-ref.html">
<style>
div {
position: absolute;
will-change: opacity;
}
.content {
width: 100px;
height: 150px;
position: absolute;
background: yellow;
filter: invert(100%);
}
</style>
Below should be a light blue square in uniform color.
<div style="opacity: 0.5">
<div class="content" style="left: 0"></div>
<div class="content" style="left: 50px"></div>
</div>