tenfourfox/editor/libeditor/crashtests/1057677.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

10 lines
290 B
HTML

<html><body></body><script>
document.designMode = "on";
var hrElem = document.createElement("HR");
var select = window.getSelection();
document.body.appendChild(hrElem);
select.collapse(hrElem,0);
document.execCommand("InsertHTML", false, "<div>foo</div><div>bar</div>");
</script>
</html>