repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
css3
/
masking
/
clip-path-circle-overflow-hidden.html
blob
4a8bd0817a2d23b68c586707e76ffe69ee7a693d
1
<!DOCTYPE
html
>
2
<html
lang
=
"en"
>
3
<head>
4
<style>
5
.parent {
6
width:
200
px;
7
height:
200
px;
8
overflow: hidden;
9
-webkit-clip-path: circle(
100
px at
100
px
100
px);
10
}
11
.child {
12
height:
400
px;
13
width:
200
px;
14
margin:
0
;
15
padding:
0
;
16
background-color: green;
17
}
18
</style>
19
</head>
20
<body>
21
<div
class
=
"parent"
>
22
<div
class
=
"child"
></div>
23
</div>
24
</body>
25
</html>