Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scoping/chrome-1492368-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Chrome crash re-assigning to slots with display:none slot</title>
<div id="host">
<span id="slotted" style="display:none"></span>
</div>
<script>
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot></slot>
<slot name="s1" style="display:none"></slot>
`;
host.offsetTop;
slotted.setAttribute("slot", "s1");
slotted.style.color = "green";
host.offsetTop;
</script>