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' hide deprecated; | 13 import 'dart:_internal'; |
14 import 'dart:html'; | 14 import 'dart:html'; |
15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
16 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
17 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
18 import 'dart:js' as js; | 18 import 'dart:js' as js; |
19 // DO NOT EDIT | 19 // DO NOT EDIT |
20 // Auto-generated dart:svg library. | 20 // Auto-generated dart:svg library. |
21 | 21 |
22 | 22 |
23 | 23 |
(...skipping 9414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9438 _SVGVKernElement.internal_() : super.internal_(); | 9438 _SVGVKernElement.internal_() : super.internal_(); |
9439 | 9439 |
9440 /** | 9440 /** |
9441 * Constructor instantiated by the DOM when a custom element has been created. | 9441 * Constructor instantiated by the DOM when a custom element has been created. |
9442 * | 9442 * |
9443 * This can only be called by subclasses from their created constructor. | 9443 * This can only be called by subclasses from their created constructor. |
9444 */ | 9444 */ |
9445 _SVGVKernElement.created() : super.created(); | 9445 _SVGVKernElement.created() : super.created(); |
9446 | 9446 |
9447 } | 9447 } |
OLD | NEW |