mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
35 lines
No EOL
1 KiB
HTML
35 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Backgrounds and Borders Test: box-shadow</title>
|
|
<link href="mailto:joy.xczhang@gmail.com" rel="author" title="Zhang Xiaochong">
|
|
<link href="http://www.w3.org/TR/css3-background/#the-box-shadow" rel="help">
|
|
<link href="reference/box-shadow-inset-spread-without-border-radius.htm" rel="match">
|
|
<meta content="inset spread box-shadow should show shadow." name="assert">
|
|
<style type="text/css">
|
|
.container {
|
|
position: relative;
|
|
}
|
|
.container div {
|
|
position: absolute;
|
|
height: 150px;
|
|
width: 150px;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
.container .test {
|
|
box-shadow: red 10px 10px 0 10px inset;
|
|
}
|
|
.container .ref {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if there is a filled green square and no red.</p>
|
|
<div class="container">
|
|
<div class="test"></div>
|
|
<div class="ref"></div>
|
|
</div>
|
|
|
|
|
|
</body></html> |