haikuwebkit/LayoutTests/editing/undo/orphaned-selection-crash-bu...

15 lines
500 B
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>