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