blob: b23b31eac0ae70d5914ea84884e7c4d53d3aed7d [file] [log] [blame]
<!DOCTYPE html>
<!--
| Tests that a box shadow works with both spread, blur and rounded corners.
-->
<html>
<head>
<style>
div {
position: absolute;
left: 20px;
top: 20px;
width: 150px;
height: 150px;
box-shadow: -10px 10px 25px 25px rgb(0, 0, 0) inset;
border-radius: 75px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>