blob: 59102c0e73d21a76981fb2e8b7f45b174a256efc [file] [log] [blame]
<!DOCTYPE html>
<!--
| Tests that a box shadow offset to the top left instead of the bottom right
| works correctly.
-->
<html>
<head>
<style>
div {
position: absolute;
border-radius: 50%;
left: 20px;
top: 20px;
width: 100px;
height: 100px;
box-shadow: -10px -10px rgb(0, 0, 0);
}
</style>
</head>
<body>
<div></div>
</body>
</html>