gecko-dev/dom/events/crashtests/116206-1.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 строки
522 B
HTML
Исходник Обычный вид История

2009-02-11 03:36:04 +03: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>