Add in border and padding to get the max-element-size right

This commit is contained in:
kipp%netscape.com 1998-12-17 18:54:22 +00:00
Родитель 024a0ebf81
Коммит 0a7f47b0de
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -71,6 +71,7 @@ nsLeafFrame::Reflow(nsIPresContext& aPresContext,
nsMargin borderPadding;
AddBordersAndPadding(&aPresContext, aReflowState, aMetrics, borderPadding);
if (nsnull != aMetrics.maxElementSize) {
aMetrics.AddBorderPaddingToMaxElementSize(borderPadding);
aMetrics.maxElementSize->width = aMetrics.width;
aMetrics.maxElementSize->height = aMetrics.height;
}

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

@ -71,6 +71,7 @@ nsLeafFrame::Reflow(nsIPresContext& aPresContext,
nsMargin borderPadding;
AddBordersAndPadding(&aPresContext, aReflowState, aMetrics, borderPadding);
if (nsnull != aMetrics.maxElementSize) {
aMetrics.AddBorderPaddingToMaxElementSize(borderPadding);
aMetrics.maxElementSize->width = aMetrics.width;
aMetrics.maxElementSize->height = aMetrics.height;
}