tenfourfox/editor/libeditor/crashtests/407079-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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>