Home | History | Annotate | Download | only in editing

Lines Matching defs:newInlineStyle

308         RefPtrWillBeRawPtr<EditingStyle> newInlineStyle = nullptr;
311 newInlineStyle = m_wrappingStyle->copy();
312 newInlineStyle->removePropertiesInElementDefaultStyle(&element);
313 newInlineStyle->removeStyleConflictingWithStyleOfElement(&element);
315 newInlineStyle = EditingStyle::create();
318 newInlineStyle->overrideWithStyle(element.inlineStyle());
322 newInlineStyle->mergeStyleFromRulesForSerialization(&toHTMLElement(element));
325 newInlineStyle->addAbsolutePositioningFromElement(element);
328 newInlineStyle->forceInline();
332 if (rangeFullySelectsNode == DoesNotFullySelectNode && newInlineStyle->style())
333 newInlineStyle->style()->removeProperty(CSSPropertyFloat);
336 if (!newInlineStyle->isEmpty()) {
338 appendAttributeValue(out, newInlineStyle->style()->asText(), documentIsHTML);