summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-template-element/template-element/template-set-inner-html-in-inactive-document-crash.html
blob: 79a76ee76fe57dc8de2f5bf807547d9908467903 (plain)
1
2
3
4
5
6
<iframe id="i"></iframe>
<script>
  var doc = i.contentDocument;
  i.remove();
  doc.createElement("template").innerHTML = "";
</script>