112789, disabled radio elements should not get focus, r=hewitt,sr=jag

This commit is contained in:
shliang%netscape.com 2003-01-17 04:17:06 +00:00
Родитель 2d693a4c7c
Коммит 5059f667b4
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -104,7 +104,8 @@
</getter>
<setter>
<![CDATA[
if (val) val.setAttribute("focused", "true");
if (val && val.getAttribute("disabled") != "true")
val.setAttribute("focused", "true");
// unfocus all other group nodes
var children = this._getRadioChildren();