chromium/third_party/blink/web_tests/editing/undo/orphaned-selection-crash-bug32823-4.html

<BODY></BODY>
<SCRIPT>
  if (window.testRunner)
    testRunner.dumpAsText();
  document.execCommand("selectall",false,true);
  document.designMode="on";
  document.execCommand("inserthorizontalrule",8);
  document.execCommand("InsertImage",false,"");
  document.execCommand("justifyleft",false,1);
  document.execCommand("insertparagraph",false);
  document.execCommand("SelectAll",false,undefined);
  document.execCommand("InsertOrderedList",false,null);
  document.body.innerHTML='PASS';
</SCRIPT>