blob: f171c09699f115ef443167812f658512548d5109 [file] [log] [blame]
<html>
<head>
<template id="shadow-template">
<div style="color: red;"><h1>Hello from the shadow dom!</h1></div>
</template>
</head>
<body onload="addShadowDOM()">
<div id="element_in_an_iframe"></div>
<script>
function addShadowDOM() {
var host = document.getElementById("element_in_an_iframe").createShadowRoot();
var template = document.querySelector("#shadow-template");
host.appendChild(template.content);
template.remove();
}
</script>
</body>
</html>