Status: FAIL | Duration: 45ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/nested-grid-item-block-size-001.html
<!DOCTYPE HTML> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <html><head> <link rel="author" title="Sean Feng" href="mailto:sefeng@mozilla.com"> <title>CSS Grid Test: Nested grid contains an item that overflows the viewport</title> <link rel="help" href="https://drafts.csswg.org/css-grid"> <link rel="match" href="nested-grid-item-block-size-001-ref.html"> <style> .container { display: grid; grid-auto-flow: column; list-style: none; padding: 0px; margin: 0px; } img { block-size: 55vw; aspect-ratio: 2/1; } </style> </head> <body> <ul class="container"> <li> <div style="display: inline-block;"> <div style="display: grid;"> <img src="support/colors-8x16.png"> </div> </div> </li> </ul> </body> </html>
/css/css-grid/nested-grid-item-block-size-001-ref.html
<!DOCTYPE HTML> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <html><head> <style> .container { list-style: none; padding: 0px; margin: 0px; } img { block-size: 55vw; aspect-ratio: 2/1; } </style> </head> <body> <ul class="container"> <li> <img src="support/colors-8x16.png"> </li> </ul> </body> </html>