diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /editor/libeditor/tests/test_bug1649005.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'editor/libeditor/tests/test_bug1649005.html')
-rw-r--r-- | editor/libeditor/tests/test_bug1649005.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_bug1649005.html b/editor/libeditor/tests/test_bug1649005.html new file mode 100644 index 0000000000..fbd8e16ef8 --- /dev/null +++ b/editor/libeditor/tests/test_bug1649005.html @@ -0,0 +1,49 @@ +<!DOCTYPE> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=1649005 +--> +<head> + <meta charset="UTF-8" /> + <title>Test for bug 1649005</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" href="/tests/SimpleTest/test.css"> + <script src="/tests/SimpleTest/EventUtils.js"></script> + <script> + /** Test for bug 1649005, bug 1779343 **/ + window.addEventListener("DOMContentLoaded", (event) => { + SimpleTest.waitForExplicitFinish(); + SimpleTest.waitForFocus(function() { + document.body.textContent = ""; // It would be \n\n otherwise... + synthesizeMouseAtCenter(document.body, {}); + + var editor = getEditor(); + is(document.body.textContent, "", "Initial body check"); + editor.rewrap(false); + is(document.body.textContent, "", "Initial body check after rewrap"); + + document.body.innerHTML = ">abc<br/>>def<br/>>ghi"; + editor.rewrap(true); + is(document.body.textContent, "> abc def ghi", "Rewrapped"); + + document.body.innerHTML = "> "; + editor.rewrap(true); + is(document.body.textContent, "> ", "Rewrapped half-empty string"); + + SimpleTest.finish(); + }); + }); + + function getEditor() { + var Ci = SpecialPowers.Ci; + var editingSession = SpecialPowers.wrap(window).docShell.editingSession; + var editor = editingSession.getEditorForWindow(window); + editor.QueryInterface(Ci.nsIHTMLEditor); + editor.QueryInterface(Ci.nsIEditorMailSupport); + editor.flags |= SpecialPowers.Ci.nsIEditor.eEditorPlaintextMask; + return editor; + } + </script> +</head> +<body contenteditable></body> +</html> |