diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/shadow-dom/selection-direction.tentative.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
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.html | 63 |
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> |