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/subgrid-paint-containment-change-crash.html - WPT Dashboard Interop Dashboard
<html>
<head>
</head>
<body>
<div style="display: grid">
<div id="change" style="display: grid; grid-template-rows: subgrid [a] [b] [c];">
<div>one</div>
<foo style="display: grid; grid-template-rows: subgrid [a] [b] [c];">
<bar id="x">two</bar>
</foo>
</div>
</div>
</body>
<script>
document.body.offsetHeight;
x.style.border = "1px solid red";
document.getElementById("change").style.contain = 'paint';
</script>
</html>