Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/nested-flex-image-loading-invalidates-intrinsic-sizes.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<meta name="assert" content="Loaded image correctly invalidates intrinsic widths of its ancestor chain so that it can be recomputed in flex layout">
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<style>
.flexbox {
display: flex;
}
.green-border {
border: 20px solid green;
}
.img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="flexbox">
<div>
<div class="flexbox green-border">
<img src="/css/support/60x60-green.png" class="img">
</div>
</div>
</div>
</body>
</html>