Searched defs:CSSProperty (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSProperty.h32 class CSSProperty { class in namespace:WebCore
35 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false) function in class:WebCore::CSSProperty
44 CSSProperty& operator=(const CSSProperty& other)
66 friend bool operator==(const CSSProperty&, const CSSProperty&);
81 template<> struct VectorTraits<WebCore::CSSProperty> : SimpleClassVectorTraits { };
/external/webkit/Source/WebCore/inspector/front-end/
H A DCSSStyleModel.js228 this._livePropertyMap = {}; // LIVE properties (source-based or style-based) : { name -> CSSProperty }
229 this._allProperties = []; // ALL properties: [ CSSProperty ]
230 this._longhandProperties = {}; // shorthandName -> [ CSSProperty ]
231 this.__disabledProperties = {}; // DISABLED properties: { index -> CSSProperty }
236 var property = new WebInspector.CSSProperty.parsePayload(this, i, payload.cssProperties[i]);
379 return new WebInspector.CSSProperty(this, this.pastLastSourcePropertyIndex(), "", "", "", "active", true, false, false, "");
446 WebInspector.CSSProperty = function(ownerStyle, index, name, value, priority, status, parsedOk, implicit, shorthand, text)
460 WebInspector.CSSProperty.parsePayload = function(ownerStyle, index, payload)
468 var result = new WebInspector.CSSProperty(
473 WebInspector.CSSProperty
[all...]

Completed in 85 milliseconds