Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/intrinsic-sizing/grid-lanes-quirks-fill-viewport.html
<!doctype quirks><!-- Intentional quirks mode --> <title>CSS Test: Grid Lanes body in quirks mode should fill viewport except for margins</title> <link rel="author" title="Celeste Pan" href="celestepan@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="help" href="https://quirks.spec.whatwg.org/#the-body-element-fills-the-html-element-quirk" title="The body element fills the html element quirk"> <link rel="match" href="grid-lanes-quirks-fill-viewport-ref.html"> <style> html { margin:3px 6px 9px 12px; padding: 0px; background-color: green; } body { display: grid-lanes; margin: 7px 11px 14px 23px; padding: 0px; background-color: yellow; } </style> <p>This is test text.</p>
/css/css-grid/grid-lanes/intrinsic-sizing/grid-lanes-quirks-fill-viewport-ref.html
<!doctype quirks><!-- Intentional quirks mode --> <style> html { margin:3px 6px 9px 12px; padding: 0px; background-color: green; } body { display: grid; margin: 7px 11px 14px 23px; padding: 0px; background-color: yellow; } </style> <p>This is test text.</p>