haikuwebkit/LayoutTests/css3/filters/blur-clipped-by-ancestor-ex...

29 lines
509 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {
height: 200px;
width: 200px;
margin: 50px;
border: 1px solid black;
}
.filtered {
-webkit-clip-path: inset(0px);
width: 100%;
height: 100%;
background-color: black;
filter: blur(10px);
}
</style>
</head>
<body>
<div class="wrapper">
<div class="filtered">
</div>
</div>
</body>
</html>