Bug 187500: selectedIndex broken for <tabs> element. patch by rginda, r=blake, sr=jag

This commit is contained in:
jaggernaut%netscape.com 2003-01-11 00:21:42 +00:00
Родитель 4d0db6481a
Коммит f26e0e11cc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -215,7 +215,7 @@
<![CDATA[
const tabs = this.childNodes;
for (var i = 0; i < tabs.length; i++) {
if (tabs.selected)
if (tabs[i].selected)
return i;
}
// throw an exception when no tab is selected (we shouldn't get here)