13 lines
535 B
HTML
13 lines
535 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="author" title="Sammy Gill" href="sammy.gill@apple.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#intrinsic-sizes">
|
|
<link rel="help" href="https://drafts.csswg.org/css2/#inline-replaced-height">
|
|
<meta name="assert" content="min-content height of an image with specified width is computed via aspect ratio">
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a filled green square.</p>
|
|
<img style="width: 100px; height: min-content;" src="../support/60x60-green.png">
|
|
</body>
|
|
</html>
|