| OLD | NEW |
| 1 // DO NOT EDIT - unless you are editing documentation as per: | 1 // DO NOT EDIT - unless you are editing documentation as per: |
| 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 3 // Auto-generated dart:svg library. | 3 // Auto-generated dart:svg library. |
| 4 | 4 |
| 5 /** |
| 6 * Scalable Vector Graphics: |
| 7 * Two-dimensional vector graphics with support for events and animation. |
| 8 * |
| 9 * For details about the features and syntax of SVG, a W3C standard, |
| 10 * refer to the |
| 11 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
| 12 */ |
| 5 library dart.dom.svg; | 13 library dart.dom.svg; |
| 6 | 14 |
| 7 import 'dart:async'; | 15 import 'dart:async'; |
| 8 import 'dart:collection'; | 16 import 'dart:collection'; |
| 9 import 'dart:_collection-dev' hide deprecated; | 17 import 'dart:_collection-dev' hide deprecated; |
| 10 import 'dart:html'; | 18 import 'dart:html'; |
| 11 import 'dart:html_common'; | 19 import 'dart:html_common'; |
| 12 import 'dart:_js_helper' show Creates, Returns, JSName; | 20 import 'dart:_js_helper' show Creates, Returns, JSName; |
| 13 import 'dart:_foreign_helper' show JS; | 21 import 'dart:_foreign_helper' show JS; |
| 14 import 'dart:_interceptors' show Interceptor; | 22 import 'dart:_interceptors' show Interceptor; |
| 15 | 23 |
| 16 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart'; | 24 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart'; |
| 17 | 25 |
| 18 $!GENERATED_DART_FILES | 26 $!GENERATED_DART_FILES |
| OLD | NEW |