blob: ed1a91bcbd8e41290c11db3f56c8bc6dd604d37c [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: 100px;
box-shadow: -10px 10px 0px 5px rgb(0, 0, 0) inset;
border-radius: 20px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>