4 <div contenteditable=
"true" id=
"editable">
5 <span id=
"item1">Lorem
</span><br>
7 <blockquote class=
"webkit-indent-blockquote" style=
"margin: 0 0 0 40px;">
21 <span id=
"item2">Thing
</span>
24 <script src=
"../../resources/dump-as-markup.js"></script>
26 var s
= window
.getSelection();
27 var p1
= document
.getElementById("item1");
28 var p2
= document
.getElementById("item2");
30 s
.setBaseAndExtent(p1
, 0, p2
, 2);
31 document
.execCommand("Outdent", false, "");
32 Markup
.description("This test uses the execCommand to Outdent the text below.\n" +
33 "This demonstrates a bug: the content in the blockquote that's not in a list is pulled out of position.");
34 Markup
.dump(editable
);