summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/backdrop-filter-edge-behavior-ref.html
blob: b605e3251c5b91f50a8b001655884b28937e9bef (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>backdrop-filter: Edge behavior</title>
<link rel="author" href="mailto:masonf@chromium.org">




<div>
  <p>Expected: The black box inside the red box should not contain any red.</p>
</div>

<div id=backdrop></div>
<div id=scroller></div>

<style>
  #scroller {
    position: relative;
    top:-202px;
    width: 250px;
    height: 250px;
    border: 6px solid red;
  }
  #backdrop {
    position: relative;
    height: 200px;
    width: 200px;
    left: 6px;
    top: 3px;
    border: 1px solid black;
  }
</style>