1
0
Fork 0
firefox/testing/web-platform/tests/css/css-backgrounds/reference/box-shadow-005-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
642 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSS Test Background: Box-Shadow property</title>
<link rel="author" title="Marc Silverman" href="mailto:silverman@adobe.com">
<style type="text/css">
#box-div {
position: absolute;
top: 50px;
left: 5px;
background-color:#000;
width: 144px;
height: 144px;
}
#shadow-div {
position: absolute;
top: 60px;
left: 15px;
background-color:#00ff00;
width: 144px;
height: 144px;
}
</style>
</head>
<body>
<p>The test passes if there is a green drop shadow and no red.</p>
<div id="shadow-div">
</div>
<div id="box-div">
</div>
</body>
</html>