blob: 267f04b4cfd22cc1d936f613d6b444c7f7242c96 [file] [log] [blame]
<!DOCTYPE html>
<body class=shadow>
<div id="host">HOST</div>
</body>
<script>
var host = document.getElementById('host');
var root = host.attachShadow({mode: 'open'});
root.innerHTML = '\
<style>\
:host-context(body.shadow)::before { content: "before shadow root:"; }\
:host-context(body.light)::before { content: "this should not appear:"; }\
</style>\
<span>SHADOW</span>';
</script>