Bug 828312 patch 8: Make handling of UpdateEffects hint check continuations. r=bzbarsky

This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.
This commit is contained in:
L. David Baron 2013-09-25 12:28:07 -07:00
parent 82151d1958
commit 95e754510e

View File

@ -683,7 +683,10 @@ RestyleManager::ProcessRestyledFrames(nsStyleChangeList& aChangeList)
}
if (hint & nsChangeHint_UpdateEffects) {
nsSVGEffects::UpdateEffects(frame);
for (nsIFrame *cont = frame; cont;
cont = nsLayoutUtils::GetNextContinuationOrSpecialSibling(cont)) {
nsSVGEffects::UpdateEffects(cont);
}
}
if (hint & nsChangeHint_NeedReflow) {
StyleChangeReflow(frame, hint);