blob: 8e066997dc459ca7cdec48e4e6a39866b12b6095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!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>
|