| 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:html'; | 5 import 'dart:html'; |
| 6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
| 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; | 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; |
| 8 import 'dart:_foreign_helper' show JS; | 8 import 'dart:_foreign_helper' show JS; |
| 9 // DO NOT EDIT - unless you are editing documentation as per: | 9 // DO NOT EDIT - unless you are editing documentation as per: |
| 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; | 748 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 749 | 749 |
| 750 static const int SVG_COLORTYPE_UNKNOWN = 0; | 750 static const int SVG_COLORTYPE_UNKNOWN = 0; |
| 751 | 751 |
| 752 @DomName('SVGColor.colorType') | 752 @DomName('SVGColor.colorType') |
| 753 @DocsEditable | 753 @DocsEditable |
| 754 final int colorType; | 754 final int colorType; |
| 755 | 755 |
| 756 @DomName('SVGColor.rgbColor') | 756 @DomName('SVGColor.rgbColor') |
| 757 @DocsEditable | 757 @DocsEditable |
| 758 final RgbColor rgbColor; | 758 final CssRgbColor rgbColor; |
| 759 | 759 |
| 760 @DomName('SVGColor.setColor') | 760 @DomName('SVGColor.setColor') |
| 761 @DocsEditable | 761 @DocsEditable |
| 762 void setColor(int colorType, String rgbColor, String iccColor) native; | 762 void setColor(int colorType, String rgbColor, String iccColor) native; |
| 763 | 763 |
| 764 @JSName('setRGBColor') | 764 @JSName('setRGBColor') |
| 765 @DomName('SVGColor.setRGBColor') | 765 @DomName('SVGColor.setRGBColor') |
| 766 @DocsEditable | 766 @DocsEditable |
| 767 void setRgbColor(String rgbColor) native; | 767 void setRgbColor(String rgbColor) native; |
| 768 | 768 |
| (...skipping 6988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7757 | 7757 |
| 7758 | 7758 |
| 7759 @DocsEditable | 7759 @DocsEditable |
| 7760 @DomName('SVGVKernElement') | 7760 @DomName('SVGVKernElement') |
| 7761 class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { | 7761 class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { |
| 7762 | 7762 |
| 7763 @DomName('SVGVKernElement.SVGVKernElement') | 7763 @DomName('SVGVKernElement.SVGVKernElement') |
| 7764 @DocsEditable | 7764 @DocsEditable |
| 7765 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7765 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 7766 } | 7766 } |
| OLD | NEW |