haikuwebkit/LayoutTests/css3/masking/clip-path-padding-box.html

17 lines
258 B
HTML

<!DOCTYPE html>
<style>
.clip {
width: 140px;
height: 140px;
background-color: green;
padding: 10px;
border: 10px solid red;
margin: 10px;
-webkit-clip-path: padding-box;
}
</style>
<body>
<div class="clip"></div>
</body>
</html>