Lines Matching refs:infoTip

7274     showInfoTip: function(infoTip, x, y)  argument
25232 return browser.infoTip = this.tags.infoTipTag.append({}, getBody(doc));
25237 if (browser.infoTip)
25248 browser.infoTip.parentNode.removeChild(browser.infoTip);
25249 delete browser.infoTip;
25254 showInfoTip: function(infoTip, panel, target, x, y, rangeParent, rangeOffset) argument
25262 if (panel.showInfoTip(infoTip, target, scrollX, y, rangeParent, rangeOffset))
25264 var htmlElt = infoTip.ownerDocument.documentElement;
25268 if (x+infoTip.offsetWidth+infoTipMargin > panelWidth)
25270infoTip.style.left = Math.max(0, panelWidth-(infoTip.offsetWidth+infoTipMargin)) + "px";
25271 infoTip.style.right = "auto";
25275 infoTip.style.left = (x+infoTipMargin) + "px";
25276 infoTip.style.right = "auto";
25279 if (y+infoTip.offsetHeight+infoTipMargin > panelHeight)
25281infoTip.style.top = Math.max(0, panelHeight-(infoTip.offsetHeight+infoTipMargin)) + "px";
25282 infoTip.style.bottom = "auto";
25286 infoTip.style.top = (y+infoTipMargin) + "px";
25287 infoTip.style.bottom = "auto";
25291 FBTrace.sysout("infotip.showInfoTip; top: " + infoTip.style.top +
25292 ", left: " + infoTip.style.left + ", bottom: " + infoTip.style.bottom +
25293 ", right:" + infoTip.style.right + ", offsetHeight: " + infoTip.offsetHeight +
25294 ", offsetWidth: " + infoTip.offsetWidth +
25298 infoTip.setAttribute("active", "true");
25301 this.hideInfoTip(infoTip);
25304 hideInfoTip: function(infoTip) argument
25306 if (infoTip)
25307 infoTip.removeAttribute("active");
25313 this.hideInfoTip(browser.infoTip);
25325 …this.showInfoTip(browser.infoTip, browser.currentPanel, target, x, y, event.rangeParent, event.ran…
25328 this.hideInfoTip(browser.infoTip);
25333 populateColorInfoTip: function(infoTip, color) argument
25335 this.tags.colorTag.replace({rgbValue: color}, infoTip);
25339 populateImageInfoTip: function(infoTip, url, repeat) argument
25344 this.tags.imgTag.replace({urlValue: url, repeat: repeat}, infoTip);
25361 var infoTip = panel.panelBrowser.infoTip;
25362 if (!infoTip)
25363 infoTip = this.initializeBrowser(panel.panelBrowser);
25364 this.hideInfoTip(infoTip);
27624 showInfoTip: function(infoTip, target, x, y) argument
27649 return Firebug.InfoTip.populateColorInfoTip(infoTip, cssValue.value);
27666 return Firebug.InfoTip.populateImageInfoTip(infoTip, absURL, repeat);