tenfourfox/dom/events/crashtests/135345-1.html

15 lines
382 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<html>
<body>
<form name="frmlogin">
<input type="text" name="username"
onfocus="frmlogin.username.select();"
onblur="frmlogin.password.focus();">
<input type="password" name="password"
onfocus="frmlogin.password.select();">
</form>
<script language="JavaScript">
document.frmlogin.username.focus();
</script>
</body>
</html>