Home
last modified time | relevance | path

Searched refs:propertyIsImportant (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DRemoveCSSPropertyCommand.cpp54 m_important = style->propertyIsImportant(m_property); in doApply()
DEditingStyle.cpp612 …setProperty(CSSPropertyUnicodeBidi, CSSValueEmbed, m_mutableStyle->propertyIsImportant(CSSProperty… in extractAndRemoveTextDirection()
614 m_mutableStyle->propertyIsImportant(CSSPropertyDirection)); in extractAndRemoveTextDirection()
664 …yForEditing(), textDecorationsInEffect->cssText(), m_mutableStyle->propertyIsImportant(textDecorat… in collapseTextDecorationProperties()
761 …getPropertyValue(textDecorationPropertyForEditing()), inlineStyle->propertyIsImportant(textDecorat… in conflictsWithInlineStyleOfElement()
773 …ropertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID)… in conflictsWithInlineStyleOfElement()
782 …ropertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID)… in conflictsWithInlineStyleOfElement()
1236 const bool propertyIsImportant = true; in forceInline() local
1237 m_mutableStyle->setProperty(CSSPropertyDisplay, CSSValueInline, propertyIsImportant); in forceInline()
1422 …style->setProperty(propertyID, newTextDecoration->cssText(), style->propertyIsImportant(propertyID… in setTextDecorationProperty()
1425 ASSERT(!style->propertyIsImportant(propertyID)); in setTextDecorationProperty()
/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.cpp198 bool StylePropertySet::propertyIsImportant(CSSPropertyID propertyID) const in propertyIsImportant() function in WebCore::StylePropertySet
209 if (!propertyIsImportant(shorthand.properties()[i])) in propertyIsImportant()
358 if (!propertyIsImportant(property.id()) || property.isImportant()) in addParsedProperty()
DStylePropertySet.h97 bool propertyIsImportant(CSSPropertyID) const;
DPropertySetCSSStyleDeclaration.cpp189 return m_propertySet->propertyIsImportant(propertyID) ? "important" : ""; in getPropertyPriority()
DStylePropertySerializer.cpp731 … bool currentPropertyIsImportant = m_propertySet.propertyIsImportant(shorthand.properties()[i]); in getCommonValue()