Home | History | Annotate | Download | only in rendering

Lines Matching refs:prevRootBox

108                                                               y(), !prevRootBox(), isHorizontal(), markupBox);
217 for (RootInlineBox* prev = prevRootBox(); prev && prev->lineBreakObj() == box->renderer(); prev = prev->prevRootBox()) {
282 if (prevRootBox() && prevRootBox()->hasAnnotationsAfter())
283 result = prevRootBox()->computeUnderAnnotationAdjustment(lineTop());
289 int highestAllowedPosition = prevRootBox() ? min(prevRootBox()->lineBottom(), lineTop()) + result : block()->borderBefore();
294 result = computeUnderAnnotationAdjustment(prevRootBox() ? prevRootBox()->lineBottom() : block()->borderBefore());
296 if (!prevRootBox() || !prevRootBox()->hasAnnotationsAfter())
300 int lowestAllowedPosition = max(prevRootBox()->lineBottom(), lineTop()) - result;
301 result = prevRootBox()->computeOverAnnotationAdjustment(lowestAllowedPosition);
409 int prevBottom = prevRootBox() ? prevRootBox()->selectionBottom() : block()->borderBefore() + block()->paddingBefore();