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-color: blue; | 8 background-color: blue; |
9 -webkit-box-shadow: 20px 20px 5px green; | 9 -webkit-box-shadow: 20px 20px 5px green; |
10 } | 10 } |
11 </style> | 11 </style> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 Test passes when a blue box is drawn with a green shadow. | 14 Test passes when a blue box is drawn with a green shadow. |
15 <div class="box"></div> | 15 <div class="box"></div> |
16 </body> | 16 </body> |
17 </html> | 17 </html> |
OLD | NEW |