1 <p>This tests for a bug where text pasted into a textarea would appear one character before the position where it was pasted.
</p>
2 <textarea rows=
5 id=
"test">xx
</textarea>
5 testRunner
.dumpAsText();
6 var e
= document
.getElementById("test");
7 e
.setSelectionRange(1, 1);
8 document
.execCommand("InsertHTML", false, "(There should be one 'x' before and after this sentence.)");
9 if (e
.value
== "x(There should be one 'x' before and after this sentence.)x")
10 document
.write("<p>Hooray, test succeeded.</p>");
12 document
.write("<p>Test failed, value is '" + e
.value
+ "'.</p>");