Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/restyle-on-disconnected-child-after-attach-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div id="container">
<span id="outer"><slot id="slot"><span id="inner">before</span></slot></span>
</div>
<script>
container.scrollHeight;
container.hidden = true;
outer.attachShadow({mode: "open"});
document.createElement("canvas").toBlob(_ => inner.innerText = "hello");
</script>