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 294 RefPtr<EditingStyle> newInlineStyle;
297 newInlineStyle = m_wrappingStyle->copy();
298 newInlineStyle->removePropertiesInElementDefaultStyle(element);
299 newInlineStyle->removeStyleConflictingWithStyleOfNode(element);
301 newInlineStyle = EditingStyle::create();
304 newInlineStyle->overrideWithStyle(element->inlineStyle());
308 newInlineStyle->mergeStyleFromRulesForSerialization(toHTMLElement(element));
311 newInlineStyle->forceInline();
315 if (rangeFullySelectsNode == DoesNotFullySelectNode && newInlineStyle->style())
316 newInlineStyle->style()->removeProperty(CSSPropertyFloat)
    [all...]
ReplaceSelectionCommand.cpp 478 RefPtr<EditingStyle> newInlineStyle = EditingStyle::create(inlineStyle);
485 if (newInlineStyle->conflictsWithImplicitStyleOfElement(htmlElement)) {
490 } else if (newInlineStyle->extractConflictingImplicitStyleOfAttributes(htmlElement, EditingStyle::PreserveWritingDirection, 0, attributes,
504 newInlineStyle->removeStyleFromRulesAndContext(element, document().documentElement());
506 newInlineStyle->removeStyleFromRulesAndContext(element, context);
509 if (!inlineStyle || newInlineStyle->isEmpty()) {
516 } else if (newInlineStyle->style()->propertyCount() != inlineStyle->propertyCount()) {
517 setNodeAttribute(element, styleAttr, AtomicString(newInlineStyle->style()->asText()));
    [all...]
ApplyStyleCommand.cpp     [all...]

Completed in 401 milliseconds