OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 .box { | 5 .box { |
6 height: 50px; | 6 height: 50px; |
7 width: 50px; | 7 width: 50px; |
8 background-image: -webkit-linear-gradient(blue, blue); | 8 background-image: -webkit-linear-gradient(blue, blue); |
9 background-color: red; | 9 background-color: red; |
10 -webkit-box-shadow: 20px 20px 5px green; | 10 -webkit-box-shadow: 20px 20px 5px green; |
11 } | 11 } |
12 </style> | 12 </style> |
13 </head> | 13 </head> |
14 <body> | 14 <body> |
15 Test passes when a blue box is drawn with a green shadow. | 15 Test passes when a blue box is drawn with a green shadow. |
16 <div class="box"></div> | 16 <div class="box"></div> |
17 </body> | 17 </body> |
18 </html> | 18 </html> |
OLD | NEW |