diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /editor/libeditor/tests/test_bug1355792.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'editor/libeditor/tests/test_bug1355792.html')
-rw-r--r-- | editor/libeditor/tests/test_bug1355792.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_bug1355792.html b/editor/libeditor/tests/test_bug1355792.html new file mode 100644 index 0000000000..c8231ebec4 --- /dev/null +++ b/editor/libeditor/tests/test_bug1355792.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<title>Test for Bug 1355792</title> +<script src="/tests/SimpleTest/SimpleTest.js"></script> +<link rel="stylesheet" href="/tests/SimpleTest/test.css"> +<div contenteditable><div><font><table><td>a</table><br><br><table><td>b</table></font></div></div> +<script> +var font = document.querySelector("font"); +getSelection().collapse(font, 1); +document.execCommand("forwarddelete"); +is(document.body.firstChild.innerHTML, + "<div><font><table><tbody><tr><td>a</td></tr></tbody></table><br>" + + "<table><tbody><tr><td>b</td></tr></tbody></table></font></div>", + "No creating an extra <br>"); +is(getSelection().focusNode, font, "Selection node should not change"); +is(getSelection().focusOffset, 1, "Selection offset should not move"); +ok(getSelection().isCollapsed, "Selection should be collapsed"); +</script> |