Bug 1287438 - html-tooltip: use level=top for xul panel wrapper;r=bgrins

Using level=float seems buggy when the window to which the XUL panel is attached
changes.

MozReview-Commit-ID: HuOnMDGo38l

--HG--
extra : rebase_source : 1445dc225e2ed5b29b187aa918980f7ffeb227b4
This commit is contained in:
Julian Descottes 2016-07-18 17:19:24 +02:00
parent 5061c60993
commit 0858404198

View File

@ -570,7 +570,7 @@ HTMLTooltip.prototype = {
// Use type="arrow" to prevent side effects (see Bug 1285206)
panel.setAttribute("type", "arrow");
panel.setAttribute("level", "float");
panel.setAttribute("level", "top");
panel.setAttribute("class", "tooltip-xul-wrapper");
return panel;