flutter_flutter/engine/web/tests/data/autofocus_input_field_iframe.html
2014-10-23 11:17:19 -07:00

13 lines
289 B
HTML

<html>
<script type="text/javascript">
function autofocus() {
document.getElementById('inputfield').focus();
}
window.onload = autofocus;
</script>
<body>
<p>This page has a auto focused input field.</p>
<input type="text" id="inputfield" />
</body>
</html>