Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySerializer.cpp718 …const CSSPrimitiveValue& repeatY = repeatYCSSValue.isInitialValue() ? *initialRepeatValue : toCSSP… in appendBackgroundRepeatValue() local
720 CSSValueID repeatYValueId = repeatY.getValueID(); in appendBackgroundRepeatValue()
730 builder.append(repeatY.cssText()); in appendBackgroundRepeatValue()
737 …RefPtrWillBeRawPtr<CSSValue> repeatY = m_propertySet.getPropertyCSSValue(CSSPropertyBackgroundRepe… in backgroundRepeatPropertyValue() local
738 if (!repeatX || !repeatY) in backgroundRepeatPropertyValue()
742 if (repeatX->cssValueType() == repeatY->cssValueType() in backgroundRepeatPropertyValue()
758 if (repeatY->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) { in backgroundRepeatPropertyValue()
760 repeatYList->append(repeatY); in backgroundRepeatPropertyValue()
761 } else if (repeatY->cssValueType() == CSSValue::CSS_VALUE_LIST) { in backgroundRepeatPropertyValue()
762 repeatYList = toCSSValueList(repeatY.get()); in backgroundRepeatPropertyValue()
DCSSComputedStyleDeclaration.cpp1637 list->append(valueForFillRepeat(currLayer->repeatX(), currLayer->repeatY())); in getPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DFillLayer.h77 EFillRepeat repeatY() const { return static_cast<EFillRepeat>(m_repeatY); } in repeatY() function
DRenderStyle.h644 …ackgroundRepeatY() const { return static_cast<EFillRepeat>(m_background->background().repeatY()); } in backgroundRepeatY()
658 …at maskRepeatY() const { return static_cast<EFillRepeat>(rareNonInheritedData->m_mask.repeatY()); } in maskRepeatY()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp917 if (layer.repeatY() != RepeatFill && layer.repeatY() != NoRepeatFill) in mustInvalidateFillLayersPaintOnHeightChange()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DBoxPainter.cpp696 EFillRepeat backgroundRepeatY = fillLayer.repeatY(); in calculateBackgroundImageGeometry()