Home | History | Annotate | Download | only in editing

Lines Matching defs:inlineStyle

741     const StylePropertySet* inlineStyle = element->inlineStyle();
742 if (!m_mutableStyle || !inlineStyle)
753 if (propertyID == CSSPropertyWebkitTextDecorationsInEffect && inlineStyle->getPropertyCSSValue(textDecorationPropertyForEditing())) {
762 extractedStyle->setProperty(textDecorationPropertyForEditing(), inlineStyle->getPropertyValue(textDecorationPropertyForEditing()), inlineStyle->propertyIsImportant(textDecorationPropertyForEditing()));
766 if (!inlineStyle->getPropertyCSSValue(propertyID))
769 if (propertyID == CSSPropertyUnicodeBidi && inlineStyle->getPropertyCSSValue(CSSPropertyDirection)) {
774 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID));
783 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID));
931 if (const StylePropertySet* style = element->inlineStyle()) {
997 if (!element->inlineStyle())
1002 mergeStyle(element->inlineStyle(), mode);
1005 mergeStyle(copyEditingProperties(element->inlineStyle(), OnlyInheritableEditingProperties).get(), mode);
1008 mergeStyle(copyEditingProperties(element->inlineStyle(), AllEditingProperties).get(), mode);
1016 return equivalent->matches(element) && (!element->inlineStyle() || !equivalent->propertyExistsInStyle(element->inlineStyle()))
1042 if (element->inlineStyle())
1043 styleFromRules->m_mutableStyle->mergeAndOverrideOnConflict(element->inlineStyle());