mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
12 lines
692 B
HTML
12 lines
692 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#auto-repeat">
|
|
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
|
|
<meta name="assert" content="Checks that a dynamic change in containing block height changes the number of auto repeat columns.">
|
|
<p>Test passes if there is a filled green square.</p>
|
|
<div id="target" style="width: 100px; height: 0px;">
|
|
<div style="display: inline-grid; background: green; min-height: 60%; grid-template-columns: repeat(auto-fill, 50px); grid-template-rows: 100px; aspect-ratio: 1/1;"></div>
|
|
</div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
document.getElementById('target').style.height = '100px';
|
|
</script>
|