| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>CSS Reference File</title> | 4 <title>CSS Reference File</title> |
| 5 <link rel="author" title="Zoltan Horvath" href="mailto:zoltan@adobe.com"/> | 5 <link rel="author" title="Zoltan Horvath" href="mailto:zoltan@adobe.com"/> |
| 6 <style type="text/css"> | 6 <style type="text/css"> |
| 7 .container { | 7 .container { |
| 8 position: absolute; | 8 position: absolute; |
| 9 top: 70px; | 9 top: 70px; |
| 10 left: 8px; | 10 left: 8px; |
| 11 width: 200px; | 11 width: 200px; |
| 12 height: 200px; | 12 height: 200px; |
| 13 font-family: Ahem; | 13 font-family: Ahem; |
| 14 font-size: 20px; | 14 font-size: 20px; |
| 15 line-height: 20px; | 15 line-height: 20px; |
| 16 text-align: right; | 16 text-align: right; |
| 17 color: green; | 17 color: green; |
| 18 } | 18 } |
| 19 #image { float: right; } | 19 #image { float: right; } |
| 20 </style> | 20 </style> |
| 21 </head> | 21 </head> |
| 22 <body> | 22 <body> |
| 23 <p> | 23 <p> |
| 24 The test passes if there's a green square with an image at top right wit
h vertical white and green stripes. | 24 The test passes if there's a green square with an image at top right wit
h vertical white and green stripes. |
| 25 There should be no red. | 25 There should be no red. |
| 26 </p> | 26 </p> |
| 27 <div class="container"> | 27 <div class="container"> |
| 28 <img id="image" src="support/right-half-rectangle.jpg"/> | 28 <img id="image" src="../support/right-half-rectangle.jpg"/> |
| 29 XXXXX XXXXX XXXXX XXXXX XXXXX | 29 XXXXX XXXXX XXXXX XXXXX XXXXX |
| 30 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX | 30 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX |
| 31 </div> | 31 </div> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |