mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
16 lines
284 B
HTML
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>
|