diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/selection/modify-line-flex-column.tentative.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/selection/modify-line-flex-column.tentative.html')
-rw-r--r-- | testing/web-platform/tests/selection/modify-line-flex-column.tentative.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/web-platform/tests/selection/modify-line-flex-column.tentative.html b/testing/web-platform/tests/selection/modify-line-flex-column.tentative.html new file mode 100644 index 0000000000..984bb81913 --- /dev/null +++ b/testing/web-platform/tests/selection/modify-line-flex-column.tentative.html @@ -0,0 +1,47 @@ +<!doctype html> +<meta charset=utf-8> +<title>Selection.modify(): line navigation on a column-oriented flex container</title> +<script src=/resources/testharness.js></script> +<script src=/resources/testharnessreport.js></script> +<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> +<link rel="author" title="Mozilla" href="https://mozilla.org"> +<div id="container" style="display: flex; flex-direction: column; font-family: monospace"> + <p id="one">One</p> + <p id="two">Two</p> + <p id="three">Three</p> + <p id="four">Four</p> +</div> +<script> +const selection = getSelection(); +test(() => { + // Put the caret in the second character in "One" + selection.collapse(one.childNodes[0], 2); + // Move forward a line, selection should be after "Tw". + selection.modify("extend", "forward", "line") + assert_equals(selection.focusNode, two.childNodes[0]); + assert_equals(selection.focusOffset, 2); + + // Move forward another line, selection should be after "Th". + selection.modify("extend", "forward", "line") + assert_equals(selection.focusNode, three.childNodes[0]); + assert_equals(selection.focusOffset, 2); + + assert_equals(selection.toString().replaceAll("\r\n", "\n"), "e\n\nTwo\n\nTh"); +}, "forward"); + +test(() => { + // Put the caret in the second character in "Three" + selection.collapse(three.childNodes[0], 2); + // Move backward a line, selection should be after "Tw". + selection.modify("extend", "backward", "line") + assert_equals(selection.focusNode, two.childNodes[0]); + assert_equals(selection.focusOffset, 2); + + // Move backward another line, selection should be after "On". + selection.modify("extend", "backward", "line") + assert_equals(selection.focusNode, one.childNodes[0]); + assert_equals(selection.focusOffset, 2); + + assert_equals(selection.toString().replaceAll("\r\n", "\n"), "e\n\nTwo\n\nTh"); +}, "backward"); +</script> |