Lines Matching refs:logicalTopEstimate
1763 int logicalTopEstimate = logicalHeight();
1766 logicalTopEstimate += max(marginInfo.margin(), childMarginBefore);
1771 // Adjust logicalTopEstimate down to the next page if the margins are so large that we don't fit on the current
1773 if (paginated && logicalTopEstimate > logicalHeight())
1774 logicalTopEstimate = min(logicalTopEstimate, nextPageLogicalTop(logicalHeight()));
1776 logicalTopEstimate += getClearDelta(child, logicalTopEstimate);
1780 logicalTopEstimate = applyBeforeBreak(child, logicalTopEstimate);
1783 logicalTopEstimate = adjustForUnsplittableChild(child, logicalTopEstimate);
1786 logicalTopEstimate += toRenderBlock(child)->paginationStrut();
1789 return logicalTopEstimate;
1973 int logicalTopEstimate = estimateLogicalTopPosition(child, marginInfo);
1983 setLogicalTopForChild(child, logicalTopEstimate, ApplyLayoutDelta);
1987 if (logicalTopEstimate != oldLogicalTop && !child->avoidsFloats() && childRenderBlock && childRenderBlock->containsFloats())
1993 if (fb > logicalTopEstimate)
2061 if (logicalTopAfterClear != logicalTopEstimate) {