Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-block-in-list.html
blob3704af671d2551c85329bd1188267336e5a9c2b8
1 <body>
2 </body>
3 <SCRIPT>
4 if (window.testRunner)
5 window.testRunner.dumpAsText();
7 document.designMode = "on";
8 document.execCommand("SelectAll", false, null);
9 document.execCommand("InsertUnorderedList", false, null);
10 document.execCommand("inserthorizontalrule");
11 // This was triggering an assert because we weren't properly indenting
12 // block elements in lists.
13 document.execCommand("indent");
14 document.execCommand("inserthtml", false, "PASSED");
15 </SCRIPT>