Searched refs:shadowBottom (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowList.cpp39 static inline void calculateShadowExtent(const ShadowList* shadowList, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom) argument
51 shadowBottom = std::max(shadow.y() + blurAndSpread, shadowBottom);
60 int shadowBottom = 0; local
61 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom);
65 rect.setHeight(rect.height() - shadowTop + shadowBottom);
73 int shadowBottom = 0; local
74 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom);
78 rect.setHeight(rect.height() - shadowTop + shadowBottom);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.cpp4425 LayoutUnit shadowBottom; local
4426 style()->getBoxShadowExtent(shadowTop, shadowRight, shadowBottom, shadowLeft);
4431 overflowMinY = borderBox.y() + ((!isFlipped || !isHorizontal) ? shadowTop : -shadowBottom);
4432 overflowMaxY = borderBox.maxY() + ((!isFlipped || !isHorizontal) ? shadowBottom : -shadowTop);
H A DRenderObject.cpp1584 LayoutUnit shadowBottom; local
1585 style()->getBoxShadowVerticalExtent(shadowTop, shadowBottom);
1590 LayoutUnit decorationsHeight = max<LayoutUnit>(-outlineStyle->outlineOffset(), borderHeight + minInsetBottomShadowExtent) + max<LayoutUnit>(outlineWidth, shadowBottom);

Completed in 100 milliseconds