Home | History | Annotate | Download | only in rendering

Lines Matching refs:marginAfter

2052     // widths, so we don't have to check marginBefore/marginAfter.
2245 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2273 h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPaddingLogicalHeight(), Fixed);
2293 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2309 LayoutUnit marginsBordersPadding = margins + parentBox()->marginBefore() + parentBox()->marginAfter() + parentBox()->borderAndPaddingLogicalHeight();
2388 rootMarginBorderPaddingHeight += cb->marginBefore() + cb->marginAfter() + cb->borderAndPaddingLogicalHeight();
2672 availableHeight -= marginBefore() + marginAfter() + borderAndPaddingLogicalHeight();
2680 LayoutUnit marginAfter;
2681 computeMarginsForDirection(BlockDirection, containingBlock, containingBlockLogicalWidthForContent(), logicalHeight(), marginBefore, marginAfter,
2687 containingBlock->setMarginAfterForChild(this, marginAfter);
3174 const Length marginAfter = styleToUse->marginAfter();
3202 logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
3213 logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
3229 logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
3269 const Length& marginAfter, LogicalExtentComputedValues& computedValues) const
3316 if (marginBefore.isAuto() && marginAfter.isAuto()) {
3323 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
3325 } else if (marginAfter.isAuto()) {
3332 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
3362 computedValues.m_margins.m_after = minimumValueForLength(marginAfter, containerRelativeLogicalWidth);
3581 Length marginAfter = style()->marginAfter();
3614 if (marginAfter.isAuto())
3615 marginAfter.setValue(Fixed, 0);
3626 if (marginBefore.isAuto() && marginAfter.isAuto()) {
3644 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
3651 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
3658 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
3664 } else if (marginAfter.isAuto()) {
3674 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
4276 rect.expand(isHorizontalWritingMode() ? LayoutSize(LayoutUnit(), marginAfter()) : LayoutSize(marginAfter(), LayoutUnit()));