mirror of
https://github.com/servo/servo.git
synced 2025-07-29 10:10:34 +01:00
20 lines
323 B
HTML
20 lines
323 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: inset 0 0 1em gold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
|
|
|