summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug612271-3.html
blob: 9f267c28243dff18221d15db0d4787de58b2302d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML><html><head>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
  <textarea id="target" style="height: 100px; -moz-appearance: none" spellcheck="false"
    onkeyup="this.style.display='block';this.style.height='200px';">foo</textarea>
<script>
  var t = document.querySelector("textarea");
  t.focus();
  t.selectionStart = t.selectionEnd = t.value.length;
  sendKey('RETURN');
  document.body.appendChild(document.createTextNode(t.selectionStart + " - " + t.selectionEnd));
</script>
</body>
</html>