Lines Matching refs:x

1322             coords.x += elt.offsetLeft + chrome.getMeasurementInPixels(elt, "borderLeft");
1344 var coords = {x: 0, y: 0}; property in getClientOffset.coords
1359 coords.x += elt.offsetLeft - (p ? p.scrollLeft : 0);
1369 coords.x += parseInt(parentStyle.borderLeftWidth);
1374 coords.x += parseInt(parentStyle.paddingLeft);
1380 coords.x += parseInt(style.marginLeft);
1386 coords.x += parseInt(parentStyle.borderLeftWidth);
1393 coords.x -= parent.scrollLeft;
1405 coords.x += parseInt(style.borderLeftWidth);
1409 coords.x -= parseInt(htmlStyle.paddingLeft);
1414 coords.x += elt.scrollLeft;
1425 var coords = {x: 0, y: 0}; property in getViewOffset.coords
1525 this.move = function(element, x, y) argument
1527 element.style.left = x + "px";
1592 var leftSpace = offset.x - scrollBox.scrollLeft;
1594 - (offset.x + element.clientWidth);
1598 var centerX = offset.x - (scrollBox.clientWidth/2);
6052 x: inch.offsetWidth, property in FBL.pixelsPerInch
7274 showInfoTip: function(infoTip, x, y) argument
8262 show: function(x, y) argument
8270 x = x || 0;
8291 x = Math.min(x, size.width - this.element.clientWidth - 10);
8292 x = Math.max(x, 0);
8297 this.elementStyle.left = x + "px";
8908 getElementFromPoint: function(x, y) argument
8913 return this.document.elementFromPoint(x + scroll.left, y + scroll.top);
8916 return this.document.elementFromPoint(x, y);
11560 var x = Math.max(size.width - clientX + 3, 6);
11562 Firebug.context.persistedState.sidePanelWidth = x;
17883 x: target.offsetLeft, property in AnonymousFunction7f0ac55718100.targetOffset
18226 this.box.style.left = (this.targetOffset.x) + "px";
18238 this.box.style.left = this.targetOffset.x + "px";
18243 var maxWidth = (currentPanel.panelNode.scrollWidth - this.targetOffset.x)
23133 this.assert = function(x) argument
23135 if (!x)
25254 showInfoTip: function(infoTip, panel, target, x, y, rangeParent, rangeOffset) argument
25260 var scrollX = x + (scrollParent ? scrollParent.scrollLeft : 0);
25268 if (x+infoTip.offsetWidth+infoTipMargin > panelWidth)
25275 infoTip.style.left = (x+infoTipMargin) + "px";
25295 ", x: " + x + ", panelWidth: " + panelWidth +
25324 var x = event.clientX, y = event.clientY, target = event.target || event.srcElement;
25325 …this.showInfoTip(browser.infoTip, browser.currentPanel, target, x, y, event.rangeParent, event.ran…
27624 showInfoTip: function(infoTip, target, x, y) argument
27630 var offsetX = x-offset.x;