Backed out 2 changesets (bug 1906804, bug 1882553) for causing artifact build bustage...
[gecko.git] / testing / web-platform / tests / css / css-backgrounds / box-shadow-003.htm
blob41d411bbae52a5055ddd9a0f689741012fc69b21
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>CSS Test: Layering of box shadows</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
6 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size" />
7 <meta name="assert" content="Shadow effects are applied front to back, where the first shadow is on the top and the last shadow is on the bottom." />
8 <style type="text/css">
9 div
11 height: 96px;
12 width: 96px;
14 #reference1
16 box-shadow: orange 30px 30px;
18 #reference2
20 margin-top: -96px;
21 box-shadow: blue 20px 20px
23 #reference3
25 margin-top: -96px;
26 box-shadow: 10px 10px;
28 #test
30 margin-top: 40px;
31 box-shadow: 10px 10px, blue 20px 20px, orange 30px 30px;
33 </style>
34 </head>
35 <body>
36 <p>Test passes if two drawings are exactly the same.</p>
37 <div id="reference1"></div>
38 <div id="reference2"></div>
39 <div id="reference3"></div>
40 <div id="test"></div>
41 </body>
42 </html>