mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
* 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
31 lines
895 B
HTML
31 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>
|