Fix for smoketest blocker bug 253180 enabled xul control elements aren't necessarily focusable patch in bug 250006 r=aaronlev sr=jst

This commit is contained in:
neil%parkwaycc.co.uk 2004-07-27 08:10:52 +00:00
parent ace5e9f22b
commit a02e9bf620

View File

@ -1448,7 +1448,7 @@ nsXULElement::IsFocusable(PRInt32 *aTabIndex)
*aTabIndex = tabIndex;
}
return !disabled;
return tabIndex >= 0;
}