wpt / css / css-gaps / grid / fragmentation / grid-gap-decorations-fragmentation-019-crash.html

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

/css/css-gaps/grid/fragmentation/grid-gap-decorations-fragmentation-019-crash.html

<!DOCTYPE html>
<title>
  Avoid crash when we have collapsed tracks due to auto-fit.
</title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/11520">
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<style>
  .multi-col {
    columns: 3;
    column-fill: auto;
    height: 100px;
  }
  .grid-container {
    display: grid;
    height: 200px;
    grid-template-rows: repeat(auto-fit, 20px);
    align-content: space-evenly;
  }
</style>
<div class="multi-col">
  <div class="grid-container">
    <div style="width: 10px; height: 15px; grid-row: 3;"> </div>
  </div>
</div>