blob: a9fa245909c555d79d3f0e40b1954f65002317af [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(255, 0, 0);
}
</style>
</head>
<body>
<div></div>
</body>
</html>