summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/composited-filters-under-opacity-ref.html
blob: 73b420189ec8bc073e8b6a2e4bfd628653bd4a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<style>
div {
  position: absolute;
}
.content {
  width: 100px;
  height: 150px;
  position: absolute;
  background: blue;
}
</style>
Below should be a light blue square in uniform color.
<div style="opacity: 0.5; will-change: opacity">
  <div class="content" style="left: 0"></div>
  <div class="content" style="left: 50px"></div>
</div>