Bug 1931425 - Limit how often moz-label's #setStyles runs r=reusable-components-revie...
[gecko.git] / devtools / server / tests / chrome / inspector-template.html
blob13c9d5c7d3db9034bb208c9f0d21fb87a7c0bbb2
1 <html>
2 <body>
3 <template>
4 <p>template content</p>
5 </template>
6 <div></div>
7 <script>
8 "use strict";
10 const template = document.querySelector("template");
11 const clone = document.importNode(template.content, true);
12 document.querySelector("div").appendChild(clone);
14 window.opener.postMessage("ready", "*");
15 </script>
16 </body>
17 </html>