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/crashtests/1402904.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/crashtests/1402904.html')
-rw-r--r-- | editor/libeditor/crashtests/1402904.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/1402904.html b/editor/libeditor/crashtests/1402904.html new file mode 100644 index 0000000000..544d01208a --- /dev/null +++ b/editor/libeditor/crashtests/1402904.html @@ -0,0 +1,38 @@ +<script> +function onLoad() { + // For emulating the traditional behavior, collapse Selection to end of the + // parent of <embed> (<embed> is not a container, therefore, its parent is the + // deepest last child container element of the <body>). + getSelection().collapse( + document.querySelector("embed").parentElement, + document.querySelector("embed").parentElement.childNodes.length + ); // Point the <embed> + const option = document.querySelector("option"); + option.addEventListener("click", () => { + document.execCommand("forwardDelete"); + }); + const li2 = document.getElementById("li2"); + li2.addEventListener("DOMNodeInserted", () => { + option.click(); + }); + const select = document.querySelector("select"); + select.parentElement.setAttribute("onpageshow", "onPageShow()"); +} + +function onPageShow() { + const li1 = document.getElementById("li1"); + li1.addEventListener("DOMSubtreeModified", () => { + document.execCommand("selectAll"); + document.execCommand("indent"); + }); + li1.appendChild(document.createElement("legend")); +} +</script> +<body onload="onLoad()"> +<select> +<option></option> +</select> +<li id="li1"></li> +<ul contenteditable="true"> +<li id="li2"></li> +<embed>a;#2 |