summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/backdrop-filter-clipped.html
blob: b5535a812a7f93870c9fc2c859b6fa57a3260c09 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>backdrop-filter: A rounded-corner clip rect parent should not form a Backdrop Root</title>
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty">
<link rel="match"  href="backdrop-filter-clipped-ref.html">

<p>Expected: A green box</p>
<div class="colorbox"></div>
<div class="clipper">
  <div class="filterbox"></div>
</div>

<style>
div {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
    top: 50px;
}
.colorbox {
    background: #ff7fff;
}
.clipper {
    overflow: hidden;
    border-radius: 0.001px;
}
.filterbox {
    top:0;
    left:0;
    backdrop-filter: invert(1);
}
</style>