summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/402172-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/crashtests/402172-1.html')
-rw-r--r--editor/libeditor/crashtests/402172-1.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/402172-1.html b/editor/libeditor/crashtests/402172-1.html
new file mode 100644
index 000000000..4022523fa
--- /dev/null
+++ b/editor/libeditor/crashtests/402172-1.html
@@ -0,0 +1,23 @@
+<html>
+<head>
+<script>
+
+function boom()
+{
+ document.getElementById("div").contentEditable = "true";
+ document.getElementById("div").focus();
+ document.getElementById("div").contentEditable = "false";
+
+ document.getElementById("table").contentEditable = "true";
+}
+
+</script>
+</head>
+
+<body onload="boom();">
+
+<table id="table"><td></td></table><div id="div"></div>
+
+</body>
+
+</html>