Home | History | Annotate | Download | only in rendering

Lines Matching refs:ascent

376                 LayoutUnit ascent = child->firstLineBoxBaseline();
377 if (ascent == -1)
378 ascent = child->height() + child->marginBottom();
379 ascent += child->marginTop();
380 LayoutUnit descent = (child->height() + child->marginHeight()) - ascent;
382 // Update our maximum ascent.
383 maxAscent = std::max(maxAscent, ascent);
452 LayoutUnit ascent = child->firstLineBoxBaseline();
453 if (ascent == -1)
454 ascent = child->height() + child->marginBottom();
455 ascent += child->marginTop();
456 childY += child->marginTop() + (maxAscent - ascent);