chromium/third_party/blink/web_tests/external/wpt/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:[email protected]">
  <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>