Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 24653006: Adding Element.created constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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' hide deprecated; 5 import 'dart:_collection-dev' hide deprecated;
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 24 matching lines...) Expand all
35 @DocsEditable() 35 @DocsEditable()
36 @DomName('SVGAElement') 36 @DomName('SVGAElement')
37 @Unstable() 37 @Unstable()
38 class AElement extends GraphicsElement implements UriReference, ExternalResource sRequired { 38 class AElement extends GraphicsElement implements UriReference, ExternalResource sRequired {
39 // To suppress missing implicit constructor warnings. 39 // To suppress missing implicit constructor warnings.
40 factory AElement._() { throw new UnsupportedError("Not supported"); } 40 factory AElement._() { throw new UnsupportedError("Not supported"); }
41 41
42 @DomName('SVGAElement.SVGAElement') 42 @DomName('SVGAElement.SVGAElement')
43 @DocsEditable() 43 @DocsEditable()
44 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 44 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
45 /**
46 * Constructor instantiated by the DOM when a custom element has been created.
47 *
48 * This can only be called by subclasses from their created constructor.
49 */
50 AElement.created() : super.created();
45 51
46 @DomName('SVGAElement.target') 52 @DomName('SVGAElement.target')
47 @DocsEditable() 53 @DocsEditable()
48 AnimatedString get target native "SVGAElement_target_Getter"; 54 AnimatedString get target native "SVGAElement_target_Getter";
49 55
50 @DomName('SVGAElement.externalResourcesRequired') 56 @DomName('SVGAElement.externalResourcesRequired')
51 @DocsEditable() 57 @DocsEditable()
52 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso urcesRequired_Getter"; 58 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso urcesRequired_Getter";
53 59
54 @DomName('SVGAElement.href') 60 @DomName('SVGAElement.href')
(...skipping 14 matching lines...) Expand all
69 @SupportedBrowser(SupportedBrowser.FIREFOX) 75 @SupportedBrowser(SupportedBrowser.FIREFOX)
70 @SupportedBrowser(SupportedBrowser.SAFARI) 76 @SupportedBrowser(SupportedBrowser.SAFARI)
71 @Unstable() 77 @Unstable()
72 class AltGlyphElement extends TextPositioningElement implements UriReference { 78 class AltGlyphElement extends TextPositioningElement implements UriReference {
73 // To suppress missing implicit constructor warnings. 79 // To suppress missing implicit constructor warnings.
74 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } 80 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); }
75 81
76 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') 82 @DomName('SVGAltGlyphElement.SVGAltGlyphElement')
77 @DocsEditable() 83 @DocsEditable()
78 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph"); 84 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph");
85 /**
86 * Constructor instantiated by the DOM when a custom element has been created.
87 *
88 * This can only be called by subclasses from their created constructor.
89 */
90 AltGlyphElement.created() : super.created();
79 91
80 /// Checks if this type is supported on the current platform. 92 /// Checks if this type is supported on the current platform.
81 static bool get supported => true; 93 static bool get supported => true;
82 94
83 @DomName('SVGAltGlyphElement.format') 95 @DomName('SVGAltGlyphElement.format')
84 @DocsEditable() 96 @DocsEditable()
85 String get format native "SVGAltGlyphElement_format_Getter"; 97 String get format native "SVGAltGlyphElement_format_Getter";
86 98
87 @DomName('SVGAltGlyphElement.format') 99 @DomName('SVGAltGlyphElement.format')
88 @DocsEditable() 100 @DocsEditable()
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 @SupportedBrowser(SupportedBrowser.FIREFOX) 195 @SupportedBrowser(SupportedBrowser.FIREFOX)
184 @SupportedBrowser(SupportedBrowser.SAFARI) 196 @SupportedBrowser(SupportedBrowser.SAFARI)
185 @Unstable() 197 @Unstable()
186 class AnimateElement extends AnimationElement { 198 class AnimateElement extends AnimationElement {
187 // To suppress missing implicit constructor warnings. 199 // To suppress missing implicit constructor warnings.
188 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } 200 factory AnimateElement._() { throw new UnsupportedError("Not supported"); }
189 201
190 @DomName('SVGAnimateElement.SVGAnimateElement') 202 @DomName('SVGAnimateElement.SVGAnimateElement')
191 @DocsEditable() 203 @DocsEditable()
192 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate"); 204 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate");
205 /**
206 * Constructor instantiated by the DOM when a custom element has been created.
207 *
208 * This can only be called by subclasses from their created constructor.
209 */
210 AnimateElement.created() : super.created();
193 211
194 /// Checks if this type is supported on the current platform. 212 /// Checks if this type is supported on the current platform.
195 static bool get supported => true; 213 static bool get supported => true;
196 214
197 } 215 }
198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 216 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
199 // for details. All rights reserved. Use of this source code is governed by a 217 // for details. All rights reserved. Use of this source code is governed by a
200 // BSD-style license that can be found in the LICENSE file. 218 // BSD-style license that can be found in the LICENSE file.
201 219
202 // WARNING: Do not edit - generated code. 220 // WARNING: Do not edit - generated code.
203 221
204 222
205 @DocsEditable() 223 @DocsEditable()
206 @DomName('SVGAnimateMotionElement') 224 @DomName('SVGAnimateMotionElement')
207 @SupportedBrowser(SupportedBrowser.CHROME) 225 @SupportedBrowser(SupportedBrowser.CHROME)
208 @SupportedBrowser(SupportedBrowser.FIREFOX) 226 @SupportedBrowser(SupportedBrowser.FIREFOX)
209 @SupportedBrowser(SupportedBrowser.SAFARI) 227 @SupportedBrowser(SupportedBrowser.SAFARI)
210 @Unstable() 228 @Unstable()
211 class AnimateMotionElement extends AnimationElement { 229 class AnimateMotionElement extends AnimationElement {
212 // To suppress missing implicit constructor warnings. 230 // To suppress missing implicit constructor warnings.
213 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported") ; } 231 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported") ; }
214 232
215 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') 233 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
216 @DocsEditable() 234 @DocsEditable()
217 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion"); 235 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion");
236 /**
237 * Constructor instantiated by the DOM when a custom element has been created.
238 *
239 * This can only be called by subclasses from their created constructor.
240 */
241 AnimateMotionElement.created() : super.created();
218 242
219 /// Checks if this type is supported on the current platform. 243 /// Checks if this type is supported on the current platform.
220 static bool get supported => true; 244 static bool get supported => true;
221 245
222 } 246 }
223 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 247 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
224 // for details. All rights reserved. Use of this source code is governed by a 248 // for details. All rights reserved. Use of this source code is governed by a
225 // BSD-style license that can be found in the LICENSE file. 249 // BSD-style license that can be found in the LICENSE file.
226 250
227 // WARNING: Do not edit - generated code. 251 // WARNING: Do not edit - generated code.
228 252
229 253
230 @DocsEditable() 254 @DocsEditable()
231 @DomName('SVGAnimateTransformElement') 255 @DomName('SVGAnimateTransformElement')
232 @SupportedBrowser(SupportedBrowser.CHROME) 256 @SupportedBrowser(SupportedBrowser.CHROME)
233 @SupportedBrowser(SupportedBrowser.FIREFOX) 257 @SupportedBrowser(SupportedBrowser.FIREFOX)
234 @SupportedBrowser(SupportedBrowser.SAFARI) 258 @SupportedBrowser(SupportedBrowser.SAFARI)
235 @Unstable() 259 @Unstable()
236 class AnimateTransformElement extends AnimationElement { 260 class AnimateTransformElement extends AnimationElement {
237 // To suppress missing implicit constructor warnings. 261 // To suppress missing implicit constructor warnings.
238 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte d"); } 262 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte d"); }
239 263
240 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') 264 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
241 @DocsEditable() 265 @DocsEditable()
242 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform"); 266 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform");
267 /**
268 * Constructor instantiated by the DOM when a custom element has been created.
269 *
270 * This can only be called by subclasses from their created constructor.
271 */
272 AnimateTransformElement.created() : super.created();
243 273
244 /// Checks if this type is supported on the current platform. 274 /// Checks if this type is supported on the current platform.
245 static bool get supported => true; 275 static bool get supported => true;
246 276
247 } 277 }
248 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
249 // for details. All rights reserved. Use of this source code is governed by a 279 // for details. All rights reserved. Use of this source code is governed by a
250 // BSD-style license that can be found in the LICENSE file. 280 // BSD-style license that can be found in the LICENSE file.
251 281
252 // WARNING: Do not edit - generated code. 282 // WARNING: Do not edit - generated code.
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 @DocsEditable() 557 @DocsEditable()
528 @DomName('SVGAnimationElement') 558 @DomName('SVGAnimationElement')
529 @Unstable() 559 @Unstable()
530 class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests { 560 class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests {
531 // To suppress missing implicit constructor warnings. 561 // To suppress missing implicit constructor warnings.
532 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } 562 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
533 563
534 @DomName('SVGAnimationElement.SVGAnimationElement') 564 @DomName('SVGAnimationElement.SVGAnimationElement')
535 @DocsEditable() 565 @DocsEditable()
536 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 566 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
567 /**
568 * Constructor instantiated by the DOM when a custom element has been created.
569 *
570 * This can only be called by subclasses from their created constructor.
571 */
572 AnimationElement.created() : super.created();
537 573
538 @DomName('SVGAnimationElement.targetElement') 574 @DomName('SVGAnimationElement.targetElement')
539 @DocsEditable() 575 @DocsEditable()
540 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ; 576 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ;
541 577
542 @DomName('SVGAnimationElement.beginElement') 578 @DomName('SVGAnimationElement.beginElement')
543 @DocsEditable() 579 @DocsEditable()
544 void beginElement() native "SVGAnimationElement_beginElement_Callback"; 580 void beginElement() native "SVGAnimationElement_beginElement_Callback";
545 581
546 @DomName('SVGAnimationElement.beginElementAt') 582 @DomName('SVGAnimationElement.beginElementAt')
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 @DocsEditable() 634 @DocsEditable()
599 @DomName('SVGCircleElement') 635 @DomName('SVGCircleElement')
600 @Unstable() 636 @Unstable()
601 class CircleElement extends GraphicsElement implements ExternalResourcesRequired { 637 class CircleElement extends GraphicsElement implements ExternalResourcesRequired {
602 // To suppress missing implicit constructor warnings. 638 // To suppress missing implicit constructor warnings.
603 factory CircleElement._() { throw new UnsupportedError("Not supported"); } 639 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
604 640
605 @DomName('SVGCircleElement.SVGCircleElement') 641 @DomName('SVGCircleElement.SVGCircleElement')
606 @DocsEditable() 642 @DocsEditable()
607 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 643 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
644 /**
645 * Constructor instantiated by the DOM when a custom element has been created.
646 *
647 * This can only be called by subclasses from their created constructor.
648 */
649 CircleElement.created() : super.created();
608 650
609 @DomName('SVGCircleElement.cx') 651 @DomName('SVGCircleElement.cx')
610 @DocsEditable() 652 @DocsEditable()
611 AnimatedLength get cx native "SVGCircleElement_cx_Getter"; 653 AnimatedLength get cx native "SVGCircleElement_cx_Getter";
612 654
613 @DomName('SVGCircleElement.cy') 655 @DomName('SVGCircleElement.cy')
614 @DocsEditable() 656 @DocsEditable()
615 AnimatedLength get cy native "SVGCircleElement_cy_Getter"; 657 AnimatedLength get cy native "SVGCircleElement_cy_Getter";
616 658
617 @DomName('SVGCircleElement.r') 659 @DomName('SVGCircleElement.r')
(...skipping 15 matching lines...) Expand all
633 @DocsEditable() 675 @DocsEditable()
634 @DomName('SVGClipPathElement') 676 @DomName('SVGClipPathElement')
635 @Unstable() 677 @Unstable()
636 class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir ed { 678 class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir ed {
637 // To suppress missing implicit constructor warnings. 679 // To suppress missing implicit constructor warnings.
638 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } 680 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
639 681
640 @DomName('SVGClipPathElement.SVGClipPathElement') 682 @DomName('SVGClipPathElement.SVGClipPathElement')
641 @DocsEditable() 683 @DocsEditable()
642 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 684 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
685 /**
686 * Constructor instantiated by the DOM when a custom element has been created.
687 *
688 * This can only be called by subclasses from their created constructor.
689 */
690 ClipPathElement.created() : super.created();
643 691
644 @DomName('SVGClipPathElement.clipPathUnits') 692 @DomName('SVGClipPathElement.clipPathUnits')
645 @DocsEditable() 693 @DocsEditable()
646 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter"; 694 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter";
647 695
648 @DomName('SVGClipPathElement.externalResourcesRequired') 696 @DomName('SVGClipPathElement.externalResourcesRequired')
649 @DocsEditable() 697 @DocsEditable()
650 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter nalResourcesRequired_Getter"; 698 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter nalResourcesRequired_Getter";
651 699
652 } 700 }
653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
654 // for details. All rights reserved. Use of this source code is governed by a 702 // for details. All rights reserved. Use of this source code is governed by a
655 // BSD-style license that can be found in the LICENSE file. 703 // BSD-style license that can be found in the LICENSE file.
656 704
657 // WARNING: Do not edit - generated code. 705 // WARNING: Do not edit - generated code.
658 706
659 707
660 @DocsEditable() 708 @DocsEditable()
661 @DomName('SVGDefsElement') 709 @DomName('SVGDefsElement')
662 @Unstable() 710 @Unstable()
663 class DefsElement extends GraphicsElement implements ExternalResourcesRequired { 711 class DefsElement extends GraphicsElement implements ExternalResourcesRequired {
664 // To suppress missing implicit constructor warnings. 712 // To suppress missing implicit constructor warnings.
665 factory DefsElement._() { throw new UnsupportedError("Not supported"); } 713 factory DefsElement._() { throw new UnsupportedError("Not supported"); }
666 714
667 @DomName('SVGDefsElement.SVGDefsElement') 715 @DomName('SVGDefsElement.SVGDefsElement')
668 @DocsEditable() 716 @DocsEditable()
669 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 717 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
718 /**
719 * Constructor instantiated by the DOM when a custom element has been created.
720 *
721 * This can only be called by subclasses from their created constructor.
722 */
723 DefsElement.created() : super.created();
670 724
671 @DomName('SVGDefsElement.externalResourcesRequired') 725 @DomName('SVGDefsElement.externalResourcesRequired')
672 @DocsEditable() 726 @DocsEditable()
673 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter"; 727 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter";
674 728
675 } 729 }
676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 730 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
677 // for details. All rights reserved. Use of this source code is governed by a 731 // for details. All rights reserved. Use of this source code is governed by a
678 // BSD-style license that can be found in the LICENSE file. 732 // BSD-style license that can be found in the LICENSE file.
679 733
680 // WARNING: Do not edit - generated code. 734 // WARNING: Do not edit - generated code.
681 735
682 736
683 @DocsEditable() 737 @DocsEditable()
684 @DomName('SVGDescElement') 738 @DomName('SVGDescElement')
685 @Unstable() 739 @Unstable()
686 class DescElement extends SvgElement { 740 class DescElement extends SvgElement {
687 // To suppress missing implicit constructor warnings. 741 // To suppress missing implicit constructor warnings.
688 factory DescElement._() { throw new UnsupportedError("Not supported"); } 742 factory DescElement._() { throw new UnsupportedError("Not supported"); }
689 743
690 @DomName('SVGDescElement.SVGDescElement') 744 @DomName('SVGDescElement.SVGDescElement')
691 @DocsEditable() 745 @DocsEditable()
692 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 746 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
747 /**
748 * Constructor instantiated by the DOM when a custom element has been created.
749 *
750 * This can only be called by subclasses from their created constructor.
751 */
752 DescElement.created() : super.created();
693 753
694 } 754 }
695 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 755 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
696 // for details. All rights reserved. Use of this source code is governed by a 756 // for details. All rights reserved. Use of this source code is governed by a
697 // BSD-style license that can be found in the LICENSE file. 757 // BSD-style license that can be found in the LICENSE file.
698 758
699 // WARNING: Do not edit - generated code. 759 // WARNING: Do not edit - generated code.
700 760
701 761
702 @DocsEditable() 762 @DocsEditable()
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 @DocsEditable() 1168 @DocsEditable()
1109 @DomName('SVGEllipseElement') 1169 @DomName('SVGEllipseElement')
1110 @Unstable() 1170 @Unstable()
1111 class EllipseElement extends GraphicsElement implements ExternalResourcesRequire d { 1171 class EllipseElement extends GraphicsElement implements ExternalResourcesRequire d {
1112 // To suppress missing implicit constructor warnings. 1172 // To suppress missing implicit constructor warnings.
1113 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } 1173 factory EllipseElement._() { throw new UnsupportedError("Not supported"); }
1114 1174
1115 @DomName('SVGEllipseElement.SVGEllipseElement') 1175 @DomName('SVGEllipseElement.SVGEllipseElement')
1116 @DocsEditable() 1176 @DocsEditable()
1117 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1177 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1178 /**
1179 * Constructor instantiated by the DOM when a custom element has been created.
1180 *
1181 * This can only be called by subclasses from their created constructor.
1182 */
1183 EllipseElement.created() : super.created();
1118 1184
1119 @DomName('SVGEllipseElement.cx') 1185 @DomName('SVGEllipseElement.cx')
1120 @DocsEditable() 1186 @DocsEditable()
1121 AnimatedLength get cx native "SVGEllipseElement_cx_Getter"; 1187 AnimatedLength get cx native "SVGEllipseElement_cx_Getter";
1122 1188
1123 @DomName('SVGEllipseElement.cy') 1189 @DomName('SVGEllipseElement.cy')
1124 @DocsEditable() 1190 @DocsEditable()
1125 AnimatedLength get cy native "SVGEllipseElement_cy_Getter"; 1191 AnimatedLength get cy native "SVGEllipseElement_cy_Getter";
1126 1192
1127 @DomName('SVGEllipseElement.rx') 1193 @DomName('SVGEllipseElement.rx')
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 @SupportedBrowser(SupportedBrowser.IE, '10') 1237 @SupportedBrowser(SupportedBrowser.IE, '10')
1172 @SupportedBrowser(SupportedBrowser.SAFARI) 1238 @SupportedBrowser(SupportedBrowser.SAFARI)
1173 @Unstable() 1239 @Unstable()
1174 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes { 1240 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
1175 // To suppress missing implicit constructor warnings. 1241 // To suppress missing implicit constructor warnings.
1176 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } 1242 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); }
1177 1243
1178 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1244 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1179 @DocsEditable() 1245 @DocsEditable()
1180 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1246 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1247 /**
1248 * Constructor instantiated by the DOM when a custom element has been created.
1249 *
1250 * This can only be called by subclasses from their created constructor.
1251 */
1252 FEBlendElement.created() : super.created();
1181 1253
1182 /// Checks if this type is supported on the current platform. 1254 /// Checks if this type is supported on the current platform.
1183 static bool get supported => true; 1255 static bool get supported => true;
1184 1256
1185 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN') 1257 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
1186 @DocsEditable() 1258 @DocsEditable()
1187 static const int SVG_FEBLEND_MODE_DARKEN = 4; 1259 static const int SVG_FEBLEND_MODE_DARKEN = 4;
1188 1260
1189 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN') 1261 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN')
1190 @DocsEditable() 1262 @DocsEditable()
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 @SupportedBrowser(SupportedBrowser.IE, '10') 1325 @SupportedBrowser(SupportedBrowser.IE, '10')
1254 @SupportedBrowser(SupportedBrowser.SAFARI) 1326 @SupportedBrowser(SupportedBrowser.SAFARI)
1255 @Unstable() 1327 @Unstable()
1256 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes { 1328 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes {
1257 // To suppress missing implicit constructor warnings. 1329 // To suppress missing implicit constructor warnings.
1258 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; } 1330 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; }
1259 1331
1260 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1332 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1261 @DocsEditable() 1333 @DocsEditable()
1262 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1334 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1335 /**
1336 * Constructor instantiated by the DOM when a custom element has been created.
1337 *
1338 * This can only be called by subclasses from their created constructor.
1339 */
1340 FEColorMatrixElement.created() : super.created();
1263 1341
1264 /// Checks if this type is supported on the current platform. 1342 /// Checks if this type is supported on the current platform.
1265 static bool get supported => true; 1343 static bool get supported => true;
1266 1344
1267 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE') 1345 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
1268 @DocsEditable() 1346 @DocsEditable()
1269 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 1347 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
1270 1348
1271 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA') 1349 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA')
1272 @DocsEditable() 1350 @DocsEditable()
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 @SupportedBrowser(SupportedBrowser.IE, '10') 1409 @SupportedBrowser(SupportedBrowser.IE, '10')
1332 @SupportedBrowser(SupportedBrowser.SAFARI) 1410 @SupportedBrowser(SupportedBrowser.SAFARI)
1333 @Unstable() 1411 @Unstable()
1334 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes { 1412 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes {
1335 // To suppress missing implicit constructor warnings. 1413 // To suppress missing implicit constructor warnings.
1336 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); } 1414 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); }
1337 1415
1338 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') 1416 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
1339 @DocsEditable() 1417 @DocsEditable()
1340 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer"); 1418 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer");
1419 /**
1420 * Constructor instantiated by the DOM when a custom element has been created.
1421 *
1422 * This can only be called by subclasses from their created constructor.
1423 */
1424 FEComponentTransferElement.created() : super.created();
1341 1425
1342 /// Checks if this type is supported on the current platform. 1426 /// Checks if this type is supported on the current platform.
1343 static bool get supported => true; 1427 static bool get supported => true;
1344 1428
1345 @DomName('SVGFEComponentTransferElement.in1') 1429 @DomName('SVGFEComponentTransferElement.in1')
1346 @DocsEditable() 1430 @DocsEditable()
1347 AnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter"; 1431 AnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter";
1348 1432
1349 @DomName('SVGFEComponentTransferElement.height') 1433 @DomName('SVGFEComponentTransferElement.height')
1350 @DocsEditable() 1434 @DocsEditable()
(...skipping 22 matching lines...) Expand all
1373 1457
1374 // WARNING: Do not edit - generated code. 1458 // WARNING: Do not edit - generated code.
1375 1459
1376 1460
1377 @DocsEditable() 1461 @DocsEditable()
1378 @DomName('SVGFECompositeElement') 1462 @DomName('SVGFECompositeElement')
1379 @Unstable() 1463 @Unstable()
1380 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes { 1464 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes {
1381 // To suppress missing implicit constructor warnings. 1465 // To suppress missing implicit constructor warnings.
1382 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); } 1466 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
1467 /**
1468 * Constructor instantiated by the DOM when a custom element has been created.
1469 *
1470 * This can only be called by subclasses from their created constructor.
1471 */
1472 FECompositeElement.created() : super.created();
1383 1473
1384 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') 1474 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1385 @DocsEditable() 1475 @DocsEditable()
1386 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1476 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1387 1477
1388 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP') 1478 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1389 @DocsEditable() 1479 @DocsEditable()
1390 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1480 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1391 1481
1392 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN') 1482 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 @SupportedBrowser(SupportedBrowser.IE, '10') 1562 @SupportedBrowser(SupportedBrowser.IE, '10')
1473 @SupportedBrowser(SupportedBrowser.SAFARI) 1563 @SupportedBrowser(SupportedBrowser.SAFARI)
1474 @Unstable() 1564 @Unstable()
1475 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes { 1565 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes {
1476 // To suppress missing implicit constructor warnings. 1566 // To suppress missing implicit constructor warnings.
1477 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); } 1567 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); }
1478 1568
1479 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1569 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1480 @DocsEditable() 1570 @DocsEditable()
1481 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1571 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1572 /**
1573 * Constructor instantiated by the DOM when a custom element has been created.
1574 *
1575 * This can only be called by subclasses from their created constructor.
1576 */
1577 FEConvolveMatrixElement.created() : super.created();
1482 1578
1483 /// Checks if this type is supported on the current platform. 1579 /// Checks if this type is supported on the current platform.
1484 static bool get supported => true; 1580 static bool get supported => true;
1485 1581
1486 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE') 1582 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
1487 @DocsEditable() 1583 @DocsEditable()
1488 static const int SVG_EDGEMODE_DUPLICATE = 1; 1584 static const int SVG_EDGEMODE_DUPLICATE = 1;
1489 1585
1490 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE') 1586 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE')
1491 @DocsEditable() 1587 @DocsEditable()
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 @SupportedBrowser(SupportedBrowser.IE, '10') 1678 @SupportedBrowser(SupportedBrowser.IE, '10')
1583 @SupportedBrowser(SupportedBrowser.SAFARI) 1679 @SupportedBrowser(SupportedBrowser.SAFARI)
1584 @Unstable() 1680 @Unstable()
1585 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes { 1681 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes {
1586 // To suppress missing implicit constructor warnings. 1682 // To suppress missing implicit constructor warnings.
1587 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); } 1683 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); }
1588 1684
1589 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') 1685 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
1590 @DocsEditable() 1686 @DocsEditable()
1591 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting"); 1687 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting");
1688 /**
1689 * Constructor instantiated by the DOM when a custom element has been created.
1690 *
1691 * This can only be called by subclasses from their created constructor.
1692 */
1693 FEDiffuseLightingElement.created() : super.created();
1592 1694
1593 /// Checks if this type is supported on the current platform. 1695 /// Checks if this type is supported on the current platform.
1594 static bool get supported => true; 1696 static bool get supported => true;
1595 1697
1596 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 1698 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
1597 @DocsEditable() 1699 @DocsEditable()
1598 AnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diffuse Constant_Getter"; 1700 AnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diffuse Constant_Getter";
1599 1701
1600 @DomName('SVGFEDiffuseLightingElement.in1') 1702 @DomName('SVGFEDiffuseLightingElement.in1')
1601 @DocsEditable() 1703 @DocsEditable()
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
1648 @SupportedBrowser(SupportedBrowser.IE, '10') 1750 @SupportedBrowser(SupportedBrowser.IE, '10')
1649 @SupportedBrowser(SupportedBrowser.SAFARI) 1751 @SupportedBrowser(SupportedBrowser.SAFARI)
1650 @Unstable() 1752 @Unstable()
1651 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes { 1753 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes {
1652 // To suppress missing implicit constructor warnings. 1754 // To suppress missing implicit constructor warnings.
1653 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); } 1755 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); }
1654 1756
1655 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1757 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1656 @DocsEditable() 1758 @DocsEditable()
1657 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1759 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1760 /**
1761 * Constructor instantiated by the DOM when a custom element has been created.
1762 *
1763 * This can only be called by subclasses from their created constructor.
1764 */
1765 FEDisplacementMapElement.created() : super.created();
1658 1766
1659 /// Checks if this type is supported on the current platform. 1767 /// Checks if this type is supported on the current platform.
1660 static bool get supported => true; 1768 static bool get supported => true;
1661 1769
1662 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A') 1770 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
1663 @DocsEditable() 1771 @DocsEditable()
1664 static const int SVG_CHANNEL_A = 4; 1772 static const int SVG_CHANNEL_A = 4;
1665 1773
1666 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B') 1774 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B')
1667 @DocsEditable() 1775 @DocsEditable()
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 @SupportedBrowser(SupportedBrowser.IE, '10') 1842 @SupportedBrowser(SupportedBrowser.IE, '10')
1735 @SupportedBrowser(SupportedBrowser.SAFARI) 1843 @SupportedBrowser(SupportedBrowser.SAFARI)
1736 @Unstable() 1844 @Unstable()
1737 class FEDistantLightElement extends SvgElement { 1845 class FEDistantLightElement extends SvgElement {
1738 // To suppress missing implicit constructor warnings. 1846 // To suppress missing implicit constructor warnings.
1739 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported" ); } 1847 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported" ); }
1740 1848
1741 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') 1849 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement')
1742 @DocsEditable() 1850 @DocsEditable()
1743 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight"); 1851 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight");
1852 /**
1853 * Constructor instantiated by the DOM when a custom element has been created.
1854 *
1855 * This can only be called by subclasses from their created constructor.
1856 */
1857 FEDistantLightElement.created() : super.created();
1744 1858
1745 /// Checks if this type is supported on the current platform. 1859 /// Checks if this type is supported on the current platform.
1746 static bool get supported => true; 1860 static bool get supported => true;
1747 1861
1748 @DomName('SVGFEDistantLightElement.azimuth') 1862 @DomName('SVGFEDistantLightElement.azimuth')
1749 @DocsEditable() 1863 @DocsEditable()
1750 AnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter"; 1864 AnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter";
1751 1865
1752 @DomName('SVGFEDistantLightElement.elevation') 1866 @DomName('SVGFEDistantLightElement.elevation')
1753 @DocsEditable() 1867 @DocsEditable()
(...skipping 14 matching lines...) Expand all
1768 @SupportedBrowser(SupportedBrowser.IE, '10') 1882 @SupportedBrowser(SupportedBrowser.IE, '10')
1769 @SupportedBrowser(SupportedBrowser.SAFARI) 1883 @SupportedBrowser(SupportedBrowser.SAFARI)
1770 @Unstable() 1884 @Unstable()
1771 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes { 1885 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
1772 // To suppress missing implicit constructor warnings. 1886 // To suppress missing implicit constructor warnings.
1773 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } 1887 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); }
1774 1888
1775 @DomName('SVGFEFloodElement.SVGFEFloodElement') 1889 @DomName('SVGFEFloodElement.SVGFEFloodElement')
1776 @DocsEditable() 1890 @DocsEditable()
1777 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood"); 1891 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood");
1892 /**
1893 * Constructor instantiated by the DOM when a custom element has been created.
1894 *
1895 * This can only be called by subclasses from their created constructor.
1896 */
1897 FEFloodElement.created() : super.created();
1778 1898
1779 /// Checks if this type is supported on the current platform. 1899 /// Checks if this type is supported on the current platform.
1780 static bool get supported => true; 1900 static bool get supported => true;
1781 1901
1782 @DomName('SVGFEFloodElement.height') 1902 @DomName('SVGFEFloodElement.height')
1783 @DocsEditable() 1903 @DocsEditable()
1784 AnimatedLength get height native "SVGFEFloodElement_height_Getter"; 1904 AnimatedLength get height native "SVGFEFloodElement_height_Getter";
1785 1905
1786 @DomName('SVGFEFloodElement.result') 1906 @DomName('SVGFEFloodElement.result')
1787 @DocsEditable() 1907 @DocsEditable()
(...skipping 26 matching lines...) Expand all
1814 @SupportedBrowser(SupportedBrowser.IE, '10') 1934 @SupportedBrowser(SupportedBrowser.IE, '10')
1815 @SupportedBrowser(SupportedBrowser.SAFARI) 1935 @SupportedBrowser(SupportedBrowser.SAFARI)
1816 @Unstable() 1936 @Unstable()
1817 class FEFuncAElement extends _SVGComponentTransferFunctionElement { 1937 class FEFuncAElement extends _SVGComponentTransferFunctionElement {
1818 // To suppress missing implicit constructor warnings. 1938 // To suppress missing implicit constructor warnings.
1819 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } 1939 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); }
1820 1940
1821 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') 1941 @DomName('SVGFEFuncAElement.SVGFEFuncAElement')
1822 @DocsEditable() 1942 @DocsEditable()
1823 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA"); 1943 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA");
1944 /**
1945 * Constructor instantiated by the DOM when a custom element has been created.
1946 *
1947 * This can only be called by subclasses from their created constructor.
1948 */
1949 FEFuncAElement.created() : super.created();
1824 1950
1825 /// Checks if this type is supported on the current platform. 1951 /// Checks if this type is supported on the current platform.
1826 static bool get supported => true; 1952 static bool get supported => true;
1827 1953
1828 } 1954 }
1829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1830 // for details. All rights reserved. Use of this source code is governed by a 1956 // for details. All rights reserved. Use of this source code is governed by a
1831 // BSD-style license that can be found in the LICENSE file. 1957 // BSD-style license that can be found in the LICENSE file.
1832 1958
1833 // WARNING: Do not edit - generated code. 1959 // WARNING: Do not edit - generated code.
1834 1960
1835 1961
1836 @DocsEditable() 1962 @DocsEditable()
1837 @DomName('SVGFEFuncBElement') 1963 @DomName('SVGFEFuncBElement')
1838 @SupportedBrowser(SupportedBrowser.CHROME) 1964 @SupportedBrowser(SupportedBrowser.CHROME)
1839 @SupportedBrowser(SupportedBrowser.FIREFOX) 1965 @SupportedBrowser(SupportedBrowser.FIREFOX)
1840 @SupportedBrowser(SupportedBrowser.IE, '10') 1966 @SupportedBrowser(SupportedBrowser.IE, '10')
1841 @SupportedBrowser(SupportedBrowser.SAFARI) 1967 @SupportedBrowser(SupportedBrowser.SAFARI)
1842 @Unstable() 1968 @Unstable()
1843 class FEFuncBElement extends _SVGComponentTransferFunctionElement { 1969 class FEFuncBElement extends _SVGComponentTransferFunctionElement {
1844 // To suppress missing implicit constructor warnings. 1970 // To suppress missing implicit constructor warnings.
1845 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } 1971 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); }
1846 1972
1847 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') 1973 @DomName('SVGFEFuncBElement.SVGFEFuncBElement')
1848 @DocsEditable() 1974 @DocsEditable()
1849 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB"); 1975 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB");
1976 /**
1977 * Constructor instantiated by the DOM when a custom element has been created.
1978 *
1979 * This can only be called by subclasses from their created constructor.
1980 */
1981 FEFuncBElement.created() : super.created();
1850 1982
1851 /// Checks if this type is supported on the current platform. 1983 /// Checks if this type is supported on the current platform.
1852 static bool get supported => true; 1984 static bool get supported => true;
1853 1985
1854 } 1986 }
1855 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1856 // for details. All rights reserved. Use of this source code is governed by a 1988 // for details. All rights reserved. Use of this source code is governed by a
1857 // BSD-style license that can be found in the LICENSE file. 1989 // BSD-style license that can be found in the LICENSE file.
1858 1990
1859 // WARNING: Do not edit - generated code. 1991 // WARNING: Do not edit - generated code.
1860 1992
1861 1993
1862 @DocsEditable() 1994 @DocsEditable()
1863 @DomName('SVGFEFuncGElement') 1995 @DomName('SVGFEFuncGElement')
1864 @SupportedBrowser(SupportedBrowser.CHROME) 1996 @SupportedBrowser(SupportedBrowser.CHROME)
1865 @SupportedBrowser(SupportedBrowser.FIREFOX) 1997 @SupportedBrowser(SupportedBrowser.FIREFOX)
1866 @SupportedBrowser(SupportedBrowser.IE, '10') 1998 @SupportedBrowser(SupportedBrowser.IE, '10')
1867 @SupportedBrowser(SupportedBrowser.SAFARI) 1999 @SupportedBrowser(SupportedBrowser.SAFARI)
1868 @Unstable() 2000 @Unstable()
1869 class FEFuncGElement extends _SVGComponentTransferFunctionElement { 2001 class FEFuncGElement extends _SVGComponentTransferFunctionElement {
1870 // To suppress missing implicit constructor warnings. 2002 // To suppress missing implicit constructor warnings.
1871 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } 2003 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); }
1872 2004
1873 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') 2005 @DomName('SVGFEFuncGElement.SVGFEFuncGElement')
1874 @DocsEditable() 2006 @DocsEditable()
1875 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG"); 2007 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG");
2008 /**
2009 * Constructor instantiated by the DOM when a custom element has been created.
2010 *
2011 * This can only be called by subclasses from their created constructor.
2012 */
2013 FEFuncGElement.created() : super.created();
1876 2014
1877 /// Checks if this type is supported on the current platform. 2015 /// Checks if this type is supported on the current platform.
1878 static bool get supported => true; 2016 static bool get supported => true;
1879 2017
1880 } 2018 }
1881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2019 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1882 // for details. All rights reserved. Use of this source code is governed by a 2020 // for details. All rights reserved. Use of this source code is governed by a
1883 // BSD-style license that can be found in the LICENSE file. 2021 // BSD-style license that can be found in the LICENSE file.
1884 2022
1885 // WARNING: Do not edit - generated code. 2023 // WARNING: Do not edit - generated code.
1886 2024
1887 2025
1888 @DocsEditable() 2026 @DocsEditable()
1889 @DomName('SVGFEFuncRElement') 2027 @DomName('SVGFEFuncRElement')
1890 @SupportedBrowser(SupportedBrowser.CHROME) 2028 @SupportedBrowser(SupportedBrowser.CHROME)
1891 @SupportedBrowser(SupportedBrowser.FIREFOX) 2029 @SupportedBrowser(SupportedBrowser.FIREFOX)
1892 @SupportedBrowser(SupportedBrowser.IE, '10') 2030 @SupportedBrowser(SupportedBrowser.IE, '10')
1893 @SupportedBrowser(SupportedBrowser.SAFARI) 2031 @SupportedBrowser(SupportedBrowser.SAFARI)
1894 @Unstable() 2032 @Unstable()
1895 class FEFuncRElement extends _SVGComponentTransferFunctionElement { 2033 class FEFuncRElement extends _SVGComponentTransferFunctionElement {
1896 // To suppress missing implicit constructor warnings. 2034 // To suppress missing implicit constructor warnings.
1897 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } 2035 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); }
1898 2036
1899 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') 2037 @DomName('SVGFEFuncRElement.SVGFEFuncRElement')
1900 @DocsEditable() 2038 @DocsEditable()
1901 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR"); 2039 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR");
2040 /**
2041 * Constructor instantiated by the DOM when a custom element has been created.
2042 *
2043 * This can only be called by subclasses from their created constructor.
2044 */
2045 FEFuncRElement.created() : super.created();
1902 2046
1903 /// Checks if this type is supported on the current platform. 2047 /// Checks if this type is supported on the current platform.
1904 static bool get supported => true; 2048 static bool get supported => true;
1905 2049
1906 } 2050 }
1907 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1908 // for details. All rights reserved. Use of this source code is governed by a 2052 // for details. All rights reserved. Use of this source code is governed by a
1909 // BSD-style license that can be found in the LICENSE file. 2053 // BSD-style license that can be found in the LICENSE file.
1910 2054
1911 // WARNING: Do not edit - generated code. 2055 // WARNING: Do not edit - generated code.
1912 2056
1913 2057
1914 @DocsEditable() 2058 @DocsEditable()
1915 @DomName('SVGFEGaussianBlurElement') 2059 @DomName('SVGFEGaussianBlurElement')
1916 @SupportedBrowser(SupportedBrowser.CHROME) 2060 @SupportedBrowser(SupportedBrowser.CHROME)
1917 @SupportedBrowser(SupportedBrowser.FIREFOX) 2061 @SupportedBrowser(SupportedBrowser.FIREFOX)
1918 @SupportedBrowser(SupportedBrowser.IE, '10') 2062 @SupportedBrowser(SupportedBrowser.IE, '10')
1919 @SupportedBrowser(SupportedBrowser.SAFARI) 2063 @SupportedBrowser(SupportedBrowser.SAFARI)
1920 @Unstable() 2064 @Unstable()
1921 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes { 2065 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes {
1922 // To suppress missing implicit constructor warnings. 2066 // To suppress missing implicit constructor warnings.
1923 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); } 2067 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); }
1924 2068
1925 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') 2069 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
1926 @DocsEditable() 2070 @DocsEditable()
1927 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur"); 2071 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur");
2072 /**
2073 * Constructor instantiated by the DOM when a custom element has been created.
2074 *
2075 * This can only be called by subclasses from their created constructor.
2076 */
2077 FEGaussianBlurElement.created() : super.created();
1928 2078
1929 /// Checks if this type is supported on the current platform. 2079 /// Checks if this type is supported on the current platform.
1930 static bool get supported => true; 2080 static bool get supported => true;
1931 2081
1932 @DomName('SVGFEGaussianBlurElement.in1') 2082 @DomName('SVGFEGaussianBlurElement.in1')
1933 @DocsEditable() 2083 @DocsEditable()
1934 AnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter"; 2084 AnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter";
1935 2085
1936 @DomName('SVGFEGaussianBlurElement.stdDeviationX') 2086 @DomName('SVGFEGaussianBlurElement.stdDeviationX')
1937 @DocsEditable() 2087 @DocsEditable()
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 @SupportedBrowser(SupportedBrowser.IE, '10') 2130 @SupportedBrowser(SupportedBrowser.IE, '10')
1981 @SupportedBrowser(SupportedBrowser.SAFARI) 2131 @SupportedBrowser(SupportedBrowser.SAFARI)
1982 @Unstable() 2132 @Unstable()
1983 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired { 2133 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired {
1984 // To suppress missing implicit constructor warnings. 2134 // To suppress missing implicit constructor warnings.
1985 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } 2135 factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
1986 2136
1987 @DomName('SVGFEImageElement.SVGFEImageElement') 2137 @DomName('SVGFEImageElement.SVGFEImageElement')
1988 @DocsEditable() 2138 @DocsEditable()
1989 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 2139 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
2140 /**
2141 * Constructor instantiated by the DOM when a custom element has been created.
2142 *
2143 * This can only be called by subclasses from their created constructor.
2144 */
2145 FEImageElement.created() : super.created();
1990 2146
1991 /// Checks if this type is supported on the current platform. 2147 /// Checks if this type is supported on the current platform.
1992 static bool get supported => true; 2148 static bool get supported => true;
1993 2149
1994 @DomName('SVGFEImageElement.preserveAspectRatio') 2150 @DomName('SVGFEImageElement.preserveAspectRatio')
1995 @DocsEditable() 2151 @DocsEditable()
1996 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageElement_ preserveAspectRatio_Getter"; 2152 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageElement_ preserveAspectRatio_Getter";
1997 2153
1998 @DomName('SVGFEImageElement.externalResourcesRequired') 2154 @DomName('SVGFEImageElement.externalResourcesRequired')
1999 @DocsEditable() 2155 @DocsEditable()
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 @SupportedBrowser(SupportedBrowser.IE, '10') 2194 @SupportedBrowser(SupportedBrowser.IE, '10')
2039 @SupportedBrowser(SupportedBrowser.SAFARI) 2195 @SupportedBrowser(SupportedBrowser.SAFARI)
2040 @Unstable() 2196 @Unstable()
2041 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes { 2197 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
2042 // To suppress missing implicit constructor warnings. 2198 // To suppress missing implicit constructor warnings.
2043 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } 2199 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); }
2044 2200
2045 @DomName('SVGFEMergeElement.SVGFEMergeElement') 2201 @DomName('SVGFEMergeElement.SVGFEMergeElement')
2046 @DocsEditable() 2202 @DocsEditable()
2047 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge"); 2203 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge");
2204 /**
2205 * Constructor instantiated by the DOM when a custom element has been created.
2206 *
2207 * This can only be called by subclasses from their created constructor.
2208 */
2209 FEMergeElement.created() : super.created();
2048 2210
2049 /// Checks if this type is supported on the current platform. 2211 /// Checks if this type is supported on the current platform.
2050 static bool get supported => true; 2212 static bool get supported => true;
2051 2213
2052 @DomName('SVGFEMergeElement.height') 2214 @DomName('SVGFEMergeElement.height')
2053 @DocsEditable() 2215 @DocsEditable()
2054 AnimatedLength get height native "SVGFEMergeElement_height_Getter"; 2216 AnimatedLength get height native "SVGFEMergeElement_height_Getter";
2055 2217
2056 @DomName('SVGFEMergeElement.result') 2218 @DomName('SVGFEMergeElement.result')
2057 @DocsEditable() 2219 @DocsEditable()
(...skipping 26 matching lines...) Expand all
2084 @SupportedBrowser(SupportedBrowser.IE, '10') 2246 @SupportedBrowser(SupportedBrowser.IE, '10')
2085 @SupportedBrowser(SupportedBrowser.SAFARI) 2247 @SupportedBrowser(SupportedBrowser.SAFARI)
2086 @Unstable() 2248 @Unstable()
2087 class FEMergeNodeElement extends SvgElement { 2249 class FEMergeNodeElement extends SvgElement {
2088 // To suppress missing implicit constructor warnings. 2250 // To suppress missing implicit constructor warnings.
2089 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); } 2251 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); }
2090 2252
2091 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') 2253 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement')
2092 @DocsEditable() 2254 @DocsEditable()
2093 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode"); 2255 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode");
2256 /**
2257 * Constructor instantiated by the DOM when a custom element has been created.
2258 *
2259 * This can only be called by subclasses from their created constructor.
2260 */
2261 FEMergeNodeElement.created() : super.created();
2094 2262
2095 /// Checks if this type is supported on the current platform. 2263 /// Checks if this type is supported on the current platform.
2096 static bool get supported => true; 2264 static bool get supported => true;
2097 2265
2098 @DomName('SVGFEMergeNodeElement.in1') 2266 @DomName('SVGFEMergeNodeElement.in1')
2099 @DocsEditable() 2267 @DocsEditable()
2100 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter"; 2268 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter";
2101 2269
2102 } 2270 }
2103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2271 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2104 // for details. All rights reserved. Use of this source code is governed by a 2272 // for details. All rights reserved. Use of this source code is governed by a
2105 // BSD-style license that can be found in the LICENSE file. 2273 // BSD-style license that can be found in the LICENSE file.
2106 2274
2107 // WARNING: Do not edit - generated code. 2275 // WARNING: Do not edit - generated code.
2108 2276
2109 2277
2110 @DocsEditable() 2278 @DocsEditable()
2111 @DomName('SVGFEMorphologyElement') 2279 @DomName('SVGFEMorphologyElement')
2112 @SupportedBrowser(SupportedBrowser.CHROME) 2280 @SupportedBrowser(SupportedBrowser.CHROME)
2113 @SupportedBrowser(SupportedBrowser.FIREFOX) 2281 @SupportedBrowser(SupportedBrowser.FIREFOX)
2114 @SupportedBrowser(SupportedBrowser.IE, '10') 2282 @SupportedBrowser(SupportedBrowser.IE, '10')
2115 @SupportedBrowser(SupportedBrowser.SAFARI) 2283 @SupportedBrowser(SupportedBrowser.SAFARI)
2116 @Unstable() 2284 @Unstable()
2117 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes { 2285 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2118 // To suppress missing implicit constructor warnings. 2286 // To suppress missing implicit constructor warnings.
2119 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); } 2287 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
2288 /**
2289 * Constructor instantiated by the DOM when a custom element has been created.
2290 *
2291 * This can only be called by subclasses from their created constructor.
2292 */
2293 FEMorphologyElement.created() : super.created();
2120 2294
2121 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') 2295 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
2122 @DocsEditable() 2296 @DocsEditable()
2123 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2297 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2124 2298
2125 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2299 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2126 @DocsEditable() 2300 @DocsEditable()
2127 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2301 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2128 2302
2129 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2303 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
2185 @SupportedBrowser(SupportedBrowser.IE, '10') 2359 @SupportedBrowser(SupportedBrowser.IE, '10')
2186 @SupportedBrowser(SupportedBrowser.SAFARI) 2360 @SupportedBrowser(SupportedBrowser.SAFARI)
2187 @Unstable() 2361 @Unstable()
2188 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes { 2362 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes {
2189 // To suppress missing implicit constructor warnings. 2363 // To suppress missing implicit constructor warnings.
2190 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } 2364 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); }
2191 2365
2192 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') 2366 @DomName('SVGFEOffsetElement.SVGFEOffsetElement')
2193 @DocsEditable() 2367 @DocsEditable()
2194 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset"); 2368 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset");
2369 /**
2370 * Constructor instantiated by the DOM when a custom element has been created.
2371 *
2372 * This can only be called by subclasses from their created constructor.
2373 */
2374 FEOffsetElement.created() : super.created();
2195 2375
2196 /// Checks if this type is supported on the current platform. 2376 /// Checks if this type is supported on the current platform.
2197 static bool get supported => true; 2377 static bool get supported => true;
2198 2378
2199 @DomName('SVGFEOffsetElement.dx') 2379 @DomName('SVGFEOffsetElement.dx')
2200 @DocsEditable() 2380 @DocsEditable()
2201 AnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter"; 2381 AnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter";
2202 2382
2203 @DomName('SVGFEOffsetElement.dy') 2383 @DomName('SVGFEOffsetElement.dy')
2204 @DocsEditable() 2384 @DocsEditable()
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2243 @SupportedBrowser(SupportedBrowser.IE, '10') 2423 @SupportedBrowser(SupportedBrowser.IE, '10')
2244 @SupportedBrowser(SupportedBrowser.SAFARI) 2424 @SupportedBrowser(SupportedBrowser.SAFARI)
2245 @Unstable() 2425 @Unstable()
2246 class FEPointLightElement extends SvgElement { 2426 class FEPointLightElement extends SvgElement {
2247 // To suppress missing implicit constructor warnings. 2427 // To suppress missing implicit constructor warnings.
2248 factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); } 2428 factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); }
2249 2429
2250 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') 2430 @DomName('SVGFEPointLightElement.SVGFEPointLightElement')
2251 @DocsEditable() 2431 @DocsEditable()
2252 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight"); 2432 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight");
2433 /**
2434 * Constructor instantiated by the DOM when a custom element has been created.
2435 *
2436 * This can only be called by subclasses from their created constructor.
2437 */
2438 FEPointLightElement.created() : super.created();
2253 2439
2254 /// Checks if this type is supported on the current platform. 2440 /// Checks if this type is supported on the current platform.
2255 static bool get supported => true; 2441 static bool get supported => true;
2256 2442
2257 @DomName('SVGFEPointLightElement.x') 2443 @DomName('SVGFEPointLightElement.x')
2258 @DocsEditable() 2444 @DocsEditable()
2259 AnimatedNumber get x native "SVGFEPointLightElement_x_Getter"; 2445 AnimatedNumber get x native "SVGFEPointLightElement_x_Getter";
2260 2446
2261 @DomName('SVGFEPointLightElement.y') 2447 @DomName('SVGFEPointLightElement.y')
2262 @DocsEditable() 2448 @DocsEditable()
(...skipping 18 matching lines...) Expand all
2281 @SupportedBrowser(SupportedBrowser.IE, '10') 2467 @SupportedBrowser(SupportedBrowser.IE, '10')
2282 @SupportedBrowser(SupportedBrowser.SAFARI) 2468 @SupportedBrowser(SupportedBrowser.SAFARI)
2283 @Unstable() 2469 @Unstable()
2284 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes { 2470 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes {
2285 // To suppress missing implicit constructor warnings. 2471 // To suppress missing implicit constructor warnings.
2286 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); } 2472 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); }
2287 2473
2288 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') 2474 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
2289 @DocsEditable() 2475 @DocsEditable()
2290 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting"); 2476 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting");
2477 /**
2478 * Constructor instantiated by the DOM when a custom element has been created.
2479 *
2480 * This can only be called by subclasses from their created constructor.
2481 */
2482 FESpecularLightingElement.created() : super.created();
2291 2483
2292 /// Checks if this type is supported on the current platform. 2484 /// Checks if this type is supported on the current platform.
2293 static bool get supported => true; 2485 static bool get supported => true;
2294 2486
2295 @DomName('SVGFESpecularLightingElement.in1') 2487 @DomName('SVGFESpecularLightingElement.in1')
2296 @DocsEditable() 2488 @DocsEditable()
2297 AnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter"; 2489 AnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter";
2298 2490
2299 @DomName('SVGFESpecularLightingElement.specularConstant') 2491 @DomName('SVGFESpecularLightingElement.specularConstant')
2300 @DocsEditable() 2492 @DocsEditable()
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
2343 @SupportedBrowser(SupportedBrowser.IE, '10') 2535 @SupportedBrowser(SupportedBrowser.IE, '10')
2344 @SupportedBrowser(SupportedBrowser.SAFARI) 2536 @SupportedBrowser(SupportedBrowser.SAFARI)
2345 @Unstable() 2537 @Unstable()
2346 class FESpotLightElement extends SvgElement { 2538 class FESpotLightElement extends SvgElement {
2347 // To suppress missing implicit constructor warnings. 2539 // To suppress missing implicit constructor warnings.
2348 factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); } 2540 factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); }
2349 2541
2350 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') 2542 @DomName('SVGFESpotLightElement.SVGFESpotLightElement')
2351 @DocsEditable() 2543 @DocsEditable()
2352 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight"); 2544 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight");
2545 /**
2546 * Constructor instantiated by the DOM when a custom element has been created.
2547 *
2548 * This can only be called by subclasses from their created constructor.
2549 */
2550 FESpotLightElement.created() : super.created();
2353 2551
2354 /// Checks if this type is supported on the current platform. 2552 /// Checks if this type is supported on the current platform.
2355 static bool get supported => true; 2553 static bool get supported => true;
2356 2554
2357 @DomName('SVGFESpotLightElement.limitingConeAngle') 2555 @DomName('SVGFESpotLightElement.limitingConeAngle')
2358 @DocsEditable() 2556 @DocsEditable()
2359 AnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limitingCon eAngle_Getter"; 2557 AnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limitingCon eAngle_Getter";
2360 2558
2361 @DomName('SVGFESpotLightElement.pointsAtX') 2559 @DomName('SVGFESpotLightElement.pointsAtX')
2362 @DocsEditable() 2560 @DocsEditable()
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2401 @SupportedBrowser(SupportedBrowser.IE, '10') 2599 @SupportedBrowser(SupportedBrowser.IE, '10')
2402 @SupportedBrowser(SupportedBrowser.SAFARI) 2600 @SupportedBrowser(SupportedBrowser.SAFARI)
2403 @Unstable() 2601 @Unstable()
2404 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes { 2602 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes {
2405 // To suppress missing implicit constructor warnings. 2603 // To suppress missing implicit constructor warnings.
2406 factory FETileElement._() { throw new UnsupportedError("Not supported"); } 2604 factory FETileElement._() { throw new UnsupportedError("Not supported"); }
2407 2605
2408 @DomName('SVGFETileElement.SVGFETileElement') 2606 @DomName('SVGFETileElement.SVGFETileElement')
2409 @DocsEditable() 2607 @DocsEditable()
2410 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile"); 2608 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile");
2609 /**
2610 * Constructor instantiated by the DOM when a custom element has been created.
2611 *
2612 * This can only be called by subclasses from their created constructor.
2613 */
2614 FETileElement.created() : super.created();
2411 2615
2412 /// Checks if this type is supported on the current platform. 2616 /// Checks if this type is supported on the current platform.
2413 static bool get supported => true; 2617 static bool get supported => true;
2414 2618
2415 @DomName('SVGFETileElement.in1') 2619 @DomName('SVGFETileElement.in1')
2416 @DocsEditable() 2620 @DocsEditable()
2417 AnimatedString get in1 native "SVGFETileElement_in1_Getter"; 2621 AnimatedString get in1 native "SVGFETileElement_in1_Getter";
2418 2622
2419 @DomName('SVGFETileElement.height') 2623 @DomName('SVGFETileElement.height')
2420 @DocsEditable() 2624 @DocsEditable()
(...skipping 30 matching lines...) Expand all
2451 @SupportedBrowser(SupportedBrowser.IE, '10') 2655 @SupportedBrowser(SupportedBrowser.IE, '10')
2452 @SupportedBrowser(SupportedBrowser.SAFARI) 2656 @SupportedBrowser(SupportedBrowser.SAFARI)
2453 @Unstable() 2657 @Unstable()
2454 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes { 2658 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2455 // To suppress missing implicit constructor warnings. 2659 // To suppress missing implicit constructor warnings.
2456 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); } 2660 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); }
2457 2661
2458 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2662 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2459 @DocsEditable() 2663 @DocsEditable()
2460 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2664 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2665 /**
2666 * Constructor instantiated by the DOM when a custom element has been created.
2667 *
2668 * This can only be called by subclasses from their created constructor.
2669 */
2670 FETurbulenceElement.created() : super.created();
2461 2671
2462 /// Checks if this type is supported on the current platform. 2672 /// Checks if this type is supported on the current platform.
2463 static bool get supported => true; 2673 static bool get supported => true;
2464 2674
2465 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH') 2675 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
2466 @DocsEditable() 2676 @DocsEditable()
2467 static const int SVG_STITCHTYPE_NOSTITCH = 2; 2677 static const int SVG_STITCHTYPE_NOSTITCH = 2;
2468 2678
2469 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH') 2679 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH')
2470 @DocsEditable() 2680 @DocsEditable()
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
2545 @SupportedBrowser(SupportedBrowser.IE, '10') 2755 @SupportedBrowser(SupportedBrowser.IE, '10')
2546 @SupportedBrowser(SupportedBrowser.SAFARI) 2756 @SupportedBrowser(SupportedBrowser.SAFARI)
2547 @Unstable() 2757 @Unstable()
2548 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired { 2758 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired {
2549 // To suppress missing implicit constructor warnings. 2759 // To suppress missing implicit constructor warnings.
2550 factory FilterElement._() { throw new UnsupportedError("Not supported"); } 2760 factory FilterElement._() { throw new UnsupportedError("Not supported"); }
2551 2761
2552 @DomName('SVGFilterElement.SVGFilterElement') 2762 @DomName('SVGFilterElement.SVGFilterElement')
2553 @DocsEditable() 2763 @DocsEditable()
2554 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2764 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2765 /**
2766 * Constructor instantiated by the DOM when a custom element has been created.
2767 *
2768 * This can only be called by subclasses from their created constructor.
2769 */
2770 FilterElement.created() : super.created();
2555 2771
2556 /// Checks if this type is supported on the current platform. 2772 /// Checks if this type is supported on the current platform.
2557 static bool get supported => true; 2773 static bool get supported => true;
2558 2774
2559 @DomName('SVGFilterElement.filterResX') 2775 @DomName('SVGFilterElement.filterResX')
2560 @DocsEditable() 2776 @DocsEditable()
2561 AnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter"; 2777 AnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter";
2562 2778
2563 @DomName('SVGFilterElement.filterResY') 2779 @DomName('SVGFilterElement.filterResY')
2564 @DocsEditable() 2780 @DocsEditable()
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
2668 @SupportedBrowser(SupportedBrowser.FIREFOX) 2884 @SupportedBrowser(SupportedBrowser.FIREFOX)
2669 @SupportedBrowser(SupportedBrowser.SAFARI) 2885 @SupportedBrowser(SupportedBrowser.SAFARI)
2670 @Unstable() 2886 @Unstable()
2671 class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR equired { 2887 class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR equired {
2672 // To suppress missing implicit constructor warnings. 2888 // To suppress missing implicit constructor warnings.
2673 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; } 2889 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; }
2674 2890
2675 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') 2891 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
2676 @DocsEditable() 2892 @DocsEditable()
2677 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 2893 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
2894 /**
2895 * Constructor instantiated by the DOM when a custom element has been created.
2896 *
2897 * This can only be called by subclasses from their created constructor.
2898 */
2899 ForeignObjectElement.created() : super.created();
2678 2900
2679 /// Checks if this type is supported on the current platform. 2901 /// Checks if this type is supported on the current platform.
2680 static bool get supported => true; 2902 static bool get supported => true;
2681 2903
2682 @DomName('SVGForeignObjectElement.height') 2904 @DomName('SVGForeignObjectElement.height')
2683 @DocsEditable() 2905 @DocsEditable()
2684 AnimatedLength get height native "SVGForeignObjectElement_height_Getter"; 2906 AnimatedLength get height native "SVGForeignObjectElement_height_Getter";
2685 2907
2686 @DomName('SVGForeignObjectElement.width') 2908 @DomName('SVGForeignObjectElement.width')
2687 @DocsEditable() 2909 @DocsEditable()
(...skipping 22 matching lines...) Expand all
2710 @DocsEditable() 2932 @DocsEditable()
2711 @DomName('SVGGElement') 2933 @DomName('SVGGElement')
2712 @Unstable() 2934 @Unstable()
2713 class GElement extends GraphicsElement implements ExternalResourcesRequired { 2935 class GElement extends GraphicsElement implements ExternalResourcesRequired {
2714 // To suppress missing implicit constructor warnings. 2936 // To suppress missing implicit constructor warnings.
2715 factory GElement._() { throw new UnsupportedError("Not supported"); } 2937 factory GElement._() { throw new UnsupportedError("Not supported"); }
2716 2938
2717 @DomName('SVGGElement.SVGGElement') 2939 @DomName('SVGGElement.SVGGElement')
2718 @DocsEditable() 2940 @DocsEditable()
2719 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 2941 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
2942 /**
2943 * Constructor instantiated by the DOM when a custom element has been created.
2944 *
2945 * This can only be called by subclasses from their created constructor.
2946 */
2947 GElement.created() : super.created();
2720 2948
2721 @DomName('SVGGElement.externalResourcesRequired') 2949 @DomName('SVGGElement.externalResourcesRequired')
2722 @DocsEditable() 2950 @DocsEditable()
2723 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter"; 2951 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter";
2724 2952
2725 } 2953 }
2726 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2727 // for details. All rights reserved. Use of this source code is governed by a 2955 // for details. All rights reserved. Use of this source code is governed by a
2728 // BSD-style license that can be found in the LICENSE file. 2956 // BSD-style license that can be found in the LICENSE file.
2729 2957
2730 // WARNING: Do not edit - generated code. 2958 // WARNING: Do not edit - generated code.
2731 2959
2732 2960
2733 @DocsEditable() 2961 @DocsEditable()
2734 @DomName('SVGGraphicsElement') 2962 @DomName('SVGGraphicsElement')
2735 @Experimental() // untriaged 2963 @Experimental() // untriaged
2736 class GraphicsElement extends SvgElement implements Tests { 2964 class GraphicsElement extends SvgElement implements Tests {
2737 // To suppress missing implicit constructor warnings. 2965 // To suppress missing implicit constructor warnings.
2738 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 2966 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
2967 /**
2968 * Constructor instantiated by the DOM when a custom element has been created.
2969 *
2970 * This can only be called by subclasses from their created constructor.
2971 */
2972 GraphicsElement.created() : super.created();
2739 2973
2740 @DomName('SVGGraphicsElement.farthestViewportElement') 2974 @DomName('SVGGraphicsElement.farthestViewportElement')
2741 @DocsEditable() 2975 @DocsEditable()
2742 @Experimental() // untriaged 2976 @Experimental() // untriaged
2743 SvgElement get farthestViewportElement native "SVGGraphicsElement_farthestView portElement_Getter"; 2977 SvgElement get farthestViewportElement native "SVGGraphicsElement_farthestView portElement_Getter";
2744 2978
2745 @DomName('SVGGraphicsElement.nearestViewportElement') 2979 @DomName('SVGGraphicsElement.nearestViewportElement')
2746 @DocsEditable() 2980 @DocsEditable()
2747 @Experimental() // untriaged 2981 @Experimental() // untriaged
2748 SvgElement get nearestViewportElement native "SVGGraphicsElement_nearestViewpo rtElement_Getter"; 2982 SvgElement get nearestViewportElement native "SVGGraphicsElement_nearestViewpo rtElement_Getter";
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
2803 @DocsEditable() 3037 @DocsEditable()
2804 @DomName('SVGImageElement') 3038 @DomName('SVGImageElement')
2805 @Unstable() 3039 @Unstable()
2806 class ImageElement extends GraphicsElement implements UriReference, ExternalReso urcesRequired { 3040 class ImageElement extends GraphicsElement implements UriReference, ExternalReso urcesRequired {
2807 // To suppress missing implicit constructor warnings. 3041 // To suppress missing implicit constructor warnings.
2808 factory ImageElement._() { throw new UnsupportedError("Not supported"); } 3042 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
2809 3043
2810 @DomName('SVGImageElement.SVGImageElement') 3044 @DomName('SVGImageElement.SVGImageElement')
2811 @DocsEditable() 3045 @DocsEditable()
2812 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 3046 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3047 /**
3048 * Constructor instantiated by the DOM when a custom element has been created.
3049 *
3050 * This can only be called by subclasses from their created constructor.
3051 */
3052 ImageElement.created() : super.created();
2813 3053
2814 @DomName('SVGImageElement.height') 3054 @DomName('SVGImageElement.height')
2815 @DocsEditable() 3055 @DocsEditable()
2816 AnimatedLength get height native "SVGImageElement_height_Getter"; 3056 AnimatedLength get height native "SVGImageElement_height_Getter";
2817 3057
2818 @DomName('SVGImageElement.preserveAspectRatio') 3058 @DomName('SVGImageElement.preserveAspectRatio')
2819 @DocsEditable() 3059 @DocsEditable()
2820 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement_pr eserveAspectRatio_Getter"; 3060 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement_pr eserveAspectRatio_Getter";
2821 3061
2822 @DomName('SVGImageElement.width') 3062 @DomName('SVGImageElement.width')
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
3034 @DocsEditable() 3274 @DocsEditable()
3035 @DomName('SVGLineElement') 3275 @DomName('SVGLineElement')
3036 @Unstable() 3276 @Unstable()
3037 class LineElement extends GraphicsElement implements ExternalResourcesRequired { 3277 class LineElement extends GraphicsElement implements ExternalResourcesRequired {
3038 // To suppress missing implicit constructor warnings. 3278 // To suppress missing implicit constructor warnings.
3039 factory LineElement._() { throw new UnsupportedError("Not supported"); } 3279 factory LineElement._() { throw new UnsupportedError("Not supported"); }
3040 3280
3041 @DomName('SVGLineElement.SVGLineElement') 3281 @DomName('SVGLineElement.SVGLineElement')
3042 @DocsEditable() 3282 @DocsEditable()
3043 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3283 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3284 /**
3285 * Constructor instantiated by the DOM when a custom element has been created.
3286 *
3287 * This can only be called by subclasses from their created constructor.
3288 */
3289 LineElement.created() : super.created();
3044 3290
3045 @DomName('SVGLineElement.x1') 3291 @DomName('SVGLineElement.x1')
3046 @DocsEditable() 3292 @DocsEditable()
3047 AnimatedLength get x1 native "SVGLineElement_x1_Getter"; 3293 AnimatedLength get x1 native "SVGLineElement_x1_Getter";
3048 3294
3049 @DomName('SVGLineElement.x2') 3295 @DomName('SVGLineElement.x2')
3050 @DocsEditable() 3296 @DocsEditable()
3051 AnimatedLength get x2 native "SVGLineElement_x2_Getter"; 3297 AnimatedLength get x2 native "SVGLineElement_x2_Getter";
3052 3298
3053 @DomName('SVGLineElement.y1') 3299 @DomName('SVGLineElement.y1')
(...skipping 19 matching lines...) Expand all
3073 @DocsEditable() 3319 @DocsEditable()
3074 @DomName('SVGLinearGradientElement') 3320 @DomName('SVGLinearGradientElement')
3075 @Unstable() 3321 @Unstable()
3076 class LinearGradientElement extends _GradientElement { 3322 class LinearGradientElement extends _GradientElement {
3077 // To suppress missing implicit constructor warnings. 3323 // To suppress missing implicit constructor warnings.
3078 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); } 3324 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); }
3079 3325
3080 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3326 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
3081 @DocsEditable() 3327 @DocsEditable()
3082 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3328 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3329 /**
3330 * Constructor instantiated by the DOM when a custom element has been created.
3331 *
3332 * This can only be called by subclasses from their created constructor.
3333 */
3334 LinearGradientElement.created() : super.created();
3083 3335
3084 @DomName('SVGLinearGradientElement.x1') 3336 @DomName('SVGLinearGradientElement.x1')
3085 @DocsEditable() 3337 @DocsEditable()
3086 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; 3338 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter";
3087 3339
3088 @DomName('SVGLinearGradientElement.x2') 3340 @DomName('SVGLinearGradientElement.x2')
3089 @DocsEditable() 3341 @DocsEditable()
3090 AnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter"; 3342 AnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter";
3091 3343
3092 @DomName('SVGLinearGradientElement.y1') 3344 @DomName('SVGLinearGradientElement.y1')
(...skipping 15 matching lines...) Expand all
3108 @DocsEditable() 3360 @DocsEditable()
3109 @DomName('SVGMarkerElement') 3361 @DomName('SVGMarkerElement')
3110 @Unstable() 3362 @Unstable()
3111 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired { 3363 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired {
3112 // To suppress missing implicit constructor warnings. 3364 // To suppress missing implicit constructor warnings.
3113 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } 3365 factory MarkerElement._() { throw new UnsupportedError("Not supported"); }
3114 3366
3115 @DomName('SVGMarkerElement.SVGMarkerElement') 3367 @DomName('SVGMarkerElement.SVGMarkerElement')
3116 @DocsEditable() 3368 @DocsEditable()
3117 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3369 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3370 /**
3371 * Constructor instantiated by the DOM when a custom element has been created.
3372 *
3373 * This can only be called by subclasses from their created constructor.
3374 */
3375 MarkerElement.created() : super.created();
3118 3376
3119 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') 3377 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
3120 @DocsEditable() 3378 @DocsEditable()
3121 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3379 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
3122 3380
3123 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN') 3381 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN')
3124 @DocsEditable() 3382 @DocsEditable()
3125 static const int SVG_MARKERUNITS_UNKNOWN = 0; 3383 static const int SVG_MARKERUNITS_UNKNOWN = 0;
3126 3384
3127 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE') 3385 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE')
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
3199 @DocsEditable() 3457 @DocsEditable()
3200 @DomName('SVGMaskElement') 3458 @DomName('SVGMaskElement')
3201 @Unstable() 3459 @Unstable()
3202 class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests { 3460 class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests {
3203 // To suppress missing implicit constructor warnings. 3461 // To suppress missing implicit constructor warnings.
3204 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3462 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3205 3463
3206 @DomName('SVGMaskElement.SVGMaskElement') 3464 @DomName('SVGMaskElement.SVGMaskElement')
3207 @DocsEditable() 3465 @DocsEditable()
3208 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3466 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3467 /**
3468 * Constructor instantiated by the DOM when a custom element has been created.
3469 *
3470 * This can only be called by subclasses from their created constructor.
3471 */
3472 MaskElement.created() : super.created();
3209 3473
3210 @DomName('SVGMaskElement.height') 3474 @DomName('SVGMaskElement.height')
3211 @DocsEditable() 3475 @DocsEditable()
3212 AnimatedLength get height native "SVGMaskElement_height_Getter"; 3476 AnimatedLength get height native "SVGMaskElement_height_Getter";
3213 3477
3214 @DomName('SVGMaskElement.maskContentUnits') 3478 @DomName('SVGMaskElement.maskContentUnits')
3215 @DocsEditable() 3479 @DocsEditable()
3216 AnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContentUni ts_Getter"; 3480 AnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContentUni ts_Getter";
3217 3481
3218 @DomName('SVGMaskElement.maskUnits') 3482 @DomName('SVGMaskElement.maskUnits')
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
3363 3627
3364 // WARNING: Do not edit - generated code. 3628 // WARNING: Do not edit - generated code.
3365 3629
3366 3630
3367 @DocsEditable() 3631 @DocsEditable()
3368 @DomName('SVGMetadataElement') 3632 @DomName('SVGMetadataElement')
3369 @Unstable() 3633 @Unstable()
3370 class MetadataElement extends SvgElement { 3634 class MetadataElement extends SvgElement {
3371 // To suppress missing implicit constructor warnings. 3635 // To suppress missing implicit constructor warnings.
3372 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } 3636 factory MetadataElement._() { throw new UnsupportedError("Not supported"); }
3637 /**
3638 * Constructor instantiated by the DOM when a custom element has been created.
3639 *
3640 * This can only be called by subclasses from their created constructor.
3641 */
3642 MetadataElement.created() : super.created();
3373 3643
3374 } 3644 }
3375 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3645 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3376 // for details. All rights reserved. Use of this source code is governed by a 3646 // for details. All rights reserved. Use of this source code is governed by a
3377 // BSD-style license that can be found in the LICENSE file. 3647 // BSD-style license that can be found in the LICENSE file.
3378 3648
3379 // WARNING: Do not edit - generated code. 3649 // WARNING: Do not edit - generated code.
3380 3650
3381 3651
3382 @DocsEditable() 3652 @DocsEditable()
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
3494 @DocsEditable() 3764 @DocsEditable()
3495 @DomName('SVGPathElement') 3765 @DomName('SVGPathElement')
3496 @Unstable() 3766 @Unstable()
3497 class PathElement extends GraphicsElement implements ExternalResourcesRequired { 3767 class PathElement extends GraphicsElement implements ExternalResourcesRequired {
3498 // To suppress missing implicit constructor warnings. 3768 // To suppress missing implicit constructor warnings.
3499 factory PathElement._() { throw new UnsupportedError("Not supported"); } 3769 factory PathElement._() { throw new UnsupportedError("Not supported"); }
3500 3770
3501 @DomName('SVGPathElement.SVGPathElement') 3771 @DomName('SVGPathElement.SVGPathElement')
3502 @DocsEditable() 3772 @DocsEditable()
3503 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 3773 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
3774 /**
3775 * Constructor instantiated by the DOM when a custom element has been created.
3776 *
3777 * This can only be called by subclasses from their created constructor.
3778 */
3779 PathElement.created() : super.created();
3504 3780
3505 @DomName('SVGPathElement.animatedNormalizedPathSegList') 3781 @DomName('SVGPathElement.animatedNormalizedPathSegList')
3506 @DocsEditable() 3782 @DocsEditable()
3507 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter"; 3783 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter";
3508 3784
3509 @DomName('SVGPathElement.animatedPathSegList') 3785 @DomName('SVGPathElement.animatedPathSegList')
3510 @DocsEditable() 3786 @DocsEditable()
3511 PathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegList _Getter"; 3787 PathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegList _Getter";
3512 3788
3513 @DomName('SVGPathElement.normalizedPathSegList') 3789 @DomName('SVGPathElement.normalizedPathSegList')
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
4566 @DocsEditable() 4842 @DocsEditable()
4567 @DomName('SVGPatternElement') 4843 @DomName('SVGPatternElement')
4568 @Unstable() 4844 @Unstable()
4569 class PatternElement extends SvgElement implements FitToViewBox, UriReference, E xternalResourcesRequired, Tests { 4845 class PatternElement extends SvgElement implements FitToViewBox, UriReference, E xternalResourcesRequired, Tests {
4570 // To suppress missing implicit constructor warnings. 4846 // To suppress missing implicit constructor warnings.
4571 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 4847 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
4572 4848
4573 @DomName('SVGPatternElement.SVGPatternElement') 4849 @DomName('SVGPatternElement.SVGPatternElement')
4574 @DocsEditable() 4850 @DocsEditable()
4575 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 4851 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
4852 /**
4853 * Constructor instantiated by the DOM when a custom element has been created.
4854 *
4855 * This can only be called by subclasses from their created constructor.
4856 */
4857 PatternElement.created() : super.created();
4576 4858
4577 @DomName('SVGPatternElement.height') 4859 @DomName('SVGPatternElement.height')
4578 @DocsEditable() 4860 @DocsEditable()
4579 AnimatedLength get height native "SVGPatternElement_height_Getter"; 4861 AnimatedLength get height native "SVGPatternElement_height_Getter";
4580 4862
4581 @DomName('SVGPatternElement.patternContentUnits') 4863 @DomName('SVGPatternElement.patternContentUnits')
4582 @DocsEditable() 4864 @DocsEditable()
4583 AnimatedEnumeration get patternContentUnits native "SVGPatternElement_patternC ontentUnits_Getter"; 4865 AnimatedEnumeration get patternContentUnits native "SVGPatternElement_patternC ontentUnits_Getter";
4584 4866
4585 @DomName('SVGPatternElement.patternTransform') 4867 @DomName('SVGPatternElement.patternTransform')
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
4723 @DocsEditable() 5005 @DocsEditable()
4724 @DomName('SVGPolygonElement') 5006 @DomName('SVGPolygonElement')
4725 @Unstable() 5007 @Unstable()
4726 class PolygonElement extends GraphicsElement implements ExternalResourcesRequire d { 5008 class PolygonElement extends GraphicsElement implements ExternalResourcesRequire d {
4727 // To suppress missing implicit constructor warnings. 5009 // To suppress missing implicit constructor warnings.
4728 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } 5010 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
4729 5011
4730 @DomName('SVGPolygonElement.SVGPolygonElement') 5012 @DomName('SVGPolygonElement.SVGPolygonElement')
4731 @DocsEditable() 5013 @DocsEditable()
4732 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 5014 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
5015 /**
5016 * Constructor instantiated by the DOM when a custom element has been created.
5017 *
5018 * This can only be called by subclasses from their created constructor.
5019 */
5020 PolygonElement.created() : super.created();
4733 5021
4734 @DomName('SVGPolygonElement.animatedPoints') 5022 @DomName('SVGPolygonElement.animatedPoints')
4735 @DocsEditable() 5023 @DocsEditable()
4736 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter"; 5024 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter";
4737 5025
4738 @DomName('SVGPolygonElement.points') 5026 @DomName('SVGPolygonElement.points')
4739 @DocsEditable() 5027 @DocsEditable()
4740 PointList get points native "SVGPolygonElement_points_Getter"; 5028 PointList get points native "SVGPolygonElement_points_Getter";
4741 5029
4742 @DomName('SVGPolygonElement.externalResourcesRequired') 5030 @DomName('SVGPolygonElement.externalResourcesRequired')
(...skipping 11 matching lines...) Expand all
4754 @DocsEditable() 5042 @DocsEditable()
4755 @DomName('SVGPolylineElement') 5043 @DomName('SVGPolylineElement')
4756 @Unstable() 5044 @Unstable()
4757 class PolylineElement extends GraphicsElement implements ExternalResourcesRequir ed { 5045 class PolylineElement extends GraphicsElement implements ExternalResourcesRequir ed {
4758 // To suppress missing implicit constructor warnings. 5046 // To suppress missing implicit constructor warnings.
4759 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } 5047 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
4760 5048
4761 @DomName('SVGPolylineElement.SVGPolylineElement') 5049 @DomName('SVGPolylineElement.SVGPolylineElement')
4762 @DocsEditable() 5050 @DocsEditable()
4763 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 5051 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
5052 /**
5053 * Constructor instantiated by the DOM when a custom element has been created.
5054 *
5055 * This can only be called by subclasses from their created constructor.
5056 */
5057 PolylineElement.created() : super.created();
4764 5058
4765 @DomName('SVGPolylineElement.animatedPoints') 5059 @DomName('SVGPolylineElement.animatedPoints')
4766 @DocsEditable() 5060 @DocsEditable()
4767 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ; 5061 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ;
4768 5062
4769 @DomName('SVGPolylineElement.points') 5063 @DomName('SVGPolylineElement.points')
4770 @DocsEditable() 5064 @DocsEditable()
4771 PointList get points native "SVGPolylineElement_points_Getter"; 5065 PointList get points native "SVGPolylineElement_points_Getter";
4772 5066
4773 @DomName('SVGPolylineElement.externalResourcesRequired') 5067 @DomName('SVGPolylineElement.externalResourcesRequired')
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
4870 @DocsEditable() 5164 @DocsEditable()
4871 @DomName('SVGRadialGradientElement') 5165 @DomName('SVGRadialGradientElement')
4872 @Unstable() 5166 @Unstable()
4873 class RadialGradientElement extends _GradientElement { 5167 class RadialGradientElement extends _GradientElement {
4874 // To suppress missing implicit constructor warnings. 5168 // To suppress missing implicit constructor warnings.
4875 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); } 5169 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); }
4876 5170
4877 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 5171 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
4878 @DocsEditable() 5172 @DocsEditable()
4879 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 5173 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
5174 /**
5175 * Constructor instantiated by the DOM when a custom element has been created.
5176 *
5177 * This can only be called by subclasses from their created constructor.
5178 */
5179 RadialGradientElement.created() : super.created();
4880 5180
4881 @DomName('SVGRadialGradientElement.cx') 5181 @DomName('SVGRadialGradientElement.cx')
4882 @DocsEditable() 5182 @DocsEditable()
4883 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; 5183 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter";
4884 5184
4885 @DomName('SVGRadialGradientElement.cy') 5185 @DomName('SVGRadialGradientElement.cy')
4886 @DocsEditable() 5186 @DocsEditable()
4887 AnimatedLength get cy native "SVGRadialGradientElement_cy_Getter"; 5187 AnimatedLength get cy native "SVGRadialGradientElement_cy_Getter";
4888 5188
4889 @DomName('SVGRadialGradientElement.fr') 5189 @DomName('SVGRadialGradientElement.fr')
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
4958 @DocsEditable() 5258 @DocsEditable()
4959 @DomName('SVGRectElement') 5259 @DomName('SVGRectElement')
4960 @Unstable() 5260 @Unstable()
4961 class RectElement extends GraphicsElement implements ExternalResourcesRequired { 5261 class RectElement extends GraphicsElement implements ExternalResourcesRequired {
4962 // To suppress missing implicit constructor warnings. 5262 // To suppress missing implicit constructor warnings.
4963 factory RectElement._() { throw new UnsupportedError("Not supported"); } 5263 factory RectElement._() { throw new UnsupportedError("Not supported"); }
4964 5264
4965 @DomName('SVGRectElement.SVGRectElement') 5265 @DomName('SVGRectElement.SVGRectElement')
4966 @DocsEditable() 5266 @DocsEditable()
4967 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 5267 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5268 /**
5269 * Constructor instantiated by the DOM when a custom element has been created.
5270 *
5271 * This can only be called by subclasses from their created constructor.
5272 */
5273 RectElement.created() : super.created();
4968 5274
4969 @DomName('SVGRectElement.height') 5275 @DomName('SVGRectElement.height')
4970 @DocsEditable() 5276 @DocsEditable()
4971 AnimatedLength get height native "SVGRectElement_height_Getter"; 5277 AnimatedLength get height native "SVGRectElement_height_Getter";
4972 5278
4973 @DomName('SVGRectElement.rx') 5279 @DomName('SVGRectElement.rx')
4974 @DocsEditable() 5280 @DocsEditable()
4975 AnimatedLength get rx native "SVGRectElement_rx_Getter"; 5281 AnimatedLength get rx native "SVGRectElement_rx_Getter";
4976 5282
4977 @DomName('SVGRectElement.ry') 5283 @DomName('SVGRectElement.ry')
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
5042 @DocsEditable() 5348 @DocsEditable()
5043 @DomName('SVGScriptElement') 5349 @DomName('SVGScriptElement')
5044 @Unstable() 5350 @Unstable()
5045 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired { 5351 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired {
5046 // To suppress missing implicit constructor warnings. 5352 // To suppress missing implicit constructor warnings.
5047 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } 5353 factory ScriptElement._() { throw new UnsupportedError("Not supported"); }
5048 5354
5049 @DomName('SVGScriptElement.SVGScriptElement') 5355 @DomName('SVGScriptElement.SVGScriptElement')
5050 @DocsEditable() 5356 @DocsEditable()
5051 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 5357 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
5358 /**
5359 * Constructor instantiated by the DOM when a custom element has been created.
5360 *
5361 * This can only be called by subclasses from their created constructor.
5362 */
5363 ScriptElement.created() : super.created();
5052 5364
5053 @DomName('SVGScriptElement.type') 5365 @DomName('SVGScriptElement.type')
5054 @DocsEditable() 5366 @DocsEditable()
5055 String get type native "SVGScriptElement_type_Getter"; 5367 String get type native "SVGScriptElement_type_Getter";
5056 5368
5057 @DomName('SVGScriptElement.type') 5369 @DomName('SVGScriptElement.type')
5058 @DocsEditable() 5370 @DocsEditable()
5059 void set type(String value) native "SVGScriptElement_type_Setter"; 5371 void set type(String value) native "SVGScriptElement_type_Setter";
5060 5372
5061 @DomName('SVGScriptElement.externalResourcesRequired') 5373 @DomName('SVGScriptElement.externalResourcesRequired')
(...skipping 18 matching lines...) Expand all
5080 @SupportedBrowser(SupportedBrowser.FIREFOX) 5392 @SupportedBrowser(SupportedBrowser.FIREFOX)
5081 @SupportedBrowser(SupportedBrowser.SAFARI) 5393 @SupportedBrowser(SupportedBrowser.SAFARI)
5082 @Unstable() 5394 @Unstable()
5083 class SetElement extends AnimationElement { 5395 class SetElement extends AnimationElement {
5084 // To suppress missing implicit constructor warnings. 5396 // To suppress missing implicit constructor warnings.
5085 factory SetElement._() { throw new UnsupportedError("Not supported"); } 5397 factory SetElement._() { throw new UnsupportedError("Not supported"); }
5086 5398
5087 @DomName('SVGSetElement.SVGSetElement') 5399 @DomName('SVGSetElement.SVGSetElement')
5088 @DocsEditable() 5400 @DocsEditable()
5089 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ; 5401 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ;
5402 /**
5403 * Constructor instantiated by the DOM when a custom element has been created.
5404 *
5405 * This can only be called by subclasses from their created constructor.
5406 */
5407 SetElement.created() : super.created();
5090 5408
5091 /// Checks if this type is supported on the current platform. 5409 /// Checks if this type is supported on the current platform.
5092 static bool get supported => true; 5410 static bool get supported => true;
5093 5411
5094 } 5412 }
5095 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5413 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5096 // for details. All rights reserved. Use of this source code is governed by a 5414 // for details. All rights reserved. Use of this source code is governed by a
5097 // BSD-style license that can be found in the LICENSE file. 5415 // BSD-style license that can be found in the LICENSE file.
5098 5416
5099 // WARNING: Do not edit - generated code. 5417 // WARNING: Do not edit - generated code.
5100 5418
5101 5419
5102 @DocsEditable() 5420 @DocsEditable()
5103 @DomName('SVGStopElement') 5421 @DomName('SVGStopElement')
5104 @Unstable() 5422 @Unstable()
5105 class StopElement extends SvgElement { 5423 class StopElement extends SvgElement {
5106 // To suppress missing implicit constructor warnings. 5424 // To suppress missing implicit constructor warnings.
5107 factory StopElement._() { throw new UnsupportedError("Not supported"); } 5425 factory StopElement._() { throw new UnsupportedError("Not supported"); }
5108 5426
5109 @DomName('SVGStopElement.SVGStopElement') 5427 @DomName('SVGStopElement.SVGStopElement')
5110 @DocsEditable() 5428 @DocsEditable()
5111 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 5429 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
5430 /**
5431 * Constructor instantiated by the DOM when a custom element has been created.
5432 *
5433 * This can only be called by subclasses from their created constructor.
5434 */
5435 StopElement.created() : super.created();
5112 5436
5113 @DomName('SVGStopElement.offset') 5437 @DomName('SVGStopElement.offset')
5114 @DocsEditable() 5438 @DocsEditable()
5115 AnimatedNumber get gradientOffset native "SVGStopElement_offset_Getter"; 5439 AnimatedNumber get gradientOffset native "SVGStopElement_offset_Getter";
5116 5440
5117 } 5441 }
5118 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5119 // for details. All rights reserved. Use of this source code is governed by a 5443 // for details. All rights reserved. Use of this source code is governed by a
5120 // BSD-style license that can be found in the LICENSE file. 5444 // BSD-style license that can be found in the LICENSE file.
5121 5445
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
5217 @DomName('SVGStyleElement') 5541 @DomName('SVGStyleElement')
5218 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 5542 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
5219 @Experimental() // nonstandard 5543 @Experimental() // nonstandard
5220 class StyleElement extends SvgElement { 5544 class StyleElement extends SvgElement {
5221 // To suppress missing implicit constructor warnings. 5545 // To suppress missing implicit constructor warnings.
5222 factory StyleElement._() { throw new UnsupportedError("Not supported"); } 5546 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
5223 5547
5224 @DomName('SVGStyleElement.SVGStyleElement') 5548 @DomName('SVGStyleElement.SVGStyleElement')
5225 @DocsEditable() 5549 @DocsEditable()
5226 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 5550 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
5551 /**
5552 * Constructor instantiated by the DOM when a custom element has been created.
5553 *
5554 * This can only be called by subclasses from their created constructor.
5555 */
5556 StyleElement.created() : super.created();
5227 5557
5228 @DomName('SVGStyleElement.disabled') 5558 @DomName('SVGStyleElement.disabled')
5229 @DocsEditable() 5559 @DocsEditable()
5230 bool get disabled native "SVGStyleElement_disabled_Getter"; 5560 bool get disabled native "SVGStyleElement_disabled_Getter";
5231 5561
5232 @DomName('SVGStyleElement.disabled') 5562 @DomName('SVGStyleElement.disabled')
5233 @DocsEditable() 5563 @DocsEditable()
5234 void set disabled(bool value) native "SVGStyleElement_disabled_Setter"; 5564 void set disabled(bool value) native "SVGStyleElement_disabled_Setter";
5235 5565
5236 @DomName('SVGStyleElement.media') 5566 @DomName('SVGStyleElement.media')
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
5427 * Checks to see if the SVG element type is supported by the current platform. 5757 * Checks to see if the SVG element type is supported by the current platform.
5428 * 5758 *
5429 * The tag should be a valid SVG element tag name. 5759 * The tag should be a valid SVG element tag name.
5430 */ 5760 */
5431 static bool isTagSupported(String tag) { 5761 static bool isTagSupported(String tag) {
5432 var e = new SvgElement.tag(tag); 5762 var e = new SvgElement.tag(tag);
5433 return e is SvgElement && !(e is UnknownElement); 5763 return e is SvgElement && !(e is UnknownElement);
5434 } 5764 }
5435 // To suppress missing implicit constructor warnings. 5765 // To suppress missing implicit constructor warnings.
5436 factory SvgElement._() { throw new UnsupportedError("Not supported"); } 5766 factory SvgElement._() { throw new UnsupportedError("Not supported"); }
5767 /**
5768 * Constructor instantiated by the DOM when a custom element has been created.
5769 *
5770 * This can only be called by subclasses from their created constructor.
5771 */
5772 SvgElement.created() : super.created();
5437 5773
5438 @DomName('SVGElement.className') 5774 @DomName('SVGElement.className')
5439 @DocsEditable() 5775 @DocsEditable()
5440 @Experimental() // untriaged 5776 @Experimental() // untriaged
5441 AnimatedString get _svgClassName native "SVGElement_className_Getter"; 5777 AnimatedString get _svgClassName native "SVGElement_className_Getter";
5442 5778
5443 @DomName('SVGElement.ownerSVGElement') 5779 @DomName('SVGElement.ownerSVGElement')
5444 @DocsEditable() 5780 @DocsEditable()
5445 SvgSvgElement get ownerSvgElement native "SVGElement_ownerSVGElement_Getter"; 5781 SvgSvgElement get ownerSvgElement native "SVGElement_ownerSVGElement_Getter";
5446 5782
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
5492 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan { 5828 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan {
5493 factory SvgSvgElement() { 5829 factory SvgSvgElement() {
5494 final el = new SvgElement.tag("svg"); 5830 final el = new SvgElement.tag("svg");
5495 // The SVG spec requires the version attribute to match the spec version 5831 // The SVG spec requires the version attribute to match the spec version
5496 el.attributes['version'] = "1.1"; 5832 el.attributes['version'] = "1.1";
5497 return el; 5833 return el;
5498 } 5834 }
5499 5835
5500 // To suppress missing implicit constructor warnings. 5836 // To suppress missing implicit constructor warnings.
5501 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 5837 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
5838 /**
5839 * Constructor instantiated by the DOM when a custom element has been created.
5840 *
5841 * This can only be called by subclasses from their created constructor.
5842 */
5843 SvgSvgElement.created() : super.created();
5502 5844
5503 @DomName('SVGSVGElement.contentScriptType') 5845 @DomName('SVGSVGElement.contentScriptType')
5504 @DocsEditable() 5846 @DocsEditable()
5505 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter"; 5847 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter";
5506 5848
5507 @DomName('SVGSVGElement.contentScriptType') 5849 @DomName('SVGSVGElement.contentScriptType')
5508 @DocsEditable() 5850 @DocsEditable()
5509 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter"; 5851 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter";
5510 5852
5511 @DomName('SVGSVGElement.contentStyleType') 5853 @DomName('SVGSVGElement.contentStyleType')
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
5695 @DocsEditable() 6037 @DocsEditable()
5696 @DomName('SVGSwitchElement') 6038 @DomName('SVGSwitchElement')
5697 @Unstable() 6039 @Unstable()
5698 class SwitchElement extends GraphicsElement implements ExternalResourcesRequired { 6040 class SwitchElement extends GraphicsElement implements ExternalResourcesRequired {
5699 // To suppress missing implicit constructor warnings. 6041 // To suppress missing implicit constructor warnings.
5700 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } 6042 factory SwitchElement._() { throw new UnsupportedError("Not supported"); }
5701 6043
5702 @DomName('SVGSwitchElement.SVGSwitchElement') 6044 @DomName('SVGSwitchElement.SVGSwitchElement')
5703 @DocsEditable() 6045 @DocsEditable()
5704 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 6046 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
6047 /**
6048 * Constructor instantiated by the DOM when a custom element has been created.
6049 *
6050 * This can only be called by subclasses from their created constructor.
6051 */
6052 SwitchElement.created() : super.created();
5705 6053
5706 @DomName('SVGSwitchElement.externalResourcesRequired') 6054 @DomName('SVGSwitchElement.externalResourcesRequired')
5707 @DocsEditable() 6055 @DocsEditable()
5708 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter"; 6056 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter";
5709 6057
5710 } 6058 }
5711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5712 // for details. All rights reserved. Use of this source code is governed by a 6060 // for details. All rights reserved. Use of this source code is governed by a
5713 // BSD-style license that can be found in the LICENSE file. 6061 // BSD-style license that can be found in the LICENSE file.
5714 6062
5715 // WARNING: Do not edit - generated code. 6063 // WARNING: Do not edit - generated code.
5716 6064
5717 6065
5718 @DocsEditable() 6066 @DocsEditable()
5719 @DomName('SVGSymbolElement') 6067 @DomName('SVGSymbolElement')
5720 @Unstable() 6068 @Unstable()
5721 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired { 6069 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired {
5722 // To suppress missing implicit constructor warnings. 6070 // To suppress missing implicit constructor warnings.
5723 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } 6071 factory SymbolElement._() { throw new UnsupportedError("Not supported"); }
5724 6072
5725 @DomName('SVGSymbolElement.SVGSymbolElement') 6073 @DomName('SVGSymbolElement.SVGSymbolElement')
5726 @DocsEditable() 6074 @DocsEditable()
5727 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 6075 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6076 /**
6077 * Constructor instantiated by the DOM when a custom element has been created.
6078 *
6079 * This can only be called by subclasses from their created constructor.
6080 */
6081 SymbolElement.created() : super.created();
5728 6082
5729 @DomName('SVGSymbolElement.externalResourcesRequired') 6083 @DomName('SVGSymbolElement.externalResourcesRequired')
5730 @DocsEditable() 6084 @DocsEditable()
5731 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter"; 6085 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter";
5732 6086
5733 @DomName('SVGSymbolElement.preserveAspectRatio') 6087 @DomName('SVGSymbolElement.preserveAspectRatio')
5734 @DocsEditable() 6088 @DocsEditable()
5735 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p reserveAspectRatio_Getter"; 6089 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p reserveAspectRatio_Getter";
5736 6090
5737 @DomName('SVGSymbolElement.viewBox') 6091 @DomName('SVGSymbolElement.viewBox')
(...skipping 11 matching lines...) Expand all
5749 @DocsEditable() 6103 @DocsEditable()
5750 @DomName('SVGTSpanElement') 6104 @DomName('SVGTSpanElement')
5751 @Unstable() 6105 @Unstable()
5752 class TSpanElement extends TextPositioningElement { 6106 class TSpanElement extends TextPositioningElement {
5753 // To suppress missing implicit constructor warnings. 6107 // To suppress missing implicit constructor warnings.
5754 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } 6108 factory TSpanElement._() { throw new UnsupportedError("Not supported"); }
5755 6109
5756 @DomName('SVGTSpanElement.SVGTSpanElement') 6110 @DomName('SVGTSpanElement.SVGTSpanElement')
5757 @DocsEditable() 6111 @DocsEditable()
5758 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an"); 6112 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an");
6113 /**
6114 * Constructor instantiated by the DOM when a custom element has been created.
6115 *
6116 * This can only be called by subclasses from their created constructor.
6117 */
6118 TSpanElement.created() : super.created();
5759 6119
5760 } 6120 }
5761 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6121 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5762 // for details. All rights reserved. Use of this source code is governed by a 6122 // for details. All rights reserved. Use of this source code is governed by a
5763 // BSD-style license that can be found in the LICENSE file. 6123 // BSD-style license that can be found in the LICENSE file.
5764 6124
5765 // WARNING: Do not edit - generated code. 6125 // WARNING: Do not edit - generated code.
5766 6126
5767 6127
5768 @DocsEditable() 6128 @DocsEditable()
(...skipping 24 matching lines...) Expand all
5793 6153
5794 // WARNING: Do not edit - generated code. 6154 // WARNING: Do not edit - generated code.
5795 6155
5796 6156
5797 @DocsEditable() 6157 @DocsEditable()
5798 @DomName('SVGTextContentElement') 6158 @DomName('SVGTextContentElement')
5799 @Unstable() 6159 @Unstable()
5800 class TextContentElement extends GraphicsElement implements ExternalResourcesReq uired { 6160 class TextContentElement extends GraphicsElement implements ExternalResourcesReq uired {
5801 // To suppress missing implicit constructor warnings. 6161 // To suppress missing implicit constructor warnings.
5802 factory TextContentElement._() { throw new UnsupportedError("Not supported"); } 6162 factory TextContentElement._() { throw new UnsupportedError("Not supported"); }
6163 /**
6164 * Constructor instantiated by the DOM when a custom element has been created.
6165 *
6166 * This can only be called by subclasses from their created constructor.
6167 */
6168 TextContentElement.created() : super.created();
5803 6169
5804 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') 6170 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
5805 @DocsEditable() 6171 @DocsEditable()
5806 static const int LENGTHADJUST_SPACING = 1; 6172 static const int LENGTHADJUST_SPACING = 1;
5807 6173
5808 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 6174 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
5809 @DocsEditable() 6175 @DocsEditable()
5810 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 6176 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
5811 6177
5812 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 6178 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
5872 @DocsEditable() 6238 @DocsEditable()
5873 @DomName('SVGTextElement') 6239 @DomName('SVGTextElement')
5874 @Unstable() 6240 @Unstable()
5875 class TextElement extends TextPositioningElement { 6241 class TextElement extends TextPositioningElement {
5876 // To suppress missing implicit constructor warnings. 6242 // To suppress missing implicit constructor warnings.
5877 factory TextElement._() { throw new UnsupportedError("Not supported"); } 6243 factory TextElement._() { throw new UnsupportedError("Not supported"); }
5878 6244
5879 @DomName('SVGTextElement.SVGTextElement') 6245 @DomName('SVGTextElement.SVGTextElement')
5880 @DocsEditable() 6246 @DocsEditable()
5881 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 6247 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
6248 /**
6249 * Constructor instantiated by the DOM when a custom element has been created.
6250 *
6251 * This can only be called by subclasses from their created constructor.
6252 */
6253 TextElement.created() : super.created();
5882 6254
5883 } 6255 }
5884 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6256 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5885 // for details. All rights reserved. Use of this source code is governed by a 6257 // for details. All rights reserved. Use of this source code is governed by a
5886 // BSD-style license that can be found in the LICENSE file. 6258 // BSD-style license that can be found in the LICENSE file.
5887 6259
5888 // WARNING: Do not edit - generated code. 6260 // WARNING: Do not edit - generated code.
5889 6261
5890 6262
5891 @DocsEditable() 6263 @DocsEditable()
5892 @DomName('SVGTextPathElement') 6264 @DomName('SVGTextPathElement')
5893 @Unstable() 6265 @Unstable()
5894 class TextPathElement extends TextContentElement implements UriReference { 6266 class TextPathElement extends TextContentElement implements UriReference {
5895 // To suppress missing implicit constructor warnings. 6267 // To suppress missing implicit constructor warnings.
5896 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } 6268 factory TextPathElement._() { throw new UnsupportedError("Not supported"); }
6269 /**
6270 * Constructor instantiated by the DOM when a custom element has been created.
6271 *
6272 * This can only be called by subclasses from their created constructor.
6273 */
6274 TextPathElement.created() : super.created();
5897 6275
5898 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') 6276 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN')
5899 @DocsEditable() 6277 @DocsEditable()
5900 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 6278 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
5901 6279
5902 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH') 6280 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH')
5903 @DocsEditable() 6281 @DocsEditable()
5904 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 6282 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
5905 6283
5906 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN') 6284 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN')
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
5942 6320
5943 // WARNING: Do not edit - generated code. 6321 // WARNING: Do not edit - generated code.
5944 6322
5945 6323
5946 @DocsEditable() 6324 @DocsEditable()
5947 @DomName('SVGTextPositioningElement') 6325 @DomName('SVGTextPositioningElement')
5948 @Unstable() 6326 @Unstable()
5949 class TextPositioningElement extends TextContentElement { 6327 class TextPositioningElement extends TextContentElement {
5950 // To suppress missing implicit constructor warnings. 6328 // To suppress missing implicit constructor warnings.
5951 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); } 6329 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
6330 /**
6331 * Constructor instantiated by the DOM when a custom element has been created.
6332 *
6333 * This can only be called by subclasses from their created constructor.
6334 */
6335 TextPositioningElement.created() : super.created();
5952 6336
5953 @DomName('SVGTextPositioningElement.dx') 6337 @DomName('SVGTextPositioningElement.dx')
5954 @DocsEditable() 6338 @DocsEditable()
5955 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter"; 6339 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter";
5956 6340
5957 @DomName('SVGTextPositioningElement.dy') 6341 @DomName('SVGTextPositioningElement.dy')
5958 @DocsEditable() 6342 @DocsEditable()
5959 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter"; 6343 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter";
5960 6344
5961 @DomName('SVGTextPositioningElement.rotate') 6345 @DomName('SVGTextPositioningElement.rotate')
(...skipping 19 matching lines...) Expand all
5981 @DocsEditable() 6365 @DocsEditable()
5982 @DomName('SVGTitleElement') 6366 @DomName('SVGTitleElement')
5983 @Unstable() 6367 @Unstable()
5984 class TitleElement extends SvgElement { 6368 class TitleElement extends SvgElement {
5985 // To suppress missing implicit constructor warnings. 6369 // To suppress missing implicit constructor warnings.
5986 factory TitleElement._() { throw new UnsupportedError("Not supported"); } 6370 factory TitleElement._() { throw new UnsupportedError("Not supported"); }
5987 6371
5988 @DomName('SVGTitleElement.SVGTitleElement') 6372 @DomName('SVGTitleElement.SVGTitleElement')
5989 @DocsEditable() 6373 @DocsEditable()
5990 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 6374 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
6375 /**
6376 * Constructor instantiated by the DOM when a custom element has been created.
6377 *
6378 * This can only be called by subclasses from their created constructor.
6379 */
6380 TitleElement.created() : super.created();
5991 6381
5992 } 6382 }
5993 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5994 // for details. All rights reserved. Use of this source code is governed by a 6384 // for details. All rights reserved. Use of this source code is governed by a
5995 // BSD-style license that can be found in the LICENSE file. 6385 // BSD-style license that can be found in the LICENSE file.
5996 6386
5997 // WARNING: Do not edit - generated code. 6387 // WARNING: Do not edit - generated code.
5998 6388
5999 6389
6000 @DocsEditable() 6390 @DocsEditable()
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
6218 @DocsEditable() 6608 @DocsEditable()
6219 @DomName('SVGUseElement') 6609 @DomName('SVGUseElement')
6220 @Unstable() 6610 @Unstable()
6221 class UseElement extends GraphicsElement implements UriReference, ExternalResour cesRequired, Tests { 6611 class UseElement extends GraphicsElement implements UriReference, ExternalResour cesRequired, Tests {
6222 // To suppress missing implicit constructor warnings. 6612 // To suppress missing implicit constructor warnings.
6223 factory UseElement._() { throw new UnsupportedError("Not supported"); } 6613 factory UseElement._() { throw new UnsupportedError("Not supported"); }
6224 6614
6225 @DomName('SVGUseElement.SVGUseElement') 6615 @DomName('SVGUseElement.SVGUseElement')
6226 @DocsEditable() 6616 @DocsEditable()
6227 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 6617 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
6618 /**
6619 * Constructor instantiated by the DOM when a custom element has been created.
6620 *
6621 * This can only be called by subclasses from their created constructor.
6622 */
6623 UseElement.created() : super.created();
6228 6624
6229 @DomName('SVGUseElement.animatedInstanceRoot') 6625 @DomName('SVGUseElement.animatedInstanceRoot')
6230 @DocsEditable() 6626 @DocsEditable()
6231 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter"; 6627 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter";
6232 6628
6233 @DomName('SVGUseElement.height') 6629 @DomName('SVGUseElement.height')
6234 @DocsEditable() 6630 @DocsEditable()
6235 AnimatedLength get height native "SVGUseElement_height_Getter"; 6631 AnimatedLength get height native "SVGUseElement_height_Getter";
6236 6632
6237 @DomName('SVGUseElement.instanceRoot') 6633 @DomName('SVGUseElement.instanceRoot')
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
6285 @DocsEditable() 6681 @DocsEditable()
6286 @DomName('SVGViewElement') 6682 @DomName('SVGViewElement')
6287 @Unstable() 6683 @Unstable()
6288 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan { 6684 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan {
6289 // To suppress missing implicit constructor warnings. 6685 // To suppress missing implicit constructor warnings.
6290 factory ViewElement._() { throw new UnsupportedError("Not supported"); } 6686 factory ViewElement._() { throw new UnsupportedError("Not supported"); }
6291 6687
6292 @DomName('SVGViewElement.SVGViewElement') 6688 @DomName('SVGViewElement.SVGViewElement')
6293 @DocsEditable() 6689 @DocsEditable()
6294 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 6690 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
6691 /**
6692 * Constructor instantiated by the DOM when a custom element has been created.
6693 *
6694 * This can only be called by subclasses from their created constructor.
6695 */
6696 ViewElement.created() : super.created();
6295 6697
6296 @DomName('SVGViewElement.viewTarget') 6698 @DomName('SVGViewElement.viewTarget')
6297 @DocsEditable() 6699 @DocsEditable()
6298 StringList get viewTarget native "SVGViewElement_viewTarget_Getter"; 6700 StringList get viewTarget native "SVGViewElement_viewTarget_Getter";
6299 6701
6300 @DomName('SVGViewElement.externalResourcesRequired') 6702 @DomName('SVGViewElement.externalResourcesRequired')
6301 @DocsEditable() 6703 @DocsEditable()
6302 AnimatedBoolean get externalResourcesRequired native "SVGViewElement_externalR esourcesRequired_Getter"; 6704 AnimatedBoolean get externalResourcesRequired native "SVGViewElement_externalR esourcesRequired_Getter";
6303 6705
6304 @DomName('SVGViewElement.preserveAspectRatio') 6706 @DomName('SVGViewElement.preserveAspectRatio')
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
6515 6917
6516 // WARNING: Do not edit - generated code. 6918 // WARNING: Do not edit - generated code.
6517 6919
6518 6920
6519 @DocsEditable() 6921 @DocsEditable()
6520 @DomName('SVGGradientElement') 6922 @DomName('SVGGradientElement')
6521 @Unstable() 6923 @Unstable()
6522 class _GradientElement extends SvgElement implements UriReference, ExternalResou rcesRequired { 6924 class _GradientElement extends SvgElement implements UriReference, ExternalResou rcesRequired {
6523 // To suppress missing implicit constructor warnings. 6925 // To suppress missing implicit constructor warnings.
6524 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } 6926 factory _GradientElement._() { throw new UnsupportedError("Not supported"); }
6927 /**
6928 * Constructor instantiated by the DOM when a custom element has been created.
6929 *
6930 * This can only be called by subclasses from their created constructor.
6931 */
6932 _GradientElement.created() : super.created();
6525 6933
6526 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') 6934 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
6527 @DocsEditable() 6935 @DocsEditable()
6528 static const int SVG_SPREADMETHOD_PAD = 1; 6936 static const int SVG_SPREADMETHOD_PAD = 1;
6529 6937
6530 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') 6938 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
6531 @DocsEditable() 6939 @DocsEditable()
6532 static const int SVG_SPREADMETHOD_REFLECT = 2; 6940 static const int SVG_SPREADMETHOD_REFLECT = 2;
6533 6941
6534 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 6942 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
6566 6974
6567 // WARNING: Do not edit - generated code. 6975 // WARNING: Do not edit - generated code.
6568 6976
6569 6977
6570 @DocsEditable() 6978 @DocsEditable()
6571 @DomName('SVGAltGlyphDefElement') 6979 @DomName('SVGAltGlyphDefElement')
6572 @Unstable() 6980 @Unstable()
6573 abstract class _SVGAltGlyphDefElement extends SvgElement { 6981 abstract class _SVGAltGlyphDefElement extends SvgElement {
6574 // To suppress missing implicit constructor warnings. 6982 // To suppress missing implicit constructor warnings.
6575 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); } 6983 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); }
6984 /**
6985 * Constructor instantiated by the DOM when a custom element has been created.
6986 *
6987 * This can only be called by subclasses from their created constructor.
6988 */
6989 _SVGAltGlyphDefElement.created() : super.created();
6576 6990
6577 } 6991 }
6578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6579 // for details. All rights reserved. Use of this source code is governed by a 6993 // for details. All rights reserved. Use of this source code is governed by a
6580 // BSD-style license that can be found in the LICENSE file. 6994 // BSD-style license that can be found in the LICENSE file.
6581 6995
6582 // WARNING: Do not edit - generated code. 6996 // WARNING: Do not edit - generated code.
6583 6997
6584 6998
6585 @DocsEditable() 6999 @DocsEditable()
6586 @DomName('SVGAltGlyphItemElement') 7000 @DomName('SVGAltGlyphItemElement')
6587 @Unstable() 7001 @Unstable()
6588 abstract class _SVGAltGlyphItemElement extends SvgElement { 7002 abstract class _SVGAltGlyphItemElement extends SvgElement {
6589 // To suppress missing implicit constructor warnings. 7003 // To suppress missing implicit constructor warnings.
6590 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); } 7004 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); }
7005 /**
7006 * Constructor instantiated by the DOM when a custom element has been created.
7007 *
7008 * This can only be called by subclasses from their created constructor.
7009 */
7010 _SVGAltGlyphItemElement.created() : super.created();
6591 7011
6592 } 7012 }
6593 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7013 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6594 // for details. All rights reserved. Use of this source code is governed by a 7014 // for details. All rights reserved. Use of this source code is governed by a
6595 // BSD-style license that can be found in the LICENSE file. 7015 // BSD-style license that can be found in the LICENSE file.
6596 7016
6597 // WARNING: Do not edit - generated code. 7017 // WARNING: Do not edit - generated code.
6598 7018
6599 7019
6600 @DocsEditable() 7020 @DocsEditable()
6601 @DomName('SVGAnimateColorElement') 7021 @DomName('SVGAnimateColorElement')
6602 @Unstable() 7022 @Unstable()
6603 abstract class _SVGAnimateColorElement extends AnimationElement { 7023 abstract class _SVGAnimateColorElement extends AnimationElement {
6604 // To suppress missing implicit constructor warnings. 7024 // To suppress missing implicit constructor warnings.
6605 factory _SVGAnimateColorElement._() { throw new UnsupportedError("Not supporte d"); } 7025 factory _SVGAnimateColorElement._() { throw new UnsupportedError("Not supporte d"); }
7026 /**
7027 * Constructor instantiated by the DOM when a custom element has been created.
7028 *
7029 * This can only be called by subclasses from their created constructor.
7030 */
7031 _SVGAnimateColorElement.created() : super.created();
6606 7032
6607 } 7033 }
6608 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 7034 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
6609 // for details. All rights reserved. Use of this source code is governed by a 7035 // for details. All rights reserved. Use of this source code is governed by a
6610 // BSD-style license that can be found in the LICENSE file. 7036 // BSD-style license that can be found in the LICENSE file.
6611 7037
6612 7038
6613 // Hack because the baseclass is private in dart:html, and we want to omit this 7039 // Hack because the baseclass is private in dart:html, and we want to omit this
6614 // type entirely but can't. 7040 // type entirely but can't.
6615 @DocsEditable() 7041 @DocsEditable()
6616 @DomName('SVGColor') 7042 @DomName('SVGColor')
6617 @Unstable() 7043 @Unstable()
6618 abstract class _SVGColor { 7044 abstract class _SVGColor {
6619 _SVGColor.internal(); 7045 _SVGColor.internal();
6620 } 7046 }
6621 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7047 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6622 // for details. All rights reserved. Use of this source code is governed by a 7048 // for details. All rights reserved. Use of this source code is governed by a
6623 // BSD-style license that can be found in the LICENSE file. 7049 // BSD-style license that can be found in the LICENSE file.
6624 7050
6625 // WARNING: Do not edit - generated code. 7051 // WARNING: Do not edit - generated code.
6626 7052
6627 7053
6628 @DocsEditable() 7054 @DocsEditable()
6629 @DomName('SVGComponentTransferFunctionElement') 7055 @DomName('SVGComponentTransferFunctionElement')
6630 @Unstable() 7056 @Unstable()
6631 abstract class _SVGComponentTransferFunctionElement extends SvgElement { 7057 abstract class _SVGComponentTransferFunctionElement extends SvgElement {
6632 // To suppress missing implicit constructor warnings. 7058 // To suppress missing implicit constructor warnings.
6633 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); } 7059 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); }
7060 /**
7061 * Constructor instantiated by the DOM when a custom element has been created.
7062 *
7063 * This can only be called by subclasses from their created constructor.
7064 */
7065 _SVGComponentTransferFunctionElement.created() : super.created();
6634 7066
6635 } 7067 }
6636 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7068 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6637 // for details. All rights reserved. Use of this source code is governed by a 7069 // for details. All rights reserved. Use of this source code is governed by a
6638 // BSD-style license that can be found in the LICENSE file. 7070 // BSD-style license that can be found in the LICENSE file.
6639 7071
6640 // WARNING: Do not edit - generated code. 7072 // WARNING: Do not edit - generated code.
6641 7073
6642 7074
6643 @DocsEditable() 7075 @DocsEditable()
6644 @DomName('SVGCursorElement') 7076 @DomName('SVGCursorElement')
6645 @Unstable() 7077 @Unstable()
6646 abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext ernalResourcesRequired, Tests { 7078 abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext ernalResourcesRequired, Tests {
6647 // To suppress missing implicit constructor warnings. 7079 // To suppress missing implicit constructor warnings.
6648 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } 7080 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); }
6649 7081
6650 @DomName('SVGCursorElement.SVGCursorElement') 7082 @DomName('SVGCursorElement.SVGCursorElement')
6651 @DocsEditable() 7083 @DocsEditable()
6652 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor"); 7084 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor");
7085 /**
7086 * Constructor instantiated by the DOM when a custom element has been created.
7087 *
7088 * This can only be called by subclasses from their created constructor.
7089 */
7090 _SVGCursorElement.created() : super.created();
6653 7091
6654 /// Checks if this type is supported on the current platform. 7092 /// Checks if this type is supported on the current platform.
6655 static bool get supported => true; 7093 static bool get supported => true;
6656 7094
6657 } 7095 }
6658 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7096 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6659 // for details. All rights reserved. Use of this source code is governed by a 7097 // for details. All rights reserved. Use of this source code is governed by a
6660 // BSD-style license that can be found in the LICENSE file. 7098 // BSD-style license that can be found in the LICENSE file.
6661 7099
6662 // WARNING: Do not edit - generated code. 7100 // WARNING: Do not edit - generated code.
6663 7101
6664 7102
6665 @DocsEditable() 7103 @DocsEditable()
6666 @DomName('SVGFEDropShadowElement') 7104 @DomName('SVGFEDropShadowElement')
6667 @Experimental() // nonstandard 7105 @Experimental() // nonstandard
6668 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi tiveStandardAttributes { 7106 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi tiveStandardAttributes {
6669 // To suppress missing implicit constructor warnings. 7107 // To suppress missing implicit constructor warnings.
6670 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); } 7108 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); }
7109 /**
7110 * Constructor instantiated by the DOM when a custom element has been created.
7111 *
7112 * This can only be called by subclasses from their created constructor.
7113 */
7114 _SVGFEDropShadowElement.created() : super.created();
6671 7115
6672 } 7116 }
6673 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6674 // for details. All rights reserved. Use of this source code is governed by a 7118 // for details. All rights reserved. Use of this source code is governed by a
6675 // BSD-style license that can be found in the LICENSE file. 7119 // BSD-style license that can be found in the LICENSE file.
6676 7120
6677 // WARNING: Do not edit - generated code. 7121 // WARNING: Do not edit - generated code.
6678 7122
6679 7123
6680 @DocsEditable() 7124 @DocsEditable()
6681 @DomName('SVGFontElement') 7125 @DomName('SVGFontElement')
6682 @Unstable() 7126 @Unstable()
6683 abstract class _SVGFontElement extends SvgElement { 7127 abstract class _SVGFontElement extends SvgElement {
6684 // To suppress missing implicit constructor warnings. 7128 // To suppress missing implicit constructor warnings.
6685 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } 7129 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); }
7130 /**
7131 * Constructor instantiated by the DOM when a custom element has been created.
7132 *
7133 * This can only be called by subclasses from their created constructor.
7134 */
7135 _SVGFontElement.created() : super.created();
6686 7136
6687 } 7137 }
6688 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6689 // for details. All rights reserved. Use of this source code is governed by a 7139 // for details. All rights reserved. Use of this source code is governed by a
6690 // BSD-style license that can be found in the LICENSE file. 7140 // BSD-style license that can be found in the LICENSE file.
6691 7141
6692 // WARNING: Do not edit - generated code. 7142 // WARNING: Do not edit - generated code.
6693 7143
6694 7144
6695 @DocsEditable() 7145 @DocsEditable()
6696 @DomName('SVGFontFaceElement') 7146 @DomName('SVGFontFaceElement')
6697 @Unstable() 7147 @Unstable()
6698 abstract class _SVGFontFaceElement extends SvgElement { 7148 abstract class _SVGFontFaceElement extends SvgElement {
6699 // To suppress missing implicit constructor warnings. 7149 // To suppress missing implicit constructor warnings.
6700 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); } 7150 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); }
7151 /**
7152 * Constructor instantiated by the DOM when a custom element has been created.
7153 *
7154 * This can only be called by subclasses from their created constructor.
7155 */
7156 _SVGFontFaceElement.created() : super.created();
6701 7157
6702 } 7158 }
6703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6704 // for details. All rights reserved. Use of this source code is governed by a 7160 // for details. All rights reserved. Use of this source code is governed by a
6705 // BSD-style license that can be found in the LICENSE file. 7161 // BSD-style license that can be found in the LICENSE file.
6706 7162
6707 // WARNING: Do not edit - generated code. 7163 // WARNING: Do not edit - generated code.
6708 7164
6709 7165
6710 @DocsEditable() 7166 @DocsEditable()
6711 @DomName('SVGFontFaceFormatElement') 7167 @DomName('SVGFontFaceFormatElement')
6712 @Unstable() 7168 @Unstable()
6713 abstract class _SVGFontFaceFormatElement extends SvgElement { 7169 abstract class _SVGFontFaceFormatElement extends SvgElement {
6714 // To suppress missing implicit constructor warnings. 7170 // To suppress missing implicit constructor warnings.
6715 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); } 7171 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); }
7172 /**
7173 * Constructor instantiated by the DOM when a custom element has been created.
7174 *
7175 * This can only be called by subclasses from their created constructor.
7176 */
7177 _SVGFontFaceFormatElement.created() : super.created();
6716 7178
6717 } 7179 }
6718 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7180 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6719 // for details. All rights reserved. Use of this source code is governed by a 7181 // for details. All rights reserved. Use of this source code is governed by a
6720 // BSD-style license that can be found in the LICENSE file. 7182 // BSD-style license that can be found in the LICENSE file.
6721 7183
6722 // WARNING: Do not edit - generated code. 7184 // WARNING: Do not edit - generated code.
6723 7185
6724 7186
6725 @DocsEditable() 7187 @DocsEditable()
6726 @DomName('SVGFontFaceNameElement') 7188 @DomName('SVGFontFaceNameElement')
6727 @Unstable() 7189 @Unstable()
6728 abstract class _SVGFontFaceNameElement extends SvgElement { 7190 abstract class _SVGFontFaceNameElement extends SvgElement {
6729 // To suppress missing implicit constructor warnings. 7191 // To suppress missing implicit constructor warnings.
6730 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); } 7192 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); }
7193 /**
7194 * Constructor instantiated by the DOM when a custom element has been created.
7195 *
7196 * This can only be called by subclasses from their created constructor.
7197 */
7198 _SVGFontFaceNameElement.created() : super.created();
6731 7199
6732 } 7200 }
6733 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6734 // for details. All rights reserved. Use of this source code is governed by a 7202 // for details. All rights reserved. Use of this source code is governed by a
6735 // BSD-style license that can be found in the LICENSE file. 7203 // BSD-style license that can be found in the LICENSE file.
6736 7204
6737 // WARNING: Do not edit - generated code. 7205 // WARNING: Do not edit - generated code.
6738 7206
6739 7207
6740 @DocsEditable() 7208 @DocsEditable()
6741 @DomName('SVGFontFaceSrcElement') 7209 @DomName('SVGFontFaceSrcElement')
6742 @Unstable() 7210 @Unstable()
6743 abstract class _SVGFontFaceSrcElement extends SvgElement { 7211 abstract class _SVGFontFaceSrcElement extends SvgElement {
6744 // To suppress missing implicit constructor warnings. 7212 // To suppress missing implicit constructor warnings.
6745 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); } 7213 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); }
7214 /**
7215 * Constructor instantiated by the DOM when a custom element has been created.
7216 *
7217 * This can only be called by subclasses from their created constructor.
7218 */
7219 _SVGFontFaceSrcElement.created() : super.created();
6746 7220
6747 } 7221 }
6748 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7222 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6749 // for details. All rights reserved. Use of this source code is governed by a 7223 // for details. All rights reserved. Use of this source code is governed by a
6750 // BSD-style license that can be found in the LICENSE file. 7224 // BSD-style license that can be found in the LICENSE file.
6751 7225
6752 // WARNING: Do not edit - generated code. 7226 // WARNING: Do not edit - generated code.
6753 7227
6754 7228
6755 @DocsEditable() 7229 @DocsEditable()
6756 @DomName('SVGFontFaceUriElement') 7230 @DomName('SVGFontFaceUriElement')
6757 @Unstable() 7231 @Unstable()
6758 abstract class _SVGFontFaceUriElement extends SvgElement { 7232 abstract class _SVGFontFaceUriElement extends SvgElement {
6759 // To suppress missing implicit constructor warnings. 7233 // To suppress missing implicit constructor warnings.
6760 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); } 7234 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); }
7235 /**
7236 * Constructor instantiated by the DOM when a custom element has been created.
7237 *
7238 * This can only be called by subclasses from their created constructor.
7239 */
7240 _SVGFontFaceUriElement.created() : super.created();
6761 7241
6762 } 7242 }
6763 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7243 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6764 // for details. All rights reserved. Use of this source code is governed by a 7244 // for details. All rights reserved. Use of this source code is governed by a
6765 // BSD-style license that can be found in the LICENSE file. 7245 // BSD-style license that can be found in the LICENSE file.
6766 7246
6767 // WARNING: Do not edit - generated code. 7247 // WARNING: Do not edit - generated code.
6768 7248
6769 7249
6770 @DocsEditable() 7250 @DocsEditable()
6771 @DomName('SVGGlyphElement') 7251 @DomName('SVGGlyphElement')
6772 @Unstable() 7252 @Unstable()
6773 abstract class _SVGGlyphElement extends SvgElement { 7253 abstract class _SVGGlyphElement extends SvgElement {
6774 // To suppress missing implicit constructor warnings. 7254 // To suppress missing implicit constructor warnings.
6775 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } 7255 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); }
6776 7256
6777 @DomName('SVGGlyphElement.SVGGlyphElement') 7257 @DomName('SVGGlyphElement.SVGGlyphElement')
6778 @DocsEditable() 7258 @DocsEditable()
6779 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph"); 7259 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph");
7260 /**
7261 * Constructor instantiated by the DOM when a custom element has been created.
7262 *
7263 * This can only be called by subclasses from their created constructor.
7264 */
7265 _SVGGlyphElement.created() : super.created();
6780 7266
6781 } 7267 }
6782 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7268 // 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 7269 // 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. 7270 // BSD-style license that can be found in the LICENSE file.
6785 7271
6786 // WARNING: Do not edit - generated code. 7272 // WARNING: Do not edit - generated code.
6787 7273
6788 7274
6789 @DocsEditable() 7275 @DocsEditable()
6790 @DomName('SVGGlyphRefElement') 7276 @DomName('SVGGlyphRefElement')
6791 @Unstable() 7277 @Unstable()
6792 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { 7278 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference {
6793 // To suppress missing implicit constructor warnings. 7279 // To suppress missing implicit constructor warnings.
6794 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); } 7280 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); }
7281 /**
7282 * Constructor instantiated by the DOM when a custom element has been created.
7283 *
7284 * This can only be called by subclasses from their created constructor.
7285 */
7286 _SVGGlyphRefElement.created() : super.created();
6795 7287
6796 } 7288 }
6797 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6798 // for details. All rights reserved. Use of this source code is governed by a 7290 // for details. All rights reserved. Use of this source code is governed by a
6799 // BSD-style license that can be found in the LICENSE file. 7291 // BSD-style license that can be found in the LICENSE file.
6800 7292
6801 // WARNING: Do not edit - generated code. 7293 // WARNING: Do not edit - generated code.
6802 7294
6803 7295
6804 @DocsEditable() 7296 @DocsEditable()
6805 @DomName('SVGHKernElement') 7297 @DomName('SVGHKernElement')
6806 @Unstable() 7298 @Unstable()
6807 abstract class _SVGHKernElement extends SvgElement { 7299 abstract class _SVGHKernElement extends SvgElement {
6808 // To suppress missing implicit constructor warnings. 7300 // To suppress missing implicit constructor warnings.
6809 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } 7301 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); }
6810 7302
6811 @DomName('SVGHKernElement.SVGHKernElement') 7303 @DomName('SVGHKernElement.SVGHKernElement')
6812 @DocsEditable() 7304 @DocsEditable()
6813 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern"); 7305 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern");
7306 /**
7307 * Constructor instantiated by the DOM when a custom element has been created.
7308 *
7309 * This can only be called by subclasses from their created constructor.
7310 */
7311 _SVGHKernElement.created() : super.created();
6814 7312
6815 } 7313 }
6816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7314 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6817 // for details. All rights reserved. Use of this source code is governed by a 7315 // for details. All rights reserved. Use of this source code is governed by a
6818 // BSD-style license that can be found in the LICENSE file. 7316 // BSD-style license that can be found in the LICENSE file.
6819 7317
6820 // WARNING: Do not edit - generated code. 7318 // WARNING: Do not edit - generated code.
6821 7319
6822 7320
6823 @DocsEditable() 7321 @DocsEditable()
6824 @DomName('SVGMPathElement') 7322 @DomName('SVGMPathElement')
6825 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired { 7323 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired {
6826 // To suppress missing implicit constructor warnings. 7324 // To suppress missing implicit constructor warnings.
6827 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } 7325 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); }
6828 7326
6829 @DomName('SVGMPathElement.SVGMPathElement') 7327 @DomName('SVGMPathElement.SVGMPathElement')
6830 @DocsEditable() 7328 @DocsEditable()
6831 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath"); 7329 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath");
7330 /**
7331 * Constructor instantiated by the DOM when a custom element has been created.
7332 *
7333 * This can only be called by subclasses from their created constructor.
7334 */
7335 _SVGMPathElement.created() : super.created();
6832 7336
6833 } 7337 }
6834 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6835 // for details. All rights reserved. Use of this source code is governed by a 7339 // for details. All rights reserved. Use of this source code is governed by a
6836 // BSD-style license that can be found in the LICENSE file. 7340 // BSD-style license that can be found in the LICENSE file.
6837 7341
6838 // WARNING: Do not edit - generated code. 7342 // WARNING: Do not edit - generated code.
6839 7343
6840 7344
6841 @DocsEditable() 7345 @DocsEditable()
6842 @DomName('SVGMissingGlyphElement') 7346 @DomName('SVGMissingGlyphElement')
6843 @Unstable() 7347 @Unstable()
6844 abstract class _SVGMissingGlyphElement extends SvgElement { 7348 abstract class _SVGMissingGlyphElement extends SvgElement {
6845 // To suppress missing implicit constructor warnings. 7349 // To suppress missing implicit constructor warnings.
6846 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); } 7350 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); }
7351 /**
7352 * Constructor instantiated by the DOM when a custom element has been created.
7353 *
7354 * This can only be called by subclasses from their created constructor.
7355 */
7356 _SVGMissingGlyphElement.created() : super.created();
6847 7357
6848 } 7358 }
6849 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7359 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6850 // for details. All rights reserved. Use of this source code is governed by a 7360 // for details. All rights reserved. Use of this source code is governed by a
6851 // BSD-style license that can be found in the LICENSE file. 7361 // BSD-style license that can be found in the LICENSE file.
6852 7362
6853 // WARNING: Do not edit - generated code. 7363 // WARNING: Do not edit - generated code.
6854 7364
6855 7365
6856 @DocsEditable() 7366 @DocsEditable()
(...skipping 14 matching lines...) Expand all
6871 @DocsEditable() 7381 @DocsEditable()
6872 @DomName('SVGTRefElement') 7382 @DomName('SVGTRefElement')
6873 @Unstable() 7383 @Unstable()
6874 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence { 7384 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence {
6875 // To suppress missing implicit constructor warnings. 7385 // To suppress missing implicit constructor warnings.
6876 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); } 7386 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); }
6877 7387
6878 @DomName('SVGTRefElement.SVGTRefElement') 7388 @DomName('SVGTRefElement.SVGTRefElement')
6879 @DocsEditable() 7389 @DocsEditable()
6880 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref"); 7390 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref");
7391 /**
7392 * Constructor instantiated by the DOM when a custom element has been created.
7393 *
7394 * This can only be called by subclasses from their created constructor.
7395 */
7396 _SVGTRefElement.created() : super.created();
6881 7397
6882 } 7398 }
6883 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7399 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6884 // for details. All rights reserved. Use of this source code is governed by a 7400 // for details. All rights reserved. Use of this source code is governed by a
6885 // BSD-style license that can be found in the LICENSE file. 7401 // BSD-style license that can be found in the LICENSE file.
6886 7402
6887 // WARNING: Do not edit - generated code. 7403 // WARNING: Do not edit - generated code.
6888 7404
6889 7405
6890 @DocsEditable() 7406 @DocsEditable()
6891 @DomName('SVGVKernElement') 7407 @DomName('SVGVKernElement')
6892 @Unstable() 7408 @Unstable()
6893 abstract class _SVGVKernElement extends SvgElement { 7409 abstract class _SVGVKernElement extends SvgElement {
6894 // To suppress missing implicit constructor warnings. 7410 // To suppress missing implicit constructor warnings.
6895 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } 7411 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
6896 7412
6897 @DomName('SVGVKernElement.SVGVKernElement') 7413 @DomName('SVGVKernElement.SVGVKernElement')
6898 @DocsEditable() 7414 @DocsEditable()
6899 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7415 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7416 /**
7417 * Constructor instantiated by the DOM when a custom element has been created.
7418 *
7419 * This can only be called by subclasses from their created constructor.
7420 */
7421 _SVGVKernElement.created() : super.created();
6900 7422
6901 } 7423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698