mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
19 lines
290 B
HTML
19 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>
|
|
|