Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / undo / orphaned-selection-crash-bug32823-4.html
blob6a240024bae4fe5e764c64dbcc65d801180755dd
1 <BODY></BODY>
2 <SCRIPT>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 document.execCommand("selectall",false,true);
6 document.designMode="on";
7 document.execCommand("inserthorizontalrule",8);
8 document.execCommand("InsertImage",false,"");
9 document.execCommand("justifyleft",false,1);
10 document.execCommand("insertparagraph",false);
11 document.execCommand("SelectAll",false,undefined);
12 document.execCommand("InsertOrderedList",false,null);
13 document.body.innerHTML='PASS';
14 </SCRIPT>