Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-sizing/intrinsic-percent-replaced-001.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-sizing-3/#intrinsic-sizes"> <meta name="assert" content="Checks that a replaced element, with an aspect ratio, converts a percent height into an intrinsic width." /> <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> <style> #float { float: left; height: 100px; background: green; } canvas { height: 100%; } </style> <p>Test passes if there is a filled green square.</p> <div id=float> <canvas width=10 height=10></canvas> </div>
/css/reference/ref-filled-green-100px-square-only.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> <p>Test passes if there is a filled green square.</p> <div style="width:100px; height:100px; background:green;"></div>