Home | History | Annotate | Download | only in rendering

Lines Matching defs:containerLogicalHeight

3169     const LayoutUnit containerLogicalHeight = containingBlockLogicalHeightForPositioned(containerBlock);
3201 computePositionedLogicalHeightUsing(styleToUse->logicalHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3212 computePositionedLogicalHeightUsing(styleToUse->logicalMaxHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3228 computePositionedLogicalHeightUsing(styleToUse->logicalMinHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3244 static void computeLogicalTopPositionedOffset(LayoutUnit& logicalTopPos, const RenderBox* child, LayoutUnit logicalHeightValue, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalHeight)
3250 logicalTopPos = containerLogicalHeight - logicalHeightValue - logicalTopPos;
3267 LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight,
3295 resolvedLogicalHeight = adjustContentBoxLogicalHeightForBoxSizing(valueForLength(logicalHeightLength, containerLogicalHeight));
3311 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3313 const LayoutUnit availableSpace = containerLogicalHeight - (logicalTopValue + logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight) + bordersPlusPadding);
3364 const LayoutUnit availableSpace = containerLogicalHeight - (computedValues.m_margins.m_before + computedValues.m_margins.m_after + bordersPlusPadding);
3370 logicalTopValue = availableSpace - (logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight));
3373 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3378 logicalTopValue = availableSpace - (logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight));
3381 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3382 logicalHeightValue = std::max<LayoutUnit>(0, availableSpace - (logicalTopValue + valueForLength(logicalBottom, containerLogicalHeight)));
3386 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3393 computeLogicalTopPositionedOffset(computedValues.m_position, this, logicalHeightValue, containerBlock, containerLogicalHeight);
3576 const LayoutUnit containerLogicalHeight = containingBlockLogicalHeightForPositioned(containerBlock);
3596 const LayoutUnit availableSpace = containerLogicalHeight - computedValues.m_extent;
3630 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3631 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight);
3645 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight);
3652 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3659 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3660 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight);
3666 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3667 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight);
3675 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight);
3690 computeLogicalTopPositionedOffset(logicalTopPos, this, computedValues.m_extent, containerBlock, containerLogicalHeight);