blob: 8ad1863bab7c2d36f81f66689866b62b3787941c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<html>
<body>
<div contenteditable="true" id="editable">
<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 src="../../resources/dump-as-markup.js"></script>
<script>
var s = window.getSelection();
var p1 = document.getElementById("item1");
var p2 = document.getElementById("item2");
s.collapse(p1, 0);
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.");
Markup.dump(editable);
</script>
</body>
</html>
|