Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/crashtests/slots-in-document-tree-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Slots in a document tree should not crash</title>
<div id="p1"><slot><div id="c1"></div></slot></div>
<script>
document.body.offsetLeft;
doc.adoptNode(c1);
p1.style.display = "none";
</script>