HomeSort by relevance Sort by last modified time
    Searched refs:newInlineStyle (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp 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)
    [all...]
ReplaceSelectionCommand.cpp 481 RefPtr<EditingStyle> newInlineStyle = EditingStyle::create(inlineStyle);
487 if (newInlineStyle->conflictsWithImplicitStyleOfElement(htmlElement)) {
492 } else if (newInlineStyle->extractConflictingImplicitStyleOfAttributes(htmlElement, EditingStyle::PreserveWritingDirection, 0, attributes,
506 newInlineStyle->removeStyleFromRulesAndContext(element, document()->documentElement());
508 newInlineStyle->removeStyleFromRulesAndContext(element, context);
511 if (!inlineStyle || newInlineStyle->isEmpty()) {
518 } else if (newInlineStyle->style()->propertyCount() != inlineStyle->propertyCount())
519 setNodeAttribute(element, styleAttr, newInlineStyle->style()->asText());
    [all...]
ApplyStyleCommand.cpp     [all...]

Completed in 157 milliseconds