testing/web-platform/tests/css/css-backgrounds/reference/box-shadow-005-ref.html
author Sotaro Ikeda <sotaro.ikeda.g@gmail.com>
Thu, 10 Jul 2025 00:10:09 +0000 (5 hours ago)
changeset 795941 23763b72c35abeead04f63e4503c28abc73d065d
parent 392912 9415bff8166863f344256c7a3dd14aa5e038e82b
permissions -rw-r--r--
Bug 1976135 - Remove nightly only limitation of pref gfx.webrender.layer-compositor r=gfx-reviewers,gw Differential Revision: https://phabricator.services.mozilla.com/D256379
<!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>