chromium/third_party/blink/web_tests/external/wpt/editing/crashtests/insertparagraph-from-DOMNodeInserted-caused-by-insertorderedlist.html

<html>
<head>
<script type="text/javascript">

function boom()
{
  document.addEventListener("DOMNodeInserted", x);

  function x()
  {
    document.removeEventListener("DOMNodeInserted", x);
    document.execCommand("insertParagraph", false, "");
  }

  document.execCommand("insertorderedlist", false, "");
}

</script>
</head>

<body contenteditable="true" onload="boom()"></body>

</html>