| 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:nativewrappers'; | 7 import 'dart:nativewrappers'; |
| 8 // DO NOT EDIT | 8 // DO NOT EDIT |
| 9 // Auto-generated dart:svg library. | 9 // Auto-generated dart:svg library. |
| 10 | 10 |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 850 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; | 850 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 851 | 851 |
| 852 static const int SVG_COLORTYPE_UNKNOWN = 0; | 852 static const int SVG_COLORTYPE_UNKNOWN = 0; |
| 853 | 853 |
| 854 @DomName('SVGColor.colorType') | 854 @DomName('SVGColor.colorType') |
| 855 @DocsEditable | 855 @DocsEditable |
| 856 int get colorType native "SVGColor_colorType_Getter"; | 856 int get colorType native "SVGColor_colorType_Getter"; |
| 857 | 857 |
| 858 @DomName('SVGColor.rgbColor') | 858 @DomName('SVGColor.rgbColor') |
| 859 @DocsEditable | 859 @DocsEditable |
| 860 RgbColor get rgbColor native "SVGColor_rgbColor_Getter"; | 860 CssRgbColor get rgbColor native "SVGColor_rgbColor_Getter"; |
| 861 | 861 |
| 862 @DomName('SVGColor.setColor') | 862 @DomName('SVGColor.setColor') |
| 863 @DocsEditable | 863 @DocsEditable |
| 864 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo
r_setColor_Callback"; | 864 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo
r_setColor_Callback"; |
| 865 | 865 |
| 866 @DomName('SVGColor.setRGBColor') | 866 @DomName('SVGColor.setRGBColor') |
| 867 @DocsEditable | 867 @DocsEditable |
| 868 void setRgbColor(String rgbColor) native "SVGColor_setRGBColor_Callback"; | 868 void setRgbColor(String rgbColor) native "SVGColor_setRGBColor_Callback"; |
| 869 | 869 |
| 870 @DomName('SVGColor.setRGBColorICCColor') | 870 @DomName('SVGColor.setRGBColorICCColor') |
| (...skipping 7829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8700 @DocsEditable | 8700 @DocsEditable |
| 8701 @DomName('SVGVKernElement') | 8701 @DomName('SVGVKernElement') |
| 8702 class _SVGVKernElement extends SvgElement { | 8702 class _SVGVKernElement extends SvgElement { |
| 8703 _SVGVKernElement.internal() : super.internal(); | 8703 _SVGVKernElement.internal() : super.internal(); |
| 8704 | 8704 |
| 8705 @DomName('SVGVKernElement.SVGVKernElement') | 8705 @DomName('SVGVKernElement.SVGVKernElement') |
| 8706 @DocsEditable | 8706 @DocsEditable |
| 8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 8708 | 8708 |
| 8709 } | 8709 } |
| OLD | NEW |