Home | History | Annotate | Download | only in css

Lines Matching defs:propertyValue

1090     RefPtr<CSSValue> propertyValue;
1092 propertyValue = cssValuePool().createIdentifierValue(CSSValueNone);
1094 propertyValue = cssValuePool().createIdentifierValue(CSSValueAll);
1096 propertyValue = cssValuePool().createValue(getPropertyNameString(animation->property()), CSSPrimitiveValue::CSS_STRING);
1097 return propertyValue.release();
2870 bool CSSComputedStyleDeclaration::cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const
2872 if (propertyID == CSSPropertyFontSize && propertyValue->isPrimitiveValue() && m_node) {
2877 const CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(propertyValue);
2883 return value && propertyValue && value->equals(*propertyValue);