diff options
Diffstat (limited to 'editor/libeditor/crashtests/1425091.html')
-rw-r--r-- | editor/libeditor/crashtests/1425091.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/1425091.html b/editor/libeditor/crashtests/1425091.html new file mode 100644 index 0000000000..b4ab8cc2ef --- /dev/null +++ b/editor/libeditor/crashtests/1425091.html @@ -0,0 +1,15 @@ +<script> +function go() { + document.scrollingElement.addEventListener("DOMNodeInserted", () => { + document.execCommand("selectAll", false); + document.execCommand("insertOrderedList", false); + }); + a.appendChild(document.createElement("e")); +} +</script> +<body onload=go()> +<meter contenteditable="true"> +<dialog> +<style id="a"></style> +</dialog> +</meter> |