Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/flexbox-iframe-intrinsic-size-001.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>
/css/css-flexbox/flexbox-iframe-intrinsic-size-001-ref.html
<!DOCTYPE html> <style> div { height: 400px; border: 0; } div > div { width: 50%; float: left; } </style> <p>This test PASS if you see two equally sized blue and green boxes.</p> <div> <div style='background: blue;'></div> <div style='background: green;'></div> </div>