| 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:_internal' hide deprecated; | 13 import 'dart:_internal' hide deprecated; |
| 6 import 'dart:html'; | 14 import 'dart:html'; |
| 7 import 'dart:html_common'; | 15 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
| 9 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
| 10 // DO NOT EDIT | 18 // DO NOT EDIT |
| (...skipping 7511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7522 @DocsEditable() | 7530 @DocsEditable() |
| 7523 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7531 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 7524 /** | 7532 /** |
| 7525 * Constructor instantiated by the DOM when a custom element has been created. | 7533 * Constructor instantiated by the DOM when a custom element has been created. |
| 7526 * | 7534 * |
| 7527 * This can only be called by subclasses from their created constructor. | 7535 * This can only be called by subclasses from their created constructor. |
| 7528 */ | 7536 */ |
| 7529 _SVGVKernElement.created() : super.created(); | 7537 _SVGVKernElement.created() : super.created(); |
| 7530 | 7538 |
| 7531 } | 7539 } |
| OLD | NEW |