| 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="Hans Muller" href="mailto:hmuller@adobe.com"/> | 5 <link rel="author" title="Hans Muller" href="mailto:hmuller@adobe.com"/> |
| 6 <style type="text/css"> | 6 <style type="text/css"> |
| 7 #container { | 7 #container { |
| 8 position: relative; | 8 position: relative; |
| 9 width: 200px; | 9 width: 200px; |
| 10 padding-left: 90px; | 10 padding-left: 90px; |
| 11 font-family: Ahem; | 11 font-family: Ahem; |
| 12 font-size: 40px; | 12 font-size: 40px; |
| 13 color: green; | 13 color: green; |
| 14 } | 14 } |
| 15 #image { | 15 #image { |
| 16 position: absolute; | 16 position: absolute; |
| 17 top: 0px; | 17 top: 0px; |
| 18 left: 100px; | 18 left: 100px; |
| 19 float: right; | 19 float: right; |
| 20 margin-bottom: 20px; | 20 margin-bottom: 20px; |
| 21 } | 21 } |
| 22 </style> | 22 </style> |
| 23 </head> | 23 </head> |
| 24 <body> | 24 <body> |
| 25 <p>The test passes if no red is visible.</p> | 25 <p>The test passes if no red is visible.</p> |
| 26 <div id="container"> | 26 <div id="container"> |
| 27 <img id="image" src="support/right-half-rectangle.gif"/> | 27 <img id="image" src="../support/right-half-rectangle.gif"/> |
| 28 X<br>X<br>X<br><span style="padding-left: 70px">X</span> | 28 X<br>X<br>X<br><span style="padding-left: 70px">X</span> |
| 29 </div> | 29 </div> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |