2 <body contenteditable=
"true">
4 <blockquote id=
"test" style=
"display: inline">Executing Outdent on an inline blockquote that is not the first element in the document should not crash.
</blockquote>
8 testRunner
.dumpAsText();
10 function log(message
) {
11 var console
= document
.getElementById("console");
12 var text
= document
.createTextNode(message
);
13 console
.appendChild(text
);
16 var s
= window
.getSelection();
17 var p1
= document
.getElementById("test");
19 document
.execCommand("Outdent", false, 0);
20 log("Test passed: no crash");