зеркало из https://github.com/mozilla/gecko-dev.git
Bug 569360 - browser.js should not assume SVGAElement is always defined. r=gavin
This commit is contained in:
Родитель
d9764a2c38
Коммит
23e9d6ebb7
|
@ -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 &&
|
||||
|
|
Загрузка…
Ссылка в новой задаче