1 <p>This tests for a bug where the color of indented text couldn't be changed.
</p>
2 <div id=
"div" contenteditable=
"true"><br></div>
5 var div
= document
.getElementById("div");
8 document
.execCommand("InsertText", false, "This text should be blue.");
9 document
.execCommand("SelectAll");
10 document
.execCommand("ForeColor", false, "red");
11 document
.execCommand("Indent");
12 document
.execCommand("ForeColor", false, "blue");