| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Test: Relatively positioned elements with auto positioning wi
th anonymous boxes before and after</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtal
bot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-07-09 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-
positioning" /> |
| 8 <link rel="match" href="position-relative-027-ref.xht" /> |
| 9 |
| 10 <meta name="flags" content="" /> |
| 11 <meta name="assert" content="Relatively positioned element with auto pos
itioning appear as though they were positioned in flow." /> |
| 12 <!-- |
| 13 " |
| 14 If both 'left' and 'right' are 'auto' (their initial values), |
| 15 [then] the[ir] used values are '0' (i.e., the boxes stay |
| 16 in their original position). |
| 17 (...) |
| 18 If both [top and bottom] are 'auto', [then] their used values ar
e both '0'. |
| 19 " |
| 20 http://www.w3.org/TR/CSS21/visuren.html#relative-positioning |
| 21 --> |
| 22 |
| 23 <style type="text/css"> |
| 24 div |
| 25 { |
| 26 width: 5in; |
| 27 } |
| 28 span |
| 29 { |
| 30 bottom: auto; |
| 31 left: auto; |
| 32 position: relative; |
| 33 right: auto; |
| 34 top: auto; |
| 35 |
| 36 } |
| 37 </style> |
| 38 </head> |
| 39 <body> |
| 40 <p>Test passes if the 3 "Filler Text" are on the same line.</p> |
| 41 <div> |
| 42 Filler Text <span>Filler Text</span> Filler Text |
| 43 </div> |
| 44 </body> |
| 45 </html> |
| OLD | NEW |