Home | History | Annotate | Download | only in editing

Lines Matching defs:computedStyle

452     if (node && node->computedStyle()) {
453 RenderStyle* renderStyle = node->computedStyle();
481 void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle)
485 m_mutableStyle->setProperty(CSSPropertyFontSize, computedStyle->getFontSizeCSSValuePreferringKeyword()->cssText());
933 // which one of editingStyleAtPosition or computedStyle is called.
1187 RefPtr<EditingStyle> computedStyle = EditingStyle::create(context, EditingPropertiesInEffect);
1188 if (computedStyle->m_mutableStyle) {
1189 if (!computedStyle->m_mutableStyle->getPropertyCSSValue(CSSPropertyBackgroundColor))
1190 computedStyle->m_mutableStyle->setProperty(CSSPropertyBackgroundColor, CSSValueTransparent);
1192 removePropertiesInStyle(computedStyle->m_mutableStyle.get(), styleFromMatchedRules.get());
1193 m_mutableStyle = getPropertiesNotIn(m_mutableStyle.get(), computedStyle->m_mutableStyle->ensureCSSStyleDeclaration());
1381 RefPtr<CSSComputedStyleDeclaration> computedStyle = position.computedStyle();
1383 RefPtr<MutableStylePropertySet> mutableStyle = getPropertiesNotIn(style->style(), computedStyle.get());
1387 extractTextStyles(document, mutableStyle.get(), computedStyle->useFixedFontDefaultSize());