OLD | NEW |
1 /** | 1 /** |
2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
4 * | 4 * |
5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
6 * refer to the | 6 * refer to the |
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
8 */ | 8 */ |
9 library dart.dom.svg; | 9 library dart.dom.svg; |
10 | 10 |
11 import 'dart:async'; | 11 import 'dart:async'; |
12 import 'dart:collection'; | 12 import 'dart:collection'; |
13 import 'dart:_internal'; | 13 import 'dart:_internal' show FixedLengthListMixin; |
14 import 'dart:html'; | 14 import 'dart:html'; |
15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
16 import 'dart:_js_helper' show Creates, Returns, JSName, Native; | 16 import 'dart:_js_helper' show Creates, Returns, JSName, Native; |
17 import 'dart:_foreign_helper' show JS; | 17 import 'dart:_foreign_helper' show JS; |
18 import 'dart:_interceptors' show Interceptor; | 18 import 'dart:_interceptors' show Interceptor; |
19 // DO NOT EDIT - unless you are editing documentation as per: | 19 // DO NOT EDIT - unless you are editing documentation as per: |
20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
21 // Auto-generated dart:svg library. | 21 // Auto-generated dart:svg library. |
22 | 22 |
23 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 23 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
(...skipping 5938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5962 /** | 5962 /** |
5963 * Constructor instantiated by the DOM when a custom element has been created. | 5963 * Constructor instantiated by the DOM when a custom element has been created. |
5964 * | 5964 * |
5965 * This can only be called by subclasses from their created constructor. | 5965 * This can only be called by subclasses from their created constructor. |
5966 */ | 5966 */ |
5967 _SVGMPathElement.created() : super.created(); | 5967 _SVGMPathElement.created() : super.created(); |
5968 | 5968 |
5969 // From SVGURIReference | 5969 // From SVGURIReference |
5970 | 5970 |
5971 } | 5971 } |
OLD | NEW |