| 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: Absolutely positioned inline replaced element with intr
insic ratio and 'height' set to 'auto'</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-31 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-repla
ced-height" /> |
| 8 <link rel="match" href="absolute-non-replaced-height-007-ref.xht
" /> |
| 9 |
| 10 <meta name="flags" content="image" /> |
| 11 <meta name="assert" content="The 'height' is the used width divided by t
he intrinsic ratio when an absolutely positioned inline replaced element has an
intrinsic ratio, 'height' is set to 'auto' and 'width' is specified." /> |
| 12 <style type="text/css"> |
| 13 div |
| 14 { |
| 15 position: relative; |
| 16 } |
| 17 div div |
| 18 { |
| 19 background: blue; |
| 20 height: 100px; |
| 21 left: 100px; |
| 22 position: absolute; |
| 23 top: 0; |
| 24 } |
| 25 img |
| 26 { |
| 27 height: auto; |
| 28 position: absolute; |
| 29 } |
| 30 div div, img |
| 31 { |
| 32 width: 100px; |
| 33 } |
| 34 </style> |
| 35 </head> |
| 36 <body> |
| 37 <p>Test passes if the orange and blue squares have the <strong>s
ame height</strong>.</p> |
| 38 <div> |
| 39 <img alt="Image download support must be enabled" src="support/swatc
h-orange.png" /> |
| 40 <div></div> |
| 41 </div> |
| 42 </body> |
| 43 </html> |
| OLD | NEW |