servo/tests/ref/box_shadow_inset_a.html
2014-12-15 13:39:06 -08:00

18 lines
272 B
HTML

<!DOCTYPE html>
<head>
<!-- Tests that box-shadow inset works. -->
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
box-shadow: inset 50px 10px gold;
}
</style>
</head>
<body>
<section></section>
</body>