Index: Source/core/svg/SVGFEDropShadowElement.idl |
diff --git a/Source/core/svg/SVGFEDropShadowElement.idl b/Source/core/svg/SVGFEDropShadowElement.idl |
index 556fdaa432ec61458a0c05c12757dbf31d967d91..b5e34c3b321c88a67c708df615133a14bde8d45c 100644 |
--- a/Source/core/svg/SVGFEDropShadowElement.idl |
+++ b/Source/core/svg/SVGFEDropShadowElement.idl |
@@ -20,13 +20,13 @@ |
// http://www.w3.org/TR/filter-effects/#InterfaceSVGFEDropShadowElement |
interface SVGFEDropShadowElement : SVGElement { |
- readonly attribute SVGAnimatedString in1; |
- readonly attribute SVGAnimatedNumber dx; |
- readonly attribute SVGAnimatedNumber dy; |
- readonly attribute SVGAnimatedNumber stdDeviationX; |
- readonly attribute SVGAnimatedNumber stdDeviationY; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedString in1; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedNumber dx; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedNumber dy; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedNumber stdDeviationX; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedNumber stdDeviationY; |
- void setStdDeviation(float stdDeviationX, float stdDeviationY); |
+ [RuntimeEnabled=SVG1DOM] void setStdDeviation(float stdDeviationX, float stdDeviationY); |
}; |
SVGFEDropShadowElement implements SVGFilterPrimitiveStandardAttributes; |