| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface SVGFilterElement extends SVGElement, SVGURIReference, SVGLangSpace, SV
GExternalResourcesRequired, SVGStylable { | |
| 8 | |
| 9 SVGAnimatedInteger get filterResX(); | |
| 10 | |
| 11 SVGAnimatedInteger get filterResY(); | |
| 12 | |
| 13 SVGAnimatedEnumeration get filterUnits(); | |
| 14 | |
| 15 SVGAnimatedLength get height(); | |
| 16 | |
| 17 SVGAnimatedEnumeration get primitiveUnits(); | |
| 18 | |
| 19 SVGAnimatedLength get width(); | |
| 20 | |
| 21 SVGAnimatedLength get x(); | |
| 22 | |
| 23 SVGAnimatedLength get y(); | |
| 24 | |
| 25 void setFilterRes(int filterResX, int filterResY); | |
| 26 } | |
| OLD | NEW |