| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, 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 /// @domName SVGViewSpec |
| 8 interface SVGViewSpec { |
| 9 |
| 10 /** @domName SVGViewSpec.preserveAspectRatio */ |
| 11 final SVGAnimatedPreserveAspectRatio preserveAspectRatio; |
| 12 |
| 13 /** @domName SVGViewSpec.preserveAspectRatioString */ |
| 14 final String preserveAspectRatioString; |
| 15 |
| 16 /** @domName SVGViewSpec.transform */ |
| 17 final SVGTransformList transform; |
| 18 |
| 19 /** @domName SVGViewSpec.transformString */ |
| 20 final String transformString; |
| 21 |
| 22 /** @domName SVGViewSpec.viewBox */ |
| 23 final SVGAnimatedRect viewBox; |
| 24 |
| 25 /** @domName SVGViewSpec.viewBoxString */ |
| 26 final String viewBoxString; |
| 27 |
| 28 /** @domName SVGViewSpec.viewTarget */ |
| 29 final SVGElement viewTarget; |
| 30 |
| 31 /** @domName SVGViewSpec.viewTargetString */ |
| 32 final String viewTargetString; |
| 33 |
| 34 /** @domName SVGViewSpec.zoomAndPan */ |
| 35 int zoomAndPan; |
| 36 } |
| OLD | NEW |