summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/backdrop-filter-plus-filter-ref.html
blob: aa421fd98201b9276bdc98a61153d919d8fd776f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<meta charset="utf-8">
<title>backdrop-filter: Only filter objects painted before</title>
<link rel="author" href="mailto:masonf@chromium.org">



<p>Expected: A green box with an overlapping purple box.<br>
The overlapping portion of the boxes should be bright magenta.<br>

<div class="container">
  <div class="orangebox"></div>
  <div class="bluebox blur-bd"></div>
  <div class="invert"></div>
</div>


<style>
div {
  position: absolute;
  width: 100px;
  height: 100px;
}
.container {
  width:200px;
  height:200px;
  top: 50px;
  position:absolute;
}
.blur-bd {
  backdrop-filter: blur(10px);
}
.orangebox {
  left: 10px;
  top: 50px;
  background: green;
}
.bluebox {
  left: 60px;
  top: 110px;
  background: #00ff0055;
}
.invert {
  left: 60px;
  top: 110px;
  background: transparent;
  backdrop-filter: invert(1);
}
</style>