Bug 1403067 - Remove usage of nsIDOMHTMLAnchorElement in SeaMonkey. r=IanN
Port Bug 1389650 [Remove nsIDOMHTMLAnchorElement].
This commit is contained in:
Родитель
32dc8d4a22
Коммит
74215d89cd
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче