Home | History | Annotate | Download | only in rendering

Lines Matching refs:maxDescent

351 void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent,
362 if (maxAscent + maxDescent < lineHeight)
363 maxDescent = lineHeight - maxAscent;
366 if (maxAscent + maxDescent < lineHeight)
367 maxAscent = lineHeight - maxDescent;
370 if (maxAscent + maxDescent >= max(maxPositionTop, maxPositionBottom))
375 static_cast<InlineFlowBox*>(curr)->adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom);
389 int& maxAscent, int& maxDescent, bool strictMode)
400 if (maxDescent < descent)
401 maxDescent = descent;
461 if (maxDescent < descent)
462 maxDescent = descent;
466 static_cast<InlineFlowBox*>(curr)->computeLogicalBoxHeights(maxPositionTop, maxPositionBottom, maxAscent, maxDescent, strictMode);