Home | History | Annotate | Download | only in front-end

Lines Matching defs:computedStyle

69     _getBox: function(computedStyle, componentName)
72 var left = this._getPropertyValueAsPx(computedStyle, componentName + "-left" + suffix);
73 var top = this._getPropertyValueAsPx(computedStyle, componentName + "-top" + suffix);
74 var right = this._getPropertyValueAsPx(computedStyle, componentName + "-right" + suffix);
75 var bottom = this._getPropertyValueAsPx(computedStyle, componentName + "-bottom" + suffix);
211 startEditing: function(targetElement, box, styleProperty, computedStyle)
216 var context = { box: box, styleProperty: styleProperty, computedStyle: computedStyle };
251 var computedStyle = context.computedStyle;
253 if (computedStyle.getPropertyValue("box-sizing") === "border-box" && (styleProperty === "width" || styleProperty === "height")) {
260 var borderBox = this._getBox(computedStyle, "border");
261 var paddingBox = this._getBox(computedStyle, "padding");