Home | History | Annotate | Download | only in editing

Lines Matching refs:inlineStyle

725     const StylePropertySet* inlineStyle = element->inlineStyle();
726 if (!m_mutableStyle || !inlineStyle)
737 if (propertyID == CSSPropertyWebkitTextDecorationsInEffect && inlineStyle->getPropertyCSSValue(CSSPropertyTextDecoration)) {
742 extractedStyle->setProperty(CSSPropertyTextDecoration, inlineStyle->getPropertyValue(CSSPropertyTextDecoration), inlineStyle->propertyIsImportant(CSSPropertyTextDecoration));
746 if (!inlineStyle->getPropertyCSSValue(propertyID))
749 if (propertyID == CSSPropertyUnicodeBidi && inlineStyle->getPropertyCSSValue(CSSPropertyDirection)) {
754 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID));
763 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->propertyIsImportant(propertyID));
911 if (const StylePropertySet* style = element->inlineStyle()) {
977 if (!element->inlineStyle())
982 mergeStyle(element->inlineStyle(), mode);
985 mergeStyle(copyEditingProperties(element->inlineStyle(), OnlyInheritableEditingProperties).get(), mode);
988 mergeStyle(copyEditingProperties(element->inlineStyle(), AllEditingProperties).get(), mode);
996 return equivalent->matches(element) && (!element->inlineStyle() || !equivalent->propertyExistsInStyle(element->inlineStyle()))