gecko-dev/editor/libeditor/crashtests/1272490.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 строка
624 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);
// Remove the editor from document during executing "insertOrderedList".
document.body.innerHTML = "";
}
childDocument.addEventListener("DOMAttrModified", onAttrModified);
childDocument.execCommand("insertOrderedList", false, "1");
}
</script>
</head>
<body><iframe></iframe></body>
</html>