Bug 238619 font-size: 0; Mozilla crashes after showing the title line [@ nsFontMetricsGTK::RealizeFont]

patch by ajschult@verizon.net r=dbaron sr=dbaron a=chofmann
This commit is contained in:
timeless%mozdev.org 2005-05-04 01:37:05 +00:00
Родитель 4945b5684f
Коммит d0cd66da75
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1815,7 +1815,12 @@ void nsFontMetricsGTK::RealizeFont()
mMaxAscent = nscoord(fontInfo->ascent * f);
mMaxDescent = nscoord(fontInfo->descent * f);
mEmAscent = nscoord(mMaxAscent * mEmHeight / lineSpacing);
if (lineSpacing == 0) {
mEmAscent = mEmHeight;
}
else {
mEmAscent = nscoord(mMaxAscent * mEmHeight / lineSpacing);
}
mEmDescent = mEmHeight - mEmAscent;
mMaxAdvance = nscoord(fontInfo->max_bounds.width * f);