Home | History | Annotate | Download | only in css

Lines Matching full:propertyid

103 String CSSMutableStyleDeclaration::getPropertyValue(int propertyID) const
105 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
110 switch (propertyID) {
423 PassRefPtr<CSSValue> CSSMutableStyleDeclaration::getPropertyCSSValue(int propertyID) const
425 const CSSProperty* property = findPropertyWithId(propertyID);
429 bool CSSMutableStyleDeclaration::removeShorthandProperty(int propertyID, bool notifyChanged)
431 CSSPropertyLonghand longhand = longhandForProperty(propertyID);
439 String CSSMutableStyleDeclaration::removeProperty(int propertyID, bool notifyChanged, bool returnText)
443 if (removeShorthandProperty(propertyID, notifyChanged)) {
448 CSSProperty* foundProperty = findPropertyWithId(propertyID);
490 bool CSSMutableStyleDeclaration::getPropertyPriority(int propertyID) const
492 const CSSProperty* property = findPropertyWithId(propertyID);
496 int CSSMutableStyleDeclaration::getPropertyShorthand(int propertyID) const
498 const CSSProperty* property = findPropertyWithId(propertyID);
502 bool CSSMutableStyleDeclaration::isPropertyImplicit(int propertyID) const
504 const CSSProperty* property = findPropertyWithId(propertyID);
508 void CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, ExceptionCode& ec)
511 setProperty(propertyID, value, important, true);
514 String CSSMutableStyleDeclaration::removeProperty(int propertyID, ExceptionCode& ec)
517 return removeProperty(propertyID, true, true);
520 bool CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, bool notifyChanged)
527 removeProperty(propertyID, notifyChanged, false);
534 bool success = parser.parseValue(this, propertyID, value, important);
558 bool CSSMutableStyleDeclaration::setProperty(int propertyID, int value, bool important, bool notifyChanged)
560 CSSProperty property(propertyID, CSSPrimitiveValue::createIdentifier(value), important);
567 void CSSMutableStyleDeclaration::setStringProperty(int propertyId, const String &value, CSSPrimitiveValue::UnitTypes type, bool important)
571 setPropertyInternal(CSSProperty(propertyId, CSSPrimitiveValue::create(value, type), important));
575 void CSSMutableStyleDeclaration::setImageProperty(int propertyId, const String& url, bool important)
579 setPropertyInternal(CSSProperty(propertyId, CSSImageValue::create(url), important));
620 void CSSMutableStyleDeclaration::setLengthProperty(int propertyId, const String& value, bool important, bool /*multiLength*/)
626 setProperty(propertyId, value, important);
820 const CSSProperty* CSSMutableStyleDeclaration::findPropertyWithId(int propertyID) const
823 if (propertyID == m_properties[n].m_id)
829 CSSProperty* CSSMutableStyleDeclaration::findPropertyWithId(int propertyID)
832 if (propertyID