chrome-1492368-crash.html (479B)
1 <!DOCTYPE html> 2 <title>Chrome crash re-assigning to slots with display:none slot</title> 3 <link rel="help" href="https://crbug.com/1492368"> 4 <div id="host"> 5 <span id="slotted" style="display:none"></span> 6 </div> 7 <script> 8 let root = host.attachShadow({mode:"open"}); 9 root.innerHTML = ` 10 <slot></slot> 11 <slot name="s1" style="display:none"></slot> 12 `; 13 host.offsetTop; 14 slotted.setAttribute("slot", "s1"); 15 slotted.style.color = "green"; 16 host.offsetTop; 17 </script>