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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.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 /** 1 /**
2 * Scalable Vector Graphics: 2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation. 3 * Two-dimensional vector graphics with support for events and animation.
4 * 4 *
5 * For details about the features and syntax of SVG, a W3C standard, 5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the 6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */ 8 */
9 library dart.dom.svg; 9 library dart.dom.svg;
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 @DocsEditable() 44 @DocsEditable()
45 @DomName('SVGAElement') 45 @DomName('SVGAElement')
46 @Unstable() 46 @Unstable()
47 class AElement extends GraphicsElement implements UriReference, ExternalResource sRequired native "SVGAElement" { 47 class AElement extends GraphicsElement implements UriReference, ExternalResource sRequired native "SVGAElement" {
48 // To suppress missing implicit constructor warnings. 48 // To suppress missing implicit constructor warnings.
49 factory AElement._() { throw new UnsupportedError("Not supported"); } 49 factory AElement._() { throw new UnsupportedError("Not supported"); }
50 50
51 @DomName('SVGAElement.SVGAElement') 51 @DomName('SVGAElement.SVGAElement')
52 @DocsEditable() 52 @DocsEditable()
53 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 53 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
54 /**
55 * Constructor instantiated by the DOM when a custom element has been created.
56 *
57 * This can only be called by subclasses from their created constructor.
58 */
59 AElement.created() : super.created();
54 60
55 @DomName('SVGAElement.target') 61 @DomName('SVGAElement.target')
56 @DocsEditable() 62 @DocsEditable()
57 final AnimatedString target; 63 final AnimatedString target;
58 64
59 // From SVGExternalResourcesRequired 65 // From SVGExternalResourcesRequired
60 66
61 @DomName('SVGAElement.externalResourcesRequired') 67 @DomName('SVGAElement.externalResourcesRequired')
62 @DocsEditable() 68 @DocsEditable()
63 final AnimatedBoolean externalResourcesRequired; 69 final AnimatedBoolean externalResourcesRequired;
(...skipping 15 matching lines...) Expand all
79 @SupportedBrowser(SupportedBrowser.FIREFOX) 85 @SupportedBrowser(SupportedBrowser.FIREFOX)
80 @SupportedBrowser(SupportedBrowser.SAFARI) 86 @SupportedBrowser(SupportedBrowser.SAFARI)
81 @Unstable() 87 @Unstable()
82 class AltGlyphElement extends TextPositioningElement implements UriReference nat ive "SVGAltGlyphElement" { 88 class AltGlyphElement extends TextPositioningElement implements UriReference nat ive "SVGAltGlyphElement" {
83 // To suppress missing implicit constructor warnings. 89 // To suppress missing implicit constructor warnings.
84 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } 90 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); }
85 91
86 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') 92 @DomName('SVGAltGlyphElement.SVGAltGlyphElement')
87 @DocsEditable() 93 @DocsEditable()
88 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph"); 94 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph");
95 /**
96 * Constructor instantiated by the DOM when a custom element has been created.
97 *
98 * This can only be called by subclasses from their created constructor.
99 */
100 AltGlyphElement.created() : super.created();
89 101
90 /// Checks if this type is supported on the current platform. 102 /// Checks if this type is supported on the current platform.
91 static bool get supported => SvgElement.isTagSupported('altGlyph') && (new Svg Element.tag('altGlyph') is AltGlyphElement); 103 static bool get supported => SvgElement.isTagSupported('altGlyph') && (new Svg Element.tag('altGlyph') is AltGlyphElement);
92 104
93 @DomName('SVGAltGlyphElement.format') 105 @DomName('SVGAltGlyphElement.format')
94 @DocsEditable() 106 @DocsEditable()
95 String format; 107 String format;
96 108
97 @DomName('SVGAltGlyphElement.glyphRef') 109 @DomName('SVGAltGlyphElement.glyphRef')
98 @DocsEditable() 110 @DocsEditable()
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 @SupportedBrowser(SupportedBrowser.FIREFOX) 181 @SupportedBrowser(SupportedBrowser.FIREFOX)
170 @SupportedBrowser(SupportedBrowser.SAFARI) 182 @SupportedBrowser(SupportedBrowser.SAFARI)
171 @Unstable() 183 @Unstable()
172 class AnimateElement extends AnimationElement native "SVGAnimateElement" { 184 class AnimateElement extends AnimationElement native "SVGAnimateElement" {
173 // To suppress missing implicit constructor warnings. 185 // To suppress missing implicit constructor warnings.
174 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } 186 factory AnimateElement._() { throw new UnsupportedError("Not supported"); }
175 187
176 @DomName('SVGAnimateElement.SVGAnimateElement') 188 @DomName('SVGAnimateElement.SVGAnimateElement')
177 @DocsEditable() 189 @DocsEditable()
178 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate"); 190 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate");
191 /**
192 * Constructor instantiated by the DOM when a custom element has been created.
193 *
194 * This can only be called by subclasses from their created constructor.
195 */
196 AnimateElement.created() : super.created();
179 197
180 /// Checks if this type is supported on the current platform. 198 /// Checks if this type is supported on the current platform.
181 static bool get supported => SvgElement.isTagSupported('animate') && (new SvgE lement.tag('animate') is AnimateElement); 199 static bool get supported => SvgElement.isTagSupported('animate') && (new SvgE lement.tag('animate') is AnimateElement);
182 } 200 }
183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
184 // for details. All rights reserved. Use of this source code is governed by a 202 // for details. All rights reserved. Use of this source code is governed by a
185 // BSD-style license that can be found in the LICENSE file. 203 // BSD-style license that can be found in the LICENSE file.
186 204
187 205
188 @DocsEditable() 206 @DocsEditable()
189 @DomName('SVGAnimateMotionElement') 207 @DomName('SVGAnimateMotionElement')
190 @SupportedBrowser(SupportedBrowser.CHROME) 208 @SupportedBrowser(SupportedBrowser.CHROME)
191 @SupportedBrowser(SupportedBrowser.FIREFOX) 209 @SupportedBrowser(SupportedBrowser.FIREFOX)
192 @SupportedBrowser(SupportedBrowser.SAFARI) 210 @SupportedBrowser(SupportedBrowser.SAFARI)
193 @Unstable() 211 @Unstable()
194 class AnimateMotionElement extends AnimationElement native "SVGAnimateMotionElem ent" { 212 class AnimateMotionElement extends AnimationElement native "SVGAnimateMotionElem ent" {
195 // To suppress missing implicit constructor warnings. 213 // To suppress missing implicit constructor warnings.
196 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported") ; } 214 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported") ; }
197 215
198 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') 216 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
199 @DocsEditable() 217 @DocsEditable()
200 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion"); 218 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion");
219 /**
220 * Constructor instantiated by the DOM when a custom element has been created.
221 *
222 * This can only be called by subclasses from their created constructor.
223 */
224 AnimateMotionElement.created() : super.created();
201 225
202 /// Checks if this type is supported on the current platform. 226 /// Checks if this type is supported on the current platform.
203 static bool get supported => SvgElement.isTagSupported('animateMotion') && (ne w SvgElement.tag('animateMotion') is AnimateMotionElement); 227 static bool get supported => SvgElement.isTagSupported('animateMotion') && (ne w SvgElement.tag('animateMotion') is AnimateMotionElement);
204 } 228 }
205 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
206 // for details. All rights reserved. Use of this source code is governed by a 230 // for details. All rights reserved. Use of this source code is governed by a
207 // BSD-style license that can be found in the LICENSE file. 231 // BSD-style license that can be found in the LICENSE file.
208 232
209 233
210 @DocsEditable() 234 @DocsEditable()
211 @DomName('SVGAnimateTransformElement') 235 @DomName('SVGAnimateTransformElement')
212 @SupportedBrowser(SupportedBrowser.CHROME) 236 @SupportedBrowser(SupportedBrowser.CHROME)
213 @SupportedBrowser(SupportedBrowser.FIREFOX) 237 @SupportedBrowser(SupportedBrowser.FIREFOX)
214 @SupportedBrowser(SupportedBrowser.SAFARI) 238 @SupportedBrowser(SupportedBrowser.SAFARI)
215 @Unstable() 239 @Unstable()
216 class AnimateTransformElement extends AnimationElement native "SVGAnimateTransfo rmElement" { 240 class AnimateTransformElement extends AnimationElement native "SVGAnimateTransfo rmElement" {
217 // To suppress missing implicit constructor warnings. 241 // To suppress missing implicit constructor warnings.
218 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte d"); } 242 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte d"); }
219 243
220 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') 244 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
221 @DocsEditable() 245 @DocsEditable()
222 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform"); 246 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform");
247 /**
248 * Constructor instantiated by the DOM when a custom element has been created.
249 *
250 * This can only be called by subclasses from their created constructor.
251 */
252 AnimateTransformElement.created() : super.created();
223 253
224 /// Checks if this type is supported on the current platform. 254 /// Checks if this type is supported on the current platform.
225 static bool get supported => SvgElement.isTagSupported('animateTransform') && (new SvgElement.tag('animateTransform') is AnimateTransformElement); 255 static bool get supported => SvgElement.isTagSupported('animateTransform') && (new SvgElement.tag('animateTransform') is AnimateTransformElement);
226 } 256 }
227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
228 // for details. All rights reserved. Use of this source code is governed by a 258 // for details. All rights reserved. Use of this source code is governed by a
229 // BSD-style license that can be found in the LICENSE file. 259 // BSD-style license that can be found in the LICENSE file.
230 260
231 261
232 @DocsEditable() 262 @DocsEditable()
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 @DocsEditable() 478 @DocsEditable()
449 @DomName('SVGAnimationElement') 479 @DomName('SVGAnimationElement')
450 @Unstable() 480 @Unstable()
451 class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests native "SVGAnimationElement" { 481 class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests native "SVGAnimationElement" {
452 // To suppress missing implicit constructor warnings. 482 // To suppress missing implicit constructor warnings.
453 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } 483 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
454 484
455 @DomName('SVGAnimationElement.SVGAnimationElement') 485 @DomName('SVGAnimationElement.SVGAnimationElement')
456 @DocsEditable() 486 @DocsEditable()
457 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 487 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
488 /**
489 * Constructor instantiated by the DOM when a custom element has been created.
490 *
491 * This can only be called by subclasses from their created constructor.
492 */
493 AnimationElement.created() : super.created();
458 494
459 @DomName('SVGAnimationElement.targetElement') 495 @DomName('SVGAnimationElement.targetElement')
460 @DocsEditable() 496 @DocsEditable()
461 final SvgElement targetElement; 497 final SvgElement targetElement;
462 498
463 @DomName('SVGAnimationElement.beginElement') 499 @DomName('SVGAnimationElement.beginElement')
464 @DocsEditable() 500 @DocsEditable()
465 void beginElement() native; 501 void beginElement() native;
466 502
467 @DomName('SVGAnimationElement.beginElementAt') 503 @DomName('SVGAnimationElement.beginElementAt')
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 @DocsEditable() 556 @DocsEditable()
521 @DomName('SVGCircleElement') 557 @DomName('SVGCircleElement')
522 @Unstable() 558 @Unstable()
523 class CircleElement extends GraphicsElement implements ExternalResourcesRequired native "SVGCircleElement" { 559 class CircleElement extends GraphicsElement implements ExternalResourcesRequired native "SVGCircleElement" {
524 // To suppress missing implicit constructor warnings. 560 // To suppress missing implicit constructor warnings.
525 factory CircleElement._() { throw new UnsupportedError("Not supported"); } 561 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
526 562
527 @DomName('SVGCircleElement.SVGCircleElement') 563 @DomName('SVGCircleElement.SVGCircleElement')
528 @DocsEditable() 564 @DocsEditable()
529 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 565 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
566 /**
567 * Constructor instantiated by the DOM when a custom element has been created.
568 *
569 * This can only be called by subclasses from their created constructor.
570 */
571 CircleElement.created() : super.created();
530 572
531 @DomName('SVGCircleElement.cx') 573 @DomName('SVGCircleElement.cx')
532 @DocsEditable() 574 @DocsEditable()
533 final AnimatedLength cx; 575 final AnimatedLength cx;
534 576
535 @DomName('SVGCircleElement.cy') 577 @DomName('SVGCircleElement.cy')
536 @DocsEditable() 578 @DocsEditable()
537 final AnimatedLength cy; 579 final AnimatedLength cy;
538 580
539 @DomName('SVGCircleElement.r') 581 @DomName('SVGCircleElement.r')
(...skipping 14 matching lines...) Expand all
554 @DocsEditable() 596 @DocsEditable()
555 @DomName('SVGClipPathElement') 597 @DomName('SVGClipPathElement')
556 @Unstable() 598 @Unstable()
557 class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir ed native "SVGClipPathElement" { 599 class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir ed native "SVGClipPathElement" {
558 // To suppress missing implicit constructor warnings. 600 // To suppress missing implicit constructor warnings.
559 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } 601 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
560 602
561 @DomName('SVGClipPathElement.SVGClipPathElement') 603 @DomName('SVGClipPathElement.SVGClipPathElement')
562 @DocsEditable() 604 @DocsEditable()
563 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 605 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
606 /**
607 * Constructor instantiated by the DOM when a custom element has been created.
608 *
609 * This can only be called by subclasses from their created constructor.
610 */
611 ClipPathElement.created() : super.created();
564 612
565 @DomName('SVGClipPathElement.clipPathUnits') 613 @DomName('SVGClipPathElement.clipPathUnits')
566 @DocsEditable() 614 @DocsEditable()
567 final AnimatedEnumeration clipPathUnits; 615 final AnimatedEnumeration clipPathUnits;
568 616
569 // From SVGExternalResourcesRequired 617 // From SVGExternalResourcesRequired
570 618
571 @DomName('SVGClipPathElement.externalResourcesRequired') 619 @DomName('SVGClipPathElement.externalResourcesRequired')
572 @DocsEditable() 620 @DocsEditable()
573 final AnimatedBoolean externalResourcesRequired; 621 final AnimatedBoolean externalResourcesRequired;
574 } 622 }
575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
576 // for details. All rights reserved. Use of this source code is governed by a 624 // for details. All rights reserved. Use of this source code is governed by a
577 // BSD-style license that can be found in the LICENSE file. 625 // BSD-style license that can be found in the LICENSE file.
578 626
579 627
580 @DocsEditable() 628 @DocsEditable()
581 @DomName('SVGDefsElement') 629 @DomName('SVGDefsElement')
582 @Unstable() 630 @Unstable()
583 class DefsElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGDefsElement" { 631 class DefsElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGDefsElement" {
584 // To suppress missing implicit constructor warnings. 632 // To suppress missing implicit constructor warnings.
585 factory DefsElement._() { throw new UnsupportedError("Not supported"); } 633 factory DefsElement._() { throw new UnsupportedError("Not supported"); }
586 634
587 @DomName('SVGDefsElement.SVGDefsElement') 635 @DomName('SVGDefsElement.SVGDefsElement')
588 @DocsEditable() 636 @DocsEditable()
589 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 637 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
638 /**
639 * Constructor instantiated by the DOM when a custom element has been created.
640 *
641 * This can only be called by subclasses from their created constructor.
642 */
643 DefsElement.created() : super.created();
590 644
591 // From SVGExternalResourcesRequired 645 // From SVGExternalResourcesRequired
592 646
593 @DomName('SVGDefsElement.externalResourcesRequired') 647 @DomName('SVGDefsElement.externalResourcesRequired')
594 @DocsEditable() 648 @DocsEditable()
595 final AnimatedBoolean externalResourcesRequired; 649 final AnimatedBoolean externalResourcesRequired;
596 } 650 }
597 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 651 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
598 // for details. All rights reserved. Use of this source code is governed by a 652 // for details. All rights reserved. Use of this source code is governed by a
599 // BSD-style license that can be found in the LICENSE file. 653 // BSD-style license that can be found in the LICENSE file.
600 654
601 655
602 @DocsEditable() 656 @DocsEditable()
603 @DomName('SVGDescElement') 657 @DomName('SVGDescElement')
604 @Unstable() 658 @Unstable()
605 class DescElement extends SvgElement native "SVGDescElement" { 659 class DescElement extends SvgElement native "SVGDescElement" {
606 // To suppress missing implicit constructor warnings. 660 // To suppress missing implicit constructor warnings.
607 factory DescElement._() { throw new UnsupportedError("Not supported"); } 661 factory DescElement._() { throw new UnsupportedError("Not supported"); }
608 662
609 @DomName('SVGDescElement.SVGDescElement') 663 @DomName('SVGDescElement.SVGDescElement')
610 @DocsEditable() 664 @DocsEditable()
611 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 665 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
666 /**
667 * Constructor instantiated by the DOM when a custom element has been created.
668 *
669 * This can only be called by subclasses from their created constructor.
670 */
671 DescElement.created() : super.created();
612 } 672 }
613 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 673 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
614 // for details. All rights reserved. Use of this source code is governed by a 674 // for details. All rights reserved. Use of this source code is governed by a
615 // BSD-style license that can be found in the LICENSE file. 675 // BSD-style license that can be found in the LICENSE file.
616 676
617 677
618 @DocsEditable() 678 @DocsEditable()
619 @DomName('SVGElementInstance') 679 @DomName('SVGElementInstance')
620 @Unstable() 680 @Unstable()
621 class ElementInstance extends EventTarget native "SVGElementInstance" { 681 class ElementInstance extends EventTarget native "SVGElementInstance" {
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 @DocsEditable() 1068 @DocsEditable()
1009 @DomName('SVGEllipseElement') 1069 @DomName('SVGEllipseElement')
1010 @Unstable() 1070 @Unstable()
1011 class EllipseElement extends GraphicsElement implements ExternalResourcesRequire d native "SVGEllipseElement" { 1071 class EllipseElement extends GraphicsElement implements ExternalResourcesRequire d native "SVGEllipseElement" {
1012 // To suppress missing implicit constructor warnings. 1072 // To suppress missing implicit constructor warnings.
1013 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } 1073 factory EllipseElement._() { throw new UnsupportedError("Not supported"); }
1014 1074
1015 @DomName('SVGEllipseElement.SVGEllipseElement') 1075 @DomName('SVGEllipseElement.SVGEllipseElement')
1016 @DocsEditable() 1076 @DocsEditable()
1017 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1077 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1078 /**
1079 * Constructor instantiated by the DOM when a custom element has been created.
1080 *
1081 * This can only be called by subclasses from their created constructor.
1082 */
1083 EllipseElement.created() : super.created();
1018 1084
1019 @DomName('SVGEllipseElement.cx') 1085 @DomName('SVGEllipseElement.cx')
1020 @DocsEditable() 1086 @DocsEditable()
1021 final AnimatedLength cx; 1087 final AnimatedLength cx;
1022 1088
1023 @DomName('SVGEllipseElement.cy') 1089 @DomName('SVGEllipseElement.cy')
1024 @DocsEditable() 1090 @DocsEditable()
1025 final AnimatedLength cy; 1091 final AnimatedLength cy;
1026 1092
1027 @DomName('SVGEllipseElement.rx') 1093 @DomName('SVGEllipseElement.rx')
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 @SupportedBrowser(SupportedBrowser.IE, '10') 1131 @SupportedBrowser(SupportedBrowser.IE, '10')
1066 @SupportedBrowser(SupportedBrowser.SAFARI) 1132 @SupportedBrowser(SupportedBrowser.SAFARI)
1067 @Unstable() 1133 @Unstable()
1068 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEBlendElement" { 1134 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEBlendElement" {
1069 // To suppress missing implicit constructor warnings. 1135 // To suppress missing implicit constructor warnings.
1070 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } 1136 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); }
1071 1137
1072 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1138 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1073 @DocsEditable() 1139 @DocsEditable()
1074 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1140 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1141 /**
1142 * Constructor instantiated by the DOM when a custom element has been created.
1143 *
1144 * This can only be called by subclasses from their created constructor.
1145 */
1146 FEBlendElement.created() : super.created();
1075 1147
1076 /// Checks if this type is supported on the current platform. 1148 /// Checks if this type is supported on the current platform.
1077 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement); 1149 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement);
1078 1150
1079 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN') 1151 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
1080 @DocsEditable() 1152 @DocsEditable()
1081 static const int SVG_FEBLEND_MODE_DARKEN = 4; 1153 static const int SVG_FEBLEND_MODE_DARKEN = 4;
1082 1154
1083 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN') 1155 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN')
1084 @DocsEditable() 1156 @DocsEditable()
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 @SupportedBrowser(SupportedBrowser.IE, '10') 1218 @SupportedBrowser(SupportedBrowser.IE, '10')
1147 @SupportedBrowser(SupportedBrowser.SAFARI) 1219 @SupportedBrowser(SupportedBrowser.SAFARI)
1148 @Unstable() 1220 @Unstable()
1149 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes native "SVGFEColorMatrixElement" { 1221 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes native "SVGFEColorMatrixElement" {
1150 // To suppress missing implicit constructor warnings. 1222 // To suppress missing implicit constructor warnings.
1151 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; } 1223 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; }
1152 1224
1153 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1225 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1154 @DocsEditable() 1226 @DocsEditable()
1155 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1227 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1228 /**
1229 * Constructor instantiated by the DOM when a custom element has been created.
1230 *
1231 * This can only be called by subclasses from their created constructor.
1232 */
1233 FEColorMatrixElement.created() : super.created();
1156 1234
1157 /// Checks if this type is supported on the current platform. 1235 /// Checks if this type is supported on the current platform.
1158 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement); 1236 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement);
1159 1237
1160 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE') 1238 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
1161 @DocsEditable() 1239 @DocsEditable()
1162 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 1240 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
1163 1241
1164 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA') 1242 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA')
1165 @DocsEditable() 1243 @DocsEditable()
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 @SupportedBrowser(SupportedBrowser.IE, '10') 1301 @SupportedBrowser(SupportedBrowser.IE, '10')
1224 @SupportedBrowser(SupportedBrowser.SAFARI) 1302 @SupportedBrowser(SupportedBrowser.SAFARI)
1225 @Unstable() 1303 @Unstable()
1226 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes native "SVGFEComponentTransferElement" { 1304 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes native "SVGFEComponentTransferElement" {
1227 // To suppress missing implicit constructor warnings. 1305 // To suppress missing implicit constructor warnings.
1228 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); } 1306 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); }
1229 1307
1230 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') 1308 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
1231 @DocsEditable() 1309 @DocsEditable()
1232 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer"); 1310 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer");
1311 /**
1312 * Constructor instantiated by the DOM when a custom element has been created.
1313 *
1314 * This can only be called by subclasses from their created constructor.
1315 */
1316 FEComponentTransferElement.created() : super.created();
1233 1317
1234 /// Checks if this type is supported on the current platform. 1318 /// Checks if this type is supported on the current platform.
1235 static bool get supported => SvgElement.isTagSupported('feComponentTransfer') && (new SvgElement.tag('feComponentTransfer') is FEComponentTransferElement); 1319 static bool get supported => SvgElement.isTagSupported('feComponentTransfer') && (new SvgElement.tag('feComponentTransfer') is FEComponentTransferElement);
1236 1320
1237 @DomName('SVGFEComponentTransferElement.in1') 1321 @DomName('SVGFEComponentTransferElement.in1')
1238 @DocsEditable() 1322 @DocsEditable()
1239 final AnimatedString in1; 1323 final AnimatedString in1;
1240 1324
1241 // From SVGFilterPrimitiveStandardAttributes 1325 // From SVGFilterPrimitiveStandardAttributes
1242 1326
(...skipping 21 matching lines...) Expand all
1264 // for details. All rights reserved. Use of this source code is governed by a 1348 // for details. All rights reserved. Use of this source code is governed by a
1265 // BSD-style license that can be found in the LICENSE file. 1349 // BSD-style license that can be found in the LICENSE file.
1266 1350
1267 1351
1268 @DocsEditable() 1352 @DocsEditable()
1269 @DomName('SVGFECompositeElement') 1353 @DomName('SVGFECompositeElement')
1270 @Unstable() 1354 @Unstable()
1271 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes native "SVGFECompositeElement" { 1355 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes native "SVGFECompositeElement" {
1272 // To suppress missing implicit constructor warnings. 1356 // To suppress missing implicit constructor warnings.
1273 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); } 1357 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
1358 /**
1359 * Constructor instantiated by the DOM when a custom element has been created.
1360 *
1361 * This can only be called by subclasses from their created constructor.
1362 */
1363 FECompositeElement.created() : super.created();
1274 1364
1275 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') 1365 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1276 @DocsEditable() 1366 @DocsEditable()
1277 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1367 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1278 1368
1279 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP') 1369 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1280 @DocsEditable() 1370 @DocsEditable()
1281 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1371 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1282 1372
1283 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN') 1373 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 @SupportedBrowser(SupportedBrowser.IE, '10') 1452 @SupportedBrowser(SupportedBrowser.IE, '10')
1363 @SupportedBrowser(SupportedBrowser.SAFARI) 1453 @SupportedBrowser(SupportedBrowser.SAFARI)
1364 @Unstable() 1454 @Unstable()
1365 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes native "SVGFEConvolveMatrixElement" { 1455 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes native "SVGFEConvolveMatrixElement" {
1366 // To suppress missing implicit constructor warnings. 1456 // To suppress missing implicit constructor warnings.
1367 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); } 1457 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); }
1368 1458
1369 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1459 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1370 @DocsEditable() 1460 @DocsEditable()
1371 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1461 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1462 /**
1463 * Constructor instantiated by the DOM when a custom element has been created.
1464 *
1465 * This can only be called by subclasses from their created constructor.
1466 */
1467 FEConvolveMatrixElement.created() : super.created();
1372 1468
1373 /// Checks if this type is supported on the current platform. 1469 /// Checks if this type is supported on the current platform.
1374 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement); 1470 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement);
1375 1471
1376 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE') 1472 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
1377 @DocsEditable() 1473 @DocsEditable()
1378 static const int SVG_EDGEMODE_DUPLICATE = 1; 1474 static const int SVG_EDGEMODE_DUPLICATE = 1;
1379 1475
1380 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE') 1476 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE')
1381 @DocsEditable() 1477 @DocsEditable()
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 @SupportedBrowser(SupportedBrowser.IE, '10') 1567 @SupportedBrowser(SupportedBrowser.IE, '10')
1472 @SupportedBrowser(SupportedBrowser.SAFARI) 1568 @SupportedBrowser(SupportedBrowser.SAFARI)
1473 @Unstable() 1569 @Unstable()
1474 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDiffuseLightingElement" { 1570 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDiffuseLightingElement" {
1475 // To suppress missing implicit constructor warnings. 1571 // To suppress missing implicit constructor warnings.
1476 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); } 1572 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); }
1477 1573
1478 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') 1574 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
1479 @DocsEditable() 1575 @DocsEditable()
1480 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting"); 1576 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting");
1577 /**
1578 * Constructor instantiated by the DOM when a custom element has been created.
1579 *
1580 * This can only be called by subclasses from their created constructor.
1581 */
1582 FEDiffuseLightingElement.created() : super.created();
1481 1583
1482 /// Checks if this type is supported on the current platform. 1584 /// Checks if this type is supported on the current platform.
1483 static bool get supported => SvgElement.isTagSupported('feDiffuseLighting') && (new SvgElement.tag('feDiffuseLighting') is FEDiffuseLightingElement); 1585 static bool get supported => SvgElement.isTagSupported('feDiffuseLighting') && (new SvgElement.tag('feDiffuseLighting') is FEDiffuseLightingElement);
1484 1586
1485 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 1587 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
1486 @DocsEditable() 1588 @DocsEditable()
1487 final AnimatedNumber diffuseConstant; 1589 final AnimatedNumber diffuseConstant;
1488 1590
1489 @DomName('SVGFEDiffuseLightingElement.in1') 1591 @DomName('SVGFEDiffuseLightingElement.in1')
1490 @DocsEditable() 1592 @DocsEditable()
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
1536 @SupportedBrowser(SupportedBrowser.IE, '10') 1638 @SupportedBrowser(SupportedBrowser.IE, '10')
1537 @SupportedBrowser(SupportedBrowser.SAFARI) 1639 @SupportedBrowser(SupportedBrowser.SAFARI)
1538 @Unstable() 1640 @Unstable()
1539 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDisplacementMapElement" { 1641 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDisplacementMapElement" {
1540 // To suppress missing implicit constructor warnings. 1642 // To suppress missing implicit constructor warnings.
1541 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); } 1643 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); }
1542 1644
1543 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1645 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1544 @DocsEditable() 1646 @DocsEditable()
1545 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1647 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1648 /**
1649 * Constructor instantiated by the DOM when a custom element has been created.
1650 *
1651 * This can only be called by subclasses from their created constructor.
1652 */
1653 FEDisplacementMapElement.created() : super.created();
1546 1654
1547 /// Checks if this type is supported on the current platform. 1655 /// Checks if this type is supported on the current platform.
1548 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement); 1656 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement);
1549 1657
1550 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A') 1658 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
1551 @DocsEditable() 1659 @DocsEditable()
1552 static const int SVG_CHANNEL_A = 4; 1660 static const int SVG_CHANNEL_A = 4;
1553 1661
1554 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B') 1662 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B')
1555 @DocsEditable() 1663 @DocsEditable()
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 @SupportedBrowser(SupportedBrowser.IE, '10') 1729 @SupportedBrowser(SupportedBrowser.IE, '10')
1622 @SupportedBrowser(SupportedBrowser.SAFARI) 1730 @SupportedBrowser(SupportedBrowser.SAFARI)
1623 @Unstable() 1731 @Unstable()
1624 class FEDistantLightElement extends SvgElement native "SVGFEDistantLightElement" { 1732 class FEDistantLightElement extends SvgElement native "SVGFEDistantLightElement" {
1625 // To suppress missing implicit constructor warnings. 1733 // To suppress missing implicit constructor warnings.
1626 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported" ); } 1734 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported" ); }
1627 1735
1628 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') 1736 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement')
1629 @DocsEditable() 1737 @DocsEditable()
1630 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight"); 1738 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight");
1739 /**
1740 * Constructor instantiated by the DOM when a custom element has been created.
1741 *
1742 * This can only be called by subclasses from their created constructor.
1743 */
1744 FEDistantLightElement.created() : super.created();
1631 1745
1632 /// Checks if this type is supported on the current platform. 1746 /// Checks if this type is supported on the current platform.
1633 static bool get supported => SvgElement.isTagSupported('feDistantLight') && (n ew SvgElement.tag('feDistantLight') is FEDistantLightElement); 1747 static bool get supported => SvgElement.isTagSupported('feDistantLight') && (n ew SvgElement.tag('feDistantLight') is FEDistantLightElement);
1634 1748
1635 @DomName('SVGFEDistantLightElement.azimuth') 1749 @DomName('SVGFEDistantLightElement.azimuth')
1636 @DocsEditable() 1750 @DocsEditable()
1637 final AnimatedNumber azimuth; 1751 final AnimatedNumber azimuth;
1638 1752
1639 @DomName('SVGFEDistantLightElement.elevation') 1753 @DomName('SVGFEDistantLightElement.elevation')
1640 @DocsEditable() 1754 @DocsEditable()
(...skipping 11 matching lines...) Expand all
1652 @SupportedBrowser(SupportedBrowser.IE, '10') 1766 @SupportedBrowser(SupportedBrowser.IE, '10')
1653 @SupportedBrowser(SupportedBrowser.SAFARI) 1767 @SupportedBrowser(SupportedBrowser.SAFARI)
1654 @Unstable() 1768 @Unstable()
1655 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEFloodElement" { 1769 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEFloodElement" {
1656 // To suppress missing implicit constructor warnings. 1770 // To suppress missing implicit constructor warnings.
1657 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } 1771 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); }
1658 1772
1659 @DomName('SVGFEFloodElement.SVGFEFloodElement') 1773 @DomName('SVGFEFloodElement.SVGFEFloodElement')
1660 @DocsEditable() 1774 @DocsEditable()
1661 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood"); 1775 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood");
1776 /**
1777 * Constructor instantiated by the DOM when a custom element has been created.
1778 *
1779 * This can only be called by subclasses from their created constructor.
1780 */
1781 FEFloodElement.created() : super.created();
1662 1782
1663 /// Checks if this type is supported on the current platform. 1783 /// Checks if this type is supported on the current platform.
1664 static bool get supported => SvgElement.isTagSupported('feFlood') && (new SvgE lement.tag('feFlood') is FEFloodElement); 1784 static bool get supported => SvgElement.isTagSupported('feFlood') && (new SvgE lement.tag('feFlood') is FEFloodElement);
1665 1785
1666 // From SVGFilterPrimitiveStandardAttributes 1786 // From SVGFilterPrimitiveStandardAttributes
1667 1787
1668 @DomName('SVGFEFloodElement.height') 1788 @DomName('SVGFEFloodElement.height')
1669 @DocsEditable() 1789 @DocsEditable()
1670 final AnimatedLength height; 1790 final AnimatedLength height;
1671 1791
(...skipping 25 matching lines...) Expand all
1697 @SupportedBrowser(SupportedBrowser.IE, '10') 1817 @SupportedBrowser(SupportedBrowser.IE, '10')
1698 @SupportedBrowser(SupportedBrowser.SAFARI) 1818 @SupportedBrowser(SupportedBrowser.SAFARI)
1699 @Unstable() 1819 @Unstable()
1700 class FEFuncAElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncAElement" { 1820 class FEFuncAElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncAElement" {
1701 // To suppress missing implicit constructor warnings. 1821 // To suppress missing implicit constructor warnings.
1702 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } 1822 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); }
1703 1823
1704 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') 1824 @DomName('SVGFEFuncAElement.SVGFEFuncAElement')
1705 @DocsEditable() 1825 @DocsEditable()
1706 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA"); 1826 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA");
1827 /**
1828 * Constructor instantiated by the DOM when a custom element has been created.
1829 *
1830 * This can only be called by subclasses from their created constructor.
1831 */
1832 FEFuncAElement.created() : super.created();
1707 1833
1708 /// Checks if this type is supported on the current platform. 1834 /// Checks if this type is supported on the current platform.
1709 static bool get supported => SvgElement.isTagSupported('feFuncA') && (new SvgE lement.tag('feFuncA') is FEFuncAElement); 1835 static bool get supported => SvgElement.isTagSupported('feFuncA') && (new SvgE lement.tag('feFuncA') is FEFuncAElement);
1710 } 1836 }
1711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1712 // for details. All rights reserved. Use of this source code is governed by a 1838 // for details. All rights reserved. Use of this source code is governed by a
1713 // BSD-style license that can be found in the LICENSE file. 1839 // BSD-style license that can be found in the LICENSE file.
1714 1840
1715 1841
1716 @DocsEditable() 1842 @DocsEditable()
1717 @DomName('SVGFEFuncBElement') 1843 @DomName('SVGFEFuncBElement')
1718 @SupportedBrowser(SupportedBrowser.CHROME) 1844 @SupportedBrowser(SupportedBrowser.CHROME)
1719 @SupportedBrowser(SupportedBrowser.FIREFOX) 1845 @SupportedBrowser(SupportedBrowser.FIREFOX)
1720 @SupportedBrowser(SupportedBrowser.IE, '10') 1846 @SupportedBrowser(SupportedBrowser.IE, '10')
1721 @SupportedBrowser(SupportedBrowser.SAFARI) 1847 @SupportedBrowser(SupportedBrowser.SAFARI)
1722 @Unstable() 1848 @Unstable()
1723 class FEFuncBElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncBElement" { 1849 class FEFuncBElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncBElement" {
1724 // To suppress missing implicit constructor warnings. 1850 // To suppress missing implicit constructor warnings.
1725 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } 1851 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); }
1726 1852
1727 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') 1853 @DomName('SVGFEFuncBElement.SVGFEFuncBElement')
1728 @DocsEditable() 1854 @DocsEditable()
1729 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB"); 1855 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB");
1856 /**
1857 * Constructor instantiated by the DOM when a custom element has been created.
1858 *
1859 * This can only be called by subclasses from their created constructor.
1860 */
1861 FEFuncBElement.created() : super.created();
1730 1862
1731 /// Checks if this type is supported on the current platform. 1863 /// Checks if this type is supported on the current platform.
1732 static bool get supported => SvgElement.isTagSupported('feFuncB') && (new SvgE lement.tag('feFuncB') is FEFuncBElement); 1864 static bool get supported => SvgElement.isTagSupported('feFuncB') && (new SvgE lement.tag('feFuncB') is FEFuncBElement);
1733 } 1865 }
1734 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1866 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1735 // for details. All rights reserved. Use of this source code is governed by a 1867 // for details. All rights reserved. Use of this source code is governed by a
1736 // BSD-style license that can be found in the LICENSE file. 1868 // BSD-style license that can be found in the LICENSE file.
1737 1869
1738 1870
1739 @DocsEditable() 1871 @DocsEditable()
1740 @DomName('SVGFEFuncGElement') 1872 @DomName('SVGFEFuncGElement')
1741 @SupportedBrowser(SupportedBrowser.CHROME) 1873 @SupportedBrowser(SupportedBrowser.CHROME)
1742 @SupportedBrowser(SupportedBrowser.FIREFOX) 1874 @SupportedBrowser(SupportedBrowser.FIREFOX)
1743 @SupportedBrowser(SupportedBrowser.IE, '10') 1875 @SupportedBrowser(SupportedBrowser.IE, '10')
1744 @SupportedBrowser(SupportedBrowser.SAFARI) 1876 @SupportedBrowser(SupportedBrowser.SAFARI)
1745 @Unstable() 1877 @Unstable()
1746 class FEFuncGElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncGElement" { 1878 class FEFuncGElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncGElement" {
1747 // To suppress missing implicit constructor warnings. 1879 // To suppress missing implicit constructor warnings.
1748 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } 1880 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); }
1749 1881
1750 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') 1882 @DomName('SVGFEFuncGElement.SVGFEFuncGElement')
1751 @DocsEditable() 1883 @DocsEditable()
1752 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG"); 1884 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG");
1885 /**
1886 * Constructor instantiated by the DOM when a custom element has been created.
1887 *
1888 * This can only be called by subclasses from their created constructor.
1889 */
1890 FEFuncGElement.created() : super.created();
1753 1891
1754 /// Checks if this type is supported on the current platform. 1892 /// Checks if this type is supported on the current platform.
1755 static bool get supported => SvgElement.isTagSupported('feFuncG') && (new SvgE lement.tag('feFuncG') is FEFuncGElement); 1893 static bool get supported => SvgElement.isTagSupported('feFuncG') && (new SvgE lement.tag('feFuncG') is FEFuncGElement);
1756 } 1894 }
1757 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1895 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1758 // for details. All rights reserved. Use of this source code is governed by a 1896 // for details. All rights reserved. Use of this source code is governed by a
1759 // BSD-style license that can be found in the LICENSE file. 1897 // BSD-style license that can be found in the LICENSE file.
1760 1898
1761 1899
1762 @DocsEditable() 1900 @DocsEditable()
1763 @DomName('SVGFEFuncRElement') 1901 @DomName('SVGFEFuncRElement')
1764 @SupportedBrowser(SupportedBrowser.CHROME) 1902 @SupportedBrowser(SupportedBrowser.CHROME)
1765 @SupportedBrowser(SupportedBrowser.FIREFOX) 1903 @SupportedBrowser(SupportedBrowser.FIREFOX)
1766 @SupportedBrowser(SupportedBrowser.IE, '10') 1904 @SupportedBrowser(SupportedBrowser.IE, '10')
1767 @SupportedBrowser(SupportedBrowser.SAFARI) 1905 @SupportedBrowser(SupportedBrowser.SAFARI)
1768 @Unstable() 1906 @Unstable()
1769 class FEFuncRElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncRElement" { 1907 class FEFuncRElement extends _SVGComponentTransferFunctionElement native "SVGFEF uncRElement" {
1770 // To suppress missing implicit constructor warnings. 1908 // To suppress missing implicit constructor warnings.
1771 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } 1909 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); }
1772 1910
1773 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') 1911 @DomName('SVGFEFuncRElement.SVGFEFuncRElement')
1774 @DocsEditable() 1912 @DocsEditable()
1775 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR"); 1913 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR");
1914 /**
1915 * Constructor instantiated by the DOM when a custom element has been created.
1916 *
1917 * This can only be called by subclasses from their created constructor.
1918 */
1919 FEFuncRElement.created() : super.created();
1776 1920
1777 /// Checks if this type is supported on the current platform. 1921 /// Checks if this type is supported on the current platform.
1778 static bool get supported => SvgElement.isTagSupported('feFuncR') && (new SvgE lement.tag('feFuncR') is FEFuncRElement); 1922 static bool get supported => SvgElement.isTagSupported('feFuncR') && (new SvgE lement.tag('feFuncR') is FEFuncRElement);
1779 } 1923 }
1780 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1924 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1781 // for details. All rights reserved. Use of this source code is governed by a 1925 // for details. All rights reserved. Use of this source code is governed by a
1782 // BSD-style license that can be found in the LICENSE file. 1926 // BSD-style license that can be found in the LICENSE file.
1783 1927
1784 1928
1785 @DocsEditable() 1929 @DocsEditable()
1786 @DomName('SVGFEGaussianBlurElement') 1930 @DomName('SVGFEGaussianBlurElement')
1787 @SupportedBrowser(SupportedBrowser.CHROME) 1931 @SupportedBrowser(SupportedBrowser.CHROME)
1788 @SupportedBrowser(SupportedBrowser.FIREFOX) 1932 @SupportedBrowser(SupportedBrowser.FIREFOX)
1789 @SupportedBrowser(SupportedBrowser.IE, '10') 1933 @SupportedBrowser(SupportedBrowser.IE, '10')
1790 @SupportedBrowser(SupportedBrowser.SAFARI) 1934 @SupportedBrowser(SupportedBrowser.SAFARI)
1791 @Unstable() 1935 @Unstable()
1792 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes native "SVGFEGaussianBlurElement" { 1936 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes native "SVGFEGaussianBlurElement" {
1793 // To suppress missing implicit constructor warnings. 1937 // To suppress missing implicit constructor warnings.
1794 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); } 1938 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); }
1795 1939
1796 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') 1940 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
1797 @DocsEditable() 1941 @DocsEditable()
1798 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur"); 1942 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur");
1943 /**
1944 * Constructor instantiated by the DOM when a custom element has been created.
1945 *
1946 * This can only be called by subclasses from their created constructor.
1947 */
1948 FEGaussianBlurElement.created() : super.created();
1799 1949
1800 /// Checks if this type is supported on the current platform. 1950 /// Checks if this type is supported on the current platform.
1801 static bool get supported => SvgElement.isTagSupported('feGaussianBlur') && (n ew SvgElement.tag('feGaussianBlur') is FEGaussianBlurElement); 1951 static bool get supported => SvgElement.isTagSupported('feGaussianBlur') && (n ew SvgElement.tag('feGaussianBlur') is FEGaussianBlurElement);
1802 1952
1803 @DomName('SVGFEGaussianBlurElement.in1') 1953 @DomName('SVGFEGaussianBlurElement.in1')
1804 @DocsEditable() 1954 @DocsEditable()
1805 final AnimatedString in1; 1955 final AnimatedString in1;
1806 1956
1807 @DomName('SVGFEGaussianBlurElement.stdDeviationX') 1957 @DomName('SVGFEGaussianBlurElement.stdDeviationX')
1808 @DocsEditable() 1958 @DocsEditable()
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1850 @SupportedBrowser(SupportedBrowser.IE, '10') 2000 @SupportedBrowser(SupportedBrowser.IE, '10')
1851 @SupportedBrowser(SupportedBrowser.SAFARI) 2001 @SupportedBrowser(SupportedBrowser.SAFARI)
1852 @Unstable() 2002 @Unstable()
1853 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired native "SVGFEImageElement" { 2003 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired native "SVGFEImageElement" {
1854 // To suppress missing implicit constructor warnings. 2004 // To suppress missing implicit constructor warnings.
1855 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } 2005 factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
1856 2006
1857 @DomName('SVGFEImageElement.SVGFEImageElement') 2007 @DomName('SVGFEImageElement.SVGFEImageElement')
1858 @DocsEditable() 2008 @DocsEditable()
1859 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 2009 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
2010 /**
2011 * Constructor instantiated by the DOM when a custom element has been created.
2012 *
2013 * This can only be called by subclasses from their created constructor.
2014 */
2015 FEImageElement.created() : super.created();
1860 2016
1861 /// Checks if this type is supported on the current platform. 2017 /// Checks if this type is supported on the current platform.
1862 static bool get supported => SvgElement.isTagSupported('feImage') && (new SvgE lement.tag('feImage') is FEImageElement); 2018 static bool get supported => SvgElement.isTagSupported('feImage') && (new SvgE lement.tag('feImage') is FEImageElement);
1863 2019
1864 @DomName('SVGFEImageElement.preserveAspectRatio') 2020 @DomName('SVGFEImageElement.preserveAspectRatio')
1865 @DocsEditable() 2021 @DocsEditable()
1866 final AnimatedPreserveAspectRatio preserveAspectRatio; 2022 final AnimatedPreserveAspectRatio preserveAspectRatio;
1867 2023
1868 // From SVGExternalResourcesRequired 2024 // From SVGExternalResourcesRequired
1869 2025
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1911 @SupportedBrowser(SupportedBrowser.IE, '10') 2067 @SupportedBrowser(SupportedBrowser.IE, '10')
1912 @SupportedBrowser(SupportedBrowser.SAFARI) 2068 @SupportedBrowser(SupportedBrowser.SAFARI)
1913 @Unstable() 2069 @Unstable()
1914 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEMergeElement" { 2070 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEMergeElement" {
1915 // To suppress missing implicit constructor warnings. 2071 // To suppress missing implicit constructor warnings.
1916 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } 2072 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); }
1917 2073
1918 @DomName('SVGFEMergeElement.SVGFEMergeElement') 2074 @DomName('SVGFEMergeElement.SVGFEMergeElement')
1919 @DocsEditable() 2075 @DocsEditable()
1920 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge"); 2076 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge");
2077 /**
2078 * Constructor instantiated by the DOM when a custom element has been created.
2079 *
2080 * This can only be called by subclasses from their created constructor.
2081 */
2082 FEMergeElement.created() : super.created();
1921 2083
1922 /// Checks if this type is supported on the current platform. 2084 /// Checks if this type is supported on the current platform.
1923 static bool get supported => SvgElement.isTagSupported('feMerge') && (new SvgE lement.tag('feMerge') is FEMergeElement); 2085 static bool get supported => SvgElement.isTagSupported('feMerge') && (new SvgE lement.tag('feMerge') is FEMergeElement);
1924 2086
1925 // From SVGFilterPrimitiveStandardAttributes 2087 // From SVGFilterPrimitiveStandardAttributes
1926 2088
1927 @DomName('SVGFEMergeElement.height') 2089 @DomName('SVGFEMergeElement.height')
1928 @DocsEditable() 2090 @DocsEditable()
1929 final AnimatedLength height; 2091 final AnimatedLength height;
1930 2092
(...skipping 25 matching lines...) Expand all
1956 @SupportedBrowser(SupportedBrowser.IE, '10') 2118 @SupportedBrowser(SupportedBrowser.IE, '10')
1957 @SupportedBrowser(SupportedBrowser.SAFARI) 2119 @SupportedBrowser(SupportedBrowser.SAFARI)
1958 @Unstable() 2120 @Unstable()
1959 class FEMergeNodeElement extends SvgElement native "SVGFEMergeNodeElement" { 2121 class FEMergeNodeElement extends SvgElement native "SVGFEMergeNodeElement" {
1960 // To suppress missing implicit constructor warnings. 2122 // To suppress missing implicit constructor warnings.
1961 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); } 2123 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); }
1962 2124
1963 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') 2125 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement')
1964 @DocsEditable() 2126 @DocsEditable()
1965 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode"); 2127 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode");
2128 /**
2129 * Constructor instantiated by the DOM when a custom element has been created.
2130 *
2131 * This can only be called by subclasses from their created constructor.
2132 */
2133 FEMergeNodeElement.created() : super.created();
1966 2134
1967 /// Checks if this type is supported on the current platform. 2135 /// Checks if this type is supported on the current platform.
1968 static bool get supported => SvgElement.isTagSupported('feMergeNode') && (new SvgElement.tag('feMergeNode') is FEMergeNodeElement); 2136 static bool get supported => SvgElement.isTagSupported('feMergeNode') && (new SvgElement.tag('feMergeNode') is FEMergeNodeElement);
1969 2137
1970 @DomName('SVGFEMergeNodeElement.in1') 2138 @DomName('SVGFEMergeNodeElement.in1')
1971 @DocsEditable() 2139 @DocsEditable()
1972 final AnimatedString in1; 2140 final AnimatedString in1;
1973 } 2141 }
1974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1975 // for details. All rights reserved. Use of this source code is governed by a 2143 // for details. All rights reserved. Use of this source code is governed by a
1976 // BSD-style license that can be found in the LICENSE file. 2144 // BSD-style license that can be found in the LICENSE file.
1977 2145
1978 2146
1979 @DocsEditable() 2147 @DocsEditable()
1980 @DomName('SVGFEMorphologyElement') 2148 @DomName('SVGFEMorphologyElement')
1981 @SupportedBrowser(SupportedBrowser.CHROME) 2149 @SupportedBrowser(SupportedBrowser.CHROME)
1982 @SupportedBrowser(SupportedBrowser.FIREFOX) 2150 @SupportedBrowser(SupportedBrowser.FIREFOX)
1983 @SupportedBrowser(SupportedBrowser.IE, '10') 2151 @SupportedBrowser(SupportedBrowser.IE, '10')
1984 @SupportedBrowser(SupportedBrowser.SAFARI) 2152 @SupportedBrowser(SupportedBrowser.SAFARI)
1985 @Unstable() 2153 @Unstable()
1986 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFEMorphologyElement" { 2154 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFEMorphologyElement" {
1987 // To suppress missing implicit constructor warnings. 2155 // To suppress missing implicit constructor warnings.
1988 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); } 2156 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
2157 /**
2158 * Constructor instantiated by the DOM when a custom element has been created.
2159 *
2160 * This can only be called by subclasses from their created constructor.
2161 */
2162 FEMorphologyElement.created() : super.created();
1989 2163
1990 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') 2164 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
1991 @DocsEditable() 2165 @DocsEditable()
1992 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2166 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
1993 2167
1994 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2168 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
1995 @DocsEditable() 2169 @DocsEditable()
1996 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2170 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
1997 2171
1998 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2172 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 @SupportedBrowser(SupportedBrowser.IE, '10') 2227 @SupportedBrowser(SupportedBrowser.IE, '10')
2054 @SupportedBrowser(SupportedBrowser.SAFARI) 2228 @SupportedBrowser(SupportedBrowser.SAFARI)
2055 @Unstable() 2229 @Unstable()
2056 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes native "SVGFEOffsetElement" { 2230 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes native "SVGFEOffsetElement" {
2057 // To suppress missing implicit constructor warnings. 2231 // To suppress missing implicit constructor warnings.
2058 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } 2232 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); }
2059 2233
2060 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') 2234 @DomName('SVGFEOffsetElement.SVGFEOffsetElement')
2061 @DocsEditable() 2235 @DocsEditable()
2062 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset"); 2236 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset");
2237 /**
2238 * Constructor instantiated by the DOM when a custom element has been created.
2239 *
2240 * This can only be called by subclasses from their created constructor.
2241 */
2242 FEOffsetElement.created() : super.created();
2063 2243
2064 /// Checks if this type is supported on the current platform. 2244 /// Checks if this type is supported on the current platform.
2065 static bool get supported => SvgElement.isTagSupported('feOffset') && (new Svg Element.tag('feOffset') is FEOffsetElement); 2245 static bool get supported => SvgElement.isTagSupported('feOffset') && (new Svg Element.tag('feOffset') is FEOffsetElement);
2066 2246
2067 @DomName('SVGFEOffsetElement.dx') 2247 @DomName('SVGFEOffsetElement.dx')
2068 @DocsEditable() 2248 @DocsEditable()
2069 final AnimatedNumber dx; 2249 final AnimatedNumber dx;
2070 2250
2071 @DomName('SVGFEOffsetElement.dy') 2251 @DomName('SVGFEOffsetElement.dy')
2072 @DocsEditable() 2252 @DocsEditable()
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
2110 @SupportedBrowser(SupportedBrowser.IE, '10') 2290 @SupportedBrowser(SupportedBrowser.IE, '10')
2111 @SupportedBrowser(SupportedBrowser.SAFARI) 2291 @SupportedBrowser(SupportedBrowser.SAFARI)
2112 @Unstable() 2292 @Unstable()
2113 class FEPointLightElement extends SvgElement native "SVGFEPointLightElement" { 2293 class FEPointLightElement extends SvgElement native "SVGFEPointLightElement" {
2114 // To suppress missing implicit constructor warnings. 2294 // To suppress missing implicit constructor warnings.
2115 factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); } 2295 factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); }
2116 2296
2117 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') 2297 @DomName('SVGFEPointLightElement.SVGFEPointLightElement')
2118 @DocsEditable() 2298 @DocsEditable()
2119 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight"); 2299 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight");
2300 /**
2301 * Constructor instantiated by the DOM when a custom element has been created.
2302 *
2303 * This can only be called by subclasses from their created constructor.
2304 */
2305 FEPointLightElement.created() : super.created();
2120 2306
2121 /// Checks if this type is supported on the current platform. 2307 /// Checks if this type is supported on the current platform.
2122 static bool get supported => SvgElement.isTagSupported('fePointLight') && (new SvgElement.tag('fePointLight') is FEPointLightElement); 2308 static bool get supported => SvgElement.isTagSupported('fePointLight') && (new SvgElement.tag('fePointLight') is FEPointLightElement);
2123 2309
2124 @DomName('SVGFEPointLightElement.x') 2310 @DomName('SVGFEPointLightElement.x')
2125 @DocsEditable() 2311 @DocsEditable()
2126 final AnimatedNumber x; 2312 final AnimatedNumber x;
2127 2313
2128 @DomName('SVGFEPointLightElement.y') 2314 @DomName('SVGFEPointLightElement.y')
2129 @DocsEditable() 2315 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2145 @SupportedBrowser(SupportedBrowser.IE, '10') 2331 @SupportedBrowser(SupportedBrowser.IE, '10')
2146 @SupportedBrowser(SupportedBrowser.SAFARI) 2332 @SupportedBrowser(SupportedBrowser.SAFARI)
2147 @Unstable() 2333 @Unstable()
2148 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes native "SVGFESpecularLightingElement" { 2334 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes native "SVGFESpecularLightingElement" {
2149 // To suppress missing implicit constructor warnings. 2335 // To suppress missing implicit constructor warnings.
2150 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); } 2336 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); }
2151 2337
2152 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') 2338 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
2153 @DocsEditable() 2339 @DocsEditable()
2154 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting"); 2340 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting");
2341 /**
2342 * Constructor instantiated by the DOM when a custom element has been created.
2343 *
2344 * This can only be called by subclasses from their created constructor.
2345 */
2346 FESpecularLightingElement.created() : super.created();
2155 2347
2156 /// Checks if this type is supported on the current platform. 2348 /// Checks if this type is supported on the current platform.
2157 static bool get supported => SvgElement.isTagSupported('feSpecularLighting') & & (new SvgElement.tag('feSpecularLighting') is FESpecularLightingElement); 2349 static bool get supported => SvgElement.isTagSupported('feSpecularLighting') & & (new SvgElement.tag('feSpecularLighting') is FESpecularLightingElement);
2158 2350
2159 @DomName('SVGFESpecularLightingElement.in1') 2351 @DomName('SVGFESpecularLightingElement.in1')
2160 @DocsEditable() 2352 @DocsEditable()
2161 final AnimatedString in1; 2353 final AnimatedString in1;
2162 2354
2163 @DomName('SVGFESpecularLightingElement.specularConstant') 2355 @DomName('SVGFESpecularLightingElement.specularConstant')
2164 @DocsEditable() 2356 @DocsEditable()
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
2206 @SupportedBrowser(SupportedBrowser.IE, '10') 2398 @SupportedBrowser(SupportedBrowser.IE, '10')
2207 @SupportedBrowser(SupportedBrowser.SAFARI) 2399 @SupportedBrowser(SupportedBrowser.SAFARI)
2208 @Unstable() 2400 @Unstable()
2209 class FESpotLightElement extends SvgElement native "SVGFESpotLightElement" { 2401 class FESpotLightElement extends SvgElement native "SVGFESpotLightElement" {
2210 // To suppress missing implicit constructor warnings. 2402 // To suppress missing implicit constructor warnings.
2211 factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); } 2403 factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); }
2212 2404
2213 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') 2405 @DomName('SVGFESpotLightElement.SVGFESpotLightElement')
2214 @DocsEditable() 2406 @DocsEditable()
2215 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight"); 2407 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight");
2408 /**
2409 * Constructor instantiated by the DOM when a custom element has been created.
2410 *
2411 * This can only be called by subclasses from their created constructor.
2412 */
2413 FESpotLightElement.created() : super.created();
2216 2414
2217 /// Checks if this type is supported on the current platform. 2415 /// Checks if this type is supported on the current platform.
2218 static bool get supported => SvgElement.isTagSupported('feSpotLight') && (new SvgElement.tag('feSpotLight') is FESpotLightElement); 2416 static bool get supported => SvgElement.isTagSupported('feSpotLight') && (new SvgElement.tag('feSpotLight') is FESpotLightElement);
2219 2417
2220 @DomName('SVGFESpotLightElement.limitingConeAngle') 2418 @DomName('SVGFESpotLightElement.limitingConeAngle')
2221 @DocsEditable() 2419 @DocsEditable()
2222 final AnimatedNumber limitingConeAngle; 2420 final AnimatedNumber limitingConeAngle;
2223 2421
2224 @DomName('SVGFESpotLightElement.pointsAtX') 2422 @DomName('SVGFESpotLightElement.pointsAtX')
2225 @DocsEditable() 2423 @DocsEditable()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2261 @SupportedBrowser(SupportedBrowser.IE, '10') 2459 @SupportedBrowser(SupportedBrowser.IE, '10')
2262 @SupportedBrowser(SupportedBrowser.SAFARI) 2460 @SupportedBrowser(SupportedBrowser.SAFARI)
2263 @Unstable() 2461 @Unstable()
2264 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes native "SVGFETileElement" { 2462 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes native "SVGFETileElement" {
2265 // To suppress missing implicit constructor warnings. 2463 // To suppress missing implicit constructor warnings.
2266 factory FETileElement._() { throw new UnsupportedError("Not supported"); } 2464 factory FETileElement._() { throw new UnsupportedError("Not supported"); }
2267 2465
2268 @DomName('SVGFETileElement.SVGFETileElement') 2466 @DomName('SVGFETileElement.SVGFETileElement')
2269 @DocsEditable() 2467 @DocsEditable()
2270 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile"); 2468 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile");
2469 /**
2470 * Constructor instantiated by the DOM when a custom element has been created.
2471 *
2472 * This can only be called by subclasses from their created constructor.
2473 */
2474 FETileElement.created() : super.created();
2271 2475
2272 /// Checks if this type is supported on the current platform. 2476 /// Checks if this type is supported on the current platform.
2273 static bool get supported => SvgElement.isTagSupported('feTile') && (new SvgEl ement.tag('feTile') is FETileElement); 2477 static bool get supported => SvgElement.isTagSupported('feTile') && (new SvgEl ement.tag('feTile') is FETileElement);
2274 2478
2275 @DomName('SVGFETileElement.in1') 2479 @DomName('SVGFETileElement.in1')
2276 @DocsEditable() 2480 @DocsEditable()
2277 final AnimatedString in1; 2481 final AnimatedString in1;
2278 2482
2279 // From SVGFilterPrimitiveStandardAttributes 2483 // From SVGFilterPrimitiveStandardAttributes
2280 2484
(...skipping 29 matching lines...) Expand all
2310 @SupportedBrowser(SupportedBrowser.IE, '10') 2514 @SupportedBrowser(SupportedBrowser.IE, '10')
2311 @SupportedBrowser(SupportedBrowser.SAFARI) 2515 @SupportedBrowser(SupportedBrowser.SAFARI)
2312 @Unstable() 2516 @Unstable()
2313 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFETurbulenceElement" { 2517 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFETurbulenceElement" {
2314 // To suppress missing implicit constructor warnings. 2518 // To suppress missing implicit constructor warnings.
2315 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); } 2519 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); }
2316 2520
2317 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2521 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2318 @DocsEditable() 2522 @DocsEditable()
2319 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2523 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2524 /**
2525 * Constructor instantiated by the DOM when a custom element has been created.
2526 *
2527 * This can only be called by subclasses from their created constructor.
2528 */
2529 FETurbulenceElement.created() : super.created();
2320 2530
2321 /// Checks if this type is supported on the current platform. 2531 /// Checks if this type is supported on the current platform.
2322 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement); 2532 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement);
2323 2533
2324 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH') 2534 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
2325 @DocsEditable() 2535 @DocsEditable()
2326 static const int SVG_STITCHTYPE_NOSTITCH = 2; 2536 static const int SVG_STITCHTYPE_NOSTITCH = 2;
2327 2537
2328 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH') 2538 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH')
2329 @DocsEditable() 2539 @DocsEditable()
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
2403 @SupportedBrowser(SupportedBrowser.IE, '10') 2613 @SupportedBrowser(SupportedBrowser.IE, '10')
2404 @SupportedBrowser(SupportedBrowser.SAFARI) 2614 @SupportedBrowser(SupportedBrowser.SAFARI)
2405 @Unstable() 2615 @Unstable()
2406 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGFilterElement" { 2616 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGFilterElement" {
2407 // To suppress missing implicit constructor warnings. 2617 // To suppress missing implicit constructor warnings.
2408 factory FilterElement._() { throw new UnsupportedError("Not supported"); } 2618 factory FilterElement._() { throw new UnsupportedError("Not supported"); }
2409 2619
2410 @DomName('SVGFilterElement.SVGFilterElement') 2620 @DomName('SVGFilterElement.SVGFilterElement')
2411 @DocsEditable() 2621 @DocsEditable()
2412 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2622 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2623 /**
2624 * Constructor instantiated by the DOM when a custom element has been created.
2625 *
2626 * This can only be called by subclasses from their created constructor.
2627 */
2628 FilterElement.created() : super.created();
2413 2629
2414 /// Checks if this type is supported on the current platform. 2630 /// Checks if this type is supported on the current platform.
2415 static bool get supported => SvgElement.isTagSupported('filter') && (new SvgEl ement.tag('filter') is FilterElement); 2631 static bool get supported => SvgElement.isTagSupported('filter') && (new SvgEl ement.tag('filter') is FilterElement);
2416 2632
2417 @DomName('SVGFilterElement.filterResX') 2633 @DomName('SVGFilterElement.filterResX')
2418 @DocsEditable() 2634 @DocsEditable()
2419 final AnimatedInteger filterResX; 2635 final AnimatedInteger filterResX;
2420 2636
2421 @DomName('SVGFilterElement.filterResY') 2637 @DomName('SVGFilterElement.filterResY')
2422 @DocsEditable() 2638 @DocsEditable()
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
2507 @SupportedBrowser(SupportedBrowser.FIREFOX) 2723 @SupportedBrowser(SupportedBrowser.FIREFOX)
2508 @SupportedBrowser(SupportedBrowser.SAFARI) 2724 @SupportedBrowser(SupportedBrowser.SAFARI)
2509 @Unstable() 2725 @Unstable()
2510 class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR equired native "SVGForeignObjectElement" { 2726 class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR equired native "SVGForeignObjectElement" {
2511 // To suppress missing implicit constructor warnings. 2727 // To suppress missing implicit constructor warnings.
2512 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; } 2728 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; }
2513 2729
2514 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') 2730 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
2515 @DocsEditable() 2731 @DocsEditable()
2516 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 2732 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
2733 /**
2734 * Constructor instantiated by the DOM when a custom element has been created.
2735 *
2736 * This can only be called by subclasses from their created constructor.
2737 */
2738 ForeignObjectElement.created() : super.created();
2517 2739
2518 /// Checks if this type is supported on the current platform. 2740 /// Checks if this type is supported on the current platform.
2519 static bool get supported => SvgElement.isTagSupported('foreignObject') && (ne w SvgElement.tag('foreignObject') is ForeignObjectElement); 2741 static bool get supported => SvgElement.isTagSupported('foreignObject') && (ne w SvgElement.tag('foreignObject') is ForeignObjectElement);
2520 2742
2521 @DomName('SVGForeignObjectElement.height') 2743 @DomName('SVGForeignObjectElement.height')
2522 @DocsEditable() 2744 @DocsEditable()
2523 final AnimatedLength height; 2745 final AnimatedLength height;
2524 2746
2525 @DomName('SVGForeignObjectElement.width') 2747 @DomName('SVGForeignObjectElement.width')
2526 @DocsEditable() 2748 @DocsEditable()
(...skipping 21 matching lines...) Expand all
2548 @DocsEditable() 2770 @DocsEditable()
2549 @DomName('SVGGElement') 2771 @DomName('SVGGElement')
2550 @Unstable() 2772 @Unstable()
2551 class GElement extends GraphicsElement implements ExternalResourcesRequired nati ve "SVGGElement" { 2773 class GElement extends GraphicsElement implements ExternalResourcesRequired nati ve "SVGGElement" {
2552 // To suppress missing implicit constructor warnings. 2774 // To suppress missing implicit constructor warnings.
2553 factory GElement._() { throw new UnsupportedError("Not supported"); } 2775 factory GElement._() { throw new UnsupportedError("Not supported"); }
2554 2776
2555 @DomName('SVGGElement.SVGGElement') 2777 @DomName('SVGGElement.SVGGElement')
2556 @DocsEditable() 2778 @DocsEditable()
2557 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 2779 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
2780 /**
2781 * Constructor instantiated by the DOM when a custom element has been created.
2782 *
2783 * This can only be called by subclasses from their created constructor.
2784 */
2785 GElement.created() : super.created();
2558 2786
2559 // From SVGExternalResourcesRequired 2787 // From SVGExternalResourcesRequired
2560 2788
2561 @DomName('SVGGElement.externalResourcesRequired') 2789 @DomName('SVGGElement.externalResourcesRequired')
2562 @DocsEditable() 2790 @DocsEditable()
2563 final AnimatedBoolean externalResourcesRequired; 2791 final AnimatedBoolean externalResourcesRequired;
2564 } 2792 }
2565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2793 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2566 // for details. All rights reserved. Use of this source code is governed by a 2794 // for details. All rights reserved. Use of this source code is governed by a
2567 // BSD-style license that can be found in the LICENSE file. 2795 // BSD-style license that can be found in the LICENSE file.
2568 2796
2569 2797
2570 @DocsEditable() 2798 @DocsEditable()
2571 @DomName('SVGGraphicsElement') 2799 @DomName('SVGGraphicsElement')
2572 @Experimental() // untriaged 2800 @Experimental() // untriaged
2573 class GraphicsElement extends SvgElement implements Tests native "SVGGraphicsEle ment" { 2801 class GraphicsElement extends SvgElement implements Tests native "SVGGraphicsEle ment" {
2574 // To suppress missing implicit constructor warnings. 2802 // To suppress missing implicit constructor warnings.
2575 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 2803 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
2804 /**
2805 * Constructor instantiated by the DOM when a custom element has been created.
2806 *
2807 * This can only be called by subclasses from their created constructor.
2808 */
2809 GraphicsElement.created() : super.created();
2576 2810
2577 @DomName('SVGGraphicsElement.farthestViewportElement') 2811 @DomName('SVGGraphicsElement.farthestViewportElement')
2578 @DocsEditable() 2812 @DocsEditable()
2579 @Experimental() // untriaged 2813 @Experimental() // untriaged
2580 final SvgElement farthestViewportElement; 2814 final SvgElement farthestViewportElement;
2581 2815
2582 @DomName('SVGGraphicsElement.nearestViewportElement') 2816 @DomName('SVGGraphicsElement.nearestViewportElement')
2583 @DocsEditable() 2817 @DocsEditable()
2584 @Experimental() // untriaged 2818 @Experimental() // untriaged
2585 final SvgElement nearestViewportElement; 2819 final SvgElement nearestViewportElement;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
2641 @DocsEditable() 2875 @DocsEditable()
2642 @DomName('SVGImageElement') 2876 @DomName('SVGImageElement')
2643 @Unstable() 2877 @Unstable()
2644 class ImageElement extends GraphicsElement implements UriReference, ExternalReso urcesRequired native "SVGImageElement" { 2878 class ImageElement extends GraphicsElement implements UriReference, ExternalReso urcesRequired native "SVGImageElement" {
2645 // To suppress missing implicit constructor warnings. 2879 // To suppress missing implicit constructor warnings.
2646 factory ImageElement._() { throw new UnsupportedError("Not supported"); } 2880 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
2647 2881
2648 @DomName('SVGImageElement.SVGImageElement') 2882 @DomName('SVGImageElement.SVGImageElement')
2649 @DocsEditable() 2883 @DocsEditable()
2650 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 2884 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
2885 /**
2886 * Constructor instantiated by the DOM when a custom element has been created.
2887 *
2888 * This can only be called by subclasses from their created constructor.
2889 */
2890 ImageElement.created() : super.created();
2651 2891
2652 @DomName('SVGImageElement.height') 2892 @DomName('SVGImageElement.height')
2653 @DocsEditable() 2893 @DocsEditable()
2654 final AnimatedLength height; 2894 final AnimatedLength height;
2655 2895
2656 @DomName('SVGImageElement.preserveAspectRatio') 2896 @DomName('SVGImageElement.preserveAspectRatio')
2657 @DocsEditable() 2897 @DocsEditable()
2658 final AnimatedPreserveAspectRatio preserveAspectRatio; 2898 final AnimatedPreserveAspectRatio preserveAspectRatio;
2659 2899
2660 @DomName('SVGImageElement.width') 2900 @DomName('SVGImageElement.width')
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
2855 @DocsEditable() 3095 @DocsEditable()
2856 @DomName('SVGLineElement') 3096 @DomName('SVGLineElement')
2857 @Unstable() 3097 @Unstable()
2858 class LineElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGLineElement" { 3098 class LineElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGLineElement" {
2859 // To suppress missing implicit constructor warnings. 3099 // To suppress missing implicit constructor warnings.
2860 factory LineElement._() { throw new UnsupportedError("Not supported"); } 3100 factory LineElement._() { throw new UnsupportedError("Not supported"); }
2861 3101
2862 @DomName('SVGLineElement.SVGLineElement') 3102 @DomName('SVGLineElement.SVGLineElement')
2863 @DocsEditable() 3103 @DocsEditable()
2864 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3104 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3105 /**
3106 * Constructor instantiated by the DOM when a custom element has been created.
3107 *
3108 * This can only be called by subclasses from their created constructor.
3109 */
3110 LineElement.created() : super.created();
2865 3111
2866 @DomName('SVGLineElement.x1') 3112 @DomName('SVGLineElement.x1')
2867 @DocsEditable() 3113 @DocsEditable()
2868 final AnimatedLength x1; 3114 final AnimatedLength x1;
2869 3115
2870 @DomName('SVGLineElement.x2') 3116 @DomName('SVGLineElement.x2')
2871 @DocsEditable() 3117 @DocsEditable()
2872 final AnimatedLength x2; 3118 final AnimatedLength x2;
2873 3119
2874 @DomName('SVGLineElement.y1') 3120 @DomName('SVGLineElement.y1')
(...skipping 18 matching lines...) Expand all
2893 @DocsEditable() 3139 @DocsEditable()
2894 @DomName('SVGLinearGradientElement') 3140 @DomName('SVGLinearGradientElement')
2895 @Unstable() 3141 @Unstable()
2896 class LinearGradientElement extends _GradientElement native "SVGLinearGradientEl ement" { 3142 class LinearGradientElement extends _GradientElement native "SVGLinearGradientEl ement" {
2897 // To suppress missing implicit constructor warnings. 3143 // To suppress missing implicit constructor warnings.
2898 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); } 3144 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); }
2899 3145
2900 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3146 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
2901 @DocsEditable() 3147 @DocsEditable()
2902 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3148 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3149 /**
3150 * Constructor instantiated by the DOM when a custom element has been created.
3151 *
3152 * This can only be called by subclasses from their created constructor.
3153 */
3154 LinearGradientElement.created() : super.created();
2903 3155
2904 @DomName('SVGLinearGradientElement.x1') 3156 @DomName('SVGLinearGradientElement.x1')
2905 @DocsEditable() 3157 @DocsEditable()
2906 final AnimatedLength x1; 3158 final AnimatedLength x1;
2907 3159
2908 @DomName('SVGLinearGradientElement.x2') 3160 @DomName('SVGLinearGradientElement.x2')
2909 @DocsEditable() 3161 @DocsEditable()
2910 final AnimatedLength x2; 3162 final AnimatedLength x2;
2911 3163
2912 @DomName('SVGLinearGradientElement.y1') 3164 @DomName('SVGLinearGradientElement.y1')
(...skipping 12 matching lines...) Expand all
2925 @DocsEditable() 3177 @DocsEditable()
2926 @DomName('SVGMarkerElement') 3178 @DomName('SVGMarkerElement')
2927 @Unstable() 3179 @Unstable()
2928 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGMarkerElement" { 3180 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGMarkerElement" {
2929 // To suppress missing implicit constructor warnings. 3181 // To suppress missing implicit constructor warnings.
2930 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } 3182 factory MarkerElement._() { throw new UnsupportedError("Not supported"); }
2931 3183
2932 @DomName('SVGMarkerElement.SVGMarkerElement') 3184 @DomName('SVGMarkerElement.SVGMarkerElement')
2933 @DocsEditable() 3185 @DocsEditable()
2934 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3186 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3187 /**
3188 * Constructor instantiated by the DOM when a custom element has been created.
3189 *
3190 * This can only be called by subclasses from their created constructor.
3191 */
3192 MarkerElement.created() : super.created();
2935 3193
2936 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') 3194 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
2937 @DocsEditable() 3195 @DocsEditable()
2938 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3196 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
2939 3197
2940 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN') 3198 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN')
2941 @DocsEditable() 3199 @DocsEditable()
2942 static const int SVG_MARKERUNITS_UNKNOWN = 0; 3200 static const int SVG_MARKERUNITS_UNKNOWN = 0;
2943 3201
2944 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE') 3202 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE')
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
3017 @DocsEditable() 3275 @DocsEditable()
3018 @DomName('SVGMaskElement') 3276 @DomName('SVGMaskElement')
3019 @Unstable() 3277 @Unstable()
3020 class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests native "SVGMaskElement" { 3278 class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests native "SVGMaskElement" {
3021 // To suppress missing implicit constructor warnings. 3279 // To suppress missing implicit constructor warnings.
3022 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3280 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3023 3281
3024 @DomName('SVGMaskElement.SVGMaskElement') 3282 @DomName('SVGMaskElement.SVGMaskElement')
3025 @DocsEditable() 3283 @DocsEditable()
3026 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3284 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3285 /**
3286 * Constructor instantiated by the DOM when a custom element has been created.
3287 *
3288 * This can only be called by subclasses from their created constructor.
3289 */
3290 MaskElement.created() : super.created();
3027 3291
3028 @DomName('SVGMaskElement.height') 3292 @DomName('SVGMaskElement.height')
3029 @DocsEditable() 3293 @DocsEditable()
3030 final AnimatedLength height; 3294 final AnimatedLength height;
3031 3295
3032 @DomName('SVGMaskElement.maskContentUnits') 3296 @DomName('SVGMaskElement.maskContentUnits')
3033 @DocsEditable() 3297 @DocsEditable()
3034 final AnimatedEnumeration maskContentUnits; 3298 final AnimatedEnumeration maskContentUnits;
3035 3299
3036 @DomName('SVGMaskElement.maskUnits') 3300 @DomName('SVGMaskElement.maskUnits')
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
3155 // for details. All rights reserved. Use of this source code is governed by a 3419 // for details. All rights reserved. Use of this source code is governed by a
3156 // BSD-style license that can be found in the LICENSE file. 3420 // BSD-style license that can be found in the LICENSE file.
3157 3421
3158 3422
3159 @DocsEditable() 3423 @DocsEditable()
3160 @DomName('SVGMetadataElement') 3424 @DomName('SVGMetadataElement')
3161 @Unstable() 3425 @Unstable()
3162 class MetadataElement extends SvgElement native "SVGMetadataElement" { 3426 class MetadataElement extends SvgElement native "SVGMetadataElement" {
3163 // To suppress missing implicit constructor warnings. 3427 // To suppress missing implicit constructor warnings.
3164 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } 3428 factory MetadataElement._() { throw new UnsupportedError("Not supported"); }
3429 /**
3430 * Constructor instantiated by the DOM when a custom element has been created.
3431 *
3432 * This can only be called by subclasses from their created constructor.
3433 */
3434 MetadataElement.created() : super.created();
3165 } 3435 }
3166 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3436 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3167 // for details. All rights reserved. Use of this source code is governed by a 3437 // for details. All rights reserved. Use of this source code is governed by a
3168 // BSD-style license that can be found in the LICENSE file. 3438 // BSD-style license that can be found in the LICENSE file.
3169 3439
3170 3440
3171 @DocsEditable() 3441 @DocsEditable()
3172 @DomName('SVGNumber') 3442 @DomName('SVGNumber')
3173 @Unstable() 3443 @Unstable()
3174 class Number extends Interceptor native "SVGNumber" { 3444 class Number extends Interceptor native "SVGNumber" {
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
3273 @DocsEditable() 3543 @DocsEditable()
3274 @DomName('SVGPathElement') 3544 @DomName('SVGPathElement')
3275 @Unstable() 3545 @Unstable()
3276 class PathElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGPathElement" { 3546 class PathElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGPathElement" {
3277 // To suppress missing implicit constructor warnings. 3547 // To suppress missing implicit constructor warnings.
3278 factory PathElement._() { throw new UnsupportedError("Not supported"); } 3548 factory PathElement._() { throw new UnsupportedError("Not supported"); }
3279 3549
3280 @DomName('SVGPathElement.SVGPathElement') 3550 @DomName('SVGPathElement.SVGPathElement')
3281 @DocsEditable() 3551 @DocsEditable()
3282 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 3552 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
3553 /**
3554 * Constructor instantiated by the DOM when a custom element has been created.
3555 *
3556 * This can only be called by subclasses from their created constructor.
3557 */
3558 PathElement.created() : super.created();
3283 3559
3284 @DomName('SVGPathElement.animatedNormalizedPathSegList') 3560 @DomName('SVGPathElement.animatedNormalizedPathSegList')
3285 @DocsEditable() 3561 @DocsEditable()
3286 final PathSegList animatedNormalizedPathSegList; 3562 final PathSegList animatedNormalizedPathSegList;
3287 3563
3288 @DomName('SVGPathElement.animatedPathSegList') 3564 @DomName('SVGPathElement.animatedPathSegList')
3289 @DocsEditable() 3565 @DocsEditable()
3290 final PathSegList animatedPathSegList; 3566 final PathSegList animatedPathSegList;
3291 3567
3292 @DomName('SVGPathElement.normalizedPathSegList') 3568 @DomName('SVGPathElement.normalizedPathSegList')
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
4068 @DocsEditable() 4344 @DocsEditable()
4069 @DomName('SVGPatternElement') 4345 @DomName('SVGPatternElement')
4070 @Unstable() 4346 @Unstable()
4071 class PatternElement extends SvgElement implements FitToViewBox, UriReference, E xternalResourcesRequired, Tests native "SVGPatternElement" { 4347 class PatternElement extends SvgElement implements FitToViewBox, UriReference, E xternalResourcesRequired, Tests native "SVGPatternElement" {
4072 // To suppress missing implicit constructor warnings. 4348 // To suppress missing implicit constructor warnings.
4073 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 4349 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
4074 4350
4075 @DomName('SVGPatternElement.SVGPatternElement') 4351 @DomName('SVGPatternElement.SVGPatternElement')
4076 @DocsEditable() 4352 @DocsEditable()
4077 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 4353 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
4354 /**
4355 * Constructor instantiated by the DOM when a custom element has been created.
4356 *
4357 * This can only be called by subclasses from their created constructor.
4358 */
4359 PatternElement.created() : super.created();
4078 4360
4079 @DomName('SVGPatternElement.height') 4361 @DomName('SVGPatternElement.height')
4080 @DocsEditable() 4362 @DocsEditable()
4081 final AnimatedLength height; 4363 final AnimatedLength height;
4082 4364
4083 @DomName('SVGPatternElement.patternContentUnits') 4365 @DomName('SVGPatternElement.patternContentUnits')
4084 @DocsEditable() 4366 @DocsEditable()
4085 final AnimatedEnumeration patternContentUnits; 4367 final AnimatedEnumeration patternContentUnits;
4086 4368
4087 @DomName('SVGPatternElement.patternTransform') 4369 @DomName('SVGPatternElement.patternTransform')
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
4216 @DocsEditable() 4498 @DocsEditable()
4217 @DomName('SVGPolygonElement') 4499 @DomName('SVGPolygonElement')
4218 @Unstable() 4500 @Unstable()
4219 class PolygonElement extends GraphicsElement implements ExternalResourcesRequire d native "SVGPolygonElement" { 4501 class PolygonElement extends GraphicsElement implements ExternalResourcesRequire d native "SVGPolygonElement" {
4220 // To suppress missing implicit constructor warnings. 4502 // To suppress missing implicit constructor warnings.
4221 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } 4503 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
4222 4504
4223 @DomName('SVGPolygonElement.SVGPolygonElement') 4505 @DomName('SVGPolygonElement.SVGPolygonElement')
4224 @DocsEditable() 4506 @DocsEditable()
4225 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 4507 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
4508 /**
4509 * Constructor instantiated by the DOM when a custom element has been created.
4510 *
4511 * This can only be called by subclasses from their created constructor.
4512 */
4513 PolygonElement.created() : super.created();
4226 4514
4227 @DomName('SVGPolygonElement.animatedPoints') 4515 @DomName('SVGPolygonElement.animatedPoints')
4228 @DocsEditable() 4516 @DocsEditable()
4229 final PointList animatedPoints; 4517 final PointList animatedPoints;
4230 4518
4231 @DomName('SVGPolygonElement.points') 4519 @DomName('SVGPolygonElement.points')
4232 @DocsEditable() 4520 @DocsEditable()
4233 final PointList points; 4521 final PointList points;
4234 4522
4235 // From SVGExternalResourcesRequired 4523 // From SVGExternalResourcesRequired
(...skipping 10 matching lines...) Expand all
4246 @DocsEditable() 4534 @DocsEditable()
4247 @DomName('SVGPolylineElement') 4535 @DomName('SVGPolylineElement')
4248 @Unstable() 4536 @Unstable()
4249 class PolylineElement extends GraphicsElement implements ExternalResourcesRequir ed native "SVGPolylineElement" { 4537 class PolylineElement extends GraphicsElement implements ExternalResourcesRequir ed native "SVGPolylineElement" {
4250 // To suppress missing implicit constructor warnings. 4538 // To suppress missing implicit constructor warnings.
4251 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } 4539 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
4252 4540
4253 @DomName('SVGPolylineElement.SVGPolylineElement') 4541 @DomName('SVGPolylineElement.SVGPolylineElement')
4254 @DocsEditable() 4542 @DocsEditable()
4255 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 4543 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
4544 /**
4545 * Constructor instantiated by the DOM when a custom element has been created.
4546 *
4547 * This can only be called by subclasses from their created constructor.
4548 */
4549 PolylineElement.created() : super.created();
4256 4550
4257 @DomName('SVGPolylineElement.animatedPoints') 4551 @DomName('SVGPolylineElement.animatedPoints')
4258 @DocsEditable() 4552 @DocsEditable()
4259 final PointList animatedPoints; 4553 final PointList animatedPoints;
4260 4554
4261 @DomName('SVGPolylineElement.points') 4555 @DomName('SVGPolylineElement.points')
4262 @DocsEditable() 4556 @DocsEditable()
4263 final PointList points; 4557 final PointList points;
4264 4558
4265 // From SVGExternalResourcesRequired 4559 // From SVGExternalResourcesRequired
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
4350 @DocsEditable() 4644 @DocsEditable()
4351 @DomName('SVGRadialGradientElement') 4645 @DomName('SVGRadialGradientElement')
4352 @Unstable() 4646 @Unstable()
4353 class RadialGradientElement extends _GradientElement native "SVGRadialGradientEl ement" { 4647 class RadialGradientElement extends _GradientElement native "SVGRadialGradientEl ement" {
4354 // To suppress missing implicit constructor warnings. 4648 // To suppress missing implicit constructor warnings.
4355 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); } 4649 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); }
4356 4650
4357 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 4651 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
4358 @DocsEditable() 4652 @DocsEditable()
4359 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 4653 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
4654 /**
4655 * Constructor instantiated by the DOM when a custom element has been created.
4656 *
4657 * This can only be called by subclasses from their created constructor.
4658 */
4659 RadialGradientElement.created() : super.created();
4360 4660
4361 @DomName('SVGRadialGradientElement.cx') 4661 @DomName('SVGRadialGradientElement.cx')
4362 @DocsEditable() 4662 @DocsEditable()
4363 final AnimatedLength cx; 4663 final AnimatedLength cx;
4364 4664
4365 @DomName('SVGRadialGradientElement.cy') 4665 @DomName('SVGRadialGradientElement.cy')
4366 @DocsEditable() 4666 @DocsEditable()
4367 final AnimatedLength cy; 4667 final AnimatedLength cy;
4368 4668
4369 @DomName('SVGRadialGradientElement.fr') 4669 @DomName('SVGRadialGradientElement.fr')
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
4416 @DocsEditable() 4716 @DocsEditable()
4417 @DomName('SVGRectElement') 4717 @DomName('SVGRectElement')
4418 @Unstable() 4718 @Unstable()
4419 class RectElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGRectElement" { 4719 class RectElement extends GraphicsElement implements ExternalResourcesRequired n ative "SVGRectElement" {
4420 // To suppress missing implicit constructor warnings. 4720 // To suppress missing implicit constructor warnings.
4421 factory RectElement._() { throw new UnsupportedError("Not supported"); } 4721 factory RectElement._() { throw new UnsupportedError("Not supported"); }
4422 4722
4423 @DomName('SVGRectElement.SVGRectElement') 4723 @DomName('SVGRectElement.SVGRectElement')
4424 @DocsEditable() 4724 @DocsEditable()
4425 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 4725 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
4726 /**
4727 * Constructor instantiated by the DOM when a custom element has been created.
4728 *
4729 * This can only be called by subclasses from their created constructor.
4730 */
4731 RectElement.created() : super.created();
4426 4732
4427 @DomName('SVGRectElement.height') 4733 @DomName('SVGRectElement.height')
4428 @DocsEditable() 4734 @DocsEditable()
4429 final AnimatedLength height; 4735 final AnimatedLength height;
4430 4736
4431 @DomName('SVGRectElement.rx') 4737 @DomName('SVGRectElement.rx')
4432 @DocsEditable() 4738 @DocsEditable()
4433 final AnimatedLength rx; 4739 final AnimatedLength rx;
4434 4740
4435 @DomName('SVGRectElement.ry') 4741 @DomName('SVGRectElement.ry')
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
4496 @DocsEditable() 4802 @DocsEditable()
4497 @DomName('SVGScriptElement') 4803 @DomName('SVGScriptElement')
4498 @Unstable() 4804 @Unstable()
4499 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGScriptElement" { 4805 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGScriptElement" {
4500 // To suppress missing implicit constructor warnings. 4806 // To suppress missing implicit constructor warnings.
4501 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } 4807 factory ScriptElement._() { throw new UnsupportedError("Not supported"); }
4502 4808
4503 @DomName('SVGScriptElement.SVGScriptElement') 4809 @DomName('SVGScriptElement.SVGScriptElement')
4504 @DocsEditable() 4810 @DocsEditable()
4505 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 4811 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
4812 /**
4813 * Constructor instantiated by the DOM when a custom element has been created.
4814 *
4815 * This can only be called by subclasses from their created constructor.
4816 */
4817 ScriptElement.created() : super.created();
4506 4818
4507 @DomName('SVGScriptElement.type') 4819 @DomName('SVGScriptElement.type')
4508 @DocsEditable() 4820 @DocsEditable()
4509 String type; 4821 String type;
4510 4822
4511 // From SVGExternalResourcesRequired 4823 // From SVGExternalResourcesRequired
4512 4824
4513 @DomName('SVGScriptElement.externalResourcesRequired') 4825 @DomName('SVGScriptElement.externalResourcesRequired')
4514 @DocsEditable() 4826 @DocsEditable()
4515 final AnimatedBoolean externalResourcesRequired; 4827 final AnimatedBoolean externalResourcesRequired;
(...skipping 15 matching lines...) Expand all
4531 @SupportedBrowser(SupportedBrowser.FIREFOX) 4843 @SupportedBrowser(SupportedBrowser.FIREFOX)
4532 @SupportedBrowser(SupportedBrowser.SAFARI) 4844 @SupportedBrowser(SupportedBrowser.SAFARI)
4533 @Unstable() 4845 @Unstable()
4534 class SetElement extends AnimationElement native "SVGSetElement" { 4846 class SetElement extends AnimationElement native "SVGSetElement" {
4535 // To suppress missing implicit constructor warnings. 4847 // To suppress missing implicit constructor warnings.
4536 factory SetElement._() { throw new UnsupportedError("Not supported"); } 4848 factory SetElement._() { throw new UnsupportedError("Not supported"); }
4537 4849
4538 @DomName('SVGSetElement.SVGSetElement') 4850 @DomName('SVGSetElement.SVGSetElement')
4539 @DocsEditable() 4851 @DocsEditable()
4540 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ; 4852 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ;
4853 /**
4854 * Constructor instantiated by the DOM when a custom element has been created.
4855 *
4856 * This can only be called by subclasses from their created constructor.
4857 */
4858 SetElement.created() : super.created();
4541 4859
4542 /// Checks if this type is supported on the current platform. 4860 /// Checks if this type is supported on the current platform.
4543 static bool get supported => SvgElement.isTagSupported('set') && (new SvgEleme nt.tag('set') is SetElement); 4861 static bool get supported => SvgElement.isTagSupported('set') && (new SvgEleme nt.tag('set') is SetElement);
4544 } 4862 }
4545 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4546 // for details. All rights reserved. Use of this source code is governed by a 4864 // for details. All rights reserved. Use of this source code is governed by a
4547 // BSD-style license that can be found in the LICENSE file. 4865 // BSD-style license that can be found in the LICENSE file.
4548 4866
4549 4867
4550 @DocsEditable() 4868 @DocsEditable()
4551 @DomName('SVGStopElement') 4869 @DomName('SVGStopElement')
4552 @Unstable() 4870 @Unstable()
4553 class StopElement extends SvgElement native "SVGStopElement" { 4871 class StopElement extends SvgElement native "SVGStopElement" {
4554 // To suppress missing implicit constructor warnings. 4872 // To suppress missing implicit constructor warnings.
4555 factory StopElement._() { throw new UnsupportedError("Not supported"); } 4873 factory StopElement._() { throw new UnsupportedError("Not supported"); }
4556 4874
4557 @DomName('SVGStopElement.SVGStopElement') 4875 @DomName('SVGStopElement.SVGStopElement')
4558 @DocsEditable() 4876 @DocsEditable()
4559 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 4877 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
4878 /**
4879 * Constructor instantiated by the DOM when a custom element has been created.
4880 *
4881 * This can only be called by subclasses from their created constructor.
4882 */
4883 StopElement.created() : super.created();
4560 4884
4561 @JSName('offset') 4885 @JSName('offset')
4562 @DomName('SVGStopElement.offset') 4886 @DomName('SVGStopElement.offset')
4563 @DocsEditable() 4887 @DocsEditable()
4564 final AnimatedNumber gradientOffset; 4888 final AnimatedNumber gradientOffset;
4565 } 4889 }
4566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4567 // for details. All rights reserved. Use of this source code is governed by a 4891 // for details. All rights reserved. Use of this source code is governed by a
4568 // BSD-style license that can be found in the LICENSE file. 4892 // BSD-style license that can be found in the LICENSE file.
4569 4893
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
4660 @DomName('SVGStyleElement') 4984 @DomName('SVGStyleElement')
4661 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 4985 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
4662 @Experimental() // nonstandard 4986 @Experimental() // nonstandard
4663 class StyleElement extends SvgElement native "SVGStyleElement" { 4987 class StyleElement extends SvgElement native "SVGStyleElement" {
4664 // To suppress missing implicit constructor warnings. 4988 // To suppress missing implicit constructor warnings.
4665 factory StyleElement._() { throw new UnsupportedError("Not supported"); } 4989 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
4666 4990
4667 @DomName('SVGStyleElement.SVGStyleElement') 4991 @DomName('SVGStyleElement.SVGStyleElement')
4668 @DocsEditable() 4992 @DocsEditable()
4669 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 4993 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
4994 /**
4995 * Constructor instantiated by the DOM when a custom element has been created.
4996 *
4997 * This can only be called by subclasses from their created constructor.
4998 */
4999 StyleElement.created() : super.created();
4670 5000
4671 @DomName('SVGStyleElement.disabled') 5001 @DomName('SVGStyleElement.disabled')
4672 @DocsEditable() 5002 @DocsEditable()
4673 bool disabled; 5003 bool disabled;
4674 5004
4675 @DomName('SVGStyleElement.media') 5005 @DomName('SVGStyleElement.media')
4676 @DocsEditable() 5006 @DocsEditable()
4677 String media; 5007 String media;
4678 5008
4679 // Shadowing definition. 5009 // Shadowing definition.
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
4849 * Checks to see if the SVG element type is supported by the current platform. 5179 * Checks to see if the SVG element type is supported by the current platform.
4850 * 5180 *
4851 * The tag should be a valid SVG element tag name. 5181 * The tag should be a valid SVG element tag name.
4852 */ 5182 */
4853 static bool isTagSupported(String tag) { 5183 static bool isTagSupported(String tag) {
4854 var e = new SvgElement.tag(tag); 5184 var e = new SvgElement.tag(tag);
4855 return e is SvgElement && !(e is UnknownElement); 5185 return e is SvgElement && !(e is UnknownElement);
4856 } 5186 }
4857 // To suppress missing implicit constructor warnings. 5187 // To suppress missing implicit constructor warnings.
4858 factory SvgElement._() { throw new UnsupportedError("Not supported"); } 5188 factory SvgElement._() { throw new UnsupportedError("Not supported"); }
5189 /**
5190 * Constructor instantiated by the DOM when a custom element has been created.
5191 *
5192 * This can only be called by subclasses from their created constructor.
5193 */
5194 SvgElement.created() : super.created();
4859 5195
4860 // Shadowing definition. 5196 // Shadowing definition.
4861 AnimatedString get _svgClassName => JS("AnimatedString", "#.className", this); 5197 AnimatedString get _svgClassName => JS("AnimatedString", "#.className", this);
4862 5198
4863 @JSName('ownerSVGElement') 5199 @JSName('ownerSVGElement')
4864 @DomName('SVGElement.ownerSVGElement') 5200 @DomName('SVGElement.ownerSVGElement')
4865 @DocsEditable() 5201 @DocsEditable()
4866 final SvgSvgElement ownerSvgElement; 5202 final SvgSvgElement ownerSvgElement;
4867 5203
4868 // Use implementation from Element. 5204 // Use implementation from Element.
(...skipping 28 matching lines...) Expand all
4897 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan native "SVGSVGElement" { 5233 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan native "SVGSVGElement" {
4898 factory SvgSvgElement() { 5234 factory SvgSvgElement() {
4899 final el = new SvgElement.tag("svg"); 5235 final el = new SvgElement.tag("svg");
4900 // The SVG spec requires the version attribute to match the spec version 5236 // The SVG spec requires the version attribute to match the spec version
4901 el.attributes['version'] = "1.1"; 5237 el.attributes['version'] = "1.1";
4902 return el; 5238 return el;
4903 } 5239 }
4904 5240
4905 // To suppress missing implicit constructor warnings. 5241 // To suppress missing implicit constructor warnings.
4906 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 5242 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
5243 /**
5244 * Constructor instantiated by the DOM when a custom element has been created.
5245 *
5246 * This can only be called by subclasses from their created constructor.
5247 */
5248 SvgSvgElement.created() : super.created();
4907 5249
4908 @DomName('SVGSVGElement.contentScriptType') 5250 @DomName('SVGSVGElement.contentScriptType')
4909 @DocsEditable() 5251 @DocsEditable()
4910 String contentScriptType; 5252 String contentScriptType;
4911 5253
4912 @DomName('SVGSVGElement.contentStyleType') 5254 @DomName('SVGSVGElement.contentStyleType')
4913 @DocsEditable() 5255 @DocsEditable()
4914 String contentStyleType; 5256 String contentStyleType;
4915 5257
4916 @DomName('SVGSVGElement.currentScale') 5258 @DomName('SVGSVGElement.currentScale')
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
5100 @DocsEditable() 5442 @DocsEditable()
5101 @DomName('SVGSwitchElement') 5443 @DomName('SVGSwitchElement')
5102 @Unstable() 5444 @Unstable()
5103 class SwitchElement extends GraphicsElement implements ExternalResourcesRequired native "SVGSwitchElement" { 5445 class SwitchElement extends GraphicsElement implements ExternalResourcesRequired native "SVGSwitchElement" {
5104 // To suppress missing implicit constructor warnings. 5446 // To suppress missing implicit constructor warnings.
5105 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } 5447 factory SwitchElement._() { throw new UnsupportedError("Not supported"); }
5106 5448
5107 @DomName('SVGSwitchElement.SVGSwitchElement') 5449 @DomName('SVGSwitchElement.SVGSwitchElement')
5108 @DocsEditable() 5450 @DocsEditable()
5109 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 5451 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
5452 /**
5453 * Constructor instantiated by the DOM when a custom element has been created.
5454 *
5455 * This can only be called by subclasses from their created constructor.
5456 */
5457 SwitchElement.created() : super.created();
5110 5458
5111 // From SVGExternalResourcesRequired 5459 // From SVGExternalResourcesRequired
5112 5460
5113 @DomName('SVGSwitchElement.externalResourcesRequired') 5461 @DomName('SVGSwitchElement.externalResourcesRequired')
5114 @DocsEditable() 5462 @DocsEditable()
5115 final AnimatedBoolean externalResourcesRequired; 5463 final AnimatedBoolean externalResourcesRequired;
5116 } 5464 }
5117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5118 // for details. All rights reserved. Use of this source code is governed by a 5466 // for details. All rights reserved. Use of this source code is governed by a
5119 // BSD-style license that can be found in the LICENSE file. 5467 // BSD-style license that can be found in the LICENSE file.
5120 5468
5121 5469
5122 @DocsEditable() 5470 @DocsEditable()
5123 @DomName('SVGSymbolElement') 5471 @DomName('SVGSymbolElement')
5124 @Unstable() 5472 @Unstable()
5125 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGSymbolElement" { 5473 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGSymbolElement" {
5126 // To suppress missing implicit constructor warnings. 5474 // To suppress missing implicit constructor warnings.
5127 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } 5475 factory SymbolElement._() { throw new UnsupportedError("Not supported"); }
5128 5476
5129 @DomName('SVGSymbolElement.SVGSymbolElement') 5477 @DomName('SVGSymbolElement.SVGSymbolElement')
5130 @DocsEditable() 5478 @DocsEditable()
5131 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 5479 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
5480 /**
5481 * Constructor instantiated by the DOM when a custom element has been created.
5482 *
5483 * This can only be called by subclasses from their created constructor.
5484 */
5485 SymbolElement.created() : super.created();
5132 5486
5133 // From SVGExternalResourcesRequired 5487 // From SVGExternalResourcesRequired
5134 5488
5135 @DomName('SVGSymbolElement.externalResourcesRequired') 5489 @DomName('SVGSymbolElement.externalResourcesRequired')
5136 @DocsEditable() 5490 @DocsEditable()
5137 final AnimatedBoolean externalResourcesRequired; 5491 final AnimatedBoolean externalResourcesRequired;
5138 5492
5139 // From SVGFitToViewBox 5493 // From SVGFitToViewBox
5140 5494
5141 @DomName('SVGSymbolElement.preserveAspectRatio') 5495 @DomName('SVGSymbolElement.preserveAspectRatio')
(...skipping 12 matching lines...) Expand all
5154 @DocsEditable() 5508 @DocsEditable()
5155 @DomName('SVGTSpanElement') 5509 @DomName('SVGTSpanElement')
5156 @Unstable() 5510 @Unstable()
5157 class TSpanElement extends TextPositioningElement native "SVGTSpanElement" { 5511 class TSpanElement extends TextPositioningElement native "SVGTSpanElement" {
5158 // To suppress missing implicit constructor warnings. 5512 // To suppress missing implicit constructor warnings.
5159 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } 5513 factory TSpanElement._() { throw new UnsupportedError("Not supported"); }
5160 5514
5161 @DomName('SVGTSpanElement.SVGTSpanElement') 5515 @DomName('SVGTSpanElement.SVGTSpanElement')
5162 @DocsEditable() 5516 @DocsEditable()
5163 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an"); 5517 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an");
5518 /**
5519 * Constructor instantiated by the DOM when a custom element has been created.
5520 *
5521 * This can only be called by subclasses from their created constructor.
5522 */
5523 TSpanElement.created() : super.created();
5164 } 5524 }
5165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5166 // for details. All rights reserved. Use of this source code is governed by a 5526 // for details. All rights reserved. Use of this source code is governed by a
5167 // BSD-style license that can be found in the LICENSE file. 5527 // BSD-style license that can be found in the LICENSE file.
5168 5528
5169 5529
5170 @DocsEditable() 5530 @DocsEditable()
5171 @DomName('SVGTests') 5531 @DomName('SVGTests')
5172 @Unstable() 5532 @Unstable()
5173 abstract class Tests extends Interceptor { 5533 abstract class Tests extends Interceptor {
(...skipping 10 matching lines...) Expand all
5184 // for details. All rights reserved. Use of this source code is governed by a 5544 // for details. All rights reserved. Use of this source code is governed by a
5185 // BSD-style license that can be found in the LICENSE file. 5545 // BSD-style license that can be found in the LICENSE file.
5186 5546
5187 5547
5188 @DocsEditable() 5548 @DocsEditable()
5189 @DomName('SVGTextContentElement') 5549 @DomName('SVGTextContentElement')
5190 @Unstable() 5550 @Unstable()
5191 class TextContentElement extends GraphicsElement implements ExternalResourcesReq uired native "SVGTextContentElement" { 5551 class TextContentElement extends GraphicsElement implements ExternalResourcesReq uired native "SVGTextContentElement" {
5192 // To suppress missing implicit constructor warnings. 5552 // To suppress missing implicit constructor warnings.
5193 factory TextContentElement._() { throw new UnsupportedError("Not supported"); } 5553 factory TextContentElement._() { throw new UnsupportedError("Not supported"); }
5554 /**
5555 * Constructor instantiated by the DOM when a custom element has been created.
5556 *
5557 * This can only be called by subclasses from their created constructor.
5558 */
5559 TextContentElement.created() : super.created();
5194 5560
5195 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') 5561 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
5196 @DocsEditable() 5562 @DocsEditable()
5197 static const int LENGTHADJUST_SPACING = 1; 5563 static const int LENGTHADJUST_SPACING = 1;
5198 5564
5199 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 5565 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
5200 @DocsEditable() 5566 @DocsEditable()
5201 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 5567 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
5202 5568
5203 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 5569 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
5262 @DocsEditable() 5628 @DocsEditable()
5263 @DomName('SVGTextElement') 5629 @DomName('SVGTextElement')
5264 @Unstable() 5630 @Unstable()
5265 class TextElement extends TextPositioningElement native "SVGTextElement" { 5631 class TextElement extends TextPositioningElement native "SVGTextElement" {
5266 // To suppress missing implicit constructor warnings. 5632 // To suppress missing implicit constructor warnings.
5267 factory TextElement._() { throw new UnsupportedError("Not supported"); } 5633 factory TextElement._() { throw new UnsupportedError("Not supported"); }
5268 5634
5269 @DomName('SVGTextElement.SVGTextElement') 5635 @DomName('SVGTextElement.SVGTextElement')
5270 @DocsEditable() 5636 @DocsEditable()
5271 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 5637 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
5638 /**
5639 * Constructor instantiated by the DOM when a custom element has been created.
5640 *
5641 * This can only be called by subclasses from their created constructor.
5642 */
5643 TextElement.created() : super.created();
5272 } 5644 }
5273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5645 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5274 // for details. All rights reserved. Use of this source code is governed by a 5646 // for details. All rights reserved. Use of this source code is governed by a
5275 // BSD-style license that can be found in the LICENSE file. 5647 // BSD-style license that can be found in the LICENSE file.
5276 5648
5277 5649
5278 @DocsEditable() 5650 @DocsEditable()
5279 @DomName('SVGTextPathElement') 5651 @DomName('SVGTextPathElement')
5280 @Unstable() 5652 @Unstable()
5281 class TextPathElement extends TextContentElement implements UriReference native "SVGTextPathElement" { 5653 class TextPathElement extends TextContentElement implements UriReference native "SVGTextPathElement" {
5282 // To suppress missing implicit constructor warnings. 5654 // To suppress missing implicit constructor warnings.
5283 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } 5655 factory TextPathElement._() { throw new UnsupportedError("Not supported"); }
5656 /**
5657 * Constructor instantiated by the DOM when a custom element has been created.
5658 *
5659 * This can only be called by subclasses from their created constructor.
5660 */
5661 TextPathElement.created() : super.created();
5284 5662
5285 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') 5663 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN')
5286 @DocsEditable() 5664 @DocsEditable()
5287 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 5665 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
5288 5666
5289 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH') 5667 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH')
5290 @DocsEditable() 5668 @DocsEditable()
5291 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 5669 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
5292 5670
5293 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN') 5671 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN')
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
5328 // for details. All rights reserved. Use of this source code is governed by a 5706 // for details. All rights reserved. Use of this source code is governed by a
5329 // BSD-style license that can be found in the LICENSE file. 5707 // BSD-style license that can be found in the LICENSE file.
5330 5708
5331 5709
5332 @DocsEditable() 5710 @DocsEditable()
5333 @DomName('SVGTextPositioningElement') 5711 @DomName('SVGTextPositioningElement')
5334 @Unstable() 5712 @Unstable()
5335 class TextPositioningElement extends TextContentElement native "SVGTextPositioni ngElement" { 5713 class TextPositioningElement extends TextContentElement native "SVGTextPositioni ngElement" {
5336 // To suppress missing implicit constructor warnings. 5714 // To suppress missing implicit constructor warnings.
5337 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); } 5715 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
5716 /**
5717 * Constructor instantiated by the DOM when a custom element has been created.
5718 *
5719 * This can only be called by subclasses from their created constructor.
5720 */
5721 TextPositioningElement.created() : super.created();
5338 5722
5339 @DomName('SVGTextPositioningElement.dx') 5723 @DomName('SVGTextPositioningElement.dx')
5340 @DocsEditable() 5724 @DocsEditable()
5341 final AnimatedLengthList dx; 5725 final AnimatedLengthList dx;
5342 5726
5343 @DomName('SVGTextPositioningElement.dy') 5727 @DomName('SVGTextPositioningElement.dy')
5344 @DocsEditable() 5728 @DocsEditable()
5345 final AnimatedLengthList dy; 5729 final AnimatedLengthList dy;
5346 5730
5347 @DomName('SVGTextPositioningElement.rotate') 5731 @DomName('SVGTextPositioningElement.rotate')
(...skipping 16 matching lines...) Expand all
5364 @DocsEditable() 5748 @DocsEditable()
5365 @DomName('SVGTitleElement') 5749 @DomName('SVGTitleElement')
5366 @Unstable() 5750 @Unstable()
5367 class TitleElement extends SvgElement native "SVGTitleElement" { 5751 class TitleElement extends SvgElement native "SVGTitleElement" {
5368 // To suppress missing implicit constructor warnings. 5752 // To suppress missing implicit constructor warnings.
5369 factory TitleElement._() { throw new UnsupportedError("Not supported"); } 5753 factory TitleElement._() { throw new UnsupportedError("Not supported"); }
5370 5754
5371 @DomName('SVGTitleElement.SVGTitleElement') 5755 @DomName('SVGTitleElement.SVGTitleElement')
5372 @DocsEditable() 5756 @DocsEditable()
5373 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 5757 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
5758 /**
5759 * Constructor instantiated by the DOM when a custom element has been created.
5760 *
5761 * This can only be called by subclasses from their created constructor.
5762 */
5763 TitleElement.created() : super.created();
5374 } 5764 }
5375 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5765 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5376 // for details. All rights reserved. Use of this source code is governed by a 5766 // for details. All rights reserved. Use of this source code is governed by a
5377 // BSD-style license that can be found in the LICENSE file. 5767 // BSD-style license that can be found in the LICENSE file.
5378 5768
5379 5769
5380 @DocsEditable() 5770 @DocsEditable()
5381 @DomName('SVGTransform') 5771 @DomName('SVGTransform')
5382 @Unstable() 5772 @Unstable()
5383 class Transform extends Interceptor native "SVGTransform" { 5773 class Transform extends Interceptor native "SVGTransform" {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
5585 @DocsEditable() 5975 @DocsEditable()
5586 @DomName('SVGUseElement') 5976 @DomName('SVGUseElement')
5587 @Unstable() 5977 @Unstable()
5588 class UseElement extends GraphicsElement implements UriReference, ExternalResour cesRequired, Tests native "SVGUseElement" { 5978 class UseElement extends GraphicsElement implements UriReference, ExternalResour cesRequired, Tests native "SVGUseElement" {
5589 // To suppress missing implicit constructor warnings. 5979 // To suppress missing implicit constructor warnings.
5590 factory UseElement._() { throw new UnsupportedError("Not supported"); } 5980 factory UseElement._() { throw new UnsupportedError("Not supported"); }
5591 5981
5592 @DomName('SVGUseElement.SVGUseElement') 5982 @DomName('SVGUseElement.SVGUseElement')
5593 @DocsEditable() 5983 @DocsEditable()
5594 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 5984 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
5985 /**
5986 * Constructor instantiated by the DOM when a custom element has been created.
5987 *
5988 * This can only be called by subclasses from their created constructor.
5989 */
5990 UseElement.created() : super.created();
5595 5991
5596 @DomName('SVGUseElement.animatedInstanceRoot') 5992 @DomName('SVGUseElement.animatedInstanceRoot')
5597 @DocsEditable() 5993 @DocsEditable()
5598 final ElementInstance animatedInstanceRoot; 5994 final ElementInstance animatedInstanceRoot;
5599 5995
5600 @DomName('SVGUseElement.height') 5996 @DomName('SVGUseElement.height')
5601 @DocsEditable() 5997 @DocsEditable()
5602 final AnimatedLength height; 5998 final AnimatedLength height;
5603 5999
5604 @DomName('SVGUseElement.instanceRoot') 6000 @DomName('SVGUseElement.instanceRoot')
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
5655 @DocsEditable() 6051 @DocsEditable()
5656 @DomName('SVGViewElement') 6052 @DomName('SVGViewElement')
5657 @Unstable() 6053 @Unstable()
5658 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan native "SVGViewElement" { 6054 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan native "SVGViewElement" {
5659 // To suppress missing implicit constructor warnings. 6055 // To suppress missing implicit constructor warnings.
5660 factory ViewElement._() { throw new UnsupportedError("Not supported"); } 6056 factory ViewElement._() { throw new UnsupportedError("Not supported"); }
5661 6057
5662 @DomName('SVGViewElement.SVGViewElement') 6058 @DomName('SVGViewElement.SVGViewElement')
5663 @DocsEditable() 6059 @DocsEditable()
5664 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 6060 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
6061 /**
6062 * Constructor instantiated by the DOM when a custom element has been created.
6063 *
6064 * This can only be called by subclasses from their created constructor.
6065 */
6066 ViewElement.created() : super.created();
5665 6067
5666 @DomName('SVGViewElement.viewTarget') 6068 @DomName('SVGViewElement.viewTarget')
5667 @DocsEditable() 6069 @DocsEditable()
5668 final StringList viewTarget; 6070 final StringList viewTarget;
5669 6071
5670 // From SVGExternalResourcesRequired 6072 // From SVGExternalResourcesRequired
5671 6073
5672 @DomName('SVGViewElement.externalResourcesRequired') 6074 @DomName('SVGViewElement.externalResourcesRequired')
5673 @DocsEditable() 6075 @DocsEditable()
5674 final AnimatedBoolean externalResourcesRequired; 6076 final AnimatedBoolean externalResourcesRequired;
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
5862 // for details. All rights reserved. Use of this source code is governed by a 6264 // for details. All rights reserved. Use of this source code is governed by a
5863 // BSD-style license that can be found in the LICENSE file. 6265 // BSD-style license that can be found in the LICENSE file.
5864 6266
5865 6267
5866 @DocsEditable() 6268 @DocsEditable()
5867 @DomName('SVGGradientElement') 6269 @DomName('SVGGradientElement')
5868 @Unstable() 6270 @Unstable()
5869 class _GradientElement extends SvgElement implements UriReference, ExternalResou rcesRequired native "SVGGradientElement" { 6271 class _GradientElement extends SvgElement implements UriReference, ExternalResou rcesRequired native "SVGGradientElement" {
5870 // To suppress missing implicit constructor warnings. 6272 // To suppress missing implicit constructor warnings.
5871 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } 6273 factory _GradientElement._() { throw new UnsupportedError("Not supported"); }
6274 /**
6275 * Constructor instantiated by the DOM when a custom element has been created.
6276 *
6277 * This can only be called by subclasses from their created constructor.
6278 */
6279 _GradientElement.created() : super.created();
5872 6280
5873 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') 6281 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
5874 @DocsEditable() 6282 @DocsEditable()
5875 static const int SVG_SPREADMETHOD_PAD = 1; 6283 static const int SVG_SPREADMETHOD_PAD = 1;
5876 6284
5877 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') 6285 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
5878 @DocsEditable() 6286 @DocsEditable()
5879 static const int SVG_SPREADMETHOD_REFLECT = 2; 6287 static const int SVG_SPREADMETHOD_REFLECT = 2;
5880 6288
5881 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 6289 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
5914 // for details. All rights reserved. Use of this source code is governed by a 6322 // for details. All rights reserved. Use of this source code is governed by a
5915 // BSD-style license that can be found in the LICENSE file. 6323 // BSD-style license that can be found in the LICENSE file.
5916 6324
5917 6325
5918 @DocsEditable() 6326 @DocsEditable()
5919 @DomName('SVGAltGlyphDefElement') 6327 @DomName('SVGAltGlyphDefElement')
5920 @Unstable() 6328 @Unstable()
5921 abstract class _SVGAltGlyphDefElement extends SvgElement native "SVGAltGlyphDefE lement" { 6329 abstract class _SVGAltGlyphDefElement extends SvgElement native "SVGAltGlyphDefE lement" {
5922 // To suppress missing implicit constructor warnings. 6330 // To suppress missing implicit constructor warnings.
5923 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); } 6331 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); }
6332 /**
6333 * Constructor instantiated by the DOM when a custom element has been created.
6334 *
6335 * This can only be called by subclasses from their created constructor.
6336 */
6337 _SVGAltGlyphDefElement.created() : super.created();
5924 } 6338 }
5925 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5926 // for details. All rights reserved. Use of this source code is governed by a 6340 // for details. All rights reserved. Use of this source code is governed by a
5927 // BSD-style license that can be found in the LICENSE file. 6341 // BSD-style license that can be found in the LICENSE file.
5928 6342
5929 6343
5930 @DocsEditable() 6344 @DocsEditable()
5931 @DomName('SVGAltGlyphItemElement') 6345 @DomName('SVGAltGlyphItemElement')
5932 @Unstable() 6346 @Unstable()
5933 abstract class _SVGAltGlyphItemElement extends SvgElement native "SVGAltGlyphIte mElement" { 6347 abstract class _SVGAltGlyphItemElement extends SvgElement native "SVGAltGlyphIte mElement" {
5934 // To suppress missing implicit constructor warnings. 6348 // To suppress missing implicit constructor warnings.
5935 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); } 6349 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); }
6350 /**
6351 * Constructor instantiated by the DOM when a custom element has been created.
6352 *
6353 * This can only be called by subclasses from their created constructor.
6354 */
6355 _SVGAltGlyphItemElement.created() : super.created();
5936 } 6356 }
5937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6357 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5938 // for details. All rights reserved. Use of this source code is governed by a 6358 // for details. All rights reserved. Use of this source code is governed by a
5939 // BSD-style license that can be found in the LICENSE file. 6359 // BSD-style license that can be found in the LICENSE file.
5940 6360
5941 6361
5942 @DocsEditable() 6362 @DocsEditable()
5943 @DomName('SVGAnimateColorElement') 6363 @DomName('SVGAnimateColorElement')
5944 @Unstable() 6364 @Unstable()
5945 abstract class _SVGAnimateColorElement extends AnimationElement native "SVGAnima teColorElement" { 6365 abstract class _SVGAnimateColorElement extends AnimationElement native "SVGAnima teColorElement" {
5946 // To suppress missing implicit constructor warnings. 6366 // To suppress missing implicit constructor warnings.
5947 factory _SVGAnimateColorElement._() { throw new UnsupportedError("Not supporte d"); } 6367 factory _SVGAnimateColorElement._() { throw new UnsupportedError("Not supporte d"); }
6368 /**
6369 * Constructor instantiated by the DOM when a custom element has been created.
6370 *
6371 * This can only be called by subclasses from their created constructor.
6372 */
6373 _SVGAnimateColorElement.created() : super.created();
5948 } 6374 }
5949 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 6375 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
5950 // for details. All rights reserved. Use of this source code is governed by a 6376 // for details. All rights reserved. Use of this source code is governed by a
5951 // BSD-style license that can be found in the LICENSE file. 6377 // BSD-style license that can be found in the LICENSE file.
5952 6378
5953 6379
5954 // Hack because the baseclass is private in dart:html, and we want to omit this 6380 // Hack because the baseclass is private in dart:html, and we want to omit this
5955 // type entirely but can't. 6381 // type entirely but can't.
5956 @DocsEditable() 6382 @DocsEditable()
5957 @DomName('SVGColor') 6383 @DomName('SVGColor')
5958 @Unstable() 6384 @Unstable()
5959 abstract class _SVGColor native "SVGColor" { 6385 abstract class _SVGColor native "SVGColor" {
5960 _SVGColor.internal(); 6386 _SVGColor.internal();
5961 } 6387 }
5962 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5963 // for details. All rights reserved. Use of this source code is governed by a 6389 // for details. All rights reserved. Use of this source code is governed by a
5964 // BSD-style license that can be found in the LICENSE file. 6390 // BSD-style license that can be found in the LICENSE file.
5965 6391
5966 6392
5967 @DocsEditable() 6393 @DocsEditable()
5968 @DomName('SVGComponentTransferFunctionElement') 6394 @DomName('SVGComponentTransferFunctionElement')
5969 @Unstable() 6395 @Unstable()
5970 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "S VGComponentTransferFunctionElement" { 6396 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "S VGComponentTransferFunctionElement" {
5971 // To suppress missing implicit constructor warnings. 6397 // To suppress missing implicit constructor warnings.
5972 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); } 6398 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); }
6399 /**
6400 * Constructor instantiated by the DOM when a custom element has been created.
6401 *
6402 * This can only be called by subclasses from their created constructor.
6403 */
6404 _SVGComponentTransferFunctionElement.created() : super.created();
5973 } 6405 }
5974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6406 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5975 // for details. All rights reserved. Use of this source code is governed by a 6407 // for details. All rights reserved. Use of this source code is governed by a
5976 // BSD-style license that can be found in the LICENSE file. 6408 // BSD-style license that can be found in the LICENSE file.
5977 6409
5978 6410
5979 @DocsEditable() 6411 @DocsEditable()
5980 @DomName('SVGCursorElement') 6412 @DomName('SVGCursorElement')
5981 @Unstable() 6413 @Unstable()
5982 abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext ernalResourcesRequired, Tests native "SVGCursorElement" { 6414 abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext ernalResourcesRequired, Tests native "SVGCursorElement" {
5983 // To suppress missing implicit constructor warnings. 6415 // To suppress missing implicit constructor warnings.
5984 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } 6416 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); }
5985 6417
5986 @DomName('SVGCursorElement.SVGCursorElement') 6418 @DomName('SVGCursorElement.SVGCursorElement')
5987 @DocsEditable() 6419 @DocsEditable()
5988 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor"); 6420 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor");
6421 /**
6422 * Constructor instantiated by the DOM when a custom element has been created.
6423 *
6424 * This can only be called by subclasses from their created constructor.
6425 */
6426 _SVGCursorElement.created() : super.created();
5989 6427
5990 /// Checks if this type is supported on the current platform. 6428 /// Checks if this type is supported on the current platform.
5991 static bool get supported => SvgElement.isTagSupported('cursor') && (new SvgEl ement.tag('cursor') is _SVGCursorElement); 6429 static bool get supported => SvgElement.isTagSupported('cursor') && (new SvgEl ement.tag('cursor') is _SVGCursorElement);
5992 6430
5993 // From SVGExternalResourcesRequired 6431 // From SVGExternalResourcesRequired
5994 6432
5995 // From SVGTests 6433 // From SVGTests
5996 6434
5997 // From SVGURIReference 6435 // From SVGURIReference
5998 } 6436 }
5999 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6437 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6000 // for details. All rights reserved. Use of this source code is governed by a 6438 // for details. All rights reserved. Use of this source code is governed by a
6001 // BSD-style license that can be found in the LICENSE file. 6439 // BSD-style license that can be found in the LICENSE file.
6002 6440
6003 6441
6004 @DocsEditable() 6442 @DocsEditable()
6005 @DomName('SVGFEDropShadowElement') 6443 @DomName('SVGFEDropShadowElement')
6006 @Experimental() // nonstandard 6444 @Experimental() // nonstandard
6007 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi tiveStandardAttributes native "SVGFEDropShadowElement" { 6445 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi tiveStandardAttributes native "SVGFEDropShadowElement" {
6008 // To suppress missing implicit constructor warnings. 6446 // To suppress missing implicit constructor warnings.
6009 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); } 6447 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); }
6448 /**
6449 * Constructor instantiated by the DOM when a custom element has been created.
6450 *
6451 * This can only be called by subclasses from their created constructor.
6452 */
6453 _SVGFEDropShadowElement.created() : super.created();
6010 6454
6011 // From SVGFilterPrimitiveStandardAttributes 6455 // From SVGFilterPrimitiveStandardAttributes
6012 } 6456 }
6013 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6014 // for details. All rights reserved. Use of this source code is governed by a 6458 // for details. All rights reserved. Use of this source code is governed by a
6015 // BSD-style license that can be found in the LICENSE file. 6459 // BSD-style license that can be found in the LICENSE file.
6016 6460
6017 6461
6018 @DocsEditable() 6462 @DocsEditable()
6019 @DomName('SVGFontElement') 6463 @DomName('SVGFontElement')
6020 @Unstable() 6464 @Unstable()
6021 abstract class _SVGFontElement extends SvgElement native "SVGFontElement" { 6465 abstract class _SVGFontElement extends SvgElement native "SVGFontElement" {
6022 // To suppress missing implicit constructor warnings. 6466 // To suppress missing implicit constructor warnings.
6023 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } 6467 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); }
6468 /**
6469 * Constructor instantiated by the DOM when a custom element has been created.
6470 *
6471 * This can only be called by subclasses from their created constructor.
6472 */
6473 _SVGFontElement.created() : super.created();
6024 } 6474 }
6025 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6475 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6026 // for details. All rights reserved. Use of this source code is governed by a 6476 // for details. All rights reserved. Use of this source code is governed by a
6027 // BSD-style license that can be found in the LICENSE file. 6477 // BSD-style license that can be found in the LICENSE file.
6028 6478
6029 6479
6030 @DocsEditable() 6480 @DocsEditable()
6031 @DomName('SVGFontFaceElement') 6481 @DomName('SVGFontFaceElement')
6032 @Unstable() 6482 @Unstable()
6033 abstract class _SVGFontFaceElement extends SvgElement native "SVGFontFaceElement " { 6483 abstract class _SVGFontFaceElement extends SvgElement native "SVGFontFaceElement " {
6034 // To suppress missing implicit constructor warnings. 6484 // To suppress missing implicit constructor warnings.
6035 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); } 6485 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); }
6486 /**
6487 * Constructor instantiated by the DOM when a custom element has been created.
6488 *
6489 * This can only be called by subclasses from their created constructor.
6490 */
6491 _SVGFontFaceElement.created() : super.created();
6036 } 6492 }
6037 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6493 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6038 // for details. All rights reserved. Use of this source code is governed by a 6494 // for details. All rights reserved. Use of this source code is governed by a
6039 // BSD-style license that can be found in the LICENSE file. 6495 // BSD-style license that can be found in the LICENSE file.
6040 6496
6041 6497
6042 @DocsEditable() 6498 @DocsEditable()
6043 @DomName('SVGFontFaceFormatElement') 6499 @DomName('SVGFontFaceFormatElement')
6044 @Unstable() 6500 @Unstable()
6045 abstract class _SVGFontFaceFormatElement extends SvgElement native "SVGFontFaceF ormatElement" { 6501 abstract class _SVGFontFaceFormatElement extends SvgElement native "SVGFontFaceF ormatElement" {
6046 // To suppress missing implicit constructor warnings. 6502 // To suppress missing implicit constructor warnings.
6047 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); } 6503 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); }
6504 /**
6505 * Constructor instantiated by the DOM when a custom element has been created.
6506 *
6507 * This can only be called by subclasses from their created constructor.
6508 */
6509 _SVGFontFaceFormatElement.created() : super.created();
6048 } 6510 }
6049 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6511 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6050 // for details. All rights reserved. Use of this source code is governed by a 6512 // for details. All rights reserved. Use of this source code is governed by a
6051 // BSD-style license that can be found in the LICENSE file. 6513 // BSD-style license that can be found in the LICENSE file.
6052 6514
6053 6515
6054 @DocsEditable() 6516 @DocsEditable()
6055 @DomName('SVGFontFaceNameElement') 6517 @DomName('SVGFontFaceNameElement')
6056 @Unstable() 6518 @Unstable()
6057 abstract class _SVGFontFaceNameElement extends SvgElement native "SVGFontFaceNam eElement" { 6519 abstract class _SVGFontFaceNameElement extends SvgElement native "SVGFontFaceNam eElement" {
6058 // To suppress missing implicit constructor warnings. 6520 // To suppress missing implicit constructor warnings.
6059 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); } 6521 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); }
6522 /**
6523 * Constructor instantiated by the DOM when a custom element has been created.
6524 *
6525 * This can only be called by subclasses from their created constructor.
6526 */
6527 _SVGFontFaceNameElement.created() : super.created();
6060 } 6528 }
6061 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6062 // for details. All rights reserved. Use of this source code is governed by a 6530 // for details. All rights reserved. Use of this source code is governed by a
6063 // BSD-style license that can be found in the LICENSE file. 6531 // BSD-style license that can be found in the LICENSE file.
6064 6532
6065 6533
6066 @DocsEditable() 6534 @DocsEditable()
6067 @DomName('SVGFontFaceSrcElement') 6535 @DomName('SVGFontFaceSrcElement')
6068 @Unstable() 6536 @Unstable()
6069 abstract class _SVGFontFaceSrcElement extends SvgElement native "SVGFontFaceSrcE lement" { 6537 abstract class _SVGFontFaceSrcElement extends SvgElement native "SVGFontFaceSrcE lement" {
6070 // To suppress missing implicit constructor warnings. 6538 // To suppress missing implicit constructor warnings.
6071 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); } 6539 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); }
6540 /**
6541 * Constructor instantiated by the DOM when a custom element has been created.
6542 *
6543 * This can only be called by subclasses from their created constructor.
6544 */
6545 _SVGFontFaceSrcElement.created() : super.created();
6072 } 6546 }
6073 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6547 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6074 // for details. All rights reserved. Use of this source code is governed by a 6548 // for details. All rights reserved. Use of this source code is governed by a
6075 // BSD-style license that can be found in the LICENSE file. 6549 // BSD-style license that can be found in the LICENSE file.
6076 6550
6077 6551
6078 @DocsEditable() 6552 @DocsEditable()
6079 @DomName('SVGFontFaceUriElement') 6553 @DomName('SVGFontFaceUriElement')
6080 @Unstable() 6554 @Unstable()
6081 abstract class _SVGFontFaceUriElement extends SvgElement native "SVGFontFaceUriE lement" { 6555 abstract class _SVGFontFaceUriElement extends SvgElement native "SVGFontFaceUriE lement" {
6082 // To suppress missing implicit constructor warnings. 6556 // To suppress missing implicit constructor warnings.
6083 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); } 6557 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); }
6558 /**
6559 * Constructor instantiated by the DOM when a custom element has been created.
6560 *
6561 * This can only be called by subclasses from their created constructor.
6562 */
6563 _SVGFontFaceUriElement.created() : super.created();
6084 } 6564 }
6085 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6086 // for details. All rights reserved. Use of this source code is governed by a 6566 // for details. All rights reserved. Use of this source code is governed by a
6087 // BSD-style license that can be found in the LICENSE file. 6567 // BSD-style license that can be found in the LICENSE file.
6088 6568
6089 6569
6090 @DocsEditable() 6570 @DocsEditable()
6091 @DomName('SVGGlyphElement') 6571 @DomName('SVGGlyphElement')
6092 @Unstable() 6572 @Unstable()
6093 abstract class _SVGGlyphElement extends SvgElement native "SVGGlyphElement" { 6573 abstract class _SVGGlyphElement extends SvgElement native "SVGGlyphElement" {
6094 // To suppress missing implicit constructor warnings. 6574 // To suppress missing implicit constructor warnings.
6095 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } 6575 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); }
6096 6576
6097 @DomName('SVGGlyphElement.SVGGlyphElement') 6577 @DomName('SVGGlyphElement.SVGGlyphElement')
6098 @DocsEditable() 6578 @DocsEditable()
6099 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph"); 6579 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph");
6580 /**
6581 * Constructor instantiated by the DOM when a custom element has been created.
6582 *
6583 * This can only be called by subclasses from their created constructor.
6584 */
6585 _SVGGlyphElement.created() : super.created();
6100 } 6586 }
6101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6587 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6102 // for details. All rights reserved. Use of this source code is governed by a 6588 // for details. All rights reserved. Use of this source code is governed by a
6103 // BSD-style license that can be found in the LICENSE file. 6589 // BSD-style license that can be found in the LICENSE file.
6104 6590
6105 6591
6106 @DocsEditable() 6592 @DocsEditable()
6107 @DomName('SVGGlyphRefElement') 6593 @DomName('SVGGlyphRefElement')
6108 @Unstable() 6594 @Unstable()
6109 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference na tive "SVGGlyphRefElement" { 6595 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference na tive "SVGGlyphRefElement" {
6110 // To suppress missing implicit constructor warnings. 6596 // To suppress missing implicit constructor warnings.
6111 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); } 6597 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); }
6598 /**
6599 * Constructor instantiated by the DOM when a custom element has been created.
6600 *
6601 * This can only be called by subclasses from their created constructor.
6602 */
6603 _SVGGlyphRefElement.created() : super.created();
6112 6604
6113 // From SVGURIReference 6605 // From SVGURIReference
6114 } 6606 }
6115 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6116 // for details. All rights reserved. Use of this source code is governed by a 6608 // for details. All rights reserved. Use of this source code is governed by a
6117 // BSD-style license that can be found in the LICENSE file. 6609 // BSD-style license that can be found in the LICENSE file.
6118 6610
6119 6611
6120 @DocsEditable() 6612 @DocsEditable()
6121 @DomName('SVGHKernElement') 6613 @DomName('SVGHKernElement')
6122 @Unstable() 6614 @Unstable()
6123 abstract class _SVGHKernElement extends SvgElement native "SVGHKernElement" { 6615 abstract class _SVGHKernElement extends SvgElement native "SVGHKernElement" {
6124 // To suppress missing implicit constructor warnings. 6616 // To suppress missing implicit constructor warnings.
6125 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } 6617 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); }
6126 6618
6127 @DomName('SVGHKernElement.SVGHKernElement') 6619 @DomName('SVGHKernElement.SVGHKernElement')
6128 @DocsEditable() 6620 @DocsEditable()
6129 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern"); 6621 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern");
6622 /**
6623 * Constructor instantiated by the DOM when a custom element has been created.
6624 *
6625 * This can only be called by subclasses from their created constructor.
6626 */
6627 _SVGHKernElement.created() : super.created();
6130 } 6628 }
6131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6629 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6132 // for details. All rights reserved. Use of this source code is governed by a 6630 // for details. All rights reserved. Use of this source code is governed by a
6133 // BSD-style license that can be found in the LICENSE file. 6631 // BSD-style license that can be found in the LICENSE file.
6134 6632
6135 6633
6136 @DocsEditable() 6634 @DocsEditable()
6137 @DomName('SVGMPathElement') 6635 @DomName('SVGMPathElement')
6138 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired native "SVGMPathElement" { 6636 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired native "SVGMPathElement" {
6139 // To suppress missing implicit constructor warnings. 6637 // To suppress missing implicit constructor warnings.
6140 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } 6638 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); }
6141 6639
6142 @DomName('SVGMPathElement.SVGMPathElement') 6640 @DomName('SVGMPathElement.SVGMPathElement')
6143 @DocsEditable() 6641 @DocsEditable()
6144 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath"); 6642 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath");
6643 /**
6644 * Constructor instantiated by the DOM when a custom element has been created.
6645 *
6646 * This can only be called by subclasses from their created constructor.
6647 */
6648 _SVGMPathElement.created() : super.created();
6145 6649
6146 // From SVGExternalResourcesRequired 6650 // From SVGExternalResourcesRequired
6147 6651
6148 // From SVGURIReference 6652 // From SVGURIReference
6149 } 6653 }
6150 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6151 // for details. All rights reserved. Use of this source code is governed by a 6655 // for details. All rights reserved. Use of this source code is governed by a
6152 // BSD-style license that can be found in the LICENSE file. 6656 // BSD-style license that can be found in the LICENSE file.
6153 6657
6154 6658
6155 @DocsEditable() 6659 @DocsEditable()
6156 @DomName('SVGMissingGlyphElement') 6660 @DomName('SVGMissingGlyphElement')
6157 @Unstable() 6661 @Unstable()
6158 abstract class _SVGMissingGlyphElement extends SvgElement native "SVGMissingGlyp hElement" { 6662 abstract class _SVGMissingGlyphElement extends SvgElement native "SVGMissingGlyp hElement" {
6159 // To suppress missing implicit constructor warnings. 6663 // To suppress missing implicit constructor warnings.
6160 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); } 6664 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); }
6665 /**
6666 * Constructor instantiated by the DOM when a custom element has been created.
6667 *
6668 * This can only be called by subclasses from their created constructor.
6669 */
6670 _SVGMissingGlyphElement.created() : super.created();
6161 } 6671 }
6162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6163 // for details. All rights reserved. Use of this source code is governed by a 6673 // for details. All rights reserved. Use of this source code is governed by a
6164 // BSD-style license that can be found in the LICENSE file. 6674 // BSD-style license that can be found in the LICENSE file.
6165 6675
6166 6676
6167 @DocsEditable() 6677 @DocsEditable()
6168 @DomName('SVGPaint') 6678 @DomName('SVGPaint')
6169 @Unstable() 6679 @Unstable()
6170 abstract class _SVGPaint extends _SVGColor native "SVGPaint" { 6680 abstract class _SVGPaint extends _SVGColor native "SVGPaint" {
6171 // To suppress missing implicit constructor warnings. 6681 // To suppress missing implicit constructor warnings.
6172 factory _SVGPaint._() { throw new UnsupportedError("Not supported"); } 6682 factory _SVGPaint._() { throw new UnsupportedError("Not supported"); }
6173 } 6683 }
6174 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6684 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6175 // for details. All rights reserved. Use of this source code is governed by a 6685 // for details. All rights reserved. Use of this source code is governed by a
6176 // BSD-style license that can be found in the LICENSE file. 6686 // BSD-style license that can be found in the LICENSE file.
6177 6687
6178 6688
6179 @DocsEditable() 6689 @DocsEditable()
6180 @DomName('SVGTRefElement') 6690 @DomName('SVGTRefElement')
6181 @Unstable() 6691 @Unstable()
6182 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence native "SVGTRefElement" { 6692 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence native "SVGTRefElement" {
6183 // To suppress missing implicit constructor warnings. 6693 // To suppress missing implicit constructor warnings.
6184 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); } 6694 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); }
6185 6695
6186 @DomName('SVGTRefElement.SVGTRefElement') 6696 @DomName('SVGTRefElement.SVGTRefElement')
6187 @DocsEditable() 6697 @DocsEditable()
6188 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref"); 6698 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref");
6699 /**
6700 * Constructor instantiated by the DOM when a custom element has been created.
6701 *
6702 * This can only be called by subclasses from their created constructor.
6703 */
6704 _SVGTRefElement.created() : super.created();
6189 6705
6190 // From SVGURIReference 6706 // From SVGURIReference
6191 } 6707 }
6192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6708 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6193 // for details. All rights reserved. Use of this source code is governed by a 6709 // for details. All rights reserved. Use of this source code is governed by a
6194 // BSD-style license that can be found in the LICENSE file. 6710 // BSD-style license that can be found in the LICENSE file.
6195 6711
6196 6712
6197 @DocsEditable() 6713 @DocsEditable()
6198 @DomName('SVGVKernElement') 6714 @DomName('SVGVKernElement')
6199 @Unstable() 6715 @Unstable()
6200 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { 6716 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" {
6201 // To suppress missing implicit constructor warnings. 6717 // To suppress missing implicit constructor warnings.
6202 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } 6718 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
6203 6719
6204 @DomName('SVGVKernElement.SVGVKernElement') 6720 @DomName('SVGVKernElement.SVGVKernElement')
6205 @DocsEditable() 6721 @DocsEditable()
6206 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6722 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
6723 /**
6724 * Constructor instantiated by the DOM when a custom element has been created.
6725 *
6726 * This can only be called by subclasses from their created constructor.
6727 */
6728 _SVGVKernElement.created() : super.created();
6207 } 6729 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698