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

24 lines
522 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>