Searched refs:isImportant (Results 1 - 5 of 5) sorted by relevance

/external/webkit/WebCore/css/
H A DCSSProperty.cpp33 return String(getPropertyName(static_cast<CSSPropertyID>(id()))) + ": " + m_value->cssText() + (isImportant() ? " !important" : "") + "; ";
H A DCSSProperty.h54 bool isImportant() const { return m_important; } function in class:WebCore::CSSProperty
H A DCSSMutableStyleDeclaration.cpp493 return property ? property->isImportant() : false;
601 if (!getPropertyPriority(properties[i]->id()) || properties[i]->isImportant()) {
670 if (positionXProp && positionYProp && positionXProp->isImportant() == positionYProp->isImportant()) {
677 result += "background-position: " + positionValue + (positionXProp->isImportant() ? " !important" : "") + "; ";
686 if (repeatXProp && repeatYProp && repeatXProp->isImportant() == repeatYProp->isImportant()) {
693 result += "background-repeat: " + repeatValue + (repeatXProp->isImportant() ? " !important" : "") + "; ";
795 // Not quite sure if the isImportant test is needed but it matches the existing behavior.
796 if (!property.isImportant()) {
[all...]
H A DCSSStyleSelector.cpp649 CSSParser(m_checker.m_strictParsing).parsePropertyWithResolvedVariables(current.id(), current.isImportant(), newDecl, &resolvedValueList);
2892 void CSSStyleSelector::applyDeclarations(bool applyFirst, bool isImportant, argument
2904 if (isImportant == current.isImportant()) {
H A DCSSParser.cpp5221 void CSSParser::parsePropertyWithResolvedVariables(int propId, bool isImportant, CSSMutableStyleDeclaration* declaration, CSSParserValueList* list) argument
5226 if (parseValue(propId, isImportant))

Completed in 156 milliseconds