зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
4945b5684f
Коммит
d0cd66da75
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче