fixing bug causing font-weight: 900 to not be bold. bug 359542. r=vlad

This commit is contained in:
pavlov%pavlov.net 2007-04-03 20:11:25 +00:00
Родитель 7afc4d3ebd
Коммит 0f6efe408e
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -256,6 +256,9 @@ gfxWindowsFont::MakeHFONT()
chosenWeight = baseWeight * 100;
}
if (chosenWeight == 0)
chosenWeight = baseWeight * 100;
mAdjustedSize = mStyle->size;
if (mStyle->sizeAdjust > 0) {
if (!mFont) {