5 border:
1px dashed #aaa;
12 <p>This tests for a bug where indented text would appear quoted in GoogleDocs. Google docs uses blockquotes and FormatBlock to implement a
"Quote Text" feature, and style rules for blockquotes appeared on the blockquotes that we use to implement indenting.
</p>
13 <div contenteditable=
"true">
14 <div id=
"div">This should be indented, not quoted.
</div>
15 <blockquote>This text should be Quoted.
</blockquote>
19 var selection
= window
.getSelection();
20 var div
= document
.getElementById("div");
22 selection
.collapse(div
, 0);
23 document
.execCommand("Indent");