tenfourfox/editor/libeditor/crashtests/1057677.html

10 lines
290 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>