blob: d978aa8235a45c91cb2b6ac8258d0e00e269f7fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<p>This tests for a hang when performing Insert{Un}OrderedList.</p>
<div id="div" contenteditable="true">
<blockquote class="webkit-indent-blockquote">foo</blockquote>
<blockquote class="webkit-indent-blockquote">bar</blockquote>
<blockquote class="webkit-indent-blockquote"><br></blockquote>
<blockquote class="webkit-indent-blockquote"><br></blockquote>
<blockquote class="webkit-indent-blockquote"><br></blockquote>
</div>
<script>
if (window.testRunner)
window.testRunner.dumpAsText();
var div = document.getElementById("div");
div.focus();
document.execCommand("SelectAll");
document.execCommand("InsertUnorderedList");
</script>
|