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

git-svn-id: svn://10.0.0.236/trunk@18764 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com 1999-01-27 10:10:02 +00:00
parent 44aab19939
commit 72e9f65dec
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;
}