4 window
.onload = function () {
5 document
.designMode
= 'on';
6 var br
= document
.getElementById('br');
7 br
.appendChild(document
.createElement('div'));
8 document
.getSelection().collapse(br
, 0);
9 document
.execCommand('InsertUnorderedList', false, false);
10 window
.parent
.postMessage('FINISH', '*');
15 <ul><li><br id='br'
/></li></ul>