blob: cc94a772c3405dc06f2d4e3d0b5f4fd55baac8f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
test(() => {
let portal = document.createElement("portal");
let xmlDoc = document.implementation.createDocument("", null);
xmlDoc.appendChild(portal);
}, "inserting a portal element into an XML document shouldn't crash or throw");
test(() => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let doc = iframe.contentDocument;
iframe.remove();
let portal = document.createElement("portal");
doc.body.appendChild(portal);
}, "inserting a portal element into a detached iframe's document shouldn't crash or throw");
test(() => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let doc = iframe.contentDocument;
iframe.remove();
let portal = doc.createElement("portal");
doc.body.appendChild(portal);
}, "creating a portal element with a detached iframe's document shouldn't crash or throw");
</script>
</body>
|