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

24 lines
411 B
HTML

<html>
<head>
<script type="text/javascript">
function boom()
{
document.addEventListener("DOMNodeInserted", x, false);
function x()
{
document.removeEventListener("DOMNodeInserted", x, false);
document.execCommand("insertParagraph", false, "");
}
document.execCommand("insertorderedlist", false, "");
}
</script>
</head>
<body contenteditable="true" onload="boom()"></body>
</html>