summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/subgrid/subgrid-reflow-root-crash.html
blob: 1e2b9081eb4a0a22b39ffa9649640f25440fac7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<style>
* {
  grid-template-rows: subgrid;
  display: inline-grid;
}

html {
  contain: strict;
}
</style>
<script>
  window.addEventListener('load', () => {
    document.head.appendChild(document.createElement('style'))
  })
</script>