diff options
Diffstat (limited to 'WebCore/svg/SVGFETileElement.cpp')
-rw-r--r-- | WebCore/svg/SVGFETileElement.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/svg/SVGFETileElement.cpp b/WebCore/svg/SVGFETileElement.cpp index 4379b96..9664490 100644 --- a/WebCore/svg/SVGFETileElement.cpp +++ b/WebCore/svg/SVGFETileElement.cpp @@ -62,7 +62,9 @@ PassRefPtr<FilterEffect> SVGFETileElement::build(SVGFilterBuilder* filterBuilder if (!input1) return 0; - return FETile::create(input1); + RefPtr<FilterEffect> effect = FETile::create(); + effect->inputEffects().append(input1); + return effect.release(); } } |