summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/1272490.html
blob: 2a8f1d9f9c9b8eab4f4170785009352804ddc279 (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);
    // 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>