blob: 44dd8d44d64c1d89d09a2a35b76c86acfff87d51 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>backdrop-filter: Basic operation of filter with background color</title>
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
<div>
<p>Expected: A green box and an overlapping blue box, with a purple<br>
overlapping region.</p>
</div>
<div class="colorbox"></div>
<div class="box2outside"></div>
<div class="box2inside"></div>
<style>
.colorbox {
position: absolute;
background: green;
width: 100px;
height: 100px;
left: 10px;
top: 100px;
}
.box2outside {
background: #000080;
position: absolute;
width: 100px;
height: 100px;
left: 60px;
top: 150px;
}
.box2inside {
background: #8040ff;
position: absolute;
width: 50px;
height: 50px;
left: 60px;
top: 150px;
}
</style>