Home | History | Annotate | Download | only in css

Lines Matching refs:propertyID

46 String StylePropertySerializer::getPropertyText(CSSPropertyID propertyID, const String& value, bool isImportant, bool isNotFirstDecl) const
51 result.append(getPropertyName(propertyID));
71 CSSPropertyID propertyID = property.id();
73 ASSERT(RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID) || isInternalProperty(propertyID));
78 switch (propertyID) {
225 propertyID = shorthandPropertyID;
231 if (value == "initial" && !CSSProperty::isInheritedProperty(propertyID))
234 result.append(getPropertyText(propertyID, value, property.isImportant(), numDecls++));
244 String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) const
247 switch (propertyID) {
352 void StylePropertySerializer::appendFontLonghandValueIfExplicit(CSSPropertyID propertyID, StringBuilder& result, String& commonValue) const
354 int foundPropertyIndex = m_propertySet.findPropertyIndex(propertyID);
364 switch (propertyID) {
796 CSSPropertyID propertyID = backgroundPropertyIds[i];
797 RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(propertyID);
800 result.append(getPropertyText(propertyID, value->cssText(), m_propertySet.propertyIsImportant(propertyID), numDecls++));