| OLD | NEW |
| 1 library dart.dom.svg; | 1 library dart.dom.svg; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_collection-dev'; | 5 import 'dart:_collection-dev'; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 // DO NOT EDIT | 9 // DO NOT EDIT |
| 10 // Auto-generated dart:svg library. | 10 // Auto-generated dart:svg library. |
| (...skipping 6092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6103 _SvgElementFactoryProvider.createSvgElement_svg(svg); | 6103 _SvgElementFactoryProvider.createSvgElement_svg(svg); |
| 6104 | 6104 |
| 6105 _AttributeClassSet _cssClassSet; | 6105 _AttributeClassSet _cssClassSet; |
| 6106 CssClassSet get classes { | 6106 CssClassSet get classes { |
| 6107 if (_cssClassSet == null) { | 6107 if (_cssClassSet == null) { |
| 6108 _cssClassSet = new _AttributeClassSet(this); | 6108 _cssClassSet = new _AttributeClassSet(this); |
| 6109 } | 6109 } |
| 6110 return _cssClassSet; | 6110 return _cssClassSet; |
| 6111 } | 6111 } |
| 6112 | 6112 |
| 6113 List<Element> get children => new FilteredElementList(this); | 6113 List<Element> get children => new FilteredElementList<Element>(this); |
| 6114 | 6114 |
| 6115 void set children(List<Element> value) { | 6115 void set children(List<Element> value) { |
| 6116 final children = this.children; | 6116 final children = this.children; |
| 6117 children.clear(); | 6117 children.clear(); |
| 6118 children.addAll(value); | 6118 children.addAll(value); |
| 6119 } | 6119 } |
| 6120 | 6120 |
| 6121 String get outerHtml { | 6121 String get outerHtml { |
| 6122 final container = new Element.tag("div"); | 6122 final container = new Element.tag("div"); |
| 6123 final SvgElement cloned = this.clone(true); | 6123 final SvgElement cloned = this.clone(true); |
| (...skipping 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7876 @DocsEditable | 7876 @DocsEditable |
| 7877 @DomName('SVGVKernElement') | 7877 @DomName('SVGVKernElement') |
| 7878 abstract class _SVGVKernElement extends SvgElement { | 7878 abstract class _SVGVKernElement extends SvgElement { |
| 7879 _SVGVKernElement.internal() : super.internal(); | 7879 _SVGVKernElement.internal() : super.internal(); |
| 7880 | 7880 |
| 7881 @DomName('SVGVKernElement.SVGVKernElement') | 7881 @DomName('SVGVKernElement.SVGVKernElement') |
| 7882 @DocsEditable | 7882 @DocsEditable |
| 7883 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7883 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 7884 | 7884 |
| 7885 } | 7885 } |
| OLD | NEW |