blob: fde861b35243d45bdaa885b4c44e7b8d59a6675f [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: -15px 20px 10px -10px rgb(0, 0, 0);
border-radius: 75px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>