git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Clean up css3/filters/backdrop/dynamic-with-clip-path.html
[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(80px at 100px);
15
-webkit-backdrop-filter: invert();
16
}
17
</style>
18
<div id="box"></div>
19
<div id="filter"></div>