blob: f03fadf217be3f37d1b2b1cec2a8955d75228721 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<div id="host"></div>
<script>
(function() {
var shadow = document.getElementById("host").attachShadow({mode: 'open'});
shadow.innerHTML = "<article id='target'></article>";
document.targetInShadow = shadow.getElementById("target");
})();
</script>
</body>
</html>