diff options
Diffstat (limited to 'editor/libeditor/crashtests/1274050.html')
-rw-r--r-- | editor/libeditor/crashtests/1274050.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/1274050.html b/editor/libeditor/crashtests/1274050.html new file mode 100644 index 0000000000..dc531fba57 --- /dev/null +++ b/editor/libeditor/crashtests/1274050.html @@ -0,0 +1,11 @@ +<body> +<table contenteditable="true"></table> +</body> +<script> +window.onload = function() { + document.execCommand("useCSS", false, false); + document.designMode = 'on'; + document.execCommand("insertunorderedlist", false); + document.execCommand("justifyfull", false); +}; +</script> |