summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/resources/backdrop-filter-backdrop-root.css
blob: 635e497cdfc8acaf8f254ba1d77b21246b0be89d (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
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 250px;
  height: 100px;
  align-content: flex-start;
  background:#00ffff;
}
.testcase {
  width: 100px;
  height: 50px;
}
.testcase div {
  width: 50px;
  height: 50px;
  position: relative;
}
.testcase>div {
  background: green;
}
.testcase>div>div {
  left: 50px;
  backdrop-filter: invert(1);
  background: transparent;
  border: 1px solid black;
}
* {
  box-sizing: border-box;
}