| 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 /// @domName SVGElement |
| 6 interface SVGElement extends Element default _SVGElementFactoryProvider { |
| 7 |
| 8 SVGElement.tag(String tag); |
| 9 SVGElement.svg(String svg); |
| 10 |
| 11 SVGElement clone(bool deep); |
| 12 |
| 13 |
| 14 /** @domName SVGElement.id */ |
| 15 String id; |
| 16 |
| 17 /** @domName SVGElement.ownerSVGElement */ |
| 18 final SVGSVGElement ownerSVGElement; |
| 19 |
| 20 /** @domName SVGElement.viewportElement */ |
| 21 final SVGElement viewportElement; |
| 22 |
| 23 /** @domName SVGElement.xmlbase */ |
| 24 String xmlbase; |
| 25 |
| 26 } |
| OLD | NEW |