blob: c071c1a31730af2fbc676a3c04dcec4b8efde158 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE HTML>
<html>
<body>
<input id="test-input" type="text" value=""/>
<script type="application/javascript;version=1.7">
let input = document.getElementById('test-input');
input.focus();
</script>
</body>
</html>
|