Fixed a bug wherein tree frames weren't being added to the flow.

This commit is contained in:
hyatt%netscape.com 1999-01-27 10:10:02 +00:00
parent 53835338be
commit 829b7f8804
3 changed files with 12 additions and 0 deletions

View File

@ -2117,6 +2117,10 @@ HTMLStyleSheetImpl::ConstructXULFrame(nsIPresContext* aPresContext,
// Add the placeholder frame to the flow
aNewFrame = placeholderFrame;
}
else {
// Add the table frame to the flow
aFrameItems.AddChild(aNewFrame);
}
return rv;
}

View File

@ -2117,6 +2117,10 @@ HTMLStyleSheetImpl::ConstructXULFrame(nsIPresContext* aPresContext,
// Add the placeholder frame to the flow
aNewFrame = placeholderFrame;
}
else {
// Add the table frame to the flow
aFrameItems.AddChild(aNewFrame);
}
return rv;
}

View File

@ -2117,6 +2117,10 @@ HTMLStyleSheetImpl::ConstructXULFrame(nsIPresContext* aPresContext,
// Add the placeholder frame to the flow
aNewFrame = placeholderFrame;
}
else {
// Add the table frame to the flow
aFrameItems.AddChild(aNewFrame);
}
return rv;
}