summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/766387.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/crashtests/766387.html')
-rw-r--r--editor/libeditor/crashtests/766387.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/766387.html b/editor/libeditor/crashtests/766387.html
new file mode 100644
index 000000000..20ccc60d4
--- /dev/null
+++ b/editor/libeditor/crashtests/766387.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ window.getSelection().removeAllRanges();
+ var r = document.createRange();
+ r.setStart(document.getElementById("x"), 1);
+ r.setEnd(document.getElementById("y"), 0);
+ window.getSelection().addRange(r);
+ document.execCommand("insertorderedlist", false, null);
+}
+
+</script>
+</head>
+
+<body onload="boom();"><div id="x" contenteditable="true">a</div><div id="y" contenteditable="true"></div></body>
+</html>