Files
UXP-Fixed/layout/reftests/webcomponents/nested-insertion-point-1.html
Matt A. Tobin e31ed5b074 Bug 1409975 - Implement node distribution for shadow tree slots
* Implementation for assignedNodes
* Include slots in the flat tree
* Fix event get-the-parent algorithm for a node
* Update and add reftests for Shadow DOM v1
* Update web platform tests expectations

Tag #1375
2020-04-17 07:10:54 -04:00

32 lines
895 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function tweak() {
// div with style "border: 10px solid green"
var outerShadow = document.createElement("div");
outerShadow.style.border = "10px solid green";
var outerInsertionPoint = document.createElement("slot");
outerShadow.appendChild(outerInsertionPoint);
// div with style "border: 10px solid orange"
var innerShadow = document.createElement("div");
innerShadow.style.border = "10px solid orange";
var slot = document.createElement("slot");
innerShadow.appendChild(slot);
outerShadow.attachShadow({mode: 'open'}).appendChild(innerShadow);
var shadowRoot =
document.getElementById('outer').attachShadow({mode: 'open'});
shadowRoot.appendChild(outerShadow);
}
</script>
</head>
<body onload="tweak()">
<div id="outer">Hello</div>
</body>
</html>