blob: 66892029abf995081c4b5a5ad56e41e4ba78679b (
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
29
30
|
<!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("content");
outerShadow.appendChild(outerInsertionPoint);
// div with style "border: 10px solid orange"
var innerShadow = document.createElement("div");
innerShadow.style.border = "10px solid orange";
var innerInsertionPoint = document.createElement("content");
innerShadow.appendChild(innerInsertionPoint);
outerShadow.createShadowRoot().appendChild(innerShadow);
var shadowRoot = document.getElementById('outer').createShadowRoot();
shadowRoot.appendChild(outerShadow);
}
</script>
</head>
<body onload="tweak()">
<div id="outer">Hello</div>
</body>
</html>
|