mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 17:58:32 +00:00
e31ed5b074
* 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
32 lines
895 B
HTML
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>
|