Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/contain-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body style="contain: size layout;">
<div id="target" style="contain: size layout;"></div>
<div id="child"></div>
</body>
<script>
document.body.offsetTop;
const target = document.getElementById('target');
const child = document.getElementById('child');
target.appendChild(child);
</script>