Home | History | Annotate | Download | only in editing

Lines Matching defs:inlineStyle

87         || !element->inlineStyle() || element->inlineStyle()->isEmpty()))
410 RefPtrWillBeRawPtr<MutableStylePropertySet> inlineStyle = copyStyleOrCreateEmpty(element->inlineStyle());
413 RefPtrWillBeRawPtr<CSSValue> value = inlineStyle->getPropertyCSSValue(CSSPropertyFontSize);
419 inlineStyle->setProperty(CSSPropertyFontSize, cssValuePool().createValue(desiredFontSize, CSSPrimitiveValue::CSS_PX), false);
420 setNodeAttribute(element.get(), styleAttr, AtomicString(inlineStyle->asText()));
422 if (inlineStyle->isEmpty()) {
534 RefPtrWillBeRawPtr<MutableStylePropertySet> inlineStyle = copyStyleOrCreateEmpty(element->inlineStyle());
535 inlineStyle->setProperty(CSSPropertyUnicodeBidi, CSSValueNormal);
536 inlineStyle->removeProperty(CSSPropertyDirection);
537 setNodeAttribute(element, styleAttr, AtomicString(inlineStyle->asText()));
799 RefPtrWillBeRawPtr<MutableStylePropertySet> inlineStyle = copyStyleOrCreateEmpty(element->inlineStyle());
800 inlineStyle->mergeAndOverrideOnConflict(style->style());
801 setNodeAttribute(element, styleAttr, AtomicString(inlineStyle->asText()));
1029 if (node->isHTMLElement() && toHTMLElement(node)->inlineStyle()) {
1398 if (const StylePropertySet* decl = block->inlineStyle()) {
1481 if (const StylePropertySet* existingStyle = styleContainer->inlineStyle()) {