summaryrefslogtreecommitdiffstats
path: root/layout/generic/test/test_image_selection_3.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 /layout/generic/test/test_image_selection_3.html
parentInitial commit. (diff)
downloadfirefox-esr-upstream.tar.xz
firefox-esr-upstream.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--layout/generic/test/test_image_selection_3.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/layout/generic/test/test_image_selection_3.html b/layout/generic/test/test_image_selection_3.html
new file mode 100644
index 0000000000..32a49b54d0
--- /dev/null
+++ b/layout/generic/test/test_image_selection_3.html
@@ -0,0 +1,48 @@
+<!doctype html>
+<title>Test for bug 1754459</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<script src="/tests/SimpleTest/EventUtils.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
+<style>
+ /* This avoids the draggable image check that our code does to avoid handling the mousedown. */
+ img { pointer-events: none }
+</style>
+<div id="block">
+ Some text <img width="100" height="100" id="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAyAQMAAACQ%2B%2Bz9AAAAA1BMVEUA%2FwA0XsCoAAAAD0lEQVQoFWNgGAWjYGgCAAK8AAEb3eOQAAAAAElFTkSuQmCC"> and more.
+</div>
+<script>
+const image = document.getElementById("image");
+const block = document.getElementById("block");
+const selection = window.getSelection();
+
+function clickOnImage(x, y) {
+ synthesizeMouse(image, x, y, {});
+}
+
+add_task(async function test_click_pointer_events_none() {
+ await SimpleTest.promiseFocus(window);
+ clickOnImage(10, 10);
+ ok(selection.isCollapsed, "Should be collapsed");
+ is(selection.focusNode, block, "Should be at block");
+ is(selection.focusOffset, 1, "Should be at start of image");
+
+ clickOnImage(60, 10);
+ ok(selection.isCollapsed, "Should be collapsed");
+ is(selection.focusNode, block, "Should be at block");
+ is(selection.focusOffset, 2, "Should be at end of image");
+});
+
+add_task(async function test_click_pointer_events_none_vertical() {
+ block.style.writingMode = "vertical-lr";
+ block.getBoundingClientRect();
+ clickOnImage(10, 10);
+ ok(selection.isCollapsed, "Should be collapsed");
+ is(selection.focusNode, block, "Should be at start of image");
+ is(selection.focusOffset, 1, "Should be at start of image");
+
+ clickOnImage(10, 60);
+ ok(selection.isCollapsed, "Should be collapsed");
+ is(selection.focusNode, block, "Should be at block");
+ is(selection.focusOffset, 2, "Should be at end of image");
+});
+</script>