6 window
.onload = function () {
7 var childDocument
= document
.getElementsByTagName("iframe")[0].contentDocument
;
8 childDocument
.designMode
= "on";
9 function onAttrModified(aEvent
) {
10 childDocument
.removeEventListener("DOMAttrModified", onAttrModified
);
11 // Remove the editor from document during executing "insertOrderedList".
12 document
.body
.innerHTML
= "";
14 childDocument
.addEventListener("DOMAttrModified", onAttrModified
);
15 childDocument
.execCommand("insertOrderedList", false, "1");
19 <body><iframe></iframe></body>