Fix html tooltips. I have been whipped. Ouch. bug=62050, r=blake, a=ben

git-svn-id: svn://10.0.0.236/trunk@83357 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
disttsc%bart.nl 2000-12-07 04:01:06 +00:00
parent e84d64803e
commit 9c0b202276

View File

@ -1497,7 +1497,7 @@ function FillInHTMLTooltip(tipElement)
const HTMLNS = "http://www.w3.org/1999/xhtml";
const XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
const XLinkNS = "http://www.w3.org/1999/xlink";
const Node = Components.interfaces.Node;
const Node = { ELEMENT_NODE : 1 }; // XXX Components.interfaces.Node;
var retVal = false;
var tipNode = document.getElementById("HTML_TOOLTIP_tooltipBox");
@ -1529,6 +1529,7 @@ function FillInHTMLTooltip(tipElement)
}
}
} catch (e) {
debug(e);
}
return retVal;