Bug 494074 - Don't consider the documentElement when looking for items to get tooltip text from (fixed fallout from bug 118704).

ChatZilla only.
r=gijs


git-svn-id: svn://10.0.0.236/trunk@258199 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
silver%warwickcompsoc.co.uk
2009-08-22 16:25:30 +00:00
parent d4d776c770
commit a62fff53ef

View File

@@ -310,7 +310,7 @@ function onTooltip(event)
var XLinkTitleText = null;
var element = document.tooltipNode;
while (element)
while (element && (element != document.documentElement))
{
if (element.nodeType == Node.ELEMENT_NODE)
{