summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/iframe-document-move-crash.html
blob: 43da8bf50c82fee48103148c175d001200ec54a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
This test passes if it does not crash.
<script>
  var doc1 = document.documentElement;
  let iframe1 = document.createElement("iframe");
  doc1.appendChild(iframe1);
  separateDoc = document.implementation.createDocument("", null);
  iframe1.addEventListener("DOMFocusOut", function () {  separateDoc.adoptNode(iframe1); });
  iframe1.focus();
  iframe1 = document.createElement("iframe");
  doc1.appendChild(iframe1);
  iframe1.focus();
</script>