blob: a9dd38bac6fd8418838950889be486b2354d4ac6 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Tests that a box shadow works properly with a non-zero spread.
-->
<html>
<head>
<style>
div {
position: absolute;
left: 20px;
top: 20px;
width: 100px;
height: 100px;
box-shadow: 10px 10px 0px 25px rgb(0, 0, 0);
}
</style>
</head>
<body>
<div></div>
</body>
</html>