зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
638 B
HTML
21 строка
638 B
HTML
<!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>
|