grid-auto-repeat-dynamic-002.html (654B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-grid-1/#auto-repeat"> 3 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> 4 <meta name="assert" content="Checks that a dynamic change in containing block height changes the number of auto repeat rows."> 5 <p>Test passes if there is a filled green square.</p> 6 <div id="target" style="width: 100px; height: 0px;"> 7 <div style="display: inline-grid; background: green; width: 100px; min-height: 60%; grid-template-rows: repeat(auto-fill, 50px);"></div> 8 </div> 9 <script> 10 document.body.offsetTop; 11 document.getElementById('target').style.height = '100px'; 12 </script>