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

18 lines
290 B
HTML

<head>
<!-- Tests that box-shadow blur does something. -->
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
border: solid black 1px;
box-shadow: 10px 10px 5px 0px;
}
</style>
</head>
<body>
<section></section>
</body>