Home | History | Annotate | Download | only in sdk

Lines Matching defs:CSSProperty

758     this._livePropertyMap = {}; // LIVE properties (source-based or style-based) : { name -> CSSProperty }
759 this._allProperties = []; // ALL properties: [ CSSProperty ]
760 this.__disabledProperties = {}; // DISABLED properties: { index -> CSSProperty }
765 var property = WebInspector.CSSProperty.parsePayload(this, i, payload.cssProperties[i]);
819 newPayload.cssProperties = /** @type {!Array.<!CSSAgent.CSSProperty>} */ (payload);
868 * @return {?WebInspector.CSSProperty}
897 * @return {!Array.<!WebInspector.CSSProperty>}
922 * @return {?WebInspector.CSSProperty}
953 * @return {!WebInspector.CSSProperty}
958 var property = new WebInspector.CSSProperty(this, index, "", "", false, false, true, false, "", this._insertionRange(index));
1163 WebInspector.CSSProperty = function(ownerStyle, index, name, value, important, disabled, parsedOk, implicit, text, range)
1180 * @param {!CSSAgent.CSSProperty} payload
1181 * @return {!WebInspector.CSSProperty}
1183 WebInspector.CSSProperty.parsePayload = function(ownerStyle, index, payload)
1190 var result = new WebInspector.CSSProperty(
1195 WebInspector.CSSProperty.prototype = {
1267 * @this {WebInspector.CSSProperty}