blob: 56c22391e7778158baabff2d519f83120713b1d1 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Tests that a inset box shadows works properly.
-->
<html>
<head>
<style>
div {
position: absolute;
border-radius: 50%;
left: 20px;
top: 20px;
background: blue;
width: 100px;
height: 100px;
box-shadow: 10px 10px rgb(0, 0, 0) inset;
}
</style>
</head>
<body>
<div></div>
</body>
</html>