bug 113424 - mechanism for percent height frames inside table cells to receive special height reflow. sr=attinasi, r=alexsavulov

git-svn-id: svn://10.0.0.236/trunk@110006 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
karnaze%netscape.com
2001-12-07 14:51:12 +00:00
parent b697033b55
commit d8577654db
109 changed files with 743 additions and 506 deletions

View File

@@ -448,13 +448,13 @@ nsMathMLmunderoverFrame::Place(nsIPresContext* aPresContext,
nscoord dy;
// place overscript
dy = aDesiredSize.ascent - mBoundingMetrics.ascent + bmOver.ascent - overSize.ascent;
FinishReflowChild (overFrame, aPresContext, overSize, dxOver, dy, 0);
FinishReflowChild (overFrame, aPresContext, nsnull, overSize, dxOver, dy, 0);
// place base
dy = aDesiredSize.ascent - baseSize.ascent;
FinishReflowChild (baseFrame, aPresContext, baseSize, dxBase, dy, 0);
FinishReflowChild (baseFrame, aPresContext, nsnull, baseSize, dxBase, dy, 0);
// place underscript
dy = aDesiredSize.ascent + mBoundingMetrics.descent - bmUnder.descent - underSize.ascent;
FinishReflowChild (underFrame, aPresContext, underSize, dxUnder, dy, 0);
FinishReflowChild (underFrame, aPresContext, nsnull, underSize, dxUnder, dy, 0);
}
return NS_OK;
}