Mypal/editor/libeditor/crashtests/407079-1.html
2019-03-11 13:26:37 +03:00

16 lines
272 B
HTML

<html>
<head>
<script type="text/javascript">
function boom()
{
document.execCommand("selectAll", false, null);
document.execCommand("inserthtml", false, "<p>");
}
</script>
</head>
<body onload="boom();"><textarea contenteditable="true"></textarea></body>
</html>