summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html
parentInitial commit. (diff)
downloadthunderbird-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_insertHTML_starting_with_multiple_comment_nodes.html')
-rw-r--r--editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html b/editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html
new file mode 100644
index 0000000000..c3b440659f
--- /dev/null
+++ b/editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>Insert HTML containing comment nodes</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+<script>
+"use strict";
+
+SimpleTest.waitForExplicitFinish();
+SimpleTest.waitForFocus(() => {
+ const editor = document.querySelector("div[contenteditable]");
+ getSelection().collapse(editor.querySelector("li").firstChild, 1);
+ document.execCommand("insertHTML", false, "<!-- 1 --><!-- 2 -->b");
+ is(
+ editor.innerHTML,
+ "<ul><li>a<!-- 1 --><!-- 2 -->bc</li></ul>",
+ "The HTML fragment should be inserted as-is"
+ );
+ document.execCommand("undo");
+ is(
+ editor.innerHTML,
+ "<ul><li>ac</li></ul>",
+ "Undoing should work as expected"
+ );
+ document.execCommand("redo");
+ is(
+ editor.innerHTML,
+ "<ul><li>a<!-- 1 --><!-- 2 -->bc</li></ul>",
+ "Redoing should work as expected"
+ );
+ SimpleTest.finish();
+});
+</script>
+</head>
+<body>
+<div contenteditable><ul><li>ac</li></ul></div>
+</body>
+</html>