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/crashtests/contain-nested-relayout-boundary.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div style="position: relative; width: 100px; height: 100px; overflow: hidden;">
<div id="target" style="contain: size layout;">
<canvas id="inner" width="0"></canvas>
</div>
</div>
<script>
document.body.offsetTop;
document.getElementById('inner').width = '100';
document.getElementById('target').style.contain = 'initial';
</script>