Index: core/svg/SVGFilterElement.idl |
diff --git a/core/svg/SVGFilterElement.idl b/core/svg/SVGFilterElement.idl |
index 0e6cbafbf7fab265fe0f562cbfce4b65b4751331..3c990a76491118d415f344b4ec6415b643a270f5 100644 |
--- a/core/svg/SVGFilterElement.idl |
+++ b/core/svg/SVGFilterElement.idl |
@@ -24,21 +24,18 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/filter-effects/#InterfaceSVGFilterElement |
+ |
[ |
TypeChecking=Interface, |
] interface SVGFilterElement : SVGElement { |
- readonly attribute SVGAnimatedEnumeration filterUnits; |
- readonly attribute SVGAnimatedEnumeration primitiveUnits; |
- readonly attribute SVGAnimatedLength x; |
- readonly attribute SVGAnimatedLength y; |
- readonly attribute SVGAnimatedLength width; |
- readonly attribute SVGAnimatedLength height; |
- readonly attribute SVGAnimatedInteger filterResX; |
- readonly attribute SVGAnimatedInteger filterResY; |
- |
- void setFilterRes(unsigned long filterResX, |
- unsigned long filterResY); |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration filterUnits; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedEnumeration primitiveUnits; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength x; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength y; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength width; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength height; |
}; |
SVGFilterElement implements SVGURIReference; |
- |
+// SVGFilterElement implements SVGUnitTypes; |