Home | History | Annotate | Download | only in editing

Lines Matching refs:newInlineStyle

293         RefPtr<EditingStyle> newInlineStyle;
296 newInlineStyle = m_wrappingStyle->copy();
297 newInlineStyle->removePropertiesInElementDefaultStyle(element);
298 newInlineStyle->removeStyleConflictingWithStyleOfNode(element);
300 newInlineStyle = EditingStyle::create();
303 newInlineStyle->overrideWithStyle(element->inlineStyle());
307 newInlineStyle->mergeStyleFromRulesForSerialization(toHTMLElement(element));
310 newInlineStyle->forceInline();
314 if (rangeFullySelectsNode == DoesNotFullySelectNode && newInlineStyle->style())
315 newInlineStyle->style()->removeProperty(CSSPropertyFloat);
318 if (!newInlineStyle->isEmpty()) {
320 appendAttributeValue(out, newInlineStyle->style()->asText(), documentIsHTML);