summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/removeAllRanges.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/selection/removeAllRanges.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/selection/removeAllRanges.html')
-rw-r--r--testing/web-platform/tests/selection/removeAllRanges.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/selection/removeAllRanges.html b/testing/web-platform/tests/selection/removeAllRanges.html
new file mode 100644
index 0000000000..026280d6b8
--- /dev/null
+++ b/testing/web-platform/tests/selection/removeAllRanges.html
@@ -0,0 +1,55 @@
+<!doctype html>
+<title>Selection.removeAllRanges()/empty() tests</title>
+<div id=log></div>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=common.js></script>
+<script>
+"use strict";
+
+// Also test a selection with no ranges
+testRanges.unshift("[]");
+
+var range = rangeFromEndpoints([paras[0].firstChild, 0, paras[0].firstChild, 1]);
+
+function testRange(rangeDesc, method) {
+ var endpoints = eval(testRanges[i]);
+ if (endpoints.length && (!isSelectableNode(endpoints[0]) ||
+ !isSelectableNode(endpoints[2]))) {
+ return;
+ }
+ test(function() {
+ setSelectionForwards(endpoints);
+ selection[method]();
+ assert_equals(selection.rangeCount, 0,
+ "After " + method + "(), rangeCount must be 0");
+ // Test that it's forwards
+ selection.addRange(range);
+ assert_equals(selection.anchorOffset, selection.getRangeAt(0).startOffset,
+ "After " + method + "(), addRange() must be forwards, so anchorOffset must equal startOffset rather than endOffset");
+ assert_equals(selection.focusOffset, selection.getRangeAt(0).endOffset,
+ "After " + method + "(), addRange() must be forwards, so focusOffset must equal endOffset rather than startOffset");
+ }, method + " on " + rangeDesc + " forwards");
+
+ // Copy-pasted from above
+ test(function() {
+ setSelectionBackwards(endpoints);
+ selection[method]();
+ assert_equals(selection.rangeCount, 0,
+ "After " + method + "(), rangeCount must be 0");
+ // Test that it's forwards
+ selection.addRange(range);
+ assert_equals(selection.anchorOffset, selection.getRangeAt(0).startOffset,
+ "After " + method + "(), addRange() must be forwards, so anchorOffset must equal startOffset rather than endOffset");
+ assert_equals(selection.focusOffset, selection.getRangeAt(0).endOffset,
+ "After " + method + "(), addRange() must be forwards, so focusOffset must equal endOffset rather than startOffset");
+ }, method + " on " + rangeDesc + " backwards");
+}
+
+for (var i = 0; i < testRanges.length; i++) {
+ testRange(testRanges[i], "removeAllRanges");
+ testRange(testRanges[i], "empty");
+}
+
+testDiv.style.display = "none";
+</script>