replaced-element-041.html (674B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Replaced Element 041</title> 5 <link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com"> 6 <link rel="help" href="https://www.w3.org/TR/css-sizing-4/#aspect-ratio-size-transfers"> 7 <link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html"/> 8 <meta name="assert" content="Replaced element transferred max size should be floored by transferred min size" /> 9 <style> 10 div { 11 width: 0px; 12 } 13 img { 14 min-width: 100px; 15 max-width: 100%; 16 } 17 </style> 18 </head> 19 <body> 20 <p>Test passes if there is a filled green square.</p> 21 <div style="width: 0px"> 22 <img src="/css/support/60x60-green.png"> 23 </div> 24 </body> 25 </html>