Bug 569360 - browser.js should not assume SVGAElement is always defined. r=gavin

This commit is contained in:
Mounir Lamouri 2010-06-17 12:53:03 +02:00
Родитель d9764a2c38
Коммит 23e9d6ebb7
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -2679,8 +2679,11 @@ function FillInHTMLTooltip(tipElement)
titleText = tipElement.getAttribute("title");
if ((tipElement instanceof HTMLAnchorElement && tipElement.href) ||
(tipElement instanceof HTMLAreaElement && tipElement.href) ||
(tipElement instanceof HTMLLinkElement && tipElement.href) ||
(tipElement instanceof SVGAElement && tipElement.hasAttributeNS(XLinkNS, "href"))) {
(tipElement instanceof HTMLLinkElement && tipElement.href)
#ifdef MOZ_SVG
|| (tipElement instanceof SVGAElement && tipElement.hasAttributeNS(XLinkNS, "href"))
#endif // MOZ_SVG
) {
XLinkTitleText = tipElement.getAttributeNS(XLinkNS, "title");
}
if (lookingForSVGTitle &&