Searched refs:boxShadow (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.cpp3541 if (const ShadowData* boxShadow = renderer()->style()->boxShadow()) {
3544 if (boxShadow->style() == Normal) {
3546 shadowRect.move(boxShadow->x(), boxShadow->y());
3547 shadowRect.inflate(boxShadow->blur() + boxShadow->spread());
3551 boxShadow = boxShadow->next();
3552 } while (boxShadow);
[all...]
H A DRenderBoxModelObject.cpp373 setHasBoxDecorations(hasBackground() || style()->hasBorder() || style()->hasAppearance() || style()->boxShadow());
2067 if (context->paintingDisabled() || !s->boxShadow())
2078 for (const ShadowData* shadow = s->boxShadow(); shadow; shadow = shadow->next()) {
H A DRenderObject.cpp2486 if (const ShadowData* boxShadow = style()->boxShadow()) {
2487 boxShadow->adjustRectForShadow(rect, outlineSize);
H A DRenderLayerBacking.cpp725 return style->hasBorder() || style->hasBorderRadius() || style->hasOutline() || style->hasAppearance() || style->boxShadow();
H A DInlineFlowBox.cpp154 } else if (!child->renderer()->isBR() && (child->renderer()->style(m_firstLine)->boxShadow() || child->boxModelObject()->hasSelfPaintingLayer()
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h674 const ShadowData* boxShadow() const { return rareNonInheritedData->m_boxShadow.get(); } function in class:WebCore::RenderStyle
675 void getBoxShadowExtent(int& top, int& right, int& bottom, int& left) const { getShadowExtent(boxShadow(), top, right, bottom, left); }
676 void getBoxShadowHorizontalExtent(int& left, int& right) const { getShadowHorizontalExtent(boxShadow(), left, right); }
677 void getBoxShadowVerticalExtent(int& top, int& bottom) const { getShadowVerticalExtent(boxShadow(), top, bottom); }
678 void getBoxShadowInlineDirectionExtent(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(boxShadow(), logicalLeft, logicalRight); }
679 void getBoxShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(boxShadow(), logicalTop, logicalBottom); }
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp696 gPropertyWrappers->append(new PropertyWrapperShadow(CSSPropertyBoxShadow, &RenderStyle::boxShadow, &RenderStyle::setBoxShadow));
697 gPropertyWrappers->append(new PropertyWrapperShadow(CSSPropertyWebkitBoxShadow, &RenderStyle::boxShadow, &RenderStyle::setBoxShadow));
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1043 return valueForShadow(style->boxShadow(), propertyID, style.get());
H A DCSSStyleSelector.cpp5145 return m_style->setBoxShadow(m_parentStyle->boxShadow() ? new ShadowData(*m_parentStyle->boxShadow()) : 0);

Completed in 1152 milliseconds