blob: 3f52a2d2506849df6f4c38c7d9f04be8e5522afd [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function runTest() {
if (!window.testRunner)
return;
var input = document.getElementById('test');
input.focus();
textInputController.setComposition('Hello, world!');
input.selectionStart = 0;
input.selectionEnd = 13;
}
</script>
</head>
<body onload="runTest()">
<input id="test" />
</body>