fix or bug 101883 - completes fix for bug 92143, adding NS_MAX check

sr= attinasi, r= karnaze
This commit is contained in:
alexsavulov%netscape.com 2001-10-02 21:29:26 +00:00
Родитель 99325569e0
Коммит 0bd0232834
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -183,7 +183,7 @@ void nsTableCellFrame::SetPass1MaxElementSize(nscoord aMaxWidth,
if(NS_CONTENT_ATTR_NOT_THERE != result) {
// content has nowrap (is not mapped to style be cause it has width)
// set the max element size to the value of the fixed width (NAV/IE quirk)
maxElemWidth = stylePosition->mWidth.GetCoordValue();
maxElemWidth = NS_MAX(maxElemWidth, stylePosition->mWidth.GetCoordValue());
}
}
mPass1MaxElementSize.width = maxElemWidth;

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

@ -183,7 +183,7 @@ void nsTableCellFrame::SetPass1MaxElementSize(nscoord aMaxWidth,
if(NS_CONTENT_ATTR_NOT_THERE != result) {
// content has nowrap (is not mapped to style be cause it has width)
// set the max element size to the value of the fixed width (NAV/IE quirk)
maxElemWidth = stylePosition->mWidth.GetCoordValue();
maxElemWidth = NS_MAX(maxElemWidth, stylePosition->mWidth.GetCoordValue());
}
}
mPass1MaxElementSize.width = maxElemWidth;