| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
| 4 <title>CSS Test: The 'text-shadow' property applied with no color specif
ied</title> | 4 <title>CSS Test: The 'text-shadow' property applied with no color specif
ied</title> |
| 5 <script src="../../resources/ahem.js"></script> |
| 5 <link rel="author" title="Codeaurora" href="http://www.codeaurora.org/"> | 6 <link rel="author" title="Codeaurora" href="http://www.codeaurora.org/"> |
| 6 <link rel="help" href="http://www.w3.org/TR/css3-text/#text-shadow"> | 7 <link rel="help" href="http://www.w3.org/TR/css3-text/#text-shadow"> |
| 7 <meta name="flags" content=""> | 8 <meta name="flags" content=""> |
| 8 <meta name="assert" content="The 'text-shadow' property should get it's
color from the color property if not specified in the text-shadow definition."> | 9 <meta name="assert" content="The 'text-shadow' property should get it's
color from the color property if not specified in the text-shadow definition."> |
| 9 <style type="text/css"> | 10 <style type="text/css"> |
| 10 #test | 11 #test |
| 11 { | 12 { |
| 12 font-size: 30px; | 13 font-size: 30px; |
| 13 font-family: Ahem; | 14 font-family: Ahem; |
| 14 margin: 25px; | 15 margin: 25px; |
| 15 color: green; | 16 color: green; |
| 16 text-shadow: 10px 35px; | 17 text-shadow: 10px 35px; |
| 17 } | 18 } |
| 18 </style> | 19 </style> |
| 19 </head> | 20 </head> |
| 20 <body> | 21 <body> |
| 21 <p>Test passes if there are two green rectangles on the page.</p> | 22 <p>Test passes if there are two green rectangles on the page.</p> |
| 22 <div id="test">FillerText</div> | 23 <div id="test">FillerText</div> |
| 23 </body> | 24 </body> |
| 24 </html> | 25 </html> |
| OLD | NEW |