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