зеркало из https://github.com/mozilla/pjs.git
Bug 666068 - Speed up nsSVGIntegrationUtils::UsingEffectsForFrame. r=jwatt,jmuizelaar
This commit is contained in:
Родитель
9946d5e8e2
Коммит
db14979234
|
@ -55,9 +55,11 @@
|
|||
PRBool
|
||||
nsSVGIntegrationUtils::UsingEffectsForFrame(const nsIFrame* aFrame)
|
||||
{
|
||||
if (aFrame->IsFrameOfType(nsIFrame::eSVG)) {
|
||||
return PR_FALSE;
|
||||
}
|
||||
const nsStyleSVGReset *style = aFrame->GetStyleSVGReset();
|
||||
return (style->mFilter || style->mClipPath || style->mMask) &&
|
||||
!aFrame->IsFrameOfType(nsIFrame::eSVG);
|
||||
return (style->mFilter || style->mClipPath || style->mMask);
|
||||
}
|
||||
|
||||
/* static */ nsRect
|
||||
|
|
Загрузка…
Ссылка в новой задаче