8 var root
= document
.documentElement
;
9 root
.contentEditable
= "true";
10 document
.removeChild(root
);
11 document
.appendChild(root
);
12 document
.execCommand("insertunorderedlist", false, null);
13 document
.execCommand("inserthtml", false, "<span></span>");
14 document
.execCommand("outdent", false, null);
20 <body onload=
"boom();"></body>