blob: a3c8ecd8140eeb51cbf6dff6dffc97ca558cde54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
window.onload = function () {
var childDocument = document.getElementsByTagName("iframe")[0].contentDocument;
childDocument.designMode = "on";
function onAttrModified(aEvent) {
childDocument.removeEventListener("DOMAttrModified", onAttrModified, false);
// Remove the editor from document during executing "insertOrderedList".
document.body.innerHTML = "";
}
childDocument.addEventListener("DOMAttrModified", onAttrModified, false);
childDocument.execCommand("insertOrderedList", false, "1");
}
</script>
</head>
<body><iframe></iframe></body>
</html>
|