mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
21 lines
324 B
HTML
21 lines
324 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<!-- Tests that box-shadow inset parsing quirks work properly. -->
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 100px;
|
|
left: 100px;
|
|
border: solid black 1px;
|
|
box-shadow: 0 0 1em gold inset;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
|
|
|
|
|