Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/subgrid/crashtests/contain-strict-nested-subgrid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
* {
grid-template-rows: subgrid;
display: grid;
overflow: scroll;
contain: strict;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
let e = document.createElement('s');
document.documentElement.appendChild(e);
document.documentElement.getBoundingClientRect() // Update layout
});
</script>