summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html')
-rw-r--r--testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html95
1 files changed, 95 insertions, 0 deletions
diff --git a/testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html b/testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html
new file mode 100644
index 0000000000..a4f6382b94
--- /dev/null
+++ b/testing/web-platform/tests/dom/nodes/MutationObserver-sanity.html
@@ -0,0 +1,95 @@
+<!doctype html>
+<meta charset=utf-8>
+<title></title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script>
+ test(() => {
+ var m = new MutationObserver(() => {});
+ assert_throws_js(TypeError, () => {
+ m.observe(document, {});
+ });
+ }, "Should throw if none of childList, attributes, characterData are true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { childList: true });
+ m.disconnect();
+ }, "Should not throw if childList is true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { attributes: true });
+ m.disconnect();
+ }, "Should not throw if attributes is true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { characterData: true });
+ m.disconnect();
+ }, "Should not throw if characterData is true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { attributeOldValue: true });
+ m.disconnect();
+ }, "Should not throw if attributeOldValue is true and attributes is omitted");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { characterDataOldValue: true });
+ m.disconnect();
+ }, "Should not throw if characterDataOldValue is true and characterData is omitted");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { attributes: ["abc"] });
+ m.disconnect();
+ }, "Should not throw if attributeFilter is present and attributes is omitted");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ assert_throws_js(TypeError, () => {
+ m.observe(document, { childList: true, attributeOldValue: true,
+ attributes: false });
+ });
+ }, "Should throw if attributeOldValue is true and attributes is false");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { childList: true, attributeOldValue: true,
+ attributes: true });
+ m.disconnect();
+ }, "Should not throw if attributeOldValue and attributes are both true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ assert_throws_js(TypeError, () => {
+ m.observe(document, { childList: true, attributeFilter: ["abc"],
+ attributes: false });
+ });
+ }, "Should throw if attributeFilter is present and attributes is false");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { childList: true, attributeFilter: ["abc"],
+ attributes: true });
+ m.disconnect();
+ }, "Should not throw if attributeFilter is present and attributes is true");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ assert_throws_js(TypeError, () => {
+ m.observe(document, { childList: true, characterDataOldValue: true,
+ characterData: false });
+ });
+ }, "Should throw if characterDataOldValue is true and characterData is false");
+
+ test(() => {
+ var m = new MutationObserver(() => {});
+ m.observe(document, { childList: true, characterDataOldValue: true,
+ characterData: true });
+ m.disconnect();
+ }, "Should not throw if characterDataOldValue is true and characterData is true");
+
+</script>