haikuwebkit/LayoutTests/css3/masking/clip-path-circle-margin-box...

29 lines
434 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
#content {
width: 200px;
height: 200px;
margin: 0;
padding: 0;
background-color: green;
}
#clip {
width: 200px;
height: 200px;
margin: 10px;
padding: 10px;
border: 10px solid blue;
-webkit-clip-path: circle(130px at 120px 120px);
background-color: yellow;
}
</style>
</head>
<body>
<div id="clip">
<div id="content"></div>
</div>
</body>
</html>