Apply font size inflation to heights of inlines. (Bug 627842, patch 12) r=roc

This commit is contained in:
L. David Baron 2011-11-15 17:02:01 +13:00
Родитель 2a79ab5726
Коммит 8d37f15cdc
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -646,7 +646,8 @@ nsInlineFrame::ReflowFrames(nsPresContext* aPresContext,
}
nsRefPtr<nsFontMetrics> fm;
nsLayoutUtils::GetFontMetricsForFrame(this, getter_AddRefs(fm));
float inflation = nsLayoutUtils::FontSizeInflationFor(aReflowState);
nsLayoutUtils::GetFontMetricsForFrame(this, getter_AddRefs(fm), inflation);
aReflowState.rendContext->SetFont(fm);
if (fm) {