Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 4917055.html
blobd978aa8235a45c91cb2b6ac8258d0e00e269f7fb
1 <p>This tests for a hang when performing Insert{Un}OrderedList.</p>
2 <div id="div" contenteditable="true">
3 <blockquote class="webkit-indent-blockquote">foo</blockquote>
4 <blockquote class="webkit-indent-blockquote">bar</blockquote>
5 <blockquote class="webkit-indent-blockquote"><br></blockquote>
6 <blockquote class="webkit-indent-blockquote"><br></blockquote>
7 <blockquote class="webkit-indent-blockquote"><br></blockquote>
8 </div>
10 <script>
11 if (window.testRunner)
12 window.testRunner.dumpAsText();
14 var div = document.getElementById("div");
16 div.focus();
17 document.execCommand("SelectAll");
18 document.execCommand("InsertUnorderedList");
19 </script>