upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 4917055.html
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>
9
10 <script>
11 if (window.layoutTestController)
12     window.layoutTestController.dumpAsText();
13     
14 var div = document.getElementById("div");
15
16 div.focus();
17 document.execCommand("SelectAll");
18 document.execCommand("InsertUnorderedList");
19 </script>