summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html')
-rw-r--r--testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html b/testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html
new file mode 100644
index 0000000000..b7ca7144e4
--- /dev/null
+++ b/testing/web-platform/tests/shadow-dom/slot-fallback-content-004.html
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<meta charset="utf-8" >
+<meta name="author" title="Di Zhang" href="mailto:dizhangg@chromium.org">
+<meta name="assert" content="Remove assigned light nodes of a slot, when dynamically created.">
+<title>Shadow DOM: Slots and fallback contents</title>
+<link rel="match" href="slot-fallback-content-004-ref.html">
+
+<p>Test passes if there is one line of text "SLOT1" below.</p>
+
+<div id="host1">
+ <slot id="slot1" name="slot1">SLOT1</slot>
+ <div id="A" slot="slot1">FAIL</div>
+</div>
+
+<p>Test passes if empty.</p>
+
+<div id="host2">
+ <slot id="slot2" name="slot2"></slot>
+ <div id="B" slot="slot2">FAIL</div>
+</div>
+
+<p>Test passes if there is one line of text "SLOT3" below.</p>
+
+<div id="host3">
+ <slot id="slot3" name="slot3">SLOT3</slot>
+ <div id="C" slot="slot3">FAIL</div>
+</div>
+
+<p>Test passes if there is one line of text "SLOT4" below.</p>
+
+<div id="host4">
+ <slot id="slot4" name="slot4">SLOT4</slot>
+ <div id="D" slot="slot4">FAIL</div>
+</div>
+
+<script>
+// Remove a slot's assigned node should show fallback content
+const shadowRoot1 = host1.attachShadow({ mode: "open" });
+shadowRoot1.appendChild(slot1);
+A.remove();
+
+// Remove a slot's assigned node with no fallback should show nothing
+const shadowRoot2 = host2.attachShadow({ mode: "open" });
+shadowRoot2.appendChild(slot2);
+B.remove();
+
+// Remove the slot attribute to an assigned node should show fallback content
+const shadowRoot3 = host3.attachShadow({ mode: "open" });
+shadowRoot3.appendChild(slot3);
+C.removeAttribute('slot');
+
+// Change the slot attribute to an assigned node to an unknown slot
+// should show fallback content
+const shadowRoot4 = host4.attachShadow({ mode: "open" });
+shadowRoot4.appendChild(slot4);
+D.setAttribute('slot', 'invalid');
+
+</script>