summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html')
-rw-r--r--testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html b/testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html
new file mode 100644
index 0000000000..37c0cd6cba
--- /dev/null
+++ b/testing/web-platform/tests/fenced-frame/add-fencedframe-to-detached-iframe.https.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<title>Test Add Fenced Frame to Detached Iframe</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="resources/utils.js"></script>
+
+<body>
+<script>
+promise_test(async (t) => {
+ const iframe = attachIFrame("resources/dummy.html");
+
+ const doc = document.querySelector("iframe").contentDocument;
+ iframe.remove();
+
+ const ff = doc.createElement("fencedframe");
+ doc.body.append(ff);
+}, 'Add fenced frame to detached iframe test');
+
+promise_test(async (t) => {
+ const iframe = attachIFrame("resources/dummy.html");
+ const doc = document.querySelector("iframe").contentDocument;
+
+ const nested_iframe = doc.createElement('iframe');
+ nested_iframe.src = "resources/dummy.html";
+ doc.body.append(nested_iframe);
+ const nested_doc = doc.querySelector("iframe").contentDocument;
+
+ iframe.remove();
+
+ const ff = nested_doc.createElement("fencedframe");
+ nested_doc.body.append(ff);
+}, 'Add fenced frame to nested iframe in detached frame test');
+
+</script>
+</body>
+</html>