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
Родитель 5b9bfd849c
Коммит 148948810c
3 изменённых файлов: 12 добавлений и 0 удалений

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

@ -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;
}

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

@ -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;
}

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

@ -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;
}