3 <p>This tests outdenting
"two", the second paragraph in a regular blockquote (not created by WebKit). After outdenting two, there should be exactly two blockquotes.
</p>
4 <div id=
"e" contenteditable=
"true">
5 <blockquote id=
"test">one
<br>two
<br>three
</blockquote>
9 <li>Before:
<span id=
"c1"></span></li>
10 <li>After:
<span id=
"c2"></span></li>
13 <script type=
"text/javascript">
15 if (window
.testRunner
)
16 testRunner
.dumpAsText();
18 var e
= document
.getElementById('e');
20 document
.getElementById('c1').appendChild(document
.createTextNode(e
.innerHTML
));
22 var s
= window
.getSelection();
23 var r
= document
.createRange();
24 r
.setStart(document
.getElementById('test'),2);
25 r
.setEnd(document
.getElementById('test'),2);
28 document
.execCommand("Outdent", false, "");
30 document
.getElementById('c2').appendChild(document
.createTextNode(e
.innerHTML
));