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

  /external/webkit/WebCore/page/
Frame.cpp 924 RefPtr<CSSMutableStyleDeclaration> mutableStyle = style->makeMutable();
926 typingStyle()->merge(mutableStyle.get());
927 mutableStyle = typingStyle();
933 unicodeBidi = mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
934 direction = mutableStyle->getPropertyCSSValue(CSSPropertyDirection);
938 computedStyle(node)->diff(mutableStyle.get());
942 mutableStyle->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent());
945 mutableStyle->setProperty(CSSPropertyDirection, static_cast<CSSPrimitiveValue*>(direction.get())->getIdent());
950 RefPtr<CSSMutableStyleDeclaration> blockStyle = mutableStyle->copyBlockProperties();
951 blockStyle->diff(mutableStyle.get())
    [all...]
  /external/webkit/WebCore/editing/
ApplyStyleCommand.cpp 109 RefPtr<CSSMutableStyleDeclaration> mutableStyle = getPropertiesNotInComputedStyle(style.get(), computedStyle.get());
111 reconcileTextDecorationProperties(mutableStyle.get());
113 extractTextStyles(mutableStyle.get());
117 mutableStyle->removeProperty(CSSPropertyWhiteSpace);
119 // If unicode-bidi is present in mutableStyle and direction is not, then add direction to mutableStyle.
121 if (mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi) && !style->getPropertyCSSValue(CSSPropertyDirection))
122 mutableStyle->setProperty(CSSPropertyDirection, style->getPropertyValue(CSSPropertyDirection));
125 m_cssStyle = mutableStyle->cssText().stripWhiteSpace();
    [all...]

Completed in 28 milliseconds