1
0
Fork 0
firefox/layout/reftests/webcomponents/basic-shadow-2.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
735 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function tweak() {
var shadowDiv = document.createElement("div");
shadowDiv.style.border = "10px solid green";
var shadowRoot = document.getElementById('outer').attachShadow({mode: 'open'});
shadowRoot.appendChild(shadowDiv);
var orangeDiv = document.createElement("div");
orangeDiv.style.border = "10px solid orange";
var purpleDiv = document.createElement("div");
purpleDiv.style.border = "10px solid purple";
shadowDiv.appendChild(purpleDiv);
shadowDiv.insertBefore(orangeDiv, purpleDiv);
}
</script>
</head>
<body onload="tweak()">
<div id="outer">
<div style="background-color:red;"></div>
</div>
</body>
</html>