Home | History | Annotate | Download | only in rendering

Lines Matching defs:logicalBottom

3007             lastLogicalTop = blockDirectionOffset(rootBlock, offsetFromRootBlock) + curr->logicalBottom();
3008 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, curr->logicalBottom());
3009 lastLogicalRight = logicalRightSelectionOffset(rootBlock, curr->logicalBottom());
3019 int lastLogicalTop, int lastLogicalLeft, int lastLogicalRight, int logicalBottom, const PaintInfo* paintInfo)
3022 int logicalHeight = blockDirectionOffset(rootBlock, offsetFromRootBlock) + logicalBottom - logicalTop;
3027 int logicalLeft = max(lastLogicalLeft, logicalLeftSelectionOffset(rootBlock, logicalBottom));
3028 int logicalRight = min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom));
3219 int logicalBottom = logicalBottomForFloat(r);
3222 if (logicalBottom < 0 || logicalBottom < logicalTop || logicalTop == numeric_limits<int>::max())
3223 logicalBottom = numeric_limits<int>::max();
3228 logicalBottom = max(logicalBottom, logicalTop + 1);
3237 markLinesDirtyInBlockRange(0, logicalBottom);
3590 logicalBottom, RootInlineBox* highest)
3592 if (logicalTop >= logicalBottom)
3597 while (lowestDirtyLine && lowestDirtyLine->blockLogicalHeight() >= logicalBottom && logicalBottom < numeric_limits<int>::max()) {
3683 int logicalBottom = logicalBottomForFloat(f);
3688 changeLogicalBottom = max(changeLogicalBottom, max(logicalBottom, oldLogicalBottom));
3689 } else if (logicalBottom != oldLogicalBottom) {
3690 changeLogicalTop = min(changeLogicalTop, min(logicalBottom, oldLogicalBottom));
3691 changeLogicalBottom = max(changeLogicalBottom, max(logicalBottom, oldLogicalBottom));
3702 changeLogicalBottom = max(changeLogicalBottom, logicalBottom);
3736 int logicalBottom = childLogicalTop + logicalBottomForFloat;
3737 lowestFloatLogicalBottom = max(lowestFloatLogicalBottom, logicalBottom);
3739 if (logicalBottom > logicalHeight()) {
4267 if (isChildHitTestCandidate(childBox) && pointInContents.y() < childBox->logicalBottom())