summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/selection-direction.tentative.html
diff options
context:
space:
mode:
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>