Bug 478504. Need to clear textruns in bidi continuations too. r=roc

This commit is contained in:
Boris Zbarsky 2009-09-02 11:32:01 -04:00
parent 994db22329
commit 86994c8fce

View File

@ -3762,7 +3762,7 @@ static void
ClearTextRunsInFlowChain(nsTextFrame* aFrame)
{
nsTextFrame* f;
for (f = aFrame; f; f = static_cast<nsTextFrame*>(f->GetNextInFlow())) {
for (f = aFrame; f; f = static_cast<nsTextFrame*>(f->GetNextContinuation())) {
f->ClearTextRun();
}
}