1 <p>This tests for a crash when inserting text into a textarea that has been shrunk to zero rows just before the insertion.
</p>
2 <textarea id=
"textarea" rows=
"1"></textarea>
5 window
.testRunner
.dumpAsText();
6 var e
= document
.getElementById("textarea");
7 e
.setSelectionRange(0, 0);
9 document
.execCommand("InsertText", false, "x");