summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/input-importNode-to-detached-document-crash.html
blob: 5e0cff4fa309a4286f922082264e2ae82bc00321 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<body>
<p>This test passes if it does not crash.</p>
<input id="input" type="image" src="data:image/gif;base64,">
<iframe id="iframe"></iframe>
<script>
let i_doc = iframe.contentDocument;
iframe.remove();
i_doc.importNode(input);
</script>
</body>