| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or
g/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Test: Absolutely positioned inline-block replaced elements wi
th percentage based intrinsic height that cannot be resolved</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-repla
ced-height" /> |
| 7 <link rel="match" href="absolute-replaced-height-007-ref.xht" /> |
| 8 |
| 9 <meta name="flags" content="" /> |
| 10 <meta name="assert" content="An absolutely positioned inline-block repla
ced element with a percentage height that cannot be resolved has no intrinsic he
ight." /> |
| 11 <style type="text/css"> |
| 12 #div1 |
| 13 { |
| 14 position: relative; |
| 15 } |
| 16 div div |
| 17 { |
| 18 border: solid green; |
| 19 position: absolute; |
| 20 width: 300px; |
| 21 } |
| 22 iframe |
| 23 { |
| 24 border: solid red; |
| 25 position: absolute; |
| 26 width: auto; |
| 27 } |
| 28 |
| 29 /* |
| 30 " |
| 31 (...) |
| 32 the height of the containing block of an absolutely positioned |
| 33 element is independent of the size of the element itself, and thus |
| 34 a percentage height on such an element *_can always be resolved_*. |
| 35 However, it may be that the height is not known until elements |
| 36 that come later in the document have been processed. " |
| 37 http://www.w3.org/TR/CSS21/visudet.html#the-height-property |
| 38 " |
| 39 */ |
| 40 </style> |
| 41 </head> |
| 42 <body> |
| 43 <p>Test passes if there is <strong>no red</strong>.</p> |
| 44 <div id="div1"> |
| 45 <iframe height="50%"></iframe> |
| 46 <div></div> |
| 47 </div> |
| 48 </body> |
| 49 </html> |
| OLD | NEW |