bug 2267 - cells with row spans too tall

This commit is contained in:
karnaze%netscape.com 1999-04-23 17:43:14 +00:00
Родитель 37f729f1dc
Коммит 7627f01793
2 изменённых файлов: 20 добавлений и 2 удалений

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

@ -586,6 +586,8 @@ void nsTableRowGroupFrame::CalculateRowHeights(nsIPresContext& aPresContext,
nsresult rv = nsTableFrame::GetTableFrame(this, tableFrame);
if (NS_FAILED(rv) || nsnull==tableFrame)
return;
nscoord cellSpacingY = tableFrame->GetCellSpacingY();
PRInt32 rowGroupHeight;
for (PRInt32 counter=0; counter<2; counter++)
{
@ -617,8 +619,15 @@ void nsTableRowGroupFrame::CalculateRowHeights(nsIPresContext& aPresContext,
if (gsDebug) printf("TRGF CalcRowH: cell %p has rowspan=%d\n", cellFrame, rowSpan);
nscoord heightOfRowsSpanned = 0;
PRInt32 i;
for ( i = 0; i < rowSpan; i++)
for (i = 0; i < rowSpan; i++) {
heightOfRowsSpanned += rowHeights[rowIndex + i];
}
// need to reduce by cell spacing, twice that if it is the top row
heightOfRowsSpanned -= cellSpacingY;
if (0 == rowIndex) {
heightOfRowsSpanned -= cellSpacingY;
}
if (gsDebug) printf("TRGF CalcRowH: heightOfRowsSpanned=%d\n", heightOfRowsSpanned);
/* if the cell height fits in the rows, expand the spanning cell's height and slap it in */

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

@ -586,6 +586,8 @@ void nsTableRowGroupFrame::CalculateRowHeights(nsIPresContext& aPresContext,
nsresult rv = nsTableFrame::GetTableFrame(this, tableFrame);
if (NS_FAILED(rv) || nsnull==tableFrame)
return;
nscoord cellSpacingY = tableFrame->GetCellSpacingY();
PRInt32 rowGroupHeight;
for (PRInt32 counter=0; counter<2; counter++)
{
@ -617,8 +619,15 @@ void nsTableRowGroupFrame::CalculateRowHeights(nsIPresContext& aPresContext,
if (gsDebug) printf("TRGF CalcRowH: cell %p has rowspan=%d\n", cellFrame, rowSpan);
nscoord heightOfRowsSpanned = 0;
PRInt32 i;
for ( i = 0; i < rowSpan; i++)
for (i = 0; i < rowSpan; i++) {
heightOfRowsSpanned += rowHeights[rowIndex + i];
}
// need to reduce by cell spacing, twice that if it is the top row
heightOfRowsSpanned -= cellSpacingY;
if (0 == rowIndex) {
heightOfRowsSpanned -= cellSpacingY;
}
if (gsDebug) printf("TRGF CalcRowH: heightOfRowsSpanned=%d\n", heightOfRowsSpanned);
/* if the cell height fits in the rows, expand the spanning cell's height and slap it in */