Check for the ignorekeys attribute on the parent of the popup menu and not its grand parent. R=saari

This commit is contained in:
ducarroz%netscape.com 2000-05-04 22:33:08 +00:00
Родитель 7237e38781
Коммит 3693b6bbe3
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -556,8 +556,9 @@ nsPopupSetFrame::OpenPopup(PRBool aActivateFlag)
// popupsetframe::mElementFrame
nsCOMPtr<nsIContent> content;
mElementFrame->GetContent(getter_AddRefs(content));
GetContent(getter_AddRefs(content));
nsAutoString property;
content->GetAttribute(kNameSpaceID_None, nsXULAtoms::ignorekeys, property);
if ( !property.EqualsWithConversion("true") && childPopup )
childPopup->InstallKeyboardNavigator();