Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/slot-with-slottable-slot-in-display-none-subtree-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script>
onload = () => {
var shadowRoot = shadowHost.attachShadow({mode: "open"});
iframe.srcdoc = "A";
slot.style.color = "pink";
document.body.clientHeight;
shadowRoot.appendChild(noneDiv);
};
</script>
<div id="noneDiv" style="display: none;">
<slot style="display: none;" name="innerSlot">
</div>
<h3 id="shadowHost">
<slot id="slot" slot="innerSlot">
<iframe id="iframe">
</slot>
</h3>