forked from mirrors/gecko-dev
Automatic update from web-platform-tests New test (#32141) -- wpt-commits: ca42670ab81308e78f591081246e46f7106aded1 wpt-pr: 32141
24 lines
789 B
HTML
24 lines
789 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Sergio Villar Senin" href="mailto:svillar@igalia.com"/>
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-main-item" title="Part E">
|
|
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic-sizes" title="For boxes with no preferred aspect ratio">
|
|
<link rel="match" href="flexbox-iframe-intrinsic-size-001-ref.html">
|
|
<meta name="assert" content="Checks that the default iframe size does not imply having an aspect ratio." />
|
|
<style>
|
|
div {
|
|
display: flex;
|
|
height: 400px;
|
|
}
|
|
|
|
iframe {
|
|
flex: 1 1 auto;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
<p>This test PASS if you see two equally sized blue and green boxes.</p>
|
|
<div>
|
|
<iframe style='background: blue;'></iframe>
|
|
<iframe style='background: green;'></iframe>
|
|
</div>
|
|
|
|
|