Removed css/layout directory

git-svn-id: svn://10.0.0.236/trunk@10015 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com
1998-09-15 00:19:49 +00:00
parent 4a9593e1f6
commit 6a52b74171
65 changed files with 25877 additions and 1042 deletions

View File

@@ -389,3 +389,32 @@ nsHTMLContainerFrame::ProcessInitialReflow(nsIPresContext* aPresContext)
return NS_OK;
}
PRBool
nsHTMLContainerFrame::DeleteNextInFlowsFor(nsIPresContext& aPresContext,
nsIFrame* aChild)
{
// XXX get rid of this sillyness
NS_NOTREACHED("subclass should've overriden this!");
return PR_TRUE;
}
nsPlaceholderFrame*
nsHTMLContainerFrame::CreatePlaceholderFrame(nsIPresContext* aPresContext,
nsIFrame* aFloatedFrame)
{
nsIContent* content;
aFloatedFrame->GetContent(content);
nsPlaceholderFrame* placeholder;
nsPlaceholderFrame::NewFrame((nsIFrame**)&placeholder, content, this, aFloatedFrame);
NS_IF_RELEASE(content);
// Let the placeholder share the same style context as the floated element
nsIStyleContext* kidSC;
aFloatedFrame->GetStyleContext(aPresContext, kidSC);
placeholder->SetStyleContext(aPresContext, kidSC);
NS_RELEASE(kidSC);
return placeholder;
}