Home
last modified time | relevance | path

Searched refs:lastCandidateBox (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.cpp3444 RenderBox* lastCandidateBox = lastChildBox(); in positionForPoint() local
3445 while (lastCandidateBox && !isChildHitTestCandidate(lastCandidateBox)) in positionForPoint()
3446 lastCandidateBox = lastCandidateBox->previousSiblingBox(); in positionForPoint()
3449 if (lastCandidateBox) { in positionForPoint()
3450 if (pointInLogicalContents.y() > logicalTopForChild(lastCandidateBox) in positionForPoint()
3451 … || (!blocksAreFlipped && pointInLogicalContents.y() == logicalTopForChild(lastCandidateBox))) in positionForPoint()
3452 … return positionForPointRespectingEditingBoundaries(this, lastCandidateBox, pointInContents); in positionForPoint()