Home
last modified time | relevance | path

Searched refs:propertyMetadata (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.h60 … CSSPropertyID id() const { return static_cast<CSSPropertyID>(propertyMetadata().m_propertyID); } in id()
61 CSSPropertyID shorthandID() const { return propertyMetadata().shorthandID(); } in shorthandID()
63 bool isImportant() const { return propertyMetadata().m_important; } in isImportant()
64 bool isInherited() const { return propertyMetadata().m_inherited; } in isInherited()
65 bool isImplicit() const { return propertyMetadata().m_implicit; } in isImplicit()
75 …CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(p… in toCSSProperty()
77 const StylePropertyMetadata& propertyMetadata() const;
267 inline const StylePropertyMetadata& StylePropertySet::PropertyReference::propertyMetadata() const in propertyMetadata() function
DStylePropertySet.cpp488 if (id == propertyAt(n).propertyMetadata().m_propertyID) { in findPropertyIndex()