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