Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Nested slot reattach should not crash</title>
<link rel="help" href="https://crbug.com/639776">
<div id="host">
<div>
<div id="inner"></div>
</div>
</div>
<script>
const root = host.attachShadow({mode: "open"});
root.innerHTML = "<slot></slot>";
host.offsetTop;
host.style.display = "inline";
inner.style.display = "inline";
host.offsetTop;
</script>