зеркало из https://github.com/mozilla/pjs.git
fix or bug 101883 - completes fix for bug 92143, adding NS_MAX check
sr= attinasi, r= karnaze
This commit is contained in:
Родитель
99325569e0
Коммит
0bd0232834
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче