1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/events/crashtests/135345-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +<html> 1.5 +<body> 1.6 + <form name="frmlogin"> 1.7 + <input type="text" name="username" 1.8 + onfocus="frmlogin.username.select();" 1.9 + onblur="frmlogin.password.focus();"> 1.10 + <input type="password" name="password" 1.11 + onfocus="frmlogin.password.select();"> 1.12 + </form> 1.13 + <script language="JavaScript"> 1.14 + document.frmlogin.username.focus(); 1.15 + </script> 1.16 +</body> 1.17 +</html>