getShadowVerticalExtent 747 Source/core/rendering/style/RenderStyle.h void getTextShadowVerticalExtent(LayoutUnit& top, LayoutUnit& bottom) const { getShadowVerticalExtent(textShadow(), top, bottom); } getShadowVerticalExtent 808 Source/core/rendering/style/RenderStyle.h void getBoxShadowVerticalExtent(LayoutUnit& top, LayoutUnit& bottom) const { getShadowVerticalExtent(boxShadow(), top, bottom); } getShadowVerticalExtent 1717 Source/core/rendering/style/RenderStyle.h void getShadowVerticalExtent(const ShadowList*, LayoutUnit& top, LayoutUnit& bottom) const; getShadowVerticalExtent 1720 Source/core/rendering/style/RenderStyle.h return isHorizontalWritingMode() ? getShadowHorizontalExtent(shadow, logicalLeft, logicalRight) : getShadowVerticalExtent(shadow, logicalLeft, logicalRight); getShadowVerticalExtent 1724 Source/core/rendering/style/RenderStyle.h return isHorizontalWritingMode() ? getShadowVerticalExtent(shadow, logicalTop, logicalBottom) : getShadowHorizontalExtent(shadow, logicalTop, logicalBottom);