OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newInlineStyle
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
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
...]
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
...]
Completed in 42 milliseconds