Home | History | Annotate | Download | only in rendering

Lines Matching defs:glyphOverflow

751     GlyphOverflow* glyphOverflow = 0;
755 glyphOverflow = it == textBoxDataMap.end() ? 0 : &it->value.second;
810 if (includeGlyphsForBox(box) && glyphOverflow && glyphOverflow->computeBounds) {
811 setAscentAndDescent(ascent, descent, glyphOverflow->top, glyphOverflow->bottom, ascentDescentSet);
812 affectsAscent = glyphOverflow->top - box->logicalTop() > 0;
813 affectsDescent = glyphOverflow->bottom + box->logicalTop() > 0;
814 glyphOverflow->top = min(glyphOverflow->top, max(0, glyphOverflow->top - box->renderer()->style(isFirstLineStyle())->fontMetrics().ascent(baselineType())));
815 glyphOverflow->bottom = min(glyphOverflow->bottom, max(0, glyphOverflow->bottom - box->renderer()->style(isFirstLineStyle())->fontMetrics().descent(baselineType())));