layout/reftests/webcomponents/basic-shadow-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/webcomponents/basic-shadow-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,22 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html>
     1.6 +<head>
     1.7 +  <script>
     1.8 +    function tweak() {
     1.9 +      // div with style "width:300px; height:100px; background-color:green"
    1.10 +      var shadowDiv = document.createElement("div");
    1.11 +      shadowDiv.style.width = "300px";
    1.12 +      shadowDiv.style.height = "100px";
    1.13 +      shadowDiv.style.backgroundColor = "green";
    1.14 +
    1.15 +      var shadowRoot = document.getElementById('outer').createShadowRoot();
    1.16 +      shadowRoot.appendChild(shadowDiv);
    1.17 +    }
    1.18 +  </script>
    1.19 +</head>
    1.20 +<body onload="tweak()">
    1.21 +<div id="outer">
    1.22 +  <div style="width:300px; height:100px; background-color:red;"></div>
    1.23 +</div>
    1.24 +</body>
    1.25 +</html>

mercurial