wpt / css / css-grid / grid-lanes / track-sizing / auto-repeat / row-auto-repeat-006.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/grid-lanes/track-sizing/auto-repeat/row-auto-repeat-006.html

<!DOCTYPE html>
<title>Checks that a dynamic change in containing block height changes the number of auto repeat tracks.</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="row-auto-repeat-006-ref.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<style>
.grid-lanes {
    display: inline grid-lanes;
    background: green;
    width: 100px;
    min-height: 60%;
    grid-template-rows: repeat(auto-fill, 50px);
}
</style>
<p>Test passes if there is a filled green rectangle.</p>
<div id="target" style="width: 100px; height: 0px;">
  <div class="grid-lanes"></div>
</div>
<script>
  document.body.offsetTop;
  document.getElementById('target').style.height = '100px';
</script>

/css/css-grid/grid-lanes/track-sizing/auto-repeat/row-auto-repeat-006-ref.html

<!DOCTYPE html>
<p>Test passes if there is a filled green rectangle.</p>
<div style="width:100px; height:60px; background:green;"></div>