Bug 1403067 - Remove usage of nsIDOMHTMLAnchorElement in SeaMonkey. r=IanN

Port Bug 1389650 [Remove nsIDOMHTMLAnchorElement].
This commit is contained in:
aceman 2018-02-03 13:19:37 +01:00
Родитель 32dc8d4a22
Коммит 74215d89cd
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3171,8 +3171,8 @@ function FillInHTMLTooltipEditor(tooltip)
if (ChromeUtils.getClassName(node) === "HTMLImageElement" ||
node instanceof Ci.nsIDOMHTMLInputElement)
tooltipText = node.getAttribute("src");
else if (node instanceof Ci.nsIDOMHTMLAnchorElement)
tooltipText = node.getAttribute("href") || node.name;
else if (ChromeUtils.getClassName(node) === "HTMLAnchorElement")
tooltipText = node.getAttribute("href") || node.getAttribute("name");
if (tooltipText) {
tooltip.setAttribute("label", tooltipText);
return true;