tenfourfox/layout/reftests/webcomponents/basic-shadow-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
725 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').createShadowRoot();
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>