Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/crashtests/dynamic-simplified-layout-break-propagation.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body style="columns: 1;">
<div style="display: inline-block; position: relative;">
<div style="position: absolute;">
<div id="target"></div>
</div>
<div style="break-before: column;"></div>
</div>
</body>
<script>
document.body.offsetTop;
document.getElementById('target').style.height = '10px';
</script>