| 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 |
| (...skipping 6743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6754 abstract class _SVGPaint extends _SVGColor native "SVGPaint" { | 6754 abstract class _SVGPaint extends _SVGColor native "SVGPaint" { |
| 6755 // To suppress missing implicit constructor warnings. | 6755 // To suppress missing implicit constructor warnings. |
| 6756 factory _SVGPaint._() { throw new UnsupportedError("Not supported"); } | 6756 factory _SVGPaint._() { throw new UnsupportedError("Not supported"); } |
| 6757 } | 6757 } |
| 6758 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6758 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6759 // for details. All rights reserved. Use of this source code is governed by a | 6759 // for details. All rights reserved. Use of this source code is governed by a |
| 6760 // BSD-style license that can be found in the LICENSE file. | 6760 // BSD-style license that can be found in the LICENSE file. |
| 6761 | 6761 |
| 6762 | 6762 |
| 6763 @DocsEditable() | 6763 @DocsEditable() |
| 6764 @DomName('SVGTRefElement') | |
| 6765 @Unstable() | |
| 6766 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe
rence native "SVGTRefElement" { | |
| 6767 // To suppress missing implicit constructor warnings. | |
| 6768 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); } | |
| 6769 | |
| 6770 @DomName('SVGTRefElement.SVGTRefElement') | |
| 6771 @DocsEditable() | |
| 6772 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag("
tref"); | |
| 6773 /** | |
| 6774 * Constructor instantiated by the DOM when a custom element has been created. | |
| 6775 * | |
| 6776 * This can only be called by subclasses from their created constructor. | |
| 6777 */ | |
| 6778 _SVGTRefElement.created() : super.created(); | |
| 6779 | |
| 6780 // From SVGURIReference | |
| 6781 } | |
| 6782 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 6783 // for details. All rights reserved. Use of this source code is governed by a | |
| 6784 // BSD-style license that can be found in the LICENSE file. | |
| 6785 | |
| 6786 | |
| 6787 @DocsEditable() | |
| 6788 @DomName('SVGVKernElement') | 6764 @DomName('SVGVKernElement') |
| 6789 @Unstable() | 6765 @Unstable() |
| 6790 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { | 6766 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { |
| 6791 // To suppress missing implicit constructor warnings. | 6767 // To suppress missing implicit constructor warnings. |
| 6792 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 6768 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
| 6793 | 6769 |
| 6794 @DomName('SVGVKernElement.SVGVKernElement') | 6770 @DomName('SVGVKernElement.SVGVKernElement') |
| 6795 @DocsEditable() | 6771 @DocsEditable() |
| 6796 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 6772 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 6797 /** | 6773 /** |
| 6798 * Constructor instantiated by the DOM when a custom element has been created. | 6774 * Constructor instantiated by the DOM when a custom element has been created. |
| 6799 * | 6775 * |
| 6800 * This can only be called by subclasses from their created constructor. | 6776 * This can only be called by subclasses from their created constructor. |
| 6801 */ | 6777 */ |
| 6802 _SVGVKernElement.created() : super.created(); | 6778 _SVGVKernElement.created() : super.created(); |
| 6803 } | 6779 } |
| OLD | NEW |