inspector-template.html (361B)
1 <html> 2 <body> 3 <template> 4 <p>template content</p> 5 </template> 6 <div></div> 7 <script> 8 "use strict"; 9 10 const template = document.querySelector("template"); 11 const clone = document.importNode(template.content, true); 12 document.querySelector("div").appendChild(clone); 13 14 window.opener.postMessage("ready", "*"); 15 </script> 16 </body> 17 </html>