Home | History | Annotate | Download | only in editing

Lines Matching defs:propertyID

145 static int getIdentifierValue(CSSMutableStyleDeclaration* style, int propertyID)
150 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
157 static void setTextDecorationProperty(CSSMutableStyleDeclaration* style, const CSSValueList* newTextDecoration, int propertyID)
160 style->setProperty(propertyID, newTextDecoration->cssText(), style->getPropertyPriority(propertyID));
163 ASSERT(!style->getPropertyPriority(propertyID));
164 style->removeProperty(propertyID);
1252 CSSPropertyID propertyID = static_cast<CSSPropertyID>((*it).id());
1253 RefPtr<CSSValue> value = decl->getPropertyCSSValue(propertyID);
1254 if (value && (propertyID != CSSPropertyWhiteSpace || !isTabSpanNode(elem))) {
1255 removeCSSProperty(decl, propertyID);
1256 if (propertyID == CSSPropertyUnicodeBidi && !decl->getPropertyValue(CSSPropertyDirection).isEmpty())