2010-12-06 22:30:05 -08:00
|
|
|
<!DOCTYPE HTML><html><head>
|
2011-06-29 11:22:39 -07:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
2010-12-06 22:30:05 -08:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-01-24 13:05:52 -08:00
|
|
|
<textarea id="target" style="height: 100px; -moz-appearance: none" spellcheck="false"
|
2010-12-06 22:30:05 -08:00
|
|
|
onkeydown="this.style.display='block';this.style.height='200px';">foo</textarea>
|
|
|
|
<script>
|
|
|
|
var t = document.querySelector("textarea");
|
|
|
|
t.focus();
|
2011-05-12 06:52:38 -07:00
|
|
|
t.selectionStart = t.selectionEnd = t.value.length;
|
2014-02-14 16:57:39 -08:00
|
|
|
sendKey('RETURN');
|
2010-12-06 22:30:05 -08:00
|
|
|
document.body.appendChild(document.createTextNode(t.selectionStart + " - " + t.selectionEnd));
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|