HomeSort by relevance Sort by last modified time
    Searched defs:CSSProperty (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/css/
CSSProperty.h 32 class CSSProperty {
35 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false)
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/
CSSStyleModel.js 228 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.prototype =
    [all...]

Completed in 177 milliseconds