Home
last modified time | relevance | path

Searched refs:repeatX (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySerializer.cpp717 …const CSSPrimitiveValue& repeatX = repeatXCSSValue.isInitialValue() ? *initialRepeatValue : toCSSP… in appendBackgroundRepeatValue() local
719 CSSValueID repeatXValueId = repeatX.getValueID(); in appendBackgroundRepeatValue()
722 builder.append(repeatX.cssText()); in appendBackgroundRepeatValue()
728 builder.append(repeatX.cssText()); in appendBackgroundRepeatValue()
736 …RefPtrWillBeRawPtr<CSSValue> repeatX = m_propertySet.getPropertyCSSValue(CSSPropertyBackgroundRepe… in backgroundRepeatPropertyValue() local
738 if (!repeatX || !repeatY) in backgroundRepeatPropertyValue()
742 if (repeatX->cssValueType() == repeatY->cssValueType() in backgroundRepeatPropertyValue()
743 …&& (repeatX->cssValueType() == CSSValue::CSS_INITIAL || repeatX->cssValueType() == CSSValue::CSS_I… in backgroundRepeatPropertyValue()
744 return repeatX->cssText(); in backgroundRepeatPropertyValue()
748 if (repeatX->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) { in backgroundRepeatPropertyValue()
[all …]
DCSSComputedStyleDeclaration.cpp1637 list->append(valueForFillRepeat(currLayer->repeatX(), currLayer->repeatY())); in getPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DFillLayer.h76 EFillRepeat repeatX() const { return static_cast<EFillRepeat>(m_repeatX); } in repeatX() function
DRenderStyle.h643 …ackgroundRepeatX() const { return static_cast<EFillRepeat>(m_background->background().repeatX()); } in backgroundRepeatX()
657 …at maskRepeatX() const { return static_cast<EFillRepeat>(rareNonInheritedData->m_mask.repeatX()); } in maskRepeatX()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp880 if (layer.repeatX() != RepeatFill && layer.repeatX() != NoRepeatFill) in mustInvalidateFillLayersPaintOnWidthChange()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DBoxPainter.cpp695 EFillRepeat backgroundRepeatX = fillLayer.repeatX(); in calculateBackgroundImageGeometry()