Bug 892108: Simplify a SVG check to use HasViewBoxOrSyntheticViewBox(). r=jwatt

This commit is contained in:
Daniel Holbert 2013-07-10 16:20:54 -07:00
Родитель d8c75a1cac
Коммит 7e1eec97eb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -456,7 +456,7 @@ nsSVGOuterSVGFrame::Reflow(nsPresContext* aPresContext,
// used when painting the former, but not when painting the latter)) is
// handled in SVGSVGElement::FlushImageTransformInvalidation.
//
if (svgElem->HasViewBoxRect() || svgElem->ShouldSynthesizeViewBox()) {
if (svgElem->HasViewBoxOrSyntheticViewBox()) {
nsIFrame* anonChild = GetFirstPrincipalChild();
anonChild->AddStateBits(NS_FRAME_IS_DIRTY);
for (nsIFrame* child = anonChild->GetFirstPrincipalChild(); child;