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

16 lines
284 B
HTML

<head>
<!-- Tests paint order of multiple box shadows. -->
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
box-shadow: -25px -25px purple, -50px -50px turquoise;
}
</style>
</head>
<body>
<section></section>
</body>