summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/682650-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/crashtests/682650-1.html')
-rw-r--r--editor/libeditor/crashtests/682650-1.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/682650-1.html b/editor/libeditor/crashtests/682650-1.html
new file mode 100644
index 000000000..66ebc2f62
--- /dev/null
+++ b/editor/libeditor/crashtests/682650-1.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function repeatChar(s, n)
+{
+ while (s.length < n)
+ s += s;
+ return s.substr(0, n);
+}
+
+function boom()
+{
+ document.documentElement.contentEditable = "true";
+ document.execCommand("inserthtml", false, "<button><\/button>");
+ document.execCommand("inserthtml", false, repeatChar("i", 34646));
+ document.execCommand("contentReadOnly", false, null);
+ document.execCommand("removeformat", false, null);
+ document.execCommand("hilitecolor", false, "red");
+ document.execCommand("inserthtml", false, "a");
+ document.execCommand("delete", false, null);
+}
+
+</script>
+</head>
+
+<body onload="boom();"></body>
+
+</html>