blob: 3cf3b04ab0238245faf1ee81ff0f33a148b30c4f [file] [log] [blame]
<html>
<head>
<script src=../../editing/editing.js language="JavaScript" type="text/JavaScript" ></script>
<script>
function rAF() {
return new Promise(resolve => requestAnimationFrame(resolve));
}
async function test()
{
if (window.testRunner)
testRunner.waitUntilDone();
var res = document.getElementById('res');
var ta = document.getElementById('ta');
// Send caret to bottom of textarea
ta.focus();
await rAF();
ta.setSelectionRange(ta.value.length, ta.value.length);
await rAF();
ta.blur();
await rAF();
ta.focus();
await rAF();
ta.setSelectionRange(44, 44);
typeCharacterCommand(' ');
typeCharacterCommand('P');
typeCharacterCommand('a');
typeCharacterCommand('s');
typeCharacterCommand('s');
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body onload="test()">
This tests that typing in a scrolled textarea does not cause unnecessary scrolling.<br>
<textarea id="ta" rows=7>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</textarea>
<br>
<div id="res"></div>
</body>
</html>