diff options
Diffstat (limited to 'system/editor/libeditor/crashtests/776323.html')
-rw-r--r-- | system/editor/libeditor/crashtests/776323.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/system/editor/libeditor/crashtests/776323.html b/system/editor/libeditor/crashtests/776323.html new file mode 100644 index 000000000..9fc2776c3 --- /dev/null +++ b/system/editor/libeditor/crashtests/776323.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html contenteditable="true"> +<head> +<script> + +function boom() +{ + document.execCommand("inserthtml", false, "b"); + var myrange = document.createRange(); + myrange.selectNodeContents(document.getElementsByTagName("img")[0]); + window.getSelection().addRange(myrange); + document.execCommand("strikethrough", false, null); +} + +</script> +</head> +<body onload="boom();"><img></body> +</html> |