wpt / css / css-grid / grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html

<!DOCTYPE html>
<html>
<head>
<link rel="author" title="Sammy Gill" href="sammy.gill@apple.com">
<meta name="assert" content="Grid's definite free space for row track sizing should be the content box logical height when computed from the aspect ratio">
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#algo-stretch">
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#free-space">
<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#definite">
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<style>
.grid {
  display: grid;
  width: 100px;
  border-block: 10px solid green;
  padding-block: 20px;
  background: green;
  aspect-ratio: 5 / 2;
}
</style>
</head>
<body>
  <p>Test passes if there is a filled green square.</p>
  <div class="grid">
    <div></div>
  </div>
</body>
</html>

/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>