summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/svg/SVGFECompositeElement.cpp
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-24 11:24:40 +0100
committerBen Murdoch <benm@google.com>2011-06-02 09:53:15 +0100
commit81bc750723a18f21cd17d1b173cd2a4dda9cea6e (patch)
tree7a9e5ed86ff429fd347a25153107221543909b19 /Source/WebCore/svg/SVGFECompositeElement.cpp
parent94088a6d336c1dd80a1e734af51e96abcbb689a7 (diff)
downloadexternal_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.zip
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.gz
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.bz2
Merge WebKit at r80534: Intial merge by Git
Change-Id: Ia7a83357124c9e1cdb1debf55d9661ec0bd09a61
Diffstat (limited to 'Source/WebCore/svg/SVGFECompositeElement.cpp')
-rw-r--r--Source/WebCore/svg/SVGFECompositeElement.cpp27
1 files changed, 24 insertions, 3 deletions
diff --git a/Source/WebCore/svg/SVGFECompositeElement.cpp b/Source/WebCore/svg/SVGFECompositeElement.cpp
index af738a9..1c40921 100644
--- a/Source/WebCore/svg/SVGFECompositeElement.cpp
+++ b/Source/WebCore/svg/SVGFECompositeElement.cpp
@@ -82,17 +82,38 @@ void SVGFECompositeElement::parseMappedAttribute(Attribute* attr)
SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
}
+bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
+{
+ FEComposite* composite = static_cast<FEComposite*>(effect);
+ if (attrName == SVGNames::operatorAttr)
+ return composite->setOperation(static_cast<CompositeOperationType>(_operator()));
+ if (attrName == SVGNames::k1Attr)
+ return composite->setK1(k1());
+ if (attrName == SVGNames::k2Attr)
+ return composite->setK2(k2());
+ if (attrName == SVGNames::k3Attr)
+ return composite->setK3(k3());
+ if (attrName == SVGNames::k4Attr)
+ return composite->setK4(k4());
+
+ ASSERT_NOT_REACHED();
+ return false;
+}
+
+
void SVGFECompositeElement::svgAttributeChanged(const QualifiedName& attrName)
{
SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
- if (attrName == SVGNames::inAttr
- || attrName == SVGNames::in2Attr
- || attrName == SVGNames::operatorAttr
+ if (attrName == SVGNames::operatorAttr
|| attrName == SVGNames::k1Attr
|| attrName == SVGNames::k2Attr
|| attrName == SVGNames::k3Attr
|| attrName == SVGNames::k4Attr)
+ primitiveAttributeChanged(attrName);
+
+ if (attrName == SVGNames::inAttr
+ || attrName == SVGNames::in2Attr)
invalidate();
}