blob: 774a6e1aafaee2a3ea80da2377b65281f40fe0c4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-1">
<style>
.parent {
position: absolute;
height: 100px;
width: 500px;
margin: 50px;
background: silver;
clip: rect(0px, 520px, 600px, -20px); /* top, right, bottom, left */
}
.child {
position: absolute;
top: 50px;
height: 100px;
width: 400px;
background: #ffea61;
box-shadow: 0 0 50px black;
}
</style>
</head>
<body>
<div class="shared parent">
<div class="shared child"></div>
</div>
</body>
</html>