Bug 19051. Remove code that computed and maintained nsTextRun. Instead, compute 'next text' when required by crawling the frame tree in nsLineLayout::FindNextText(). r=roc+moz@cs.cmu.edu

git-svn-id: svn://10.0.0.236/trunk@74887 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com
2000-07-27 05:16:08 +00:00
parent 8fbcf1ea64
commit 86cf521ec9
33 changed files with 204 additions and 953 deletions

View File

@@ -328,17 +328,6 @@ nsInlineFrame::Reflow(nsIPresContext* aPresContext,
return rv;
}
NS_IMETHODIMP
nsInlineFrame::FindTextRuns(nsLineLayout& aLineLayout)
{
nsIFrame* frame = mFrames.FirstChild();
while (nsnull != frame) {
frame->FindTextRuns(aLineLayout);
frame->GetNextSibling(&frame);
}
return NS_OK;
}
NS_IMETHODIMP
nsInlineFrame::ReflowDirtyChild(nsIPresShell* aPresShell, nsIFrame* aChild)
{