summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/selection-direction.tentative.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/shadow-dom/selection-direction.tentative.html
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/shadow-dom/selection-direction.tentative.html')
-rw-r--r--testing/web-platform/tests/shadow-dom/selection-direction.tentative.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shadow-dom/selection-direction.tentative.html b/testing/web-platform/tests/shadow-dom/selection-direction.tentative.html
new file mode 100644
index 0000000000..3a2512dcc7
--- /dev/null
+++ b/testing/web-platform/tests/shadow-dom/selection-direction.tentative.html
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+<html>
+<body>
+<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
+<meta name="assert" content="Selection's direction should return none, forwad, or backward">
+<link rel="help" href="https://w3c.github.io/selection-api/#dom-selection-getcomposedrange">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id="container"></div>
+<script>
+
+test(() => {
+ getSelection().removeAllRanges();
+ assert_equals(getSelection().direction, 'none');
+}, 'direction returns "none" when there is no selection');
+
+test(() => {
+ container.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(container.firstChild, 0, container.firstChild, 5);
+ assert_equals(getSelection().direction, 'forward');
+}, 'direction returns "forward" when there is a forward-direction selection in the document tree');
+
+test(() => {
+ container.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(container.firstChild, 4, container.firstChild, 3);
+ assert_equals(getSelection().direction, 'backward');
+}, 'direction returns "backward" when there is a backward-direction selection in the document tree');
+
+test(() => {
+ container.innerHTML = 'a<div id="host"></div>b';
+ const shadowRoot = host.attachShadow({mode: 'closed'});
+ shadowRoot.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(shadowRoot.firstChild, 0, shadowRoot.firstChild, 5);
+ assert_equals(getSelection().direction, 'forward');
+}, 'direction returns "forward" when there is a forward selection in the shadow tree');
+
+test(() => {
+ container.innerHTML = 'a<div id="host"></div>b';
+ const shadowRoot = host.attachShadow({mode: 'closed'});
+ shadowRoot.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(shadowRoot.firstChild, 5, shadowRoot.firstChild, 3);
+ assert_equals(getSelection().direction, 'backward');
+}, 'direction returns "backward" when there is a backward selection in the shadow tree');
+
+test(() => {
+ container.innerHTML = 'a<div id="host"></div>b';
+ const shadowRoot = host.attachShadow({mode: 'closed'});
+ shadowRoot.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(shadowRoot.firstChild, 7, container, 2);
+ assert_equals(getSelection().direction, 'forward');
+}, 'direction returns "forward" when there is a forward selection that crosses shadow boundaries');
+
+test(() => {
+ container.innerHTML = 'a<div id="host"></div>b';
+ const shadowRoot = host.attachShadow({mode: 'closed'});
+ shadowRoot.innerHTML = 'hello, world';
+ getSelection().setBaseAndExtent(shadowRoot.firstChild, 7, container, 1);
+ assert_equals(getSelection().direction, 'backward');
+}, 'direction returns "backward" when there is a forward selection that crosses shadow boundaries');
+
+</script>
+</body>
+</html>