summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html')
-rw-r--r--testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html b/testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html
new file mode 100644
index 0000000000..bea3d7102c
--- /dev/null
+++ b/testing/web-platform/tests/html/semantics/permission-element/no-end-tag-no-contents.tentative.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<body>
+<!--The permission element should have no end tag or content.
+ Therefore the parsing should stop after the beginning tag, and the following
+ element and text will become part of the 'body' element's contents.
+-->
+<permission type="geolocation"><span>this is some text</span></permission>
+
+<script>
+ test(function(){
+ assert_equals(3, document.body.childElementCount); // permission, span, script
+ assert_equals(document.body.innerText, "this is some text", "The text should be part of the 'body' element's text");
+
+ assert_true(document.body.children[0] instanceof HTMLPermissionElement, "First element should be a permission element");
+ var permission = document.body.children[0];
+ assert_equals(permission.innerText, "", "The permission element should have no text");
+ assert_equals(permission.childElementCount, 0, "The permission element should have no children");
+
+ assert_true(document.body.children[1] instanceof HTMLSpanElement, "Second element should be a span element");
+ var span = document.body.children[1];
+ assert_equals(span.innerText, "this is some text", "The span element should contain the text");
+ }, "The permission element should have no end tag or contents");
+</script>
+</body> \ No newline at end of file