Add in margin top and bottom to max-element-size height

This commit is contained in:
kipp%netscape.com 1998-12-17 18:54:07 +00:00
Родитель 9749ce52a9
Коммит 91de046413
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -651,8 +651,10 @@ nsInlineReflow::PlaceFrame(nsHTMLReflowMetrics& aMetrics)
mMaxElementSize.width = mw;
}
// XXX take into account top/bottom margins
nscoord mh = aMetrics.maxElementSize->height;
// The max-element height is the sum of the interior max-element
// height plus the top and bottom margins.
nscoord mh = aMetrics.maxElementSize->height +
pfd->mMargin.top + pfd->mMargin.bottom;
if (mh > mMaxElementSize.height) {
mMaxElementSize.height = mh;
}