other part of fix for #35427 - XUL <iframe>s cannot be specified by name,

so always use frame[0]
r=ben
This commit is contained in:
alecf%netscape.com 2000-07-27 00:52:53 +00:00
Родитель 85b3bec1d9
Коммит 510adc1ac0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -152,7 +152,7 @@ function DEF_onPageLoad( tag )
oParent.SM.SetPageData( tag, true ); // set page data in content frame
// set the focus to the first focusable element
var doc = window.frames[this.content_frame.name].document;
var doc = window.frames[0].document;
var controls = doc.controls;
for (i=0; i< controls.length; i++) {
if (controls[i].focus) {