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

23 lines
600 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function tweak() {
// div with style "width:300px; height:100px; background-color:green"
var shadowDiv = document.createElement("div");
shadowDiv.style.width = "300px";
shadowDiv.style.height = "100px";
shadowDiv.style.backgroundColor = "green";
var shadowRoot = document.getElementById('outer').createShadowRoot();
shadowRoot.appendChild(shadowDiv);
}
</script>
</head>
<body onload="tweak()">
<div id="outer">
<div style="width:300px; height:100px; background-color:red;"></div>
</div>
</body>
</html>