Bug 250858. Focus outline appearing on image when image map area clicked. r=bryner, sr=jst

This commit is contained in:
aaronleventhal%moonset.net 2004-07-30 13:02:31 +00:00
Родитель bf49c01782
Коммит a4d54522ee
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -546,7 +546,9 @@ nsHTMLImageElement::IsFocusable(PRInt32 *aTabIndex)
// Use tab index on individual map areas
*aTabIndex = (sTabFocusModel & eTabFocus_linksMask)? 0 : -1;
}
return PR_TRUE;
// Image map is not focusable itself, but flag as tabbable
// so that image map areas get walked into.
return PR_FALSE;
}
}