| 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 SVGTransformList |
| 8 interface SVGTransformList { |
| 9 |
| 10 /** @domName SVGTransformList.numberOfItems */ |
| 11 final int numberOfItems; |
| 12 |
| 13 /** @domName SVGTransformList.appendItem */ |
| 14 SVGTransform appendItem(SVGTransform item); |
| 15 |
| 16 /** @domName SVGTransformList.clear */ |
| 17 void clear(); |
| 18 |
| 19 /** @domName SVGTransformList.consolidate */ |
| 20 SVGTransform consolidate(); |
| 21 |
| 22 /** @domName SVGTransformList.createSVGTransformFromMatrix */ |
| 23 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); |
| 24 |
| 25 /** @domName SVGTransformList.getItem */ |
| 26 SVGTransform getItem(int index); |
| 27 |
| 28 /** @domName SVGTransformList.initialize */ |
| 29 SVGTransform initialize(SVGTransform item); |
| 30 |
| 31 /** @domName SVGTransformList.insertItemBefore */ |
| 32 SVGTransform insertItemBefore(SVGTransform item, int index); |
| 33 |
| 34 /** @domName SVGTransformList.removeItem */ |
| 35 SVGTransform removeItem(int index); |
| 36 |
| 37 /** @domName SVGTransformList.replaceItem */ |
| 38 SVGTransform replaceItem(SVGTransform item, int index); |
| 39 } |
| OLD | NEW |