mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
17 lines
284 B
HTML
17 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>
|