4 <title>CSS Scoping Module Level 1 - a style rule inside a shadow tree doesn't affect the normal dom</title>
5 <link rel="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org"/>
6 <link rel="help" href="http://www.w3.org/TR/css-scoping-1/#selectors-data-model">
7 <link rel="match" href="reference/green-box.html"/>
21 <p>Test passes if you see a single 100px by 100px green box below.</p>
28 var shadowHost = document.querySelector('my-host');
29 shadowRoot = shadowHost.attachShadow({mode: 'open'});
30 shadowRoot.innerHTML = '<style> div { background: red; } </style>';
32 document.body.appendChild(document.createTextNode(exception));