Home | History | Annotate | Download | only in editing

Lines Matching defs:propertyID

96     static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName)
98 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
173 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
175 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
177 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
179 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
293 EditingStyle::EditingStyle(int propertyID, const String& value)
298 setProperty(propertyID, value);
338 void EditingStyle::setProperty(int propertyID, const String& value, bool important)
344 m_mutableStyle->setProperty(propertyID, value, important, ec);
559 CSSPropertyID propertyID = static_cast<CSSPropertyID>(it->id());
562 if (propertyID == CSSPropertyWhiteSpace && isTabSpanNode(element))
565 if (inlineStyle->getPropertyCSSValue(propertyID))
574 CSSPropertyID propertyID = static_cast<CSSPropertyID>(it->id());
575 if ((propertyID == CSSPropertyWhiteSpace && isTabSpanNode(element)) || !inlineStyle->getPropertyCSSValue(propertyID))
578 if (propertyID == CSSPropertyUnicodeBidi && inlineStyle->getPropertyCSSValue(CSSPropertyDirection)) {
580 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->getPropertyPriority(propertyID));
584 conflictingProperties->append(propertyID);
586 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->getPropertyPriority(propertyID));
829 static void setTextDecorationProperty(CSSMutableStyleDeclaration* style, const CSSValueList* newTextDecoration, int propertyID)
832 style->setProperty(propertyID, newTextDecoration->cssText(), style->getPropertyPriority(propertyID));
835 ASSERT(!style->getPropertyPriority(propertyID));
836 style->removeProperty(propertyID);
1010 int getIdentifierValue(CSSStyleDeclaration* style, int propertyID)
1015 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);