summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-template-element/template-element/template-content-in-inactive-document-crash.html
blob: 66c564c77a513f9f4946e38b0729ffcd744918a9 (plain)
1
2
3
4
5
6
7
<iframe id="i"></iframe>
<script>
var t = i.contentDocument.createElement("template");
i.contentDocument.documentElement.appendChild(t);
i.remove();
t.content;
</script>