blob: a820042fedc20c156ab0a3c691b062aefadb146e [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpEditingCallbacks();
</script>
<div id="description">This test uses the execCommand to Outdent the text below. <b>This demonstrates a bug: the content in the blockquote that's not in a list is pulled out of position.</b></div>
<br>
<div contenteditable="true">
<span id="item1">Lorem</span><br>
more Lorem!
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px;">
ipsum<br>
<ul>
<li>Foo</li>
<li>Bar</li>
<li>Baz</li>
</ul>
Dolor
</blockquote>
<ul>
<li>Dinner time?</li>
</ul>
Sum!<br>
<span id="item2">Thing</span>
</div>
<script>
var s = window.getSelection();
var p1 = document.getElementById("item1");
var p2 = document.getElementById("item2");
s.setPosition(p1, 0);
s.setBaseAndExtent(p1, 0, p2, 2);
document.execCommand("Outdent", false, "");
</script>