summaryrefslogtreecommitdiffstats
path: root/WebCore/css/SVGCSSStyleSelector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/SVGCSSStyleSelector.cpp')
-rw-r--r--WebCore/css/SVGCSSStyleSelector.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/css/SVGCSSStyleSelector.cpp b/WebCore/css/SVGCSSStyleSelector.cpp
index 1deb259..3b38890 100644
--- a/WebCore/css/SVGCSSStyleSelector.cpp
+++ b/WebCore/css/SVGCSSStyleSelector.cpp
@@ -552,6 +552,14 @@ void CSSStyleSelector::applySVGProperty(int id, CSSValue* value)
svgstyle->setShadow(shadowData);
return;
}
+ case CSSPropertyVectorEffect: {
+ HANDLE_INHERIT_AND_INITIAL(vectorEffect, VectorEffect)
+ if (!primitiveValue)
+ break;
+
+ svgstyle->setVectorEffect(*primitiveValue);
+ break;
+ }
default:
// If you crash here, it's because you added a css property and are not handling it
// in either this switch statement or the one in CSSStyleSelector::applyProperty