1
0
Fork 0
firefox/testing/web-platform/tests/dom/nodes/Node-contains.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

36 lines
1 KiB
HTML

<!doctype html>
<title>Node.contains() tests</title>
<link rel=author title="Aryeh Gregor" href=ayg@aryeh.name>
<div id=log></div>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../common.js></script>
<script>
"use strict";
testNodes.forEach(function(referenceName) {
var reference = eval(referenceName);
test(function() {
assert_false(reference.contains(null));
}, referenceName + ".contains(null)");
testNodes.forEach(function(otherName) {
var other = eval(otherName);
test(function() {
var ancestor = other;
while (ancestor && ancestor !== reference) {
ancestor = ancestor.parentNode;
}
if (ancestor === reference) {
assert_true(reference.contains(other));
} else {
assert_false(reference.contains(other));
}
}, referenceName + ".contains(" + otherName + ")");
});
});
testDiv.parentNode.removeChild(testDiv);
</script>
<!-- vim: set expandtab tabstop=2 shiftwidth=2: -->