blob: b71ce9f3edd014961a324e9088a470b4e395e177 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Tests that the simplest form of box-shadows works correctly.
-->
<html>
<head>
<style>
div {
position: absolute;
left: 0px;
top: 0px;
width: 100px;
height: 100px;
box-shadow: 10px 10px rgb(0, 0, 0);
}
</style>
</head>
<body>
<div></div>
</body>
</html>