I’m developing an extension for FireFox. I use a XUL deck element that contains a XUL browser element. Unfortunately, whenever the page displayed in the browser has an HTML title attribute, the value of this title attribute will not show up as a tooltip.
How can I get tooltips to display correctly?
I found the solution for those who are interested, it’s by adding a tooltip property to the XUL browser element with the following value:
tooltip="aHTMLTooltip"Or adding it programmatically using javascript like this:
browser.setAttribute('tooltip','aHTMLTooltip');for more details check: https://bugzilla.mozilla.org/show_bug.cgi?id=451792#c1