Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/crashtests/dynamic-fixed-in-nested-absolutes-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
html, #parent_abs, #child_abs { position: absolute; }
#fixed { position: fixed; }
</style>
<script>
onload = _ => {
parent_abs.appendChild(document.createElement("div"));
document.body.scrollHeight;
select.appendChild(document.createElement("div"));
document.body.scrollHeight;
fixed_child.style.width = "200px";
}
</script>
<select id="select">text</select>
<div id="parent_abs">
<div id="child_abs">
<div id="fixed">
<div id="fixed_child"></div>
</div>
</div>
</div>