Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-sizing/aspect-ratio/intrinsic-size-020.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS aspect-ratio: min-content contribution of image with width:min-content</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="This test verifies that the image's min-content contribution considers the definite height transferring through the natural aspect-ratio.">
<style>
img {
vertical-align: top;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="width: min-content; background: red;">
<img src="support/200x200-green.png" style="height: 100px; width: min-content">
</div>