Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/crashtests/chrome-bug-385317081-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div style="position: absolute;">
<div id="target" style="container-type: inline-size;">
<div style="position: fixed;"></div>
</div>
</div>
<script>
document.body.offsetTop;
const target = document.getElementById('target');
target.children[0].remove();
const fixed = document.createElement('div');
fixed.style.position = 'fixed';
target.append(fixed);
</script>