contain-strict-nested-subgrid.html (499B)
1 <!DOCTYPE html> 2 <link rel="author" title="Mozilla" href="https://mozilla.org"> 3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1606485"> 4 <style> 5 * { 6 grid-template-rows: subgrid; 7 display: grid; 8 overflow: scroll; 9 contain: strict; 10 } 11 </style> 12 <script> 13 document.addEventListener('DOMContentLoaded', function() { 14 let e = document.createElement('s'); 15 document.documentElement.appendChild(e); 16 document.documentElement.getBoundingClientRect() // Update layout 17 }); 18 </script>