summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_insertHTML_starting_with_multiple_comment_nodes.html
diff options
context:
space:
mode:
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>