git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2f1e7164eeff0389f9d9addf735d4c1dd566d1a7
[WebKit-https.git]
/
LayoutTests
/
css3
/
filters
/
backdrop
/
dynamic-with-clip-path-expected.html
1
<!DOCTYPE html>
2
<style>
3
#box {
4
position: absolute;
5
width: 200px;
6
height: 200px;
7
background-color: green;
8
}
9
#filter {
10
position: absolute;
11
width: 200px;
12
height: 200px;
13
transform: translatez(0);
14
-webkit-clip-path: circle(25px at 225px);
15
-webkit-backdrop-filter: invert();
16
}
17
</style>
18
<div id="box"></div>
19
<div id="filter"></div>