box-shadow-005-ref.html (642B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test Background: Box-Shadow property</title> 5 <link rel="author" title="Marc Silverman" href="mailto:silverman@adobe.com"> 6 <style type="text/css"> 7 #box-div { 8 position: absolute; 9 top: 50px; 10 left: 5px; 11 background-color:#000; 12 width: 144px; 13 height: 144px; 14 } 15 #shadow-div { 16 position: absolute; 17 top: 60px; 18 left: 15px; 19 background-color:#00ff00; 20 width: 144px; 21 height: 144px; 22 } 23 </style> 24 </head> 25 <body> 26 <p>The test passes if there is a green drop shadow and no red.</p> 27 <div id="shadow-div"> 28 </div> 29 <div id="box-div"> 30 </div> 31 </body> 32 </html>