tenfourfox/dom/events/crashtests/116206-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
522 B
HTML

<html>
<head>
<script language="JavaScript">
function InitialFocus(){
document.frmSelectUser.radResidence[0].focus();
}
</script>
</head>
<body onfocus="InitialFocus();" >
<form name="frmSelectUser">
<table>
<tbody>
<tr>
<td><input name="radResidence" type="radio" value="KOR"></td>
</tr>
<tr>
<td><input name="radResidence" type="radio" value="JPN"></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>