| OLD | NEW |
| 1 /** |
| 2 * Scalable Vector Graphics: |
| 3 * Two-dimensional vector graphics with support for events and animation. |
| 4 * |
| 5 * For details about the features and syntax of SVG, a W3C standard, |
| 6 * refer to the |
| 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
| 8 */ |
| 1 library dart.dom.svg; | 9 library dart.dom.svg; |
| 2 | 10 |
| 3 import 'dart:async'; | 11 import 'dart:async'; |
| 4 import 'dart:collection'; | 12 import 'dart:collection'; |
| 5 import 'dart:_collection-dev' hide deprecated; | 13 import 'dart:_collection-dev' hide deprecated; |
| 6 import 'dart:html'; | 14 import 'dart:html'; |
| 7 import 'dart:html_common'; | 15 import 'dart:html_common'; |
| 8 import 'dart:_js_helper' show Creates, Returns, JSName; | 16 import 'dart:_js_helper' show Creates, Returns, JSName; |
| 9 import 'dart:_foreign_helper' show JS; | 17 import 'dart:_foreign_helper' show JS; |
| 10 import 'dart:_interceptors' show Interceptor; | 18 import 'dart:_interceptors' show Interceptor; |
| (...skipping 6179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6190 @DomName('SVGVKernElement') | 6198 @DomName('SVGVKernElement') |
| 6191 @Unstable() | 6199 @Unstable() |
| 6192 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { | 6200 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { |
| 6193 // To suppress missing implicit constructor warnings. | 6201 // To suppress missing implicit constructor warnings. |
| 6194 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 6202 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
| 6195 | 6203 |
| 6196 @DomName('SVGVKernElement.SVGVKernElement') | 6204 @DomName('SVGVKernElement.SVGVKernElement') |
| 6197 @DocsEditable() | 6205 @DocsEditable() |
| 6198 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 6206 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 6199 } | 6207 } |
| OLD | NEW |