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/subgrid-reflow-root.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
* {
grid-template-rows: subgrid;
display: inline-grid;
}
html {
contain: strict;
}
</style>
<script>
window.addEventListener('load', () => {
document.head.appendChild(document.createElement('style'))
})
</script>