mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
18 lines
272 B
HTML
18 lines
272 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<!-- Tests that box-shadow inset works. -->
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 100px;
|
|
left: 100px;
|
|
box-shadow: inset 50px 10px gold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
|