2 <body contenteditable=
"true">
3 <p>This tests for setting the selection at a position inside a document in designMode. You should see a caret at the start of the body.
</p>
7 document
.designMode
= "on";
8 var sel
= window
.getSelection();
9 var range
= document
.createRange();
10 range
.setStart(document
, 0);
11 range
.setEnd(document
, 0);