OLD | NEW |
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 |
11 import 'dart:async'; | 11 import 'dart:async'; |
12 import 'dart:collection'; | 12 import 'dart:collection'; |
13 import 'dart:_internal'; | 13 import 'dart:_internal'; |
14 import 'dart:html'; | 14 import 'dart:html'; |
15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
16 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
17 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
18 import 'dart:js' as js; | 18 import 'dart:js' as js; |
19 // DO NOT EDIT | 19 // DO NOT EDIT |
20 // Auto-generated dart:svg library. | 20 // Auto-generated dart:svg library. |
21 | 21 |
22 | 22 |
23 | 23 |
24 | 24 |
25 | 25 |
26 // FIXME: Can we make this private? | 26 // FIXME: Can we make this private? |
| 27 @Deprecated("Internal Use Only") |
27 final svgBlinkMap = { | 28 final svgBlinkMap = { |
28 'SVGAElement': () => AElement, | 29 'SVGAElement': () => AElement, |
29 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, | 30 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, |
30 'SVGAltGlyphElement': () => AltGlyphElement, | 31 'SVGAltGlyphElement': () => AltGlyphElement, |
31 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, | 32 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, |
32 'SVGAngle': () => Angle, | 33 'SVGAngle': () => Angle, |
33 'SVGAnimateElement': () => AnimateElement, | 34 'SVGAnimateElement': () => AnimateElement, |
34 'SVGAnimateMotionElement': () => AnimateMotionElement, | 35 'SVGAnimateMotionElement': () => AnimateMotionElement, |
35 'SVGAnimateTransformElement': () => AnimateTransformElement, | 36 'SVGAnimateTransformElement': () => AnimateTransformElement, |
36 'SVGAnimatedAngle': () => AnimatedAngle, | 37 'SVGAnimatedAngle': () => AnimatedAngle, |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 'SVGUseElement': () => UseElement, | 165 'SVGUseElement': () => UseElement, |
165 'SVGVKernElement': () => _SVGVKernElement, | 166 'SVGVKernElement': () => _SVGVKernElement, |
166 'SVGViewElement': () => ViewElement, | 167 'SVGViewElement': () => ViewElement, |
167 'SVGViewSpec': () => ViewSpec, | 168 'SVGViewSpec': () => ViewSpec, |
168 'SVGZoomAndPan': () => ZoomAndPan, | 169 'SVGZoomAndPan': () => ZoomAndPan, |
169 'SVGZoomEvent': () => ZoomEvent, | 170 'SVGZoomEvent': () => ZoomEvent, |
170 | 171 |
171 }; | 172 }; |
172 | 173 |
173 // FIXME: Can we make this private? | 174 // FIXME: Can we make this private? |
| 175 @Deprecated("Internal Use Only") |
174 final svgBlinkFunctionMap = { | 176 final svgBlinkFunctionMap = { |
175 'SVGAElement': () => AElement.internalCreateAElement, | 177 'SVGAElement': () => AElement.internalCreateAElement, |
176 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement.internalCreate_SVGAltGly
phDefElement, | 178 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement.internalCreate_SVGAltGly
phDefElement, |
177 'SVGAltGlyphElement': () => AltGlyphElement.internalCreateAltGlyphElement, | 179 'SVGAltGlyphElement': () => AltGlyphElement.internalCreateAltGlyphElement, |
178 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement.internalCreate_SVGAltG
lyphItemElement, | 180 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement.internalCreate_SVGAltG
lyphItemElement, |
179 'SVGAngle': () => Angle.internalCreateAngle, | 181 'SVGAngle': () => Angle.internalCreateAngle, |
180 'SVGAnimateElement': () => AnimateElement.internalCreateAnimateElement, | 182 'SVGAnimateElement': () => AnimateElement.internalCreateAnimateElement, |
181 'SVGAnimateMotionElement': () => AnimateMotionElement.internalCreateAnimateMot
ionElement, | 183 'SVGAnimateMotionElement': () => AnimateMotionElement.internalCreateAnimateMot
ionElement, |
182 'SVGAnimateTransformElement': () => AnimateTransformElement.internalCreateAnim
ateTransformElement, | 184 'SVGAnimateTransformElement': () => AnimateTransformElement.internalCreateAnim
ateTransformElement, |
183 'SVGAnimatedAngle': () => AnimatedAngle.internalCreateAnimatedAngle, | 185 'SVGAnimatedAngle': () => AnimatedAngle.internalCreateAnimatedAngle, |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 @Unstable() | 337 @Unstable() |
336 class AElement extends GraphicsElement implements UriReference { | 338 class AElement extends GraphicsElement implements UriReference { |
337 // To suppress missing implicit constructor warnings. | 339 // To suppress missing implicit constructor warnings. |
338 factory AElement._() { throw new UnsupportedError("Not supported"); } | 340 factory AElement._() { throw new UnsupportedError("Not supported"); } |
339 | 341 |
340 @DomName('SVGAElement.SVGAElement') | 342 @DomName('SVGAElement.SVGAElement') |
341 @DocsEditable() | 343 @DocsEditable() |
342 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); | 344 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); |
343 | 345 |
344 | 346 |
| 347 @Deprecated("Internal Use Only") |
345 static AElement internalCreateAElement() { | 348 static AElement internalCreateAElement() { |
346 return new AElement._internalWrap(); | 349 return new AElement._internalWrap(); |
347 } | 350 } |
348 | 351 |
349 factory AElement._internalWrap() { | 352 factory AElement._internalWrap() { |
350 return new AElement.internal_(); | 353 return new AElement.internal_(); |
351 } | 354 } |
352 | 355 |
353 AElement.internal_() : super.internal_(); | 356 AElement.internal_() : super.internal_(); |
354 | 357 |
(...skipping 28 matching lines...) Expand all Loading... |
383 @Unstable() | 386 @Unstable() |
384 class AltGlyphElement extends TextPositioningElement implements UriReference { | 387 class AltGlyphElement extends TextPositioningElement implements UriReference { |
385 // To suppress missing implicit constructor warnings. | 388 // To suppress missing implicit constructor warnings. |
386 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } | 389 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } |
387 | 390 |
388 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') | 391 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') |
389 @DocsEditable() | 392 @DocsEditable() |
390 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); | 393 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); |
391 | 394 |
392 | 395 |
| 396 @Deprecated("Internal Use Only") |
393 static AltGlyphElement internalCreateAltGlyphElement() { | 397 static AltGlyphElement internalCreateAltGlyphElement() { |
394 return new AltGlyphElement._internalWrap(); | 398 return new AltGlyphElement._internalWrap(); |
395 } | 399 } |
396 | 400 |
397 factory AltGlyphElement._internalWrap() { | 401 factory AltGlyphElement._internalWrap() { |
398 return new AltGlyphElement.internal_(); | 402 return new AltGlyphElement.internal_(); |
399 } | 403 } |
400 | 404 |
401 AltGlyphElement.internal_() : super.internal_(); | 405 AltGlyphElement.internal_() : super.internal_(); |
402 | 406 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 // WARNING: Do not edit - generated code. | 442 // WARNING: Do not edit - generated code. |
439 | 443 |
440 | 444 |
441 @DocsEditable() | 445 @DocsEditable() |
442 @DomName('SVGAngle') | 446 @DomName('SVGAngle') |
443 @Unstable() | 447 @Unstable() |
444 class Angle extends DartHtmlDomObject { | 448 class Angle extends DartHtmlDomObject { |
445 // To suppress missing implicit constructor warnings. | 449 // To suppress missing implicit constructor warnings. |
446 factory Angle._() { throw new UnsupportedError("Not supported"); } | 450 factory Angle._() { throw new UnsupportedError("Not supported"); } |
447 | 451 |
| 452 @Deprecated("Internal Use Only") |
448 static Angle internalCreateAngle() { | 453 static Angle internalCreateAngle() { |
449 return new Angle._internalWrap(); | 454 return new Angle._internalWrap(); |
450 } | 455 } |
451 | 456 |
452 factory Angle._internalWrap() { | 457 factory Angle._internalWrap() { |
453 return new Angle.internal_(); | 458 return new Angle.internal_(); |
454 } | 459 } |
455 | 460 |
456 Angle.internal_() { } | 461 Angle.internal_() { } |
457 | 462 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 @Unstable() | 535 @Unstable() |
531 class AnimateElement extends AnimationElement { | 536 class AnimateElement extends AnimationElement { |
532 // To suppress missing implicit constructor warnings. | 537 // To suppress missing implicit constructor warnings. |
533 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } | 538 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } |
534 | 539 |
535 @DomName('SVGAnimateElement.SVGAnimateElement') | 540 @DomName('SVGAnimateElement.SVGAnimateElement') |
536 @DocsEditable() | 541 @DocsEditable() |
537 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); | 542 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); |
538 | 543 |
539 | 544 |
| 545 @Deprecated("Internal Use Only") |
540 static AnimateElement internalCreateAnimateElement() { | 546 static AnimateElement internalCreateAnimateElement() { |
541 return new AnimateElement._internalWrap(); | 547 return new AnimateElement._internalWrap(); |
542 } | 548 } |
543 | 549 |
544 factory AnimateElement._internalWrap() { | 550 factory AnimateElement._internalWrap() { |
545 return new AnimateElement.internal_(); | 551 return new AnimateElement.internal_(); |
546 } | 552 } |
547 | 553 |
548 AnimateElement.internal_() : super.internal_(); | 554 AnimateElement.internal_() : super.internal_(); |
549 | 555 |
(...skipping 23 matching lines...) Expand all Loading... |
573 @Unstable() | 579 @Unstable() |
574 class AnimateMotionElement extends AnimationElement { | 580 class AnimateMotionElement extends AnimationElement { |
575 // To suppress missing implicit constructor warnings. | 581 // To suppress missing implicit constructor warnings. |
576 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } | 582 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } |
577 | 583 |
578 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') | 584 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') |
579 @DocsEditable() | 585 @DocsEditable() |
580 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); | 586 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); |
581 | 587 |
582 | 588 |
| 589 @Deprecated("Internal Use Only") |
583 static AnimateMotionElement internalCreateAnimateMotionElement() { | 590 static AnimateMotionElement internalCreateAnimateMotionElement() { |
584 return new AnimateMotionElement._internalWrap(); | 591 return new AnimateMotionElement._internalWrap(); |
585 } | 592 } |
586 | 593 |
587 factory AnimateMotionElement._internalWrap() { | 594 factory AnimateMotionElement._internalWrap() { |
588 return new AnimateMotionElement.internal_(); | 595 return new AnimateMotionElement.internal_(); |
589 } | 596 } |
590 | 597 |
591 AnimateMotionElement.internal_() : super.internal_(); | 598 AnimateMotionElement.internal_() : super.internal_(); |
592 | 599 |
(...skipping 23 matching lines...) Expand all Loading... |
616 @Unstable() | 623 @Unstable() |
617 class AnimateTransformElement extends AnimationElement { | 624 class AnimateTransformElement extends AnimationElement { |
618 // To suppress missing implicit constructor warnings. | 625 // To suppress missing implicit constructor warnings. |
619 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } | 626 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } |
620 | 627 |
621 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') | 628 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') |
622 @DocsEditable() | 629 @DocsEditable() |
623 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); | 630 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); |
624 | 631 |
625 | 632 |
| 633 @Deprecated("Internal Use Only") |
626 static AnimateTransformElement internalCreateAnimateTransformElement() { | 634 static AnimateTransformElement internalCreateAnimateTransformElement() { |
627 return new AnimateTransformElement._internalWrap(); | 635 return new AnimateTransformElement._internalWrap(); |
628 } | 636 } |
629 | 637 |
630 factory AnimateTransformElement._internalWrap() { | 638 factory AnimateTransformElement._internalWrap() { |
631 return new AnimateTransformElement.internal_(); | 639 return new AnimateTransformElement.internal_(); |
632 } | 640 } |
633 | 641 |
634 AnimateTransformElement.internal_() : super.internal_(); | 642 AnimateTransformElement.internal_() : super.internal_(); |
635 | 643 |
(...skipping 15 matching lines...) Expand all Loading... |
651 // WARNING: Do not edit - generated code. | 659 // WARNING: Do not edit - generated code. |
652 | 660 |
653 | 661 |
654 @DocsEditable() | 662 @DocsEditable() |
655 @DomName('SVGAnimatedAngle') | 663 @DomName('SVGAnimatedAngle') |
656 @Unstable() | 664 @Unstable() |
657 class AnimatedAngle extends DartHtmlDomObject { | 665 class AnimatedAngle extends DartHtmlDomObject { |
658 // To suppress missing implicit constructor warnings. | 666 // To suppress missing implicit constructor warnings. |
659 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 667 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
660 | 668 |
| 669 @Deprecated("Internal Use Only") |
661 static AnimatedAngle internalCreateAnimatedAngle() { | 670 static AnimatedAngle internalCreateAnimatedAngle() { |
662 return new AnimatedAngle._internalWrap(); | 671 return new AnimatedAngle._internalWrap(); |
663 } | 672 } |
664 | 673 |
665 factory AnimatedAngle._internalWrap() { | 674 factory AnimatedAngle._internalWrap() { |
666 return new AnimatedAngle.internal_(); | 675 return new AnimatedAngle.internal_(); |
667 } | 676 } |
668 | 677 |
669 AnimatedAngle.internal_() { } | 678 AnimatedAngle.internal_() { } |
670 | 679 |
(...skipping 16 matching lines...) Expand all Loading... |
687 // WARNING: Do not edit - generated code. | 696 // WARNING: Do not edit - generated code. |
688 | 697 |
689 | 698 |
690 @DocsEditable() | 699 @DocsEditable() |
691 @DomName('SVGAnimatedBoolean') | 700 @DomName('SVGAnimatedBoolean') |
692 @Unstable() | 701 @Unstable() |
693 class AnimatedBoolean extends DartHtmlDomObject { | 702 class AnimatedBoolean extends DartHtmlDomObject { |
694 // To suppress missing implicit constructor warnings. | 703 // To suppress missing implicit constructor warnings. |
695 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 704 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
696 | 705 |
| 706 @Deprecated("Internal Use Only") |
697 static AnimatedBoolean internalCreateAnimatedBoolean() { | 707 static AnimatedBoolean internalCreateAnimatedBoolean() { |
698 return new AnimatedBoolean._internalWrap(); | 708 return new AnimatedBoolean._internalWrap(); |
699 } | 709 } |
700 | 710 |
701 factory AnimatedBoolean._internalWrap() { | 711 factory AnimatedBoolean._internalWrap() { |
702 return new AnimatedBoolean.internal_(); | 712 return new AnimatedBoolean.internal_(); |
703 } | 713 } |
704 | 714 |
705 AnimatedBoolean.internal_() { } | 715 AnimatedBoolean.internal_() { } |
706 | 716 |
(...skipping 20 matching lines...) Expand all Loading... |
727 // WARNING: Do not edit - generated code. | 737 // WARNING: Do not edit - generated code. |
728 | 738 |
729 | 739 |
730 @DocsEditable() | 740 @DocsEditable() |
731 @DomName('SVGAnimatedEnumeration') | 741 @DomName('SVGAnimatedEnumeration') |
732 @Unstable() | 742 @Unstable() |
733 class AnimatedEnumeration extends DartHtmlDomObject { | 743 class AnimatedEnumeration extends DartHtmlDomObject { |
734 // To suppress missing implicit constructor warnings. | 744 // To suppress missing implicit constructor warnings. |
735 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 745 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
736 | 746 |
| 747 @Deprecated("Internal Use Only") |
737 static AnimatedEnumeration internalCreateAnimatedEnumeration() { | 748 static AnimatedEnumeration internalCreateAnimatedEnumeration() { |
738 return new AnimatedEnumeration._internalWrap(); | 749 return new AnimatedEnumeration._internalWrap(); |
739 } | 750 } |
740 | 751 |
741 factory AnimatedEnumeration._internalWrap() { | 752 factory AnimatedEnumeration._internalWrap() { |
742 return new AnimatedEnumeration.internal_(); | 753 return new AnimatedEnumeration.internal_(); |
743 } | 754 } |
744 | 755 |
745 AnimatedEnumeration.internal_() { } | 756 AnimatedEnumeration.internal_() { } |
746 | 757 |
(...skipping 20 matching lines...) Expand all Loading... |
767 // WARNING: Do not edit - generated code. | 778 // WARNING: Do not edit - generated code. |
768 | 779 |
769 | 780 |
770 @DocsEditable() | 781 @DocsEditable() |
771 @DomName('SVGAnimatedInteger') | 782 @DomName('SVGAnimatedInteger') |
772 @Unstable() | 783 @Unstable() |
773 class AnimatedInteger extends DartHtmlDomObject { | 784 class AnimatedInteger extends DartHtmlDomObject { |
774 // To suppress missing implicit constructor warnings. | 785 // To suppress missing implicit constructor warnings. |
775 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 786 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
776 | 787 |
| 788 @Deprecated("Internal Use Only") |
777 static AnimatedInteger internalCreateAnimatedInteger() { | 789 static AnimatedInteger internalCreateAnimatedInteger() { |
778 return new AnimatedInteger._internalWrap(); | 790 return new AnimatedInteger._internalWrap(); |
779 } | 791 } |
780 | 792 |
781 factory AnimatedInteger._internalWrap() { | 793 factory AnimatedInteger._internalWrap() { |
782 return new AnimatedInteger.internal_(); | 794 return new AnimatedInteger.internal_(); |
783 } | 795 } |
784 | 796 |
785 AnimatedInteger.internal_() { } | 797 AnimatedInteger.internal_() { } |
786 | 798 |
(...skipping 20 matching lines...) Expand all Loading... |
807 // WARNING: Do not edit - generated code. | 819 // WARNING: Do not edit - generated code. |
808 | 820 |
809 | 821 |
810 @DocsEditable() | 822 @DocsEditable() |
811 @DomName('SVGAnimatedLength') | 823 @DomName('SVGAnimatedLength') |
812 @Unstable() | 824 @Unstable() |
813 class AnimatedLength extends DartHtmlDomObject { | 825 class AnimatedLength extends DartHtmlDomObject { |
814 // To suppress missing implicit constructor warnings. | 826 // To suppress missing implicit constructor warnings. |
815 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 827 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
816 | 828 |
| 829 @Deprecated("Internal Use Only") |
817 static AnimatedLength internalCreateAnimatedLength() { | 830 static AnimatedLength internalCreateAnimatedLength() { |
818 return new AnimatedLength._internalWrap(); | 831 return new AnimatedLength._internalWrap(); |
819 } | 832 } |
820 | 833 |
821 factory AnimatedLength._internalWrap() { | 834 factory AnimatedLength._internalWrap() { |
822 return new AnimatedLength.internal_(); | 835 return new AnimatedLength.internal_(); |
823 } | 836 } |
824 | 837 |
825 AnimatedLength.internal_() { } | 838 AnimatedLength.internal_() { } |
826 | 839 |
(...skipping 16 matching lines...) Expand all Loading... |
843 // WARNING: Do not edit - generated code. | 856 // WARNING: Do not edit - generated code. |
844 | 857 |
845 | 858 |
846 @DocsEditable() | 859 @DocsEditable() |
847 @DomName('SVGAnimatedLengthList') | 860 @DomName('SVGAnimatedLengthList') |
848 @Unstable() | 861 @Unstable() |
849 class AnimatedLengthList extends DartHtmlDomObject { | 862 class AnimatedLengthList extends DartHtmlDomObject { |
850 // To suppress missing implicit constructor warnings. | 863 // To suppress missing implicit constructor warnings. |
851 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 864 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
852 | 865 |
| 866 @Deprecated("Internal Use Only") |
853 static AnimatedLengthList internalCreateAnimatedLengthList() { | 867 static AnimatedLengthList internalCreateAnimatedLengthList() { |
854 return new AnimatedLengthList._internalWrap(); | 868 return new AnimatedLengthList._internalWrap(); |
855 } | 869 } |
856 | 870 |
857 factory AnimatedLengthList._internalWrap() { | 871 factory AnimatedLengthList._internalWrap() { |
858 return new AnimatedLengthList.internal_(); | 872 return new AnimatedLengthList.internal_(); |
859 } | 873 } |
860 | 874 |
861 AnimatedLengthList.internal_() { } | 875 AnimatedLengthList.internal_() { } |
862 | 876 |
(...skipping 16 matching lines...) Expand all Loading... |
879 // WARNING: Do not edit - generated code. | 893 // WARNING: Do not edit - generated code. |
880 | 894 |
881 | 895 |
882 @DocsEditable() | 896 @DocsEditable() |
883 @DomName('SVGAnimatedNumber') | 897 @DomName('SVGAnimatedNumber') |
884 @Unstable() | 898 @Unstable() |
885 class AnimatedNumber extends DartHtmlDomObject { | 899 class AnimatedNumber extends DartHtmlDomObject { |
886 // To suppress missing implicit constructor warnings. | 900 // To suppress missing implicit constructor warnings. |
887 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 901 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
888 | 902 |
| 903 @Deprecated("Internal Use Only") |
889 static AnimatedNumber internalCreateAnimatedNumber() { | 904 static AnimatedNumber internalCreateAnimatedNumber() { |
890 return new AnimatedNumber._internalWrap(); | 905 return new AnimatedNumber._internalWrap(); |
891 } | 906 } |
892 | 907 |
893 factory AnimatedNumber._internalWrap() { | 908 factory AnimatedNumber._internalWrap() { |
894 return new AnimatedNumber.internal_(); | 909 return new AnimatedNumber.internal_(); |
895 } | 910 } |
896 | 911 |
897 AnimatedNumber.internal_() { } | 912 AnimatedNumber.internal_() { } |
898 | 913 |
(...skipping 20 matching lines...) Expand all Loading... |
919 // WARNING: Do not edit - generated code. | 934 // WARNING: Do not edit - generated code. |
920 | 935 |
921 | 936 |
922 @DocsEditable() | 937 @DocsEditable() |
923 @DomName('SVGAnimatedNumberList') | 938 @DomName('SVGAnimatedNumberList') |
924 @Unstable() | 939 @Unstable() |
925 class AnimatedNumberList extends DartHtmlDomObject { | 940 class AnimatedNumberList extends DartHtmlDomObject { |
926 // To suppress missing implicit constructor warnings. | 941 // To suppress missing implicit constructor warnings. |
927 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 942 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
928 | 943 |
| 944 @Deprecated("Internal Use Only") |
929 static AnimatedNumberList internalCreateAnimatedNumberList() { | 945 static AnimatedNumberList internalCreateAnimatedNumberList() { |
930 return new AnimatedNumberList._internalWrap(); | 946 return new AnimatedNumberList._internalWrap(); |
931 } | 947 } |
932 | 948 |
933 factory AnimatedNumberList._internalWrap() { | 949 factory AnimatedNumberList._internalWrap() { |
934 return new AnimatedNumberList.internal_(); | 950 return new AnimatedNumberList.internal_(); |
935 } | 951 } |
936 | 952 |
937 AnimatedNumberList.internal_() { } | 953 AnimatedNumberList.internal_() { } |
938 | 954 |
(...skipping 16 matching lines...) Expand all Loading... |
955 // WARNING: Do not edit - generated code. | 971 // WARNING: Do not edit - generated code. |
956 | 972 |
957 | 973 |
958 @DocsEditable() | 974 @DocsEditable() |
959 @DomName('SVGAnimatedPreserveAspectRatio') | 975 @DomName('SVGAnimatedPreserveAspectRatio') |
960 @Unstable() | 976 @Unstable() |
961 class AnimatedPreserveAspectRatio extends DartHtmlDomObject { | 977 class AnimatedPreserveAspectRatio extends DartHtmlDomObject { |
962 // To suppress missing implicit constructor warnings. | 978 // To suppress missing implicit constructor warnings. |
963 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 979 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
964 | 980 |
| 981 @Deprecated("Internal Use Only") |
965 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ | 982 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ |
966 return new AnimatedPreserveAspectRatio._internalWrap(); | 983 return new AnimatedPreserveAspectRatio._internalWrap(); |
967 } | 984 } |
968 | 985 |
969 factory AnimatedPreserveAspectRatio._internalWrap() { | 986 factory AnimatedPreserveAspectRatio._internalWrap() { |
970 return new AnimatedPreserveAspectRatio.internal_(); | 987 return new AnimatedPreserveAspectRatio.internal_(); |
971 } | 988 } |
972 | 989 |
973 AnimatedPreserveAspectRatio.internal_() { } | 990 AnimatedPreserveAspectRatio.internal_() { } |
974 | 991 |
(...skipping 16 matching lines...) Expand all Loading... |
991 // WARNING: Do not edit - generated code. | 1008 // WARNING: Do not edit - generated code. |
992 | 1009 |
993 | 1010 |
994 @DocsEditable() | 1011 @DocsEditable() |
995 @DomName('SVGAnimatedRect') | 1012 @DomName('SVGAnimatedRect') |
996 @Unstable() | 1013 @Unstable() |
997 class AnimatedRect extends DartHtmlDomObject { | 1014 class AnimatedRect extends DartHtmlDomObject { |
998 // To suppress missing implicit constructor warnings. | 1015 // To suppress missing implicit constructor warnings. |
999 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 1016 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
1000 | 1017 |
| 1018 @Deprecated("Internal Use Only") |
1001 static AnimatedRect internalCreateAnimatedRect() { | 1019 static AnimatedRect internalCreateAnimatedRect() { |
1002 return new AnimatedRect._internalWrap(); | 1020 return new AnimatedRect._internalWrap(); |
1003 } | 1021 } |
1004 | 1022 |
1005 factory AnimatedRect._internalWrap() { | 1023 factory AnimatedRect._internalWrap() { |
1006 return new AnimatedRect.internal_(); | 1024 return new AnimatedRect.internal_(); |
1007 } | 1025 } |
1008 | 1026 |
1009 AnimatedRect.internal_() { } | 1027 AnimatedRect.internal_() { } |
1010 | 1028 |
(...skipping 16 matching lines...) Expand all Loading... |
1027 // WARNING: Do not edit - generated code. | 1045 // WARNING: Do not edit - generated code. |
1028 | 1046 |
1029 | 1047 |
1030 @DocsEditable() | 1048 @DocsEditable() |
1031 @DomName('SVGAnimatedString') | 1049 @DomName('SVGAnimatedString') |
1032 @Unstable() | 1050 @Unstable() |
1033 class AnimatedString extends DartHtmlDomObject { | 1051 class AnimatedString extends DartHtmlDomObject { |
1034 // To suppress missing implicit constructor warnings. | 1052 // To suppress missing implicit constructor warnings. |
1035 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 1053 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
1036 | 1054 |
| 1055 @Deprecated("Internal Use Only") |
1037 static AnimatedString internalCreateAnimatedString() { | 1056 static AnimatedString internalCreateAnimatedString() { |
1038 return new AnimatedString._internalWrap(); | 1057 return new AnimatedString._internalWrap(); |
1039 } | 1058 } |
1040 | 1059 |
1041 factory AnimatedString._internalWrap() { | 1060 factory AnimatedString._internalWrap() { |
1042 return new AnimatedString.internal_(); | 1061 return new AnimatedString.internal_(); |
1043 } | 1062 } |
1044 | 1063 |
1045 AnimatedString.internal_() { } | 1064 AnimatedString.internal_() { } |
1046 | 1065 |
(...skipping 20 matching lines...) Expand all Loading... |
1067 // WARNING: Do not edit - generated code. | 1086 // WARNING: Do not edit - generated code. |
1068 | 1087 |
1069 | 1088 |
1070 @DocsEditable() | 1089 @DocsEditable() |
1071 @DomName('SVGAnimatedTransformList') | 1090 @DomName('SVGAnimatedTransformList') |
1072 @Unstable() | 1091 @Unstable() |
1073 class AnimatedTransformList extends DartHtmlDomObject { | 1092 class AnimatedTransformList extends DartHtmlDomObject { |
1074 // To suppress missing implicit constructor warnings. | 1093 // To suppress missing implicit constructor warnings. |
1075 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 1094 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
1076 | 1095 |
| 1096 @Deprecated("Internal Use Only") |
1077 static AnimatedTransformList internalCreateAnimatedTransformList() { | 1097 static AnimatedTransformList internalCreateAnimatedTransformList() { |
1078 return new AnimatedTransformList._internalWrap(); | 1098 return new AnimatedTransformList._internalWrap(); |
1079 } | 1099 } |
1080 | 1100 |
1081 factory AnimatedTransformList._internalWrap() { | 1101 factory AnimatedTransformList._internalWrap() { |
1082 return new AnimatedTransformList.internal_(); | 1102 return new AnimatedTransformList.internal_(); |
1083 } | 1103 } |
1084 | 1104 |
1085 AnimatedTransformList.internal_() { } | 1105 AnimatedTransformList.internal_() { } |
1086 | 1106 |
(...skipping 21 matching lines...) Expand all Loading... |
1108 @Unstable() | 1128 @Unstable() |
1109 class AnimationElement extends SvgElement implements Tests { | 1129 class AnimationElement extends SvgElement implements Tests { |
1110 // To suppress missing implicit constructor warnings. | 1130 // To suppress missing implicit constructor warnings. |
1111 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } | 1131 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } |
1112 | 1132 |
1113 @DomName('SVGAnimationElement.SVGAnimationElement') | 1133 @DomName('SVGAnimationElement.SVGAnimationElement') |
1114 @DocsEditable() | 1134 @DocsEditable() |
1115 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); | 1135 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); |
1116 | 1136 |
1117 | 1137 |
| 1138 @Deprecated("Internal Use Only") |
1118 static AnimationElement internalCreateAnimationElement() { | 1139 static AnimationElement internalCreateAnimationElement() { |
1119 return new AnimationElement._internalWrap(); | 1140 return new AnimationElement._internalWrap(); |
1120 } | 1141 } |
1121 | 1142 |
1122 factory AnimationElement._internalWrap() { | 1143 factory AnimationElement._internalWrap() { |
1123 return new AnimationElement.internal_(); | 1144 return new AnimationElement.internal_(); |
1124 } | 1145 } |
1125 | 1146 |
1126 AnimationElement.internal_() : super.internal_(); | 1147 AnimationElement.internal_() : super.internal_(); |
1127 | 1148 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1193 @Unstable() | 1214 @Unstable() |
1194 class CircleElement extends GeometryElement { | 1215 class CircleElement extends GeometryElement { |
1195 // To suppress missing implicit constructor warnings. | 1216 // To suppress missing implicit constructor warnings. |
1196 factory CircleElement._() { throw new UnsupportedError("Not supported"); } | 1217 factory CircleElement._() { throw new UnsupportedError("Not supported"); } |
1197 | 1218 |
1198 @DomName('SVGCircleElement.SVGCircleElement') | 1219 @DomName('SVGCircleElement.SVGCircleElement') |
1199 @DocsEditable() | 1220 @DocsEditable() |
1200 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); | 1221 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); |
1201 | 1222 |
1202 | 1223 |
| 1224 @Deprecated("Internal Use Only") |
1203 static CircleElement internalCreateCircleElement() { | 1225 static CircleElement internalCreateCircleElement() { |
1204 return new CircleElement._internalWrap(); | 1226 return new CircleElement._internalWrap(); |
1205 } | 1227 } |
1206 | 1228 |
1207 factory CircleElement._internalWrap() { | 1229 factory CircleElement._internalWrap() { |
1208 return new CircleElement.internal_(); | 1230 return new CircleElement.internal_(); |
1209 } | 1231 } |
1210 | 1232 |
1211 CircleElement.internal_() : super.internal_(); | 1233 CircleElement.internal_() : super.internal_(); |
1212 | 1234 |
(...skipping 29 matching lines...) Expand all Loading... |
1242 @Unstable() | 1264 @Unstable() |
1243 class ClipPathElement extends GraphicsElement { | 1265 class ClipPathElement extends GraphicsElement { |
1244 // To suppress missing implicit constructor warnings. | 1266 // To suppress missing implicit constructor warnings. |
1245 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } | 1267 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } |
1246 | 1268 |
1247 @DomName('SVGClipPathElement.SVGClipPathElement') | 1269 @DomName('SVGClipPathElement.SVGClipPathElement') |
1248 @DocsEditable() | 1270 @DocsEditable() |
1249 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); | 1271 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); |
1250 | 1272 |
1251 | 1273 |
| 1274 @Deprecated("Internal Use Only") |
1252 static ClipPathElement internalCreateClipPathElement() { | 1275 static ClipPathElement internalCreateClipPathElement() { |
1253 return new ClipPathElement._internalWrap(); | 1276 return new ClipPathElement._internalWrap(); |
1254 } | 1277 } |
1255 | 1278 |
1256 factory ClipPathElement._internalWrap() { | 1279 factory ClipPathElement._internalWrap() { |
1257 return new ClipPathElement.internal_(); | 1280 return new ClipPathElement.internal_(); |
1258 } | 1281 } |
1259 | 1282 |
1260 ClipPathElement.internal_() : super.internal_(); | 1283 ClipPathElement.internal_() : super.internal_(); |
1261 | 1284 |
(...skipping 21 matching lines...) Expand all Loading... |
1283 @Unstable() | 1306 @Unstable() |
1284 class DefsElement extends GraphicsElement { | 1307 class DefsElement extends GraphicsElement { |
1285 // To suppress missing implicit constructor warnings. | 1308 // To suppress missing implicit constructor warnings. |
1286 factory DefsElement._() { throw new UnsupportedError("Not supported"); } | 1309 factory DefsElement._() { throw new UnsupportedError("Not supported"); } |
1287 | 1310 |
1288 @DomName('SVGDefsElement.SVGDefsElement') | 1311 @DomName('SVGDefsElement.SVGDefsElement') |
1289 @DocsEditable() | 1312 @DocsEditable() |
1290 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); | 1313 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); |
1291 | 1314 |
1292 | 1315 |
| 1316 @Deprecated("Internal Use Only") |
1293 static DefsElement internalCreateDefsElement() { | 1317 static DefsElement internalCreateDefsElement() { |
1294 return new DefsElement._internalWrap(); | 1318 return new DefsElement._internalWrap(); |
1295 } | 1319 } |
1296 | 1320 |
1297 factory DefsElement._internalWrap() { | 1321 factory DefsElement._internalWrap() { |
1298 return new DefsElement.internal_(); | 1322 return new DefsElement.internal_(); |
1299 } | 1323 } |
1300 | 1324 |
1301 DefsElement.internal_() : super.internal_(); | 1325 DefsElement.internal_() : super.internal_(); |
1302 | 1326 |
(...skipping 17 matching lines...) Expand all Loading... |
1320 @Unstable() | 1344 @Unstable() |
1321 class DescElement extends SvgElement { | 1345 class DescElement extends SvgElement { |
1322 // To suppress missing implicit constructor warnings. | 1346 // To suppress missing implicit constructor warnings. |
1323 factory DescElement._() { throw new UnsupportedError("Not supported"); } | 1347 factory DescElement._() { throw new UnsupportedError("Not supported"); } |
1324 | 1348 |
1325 @DomName('SVGDescElement.SVGDescElement') | 1349 @DomName('SVGDescElement.SVGDescElement') |
1326 @DocsEditable() | 1350 @DocsEditable() |
1327 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); | 1351 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); |
1328 | 1352 |
1329 | 1353 |
| 1354 @Deprecated("Internal Use Only") |
1330 static DescElement internalCreateDescElement() { | 1355 static DescElement internalCreateDescElement() { |
1331 return new DescElement._internalWrap(); | 1356 return new DescElement._internalWrap(); |
1332 } | 1357 } |
1333 | 1358 |
1334 factory DescElement._internalWrap() { | 1359 factory DescElement._internalWrap() { |
1335 return new DescElement.internal_(); | 1360 return new DescElement.internal_(); |
1336 } | 1361 } |
1337 | 1362 |
1338 DescElement.internal_() : super.internal_(); | 1363 DescElement.internal_() : super.internal_(); |
1339 | 1364 |
(...skipping 13 matching lines...) Expand all Loading... |
1353 | 1378 |
1354 | 1379 |
1355 @DocsEditable() | 1380 @DocsEditable() |
1356 @DomName('SVGDiscardElement') | 1381 @DomName('SVGDiscardElement') |
1357 @Experimental() // untriaged | 1382 @Experimental() // untriaged |
1358 class DiscardElement extends SvgElement { | 1383 class DiscardElement extends SvgElement { |
1359 // To suppress missing implicit constructor warnings. | 1384 // To suppress missing implicit constructor warnings. |
1360 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } | 1385 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } |
1361 | 1386 |
1362 | 1387 |
| 1388 @Deprecated("Internal Use Only") |
1363 static DiscardElement internalCreateDiscardElement() { | 1389 static DiscardElement internalCreateDiscardElement() { |
1364 return new DiscardElement._internalWrap(); | 1390 return new DiscardElement._internalWrap(); |
1365 } | 1391 } |
1366 | 1392 |
1367 factory DiscardElement._internalWrap() { | 1393 factory DiscardElement._internalWrap() { |
1368 return new DiscardElement.internal_(); | 1394 return new DiscardElement.internal_(); |
1369 } | 1395 } |
1370 | 1396 |
1371 DiscardElement.internal_() : super.internal_(); | 1397 DiscardElement.internal_() : super.internal_(); |
1372 | 1398 |
(...skipping 17 matching lines...) Expand all Loading... |
1390 @Unstable() | 1416 @Unstable() |
1391 class EllipseElement extends GeometryElement { | 1417 class EllipseElement extends GeometryElement { |
1392 // To suppress missing implicit constructor warnings. | 1418 // To suppress missing implicit constructor warnings. |
1393 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } | 1419 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } |
1394 | 1420 |
1395 @DomName('SVGEllipseElement.SVGEllipseElement') | 1421 @DomName('SVGEllipseElement.SVGEllipseElement') |
1396 @DocsEditable() | 1422 @DocsEditable() |
1397 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 1423 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
1398 | 1424 |
1399 | 1425 |
| 1426 @Deprecated("Internal Use Only") |
1400 static EllipseElement internalCreateEllipseElement() { | 1427 static EllipseElement internalCreateEllipseElement() { |
1401 return new EllipseElement._internalWrap(); | 1428 return new EllipseElement._internalWrap(); |
1402 } | 1429 } |
1403 | 1430 |
1404 factory EllipseElement._internalWrap() { | 1431 factory EllipseElement._internalWrap() { |
1405 return new EllipseElement.internal_(); | 1432 return new EllipseElement.internal_(); |
1406 } | 1433 } |
1407 | 1434 |
1408 EllipseElement.internal_() : super.internal_(); | 1435 EllipseElement.internal_() : super.internal_(); |
1409 | 1436 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1447 @Unstable() | 1474 @Unstable() |
1448 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1475 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
1449 // To suppress missing implicit constructor warnings. | 1476 // To suppress missing implicit constructor warnings. |
1450 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } | 1477 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } |
1451 | 1478 |
1452 @DomName('SVGFEBlendElement.SVGFEBlendElement') | 1479 @DomName('SVGFEBlendElement.SVGFEBlendElement') |
1453 @DocsEditable() | 1480 @DocsEditable() |
1454 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); | 1481 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); |
1455 | 1482 |
1456 | 1483 |
| 1484 @Deprecated("Internal Use Only") |
1457 static FEBlendElement internalCreateFEBlendElement() { | 1485 static FEBlendElement internalCreateFEBlendElement() { |
1458 return new FEBlendElement._internalWrap(); | 1486 return new FEBlendElement._internalWrap(); |
1459 } | 1487 } |
1460 | 1488 |
1461 factory FEBlendElement._internalWrap() { | 1489 factory FEBlendElement._internalWrap() { |
1462 return new FEBlendElement.internal_(); | 1490 return new FEBlendElement.internal_(); |
1463 } | 1491 } |
1464 | 1492 |
1465 FEBlendElement.internal_() : super.internal_(); | 1493 FEBlendElement.internal_() : super.internal_(); |
1466 | 1494 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1547 @Unstable() | 1575 @Unstable() |
1548 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { | 1576 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
1549 // To suppress missing implicit constructor warnings. | 1577 // To suppress missing implicit constructor warnings. |
1550 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } | 1578 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } |
1551 | 1579 |
1552 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') | 1580 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') |
1553 @DocsEditable() | 1581 @DocsEditable() |
1554 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); | 1582 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); |
1555 | 1583 |
1556 | 1584 |
| 1585 @Deprecated("Internal Use Only") |
1557 static FEColorMatrixElement internalCreateFEColorMatrixElement() { | 1586 static FEColorMatrixElement internalCreateFEColorMatrixElement() { |
1558 return new FEColorMatrixElement._internalWrap(); | 1587 return new FEColorMatrixElement._internalWrap(); |
1559 } | 1588 } |
1560 | 1589 |
1561 factory FEColorMatrixElement._internalWrap() { | 1590 factory FEColorMatrixElement._internalWrap() { |
1562 return new FEColorMatrixElement.internal_(); | 1591 return new FEColorMatrixElement.internal_(); |
1563 } | 1592 } |
1564 | 1593 |
1565 FEColorMatrixElement.internal_() : super.internal_(); | 1594 FEColorMatrixElement.internal_() : super.internal_(); |
1566 | 1595 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1643 @Unstable() | 1672 @Unstable() |
1644 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { | 1673 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
1645 // To suppress missing implicit constructor warnings. | 1674 // To suppress missing implicit constructor warnings. |
1646 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } | 1675 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } |
1647 | 1676 |
1648 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') | 1677 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') |
1649 @DocsEditable() | 1678 @DocsEditable() |
1650 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); | 1679 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); |
1651 | 1680 |
1652 | 1681 |
| 1682 @Deprecated("Internal Use Only") |
1653 static FEComponentTransferElement internalCreateFEComponentTransferElement() { | 1683 static FEComponentTransferElement internalCreateFEComponentTransferElement() { |
1654 return new FEComponentTransferElement._internalWrap(); | 1684 return new FEComponentTransferElement._internalWrap(); |
1655 } | 1685 } |
1656 | 1686 |
1657 factory FEComponentTransferElement._internalWrap() { | 1687 factory FEComponentTransferElement._internalWrap() { |
1658 return new FEComponentTransferElement.internal_(); | 1688 return new FEComponentTransferElement.internal_(); |
1659 } | 1689 } |
1660 | 1690 |
1661 FEComponentTransferElement.internal_() : super.internal_(); | 1691 FEComponentTransferElement.internal_() : super.internal_(); |
1662 | 1692 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1703 | 1733 |
1704 | 1734 |
1705 @DocsEditable() | 1735 @DocsEditable() |
1706 @DomName('SVGFECompositeElement') | 1736 @DomName('SVGFECompositeElement') |
1707 @Unstable() | 1737 @Unstable() |
1708 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { | 1738 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
1709 // To suppress missing implicit constructor warnings. | 1739 // To suppress missing implicit constructor warnings. |
1710 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} | 1740 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} |
1711 | 1741 |
1712 | 1742 |
| 1743 @Deprecated("Internal Use Only") |
1713 static FECompositeElement internalCreateFECompositeElement() { | 1744 static FECompositeElement internalCreateFECompositeElement() { |
1714 return new FECompositeElement._internalWrap(); | 1745 return new FECompositeElement._internalWrap(); |
1715 } | 1746 } |
1716 | 1747 |
1717 factory FECompositeElement._internalWrap() { | 1748 factory FECompositeElement._internalWrap() { |
1718 return new FECompositeElement.internal_(); | 1749 return new FECompositeElement.internal_(); |
1719 } | 1750 } |
1720 | 1751 |
1721 FECompositeElement.internal_() : super.internal_(); | 1752 FECompositeElement.internal_() : super.internal_(); |
1722 | 1753 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1820 @Unstable() | 1851 @Unstable() |
1821 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 1852 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
1822 // To suppress missing implicit constructor warnings. | 1853 // To suppress missing implicit constructor warnings. |
1823 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } | 1854 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } |
1824 | 1855 |
1825 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') | 1856 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') |
1826 @DocsEditable() | 1857 @DocsEditable() |
1827 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); | 1858 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); |
1828 | 1859 |
1829 | 1860 |
| 1861 @Deprecated("Internal Use Only") |
1830 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { | 1862 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { |
1831 return new FEConvolveMatrixElement._internalWrap(); | 1863 return new FEConvolveMatrixElement._internalWrap(); |
1832 } | 1864 } |
1833 | 1865 |
1834 factory FEConvolveMatrixElement._internalWrap() { | 1866 factory FEConvolveMatrixElement._internalWrap() { |
1835 return new FEConvolveMatrixElement.internal_(); | 1867 return new FEConvolveMatrixElement.internal_(); |
1836 } | 1868 } |
1837 | 1869 |
1838 FEConvolveMatrixElement.internal_() : super.internal_(); | 1870 FEConvolveMatrixElement.internal_() : super.internal_(); |
1839 | 1871 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 @Unstable() | 1980 @Unstable() |
1949 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1981 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
1950 // To suppress missing implicit constructor warnings. | 1982 // To suppress missing implicit constructor warnings. |
1951 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } | 1983 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } |
1952 | 1984 |
1953 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') | 1985 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') |
1954 @DocsEditable() | 1986 @DocsEditable() |
1955 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); | 1987 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); |
1956 | 1988 |
1957 | 1989 |
| 1990 @Deprecated("Internal Use Only") |
1958 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { | 1991 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { |
1959 return new FEDiffuseLightingElement._internalWrap(); | 1992 return new FEDiffuseLightingElement._internalWrap(); |
1960 } | 1993 } |
1961 | 1994 |
1962 factory FEDiffuseLightingElement._internalWrap() { | 1995 factory FEDiffuseLightingElement._internalWrap() { |
1963 return new FEDiffuseLightingElement.internal_(); | 1996 return new FEDiffuseLightingElement.internal_(); |
1964 } | 1997 } |
1965 | 1998 |
1966 FEDiffuseLightingElement.internal_() : super.internal_(); | 1999 FEDiffuseLightingElement.internal_() : super.internal_(); |
1967 | 2000 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2032 @Unstable() | 2065 @Unstable() |
2033 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 2066 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
2034 // To suppress missing implicit constructor warnings. | 2067 // To suppress missing implicit constructor warnings. |
2035 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } | 2068 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } |
2036 | 2069 |
2037 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') | 2070 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') |
2038 @DocsEditable() | 2071 @DocsEditable() |
2039 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); | 2072 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); |
2040 | 2073 |
2041 | 2074 |
| 2075 @Deprecated("Internal Use Only") |
2042 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { | 2076 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { |
2043 return new FEDisplacementMapElement._internalWrap(); | 2077 return new FEDisplacementMapElement._internalWrap(); |
2044 } | 2078 } |
2045 | 2079 |
2046 factory FEDisplacementMapElement._internalWrap() { | 2080 factory FEDisplacementMapElement._internalWrap() { |
2047 return new FEDisplacementMapElement.internal_(); | 2081 return new FEDisplacementMapElement.internal_(); |
2048 } | 2082 } |
2049 | 2083 |
2050 FEDisplacementMapElement.internal_() : super.internal_(); | 2084 FEDisplacementMapElement.internal_() : super.internal_(); |
2051 | 2085 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2136 @Unstable() | 2170 @Unstable() |
2137 class FEDistantLightElement extends SvgElement { | 2171 class FEDistantLightElement extends SvgElement { |
2138 // To suppress missing implicit constructor warnings. | 2172 // To suppress missing implicit constructor warnings. |
2139 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } | 2173 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } |
2140 | 2174 |
2141 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') | 2175 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') |
2142 @DocsEditable() | 2176 @DocsEditable() |
2143 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); | 2177 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); |
2144 | 2178 |
2145 | 2179 |
| 2180 @Deprecated("Internal Use Only") |
2146 static FEDistantLightElement internalCreateFEDistantLightElement() { | 2181 static FEDistantLightElement internalCreateFEDistantLightElement() { |
2147 return new FEDistantLightElement._internalWrap(); | 2182 return new FEDistantLightElement._internalWrap(); |
2148 } | 2183 } |
2149 | 2184 |
2150 factory FEDistantLightElement._internalWrap() { | 2185 factory FEDistantLightElement._internalWrap() { |
2151 return new FEDistantLightElement.internal_(); | 2186 return new FEDistantLightElement.internal_(); |
2152 } | 2187 } |
2153 | 2188 |
2154 FEDistantLightElement.internal_() : super.internal_(); | 2189 FEDistantLightElement.internal_() : super.internal_(); |
2155 | 2190 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2188 @Unstable() | 2223 @Unstable() |
2189 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2224 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
2190 // To suppress missing implicit constructor warnings. | 2225 // To suppress missing implicit constructor warnings. |
2191 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } | 2226 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } |
2192 | 2227 |
2193 @DomName('SVGFEFloodElement.SVGFEFloodElement') | 2228 @DomName('SVGFEFloodElement.SVGFEFloodElement') |
2194 @DocsEditable() | 2229 @DocsEditable() |
2195 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); | 2230 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); |
2196 | 2231 |
2197 | 2232 |
| 2233 @Deprecated("Internal Use Only") |
2198 static FEFloodElement internalCreateFEFloodElement() { | 2234 static FEFloodElement internalCreateFEFloodElement() { |
2199 return new FEFloodElement._internalWrap(); | 2235 return new FEFloodElement._internalWrap(); |
2200 } | 2236 } |
2201 | 2237 |
2202 factory FEFloodElement._internalWrap() { | 2238 factory FEFloodElement._internalWrap() { |
2203 return new FEFloodElement.internal_(); | 2239 return new FEFloodElement.internal_(); |
2204 } | 2240 } |
2205 | 2241 |
2206 FEFloodElement.internal_() : super.internal_(); | 2242 FEFloodElement.internal_() : super.internal_(); |
2207 | 2243 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2252 @Unstable() | 2288 @Unstable() |
2253 class FEFuncAElement extends _SVGComponentTransferFunctionElement { | 2289 class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
2254 // To suppress missing implicit constructor warnings. | 2290 // To suppress missing implicit constructor warnings. |
2255 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } | 2291 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } |
2256 | 2292 |
2257 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') | 2293 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') |
2258 @DocsEditable() | 2294 @DocsEditable() |
2259 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); | 2295 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); |
2260 | 2296 |
2261 | 2297 |
| 2298 @Deprecated("Internal Use Only") |
2262 static FEFuncAElement internalCreateFEFuncAElement() { | 2299 static FEFuncAElement internalCreateFEFuncAElement() { |
2263 return new FEFuncAElement._internalWrap(); | 2300 return new FEFuncAElement._internalWrap(); |
2264 } | 2301 } |
2265 | 2302 |
2266 factory FEFuncAElement._internalWrap() { | 2303 factory FEFuncAElement._internalWrap() { |
2267 return new FEFuncAElement.internal_(); | 2304 return new FEFuncAElement.internal_(); |
2268 } | 2305 } |
2269 | 2306 |
2270 FEFuncAElement.internal_() : super.internal_(); | 2307 FEFuncAElement.internal_() : super.internal_(); |
2271 | 2308 |
(...skipping 24 matching lines...) Expand all Loading... |
2296 @Unstable() | 2333 @Unstable() |
2297 class FEFuncBElement extends _SVGComponentTransferFunctionElement { | 2334 class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
2298 // To suppress missing implicit constructor warnings. | 2335 // To suppress missing implicit constructor warnings. |
2299 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } | 2336 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } |
2300 | 2337 |
2301 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') | 2338 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') |
2302 @DocsEditable() | 2339 @DocsEditable() |
2303 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); | 2340 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); |
2304 | 2341 |
2305 | 2342 |
| 2343 @Deprecated("Internal Use Only") |
2306 static FEFuncBElement internalCreateFEFuncBElement() { | 2344 static FEFuncBElement internalCreateFEFuncBElement() { |
2307 return new FEFuncBElement._internalWrap(); | 2345 return new FEFuncBElement._internalWrap(); |
2308 } | 2346 } |
2309 | 2347 |
2310 factory FEFuncBElement._internalWrap() { | 2348 factory FEFuncBElement._internalWrap() { |
2311 return new FEFuncBElement.internal_(); | 2349 return new FEFuncBElement.internal_(); |
2312 } | 2350 } |
2313 | 2351 |
2314 FEFuncBElement.internal_() : super.internal_(); | 2352 FEFuncBElement.internal_() : super.internal_(); |
2315 | 2353 |
(...skipping 24 matching lines...) Expand all Loading... |
2340 @Unstable() | 2378 @Unstable() |
2341 class FEFuncGElement extends _SVGComponentTransferFunctionElement { | 2379 class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
2342 // To suppress missing implicit constructor warnings. | 2380 // To suppress missing implicit constructor warnings. |
2343 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } | 2381 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } |
2344 | 2382 |
2345 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') | 2383 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') |
2346 @DocsEditable() | 2384 @DocsEditable() |
2347 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); | 2385 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); |
2348 | 2386 |
2349 | 2387 |
| 2388 @Deprecated("Internal Use Only") |
2350 static FEFuncGElement internalCreateFEFuncGElement() { | 2389 static FEFuncGElement internalCreateFEFuncGElement() { |
2351 return new FEFuncGElement._internalWrap(); | 2390 return new FEFuncGElement._internalWrap(); |
2352 } | 2391 } |
2353 | 2392 |
2354 factory FEFuncGElement._internalWrap() { | 2393 factory FEFuncGElement._internalWrap() { |
2355 return new FEFuncGElement.internal_(); | 2394 return new FEFuncGElement.internal_(); |
2356 } | 2395 } |
2357 | 2396 |
2358 FEFuncGElement.internal_() : super.internal_(); | 2397 FEFuncGElement.internal_() : super.internal_(); |
2359 | 2398 |
(...skipping 24 matching lines...) Expand all Loading... |
2384 @Unstable() | 2423 @Unstable() |
2385 class FEFuncRElement extends _SVGComponentTransferFunctionElement { | 2424 class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
2386 // To suppress missing implicit constructor warnings. | 2425 // To suppress missing implicit constructor warnings. |
2387 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } | 2426 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } |
2388 | 2427 |
2389 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') | 2428 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') |
2390 @DocsEditable() | 2429 @DocsEditable() |
2391 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); | 2430 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); |
2392 | 2431 |
2393 | 2432 |
| 2433 @Deprecated("Internal Use Only") |
2394 static FEFuncRElement internalCreateFEFuncRElement() { | 2434 static FEFuncRElement internalCreateFEFuncRElement() { |
2395 return new FEFuncRElement._internalWrap(); | 2435 return new FEFuncRElement._internalWrap(); |
2396 } | 2436 } |
2397 | 2437 |
2398 factory FEFuncRElement._internalWrap() { | 2438 factory FEFuncRElement._internalWrap() { |
2399 return new FEFuncRElement.internal_(); | 2439 return new FEFuncRElement.internal_(); |
2400 } | 2440 } |
2401 | 2441 |
2402 FEFuncRElement.internal_() : super.internal_(); | 2442 FEFuncRElement.internal_() : super.internal_(); |
2403 | 2443 |
(...skipping 24 matching lines...) Expand all Loading... |
2428 @Unstable() | 2468 @Unstable() |
2429 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { | 2469 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
2430 // To suppress missing implicit constructor warnings. | 2470 // To suppress missing implicit constructor warnings. |
2431 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } | 2471 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } |
2432 | 2472 |
2433 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') | 2473 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') |
2434 @DocsEditable() | 2474 @DocsEditable() |
2435 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); | 2475 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); |
2436 | 2476 |
2437 | 2477 |
| 2478 @Deprecated("Internal Use Only") |
2438 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { | 2479 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { |
2439 return new FEGaussianBlurElement._internalWrap(); | 2480 return new FEGaussianBlurElement._internalWrap(); |
2440 } | 2481 } |
2441 | 2482 |
2442 factory FEGaussianBlurElement._internalWrap() { | 2483 factory FEGaussianBlurElement._internalWrap() { |
2443 return new FEGaussianBlurElement.internal_(); | 2484 return new FEGaussianBlurElement.internal_(); |
2444 } | 2485 } |
2445 | 2486 |
2446 FEGaussianBlurElement.internal_() : super.internal_(); | 2487 FEGaussianBlurElement.internal_() : super.internal_(); |
2447 | 2488 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2508 @Unstable() | 2549 @Unstable() |
2509 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { | 2550 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { |
2510 // To suppress missing implicit constructor warnings. | 2551 // To suppress missing implicit constructor warnings. |
2511 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } | 2552 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } |
2512 | 2553 |
2513 @DomName('SVGFEImageElement.SVGFEImageElement') | 2554 @DomName('SVGFEImageElement.SVGFEImageElement') |
2514 @DocsEditable() | 2555 @DocsEditable() |
2515 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); | 2556 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); |
2516 | 2557 |
2517 | 2558 |
| 2559 @Deprecated("Internal Use Only") |
2518 static FEImageElement internalCreateFEImageElement() { | 2560 static FEImageElement internalCreateFEImageElement() { |
2519 return new FEImageElement._internalWrap(); | 2561 return new FEImageElement._internalWrap(); |
2520 } | 2562 } |
2521 | 2563 |
2522 factory FEImageElement._internalWrap() { | 2564 factory FEImageElement._internalWrap() { |
2523 return new FEImageElement.internal_(); | 2565 return new FEImageElement.internal_(); |
2524 } | 2566 } |
2525 | 2567 |
2526 FEImageElement.internal_() : super.internal_(); | 2568 FEImageElement.internal_() : super.internal_(); |
2527 | 2569 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2580 @Unstable() | 2622 @Unstable() |
2581 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2623 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
2582 // To suppress missing implicit constructor warnings. | 2624 // To suppress missing implicit constructor warnings. |
2583 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } | 2625 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } |
2584 | 2626 |
2585 @DomName('SVGFEMergeElement.SVGFEMergeElement') | 2627 @DomName('SVGFEMergeElement.SVGFEMergeElement') |
2586 @DocsEditable() | 2628 @DocsEditable() |
2587 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); | 2629 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); |
2588 | 2630 |
2589 | 2631 |
| 2632 @Deprecated("Internal Use Only") |
2590 static FEMergeElement internalCreateFEMergeElement() { | 2633 static FEMergeElement internalCreateFEMergeElement() { |
2591 return new FEMergeElement._internalWrap(); | 2634 return new FEMergeElement._internalWrap(); |
2592 } | 2635 } |
2593 | 2636 |
2594 factory FEMergeElement._internalWrap() { | 2637 factory FEMergeElement._internalWrap() { |
2595 return new FEMergeElement.internal_(); | 2638 return new FEMergeElement.internal_(); |
2596 } | 2639 } |
2597 | 2640 |
2598 FEMergeElement.internal_() : super.internal_(); | 2641 FEMergeElement.internal_() : super.internal_(); |
2599 | 2642 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2644 @Unstable() | 2687 @Unstable() |
2645 class FEMergeNodeElement extends SvgElement { | 2688 class FEMergeNodeElement extends SvgElement { |
2646 // To suppress missing implicit constructor warnings. | 2689 // To suppress missing implicit constructor warnings. |
2647 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} | 2690 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} |
2648 | 2691 |
2649 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') | 2692 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') |
2650 @DocsEditable() | 2693 @DocsEditable() |
2651 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); | 2694 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); |
2652 | 2695 |
2653 | 2696 |
| 2697 @Deprecated("Internal Use Only") |
2654 static FEMergeNodeElement internalCreateFEMergeNodeElement() { | 2698 static FEMergeNodeElement internalCreateFEMergeNodeElement() { |
2655 return new FEMergeNodeElement._internalWrap(); | 2699 return new FEMergeNodeElement._internalWrap(); |
2656 } | 2700 } |
2657 | 2701 |
2658 factory FEMergeNodeElement._internalWrap() { | 2702 factory FEMergeNodeElement._internalWrap() { |
2659 return new FEMergeNodeElement.internal_(); | 2703 return new FEMergeNodeElement.internal_(); |
2660 } | 2704 } |
2661 | 2705 |
2662 FEMergeNodeElement.internal_() : super.internal_(); | 2706 FEMergeNodeElement.internal_() : super.internal_(); |
2663 | 2707 |
(...skipping 24 matching lines...) Expand all Loading... |
2688 @SupportedBrowser(SupportedBrowser.CHROME) | 2732 @SupportedBrowser(SupportedBrowser.CHROME) |
2689 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2733 @SupportedBrowser(SupportedBrowser.FIREFOX) |
2690 @SupportedBrowser(SupportedBrowser.IE, '10') | 2734 @SupportedBrowser(SupportedBrowser.IE, '10') |
2691 @SupportedBrowser(SupportedBrowser.SAFARI) | 2735 @SupportedBrowser(SupportedBrowser.SAFARI) |
2692 @Unstable() | 2736 @Unstable() |
2693 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2737 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
2694 // To suppress missing implicit constructor warnings. | 2738 // To suppress missing implicit constructor warnings. |
2695 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} | 2739 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} |
2696 | 2740 |
2697 | 2741 |
| 2742 @Deprecated("Internal Use Only") |
2698 static FEMorphologyElement internalCreateFEMorphologyElement() { | 2743 static FEMorphologyElement internalCreateFEMorphologyElement() { |
2699 return new FEMorphologyElement._internalWrap(); | 2744 return new FEMorphologyElement._internalWrap(); |
2700 } | 2745 } |
2701 | 2746 |
2702 factory FEMorphologyElement._internalWrap() { | 2747 factory FEMorphologyElement._internalWrap() { |
2703 return new FEMorphologyElement.internal_(); | 2748 return new FEMorphologyElement.internal_(); |
2704 } | 2749 } |
2705 | 2750 |
2706 FEMorphologyElement.internal_() : super.internal_(); | 2751 FEMorphologyElement.internal_() : super.internal_(); |
2707 | 2752 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2777 @Unstable() | 2822 @Unstable() |
2778 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { | 2823 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
2779 // To suppress missing implicit constructor warnings. | 2824 // To suppress missing implicit constructor warnings. |
2780 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } | 2825 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } |
2781 | 2826 |
2782 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') | 2827 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') |
2783 @DocsEditable() | 2828 @DocsEditable() |
2784 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); | 2829 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); |
2785 | 2830 |
2786 | 2831 |
| 2832 @Deprecated("Internal Use Only") |
2787 static FEOffsetElement internalCreateFEOffsetElement() { | 2833 static FEOffsetElement internalCreateFEOffsetElement() { |
2788 return new FEOffsetElement._internalWrap(); | 2834 return new FEOffsetElement._internalWrap(); |
2789 } | 2835 } |
2790 | 2836 |
2791 factory FEOffsetElement._internalWrap() { | 2837 factory FEOffsetElement._internalWrap() { |
2792 return new FEOffsetElement.internal_(); | 2838 return new FEOffsetElement.internal_(); |
2793 } | 2839 } |
2794 | 2840 |
2795 FEOffsetElement.internal_() : super.internal_(); | 2841 FEOffsetElement.internal_() : super.internal_(); |
2796 | 2842 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2853 @Unstable() | 2899 @Unstable() |
2854 class FEPointLightElement extends SvgElement { | 2900 class FEPointLightElement extends SvgElement { |
2855 // To suppress missing implicit constructor warnings. | 2901 // To suppress missing implicit constructor warnings. |
2856 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} | 2902 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} |
2857 | 2903 |
2858 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') | 2904 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') |
2859 @DocsEditable() | 2905 @DocsEditable() |
2860 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); | 2906 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); |
2861 | 2907 |
2862 | 2908 |
| 2909 @Deprecated("Internal Use Only") |
2863 static FEPointLightElement internalCreateFEPointLightElement() { | 2910 static FEPointLightElement internalCreateFEPointLightElement() { |
2864 return new FEPointLightElement._internalWrap(); | 2911 return new FEPointLightElement._internalWrap(); |
2865 } | 2912 } |
2866 | 2913 |
2867 factory FEPointLightElement._internalWrap() { | 2914 factory FEPointLightElement._internalWrap() { |
2868 return new FEPointLightElement.internal_(); | 2915 return new FEPointLightElement.internal_(); |
2869 } | 2916 } |
2870 | 2917 |
2871 FEPointLightElement.internal_() : super.internal_(); | 2918 FEPointLightElement.internal_() : super.internal_(); |
2872 | 2919 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2909 @Unstable() | 2956 @Unstable() |
2910 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { | 2957 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
2911 // To suppress missing implicit constructor warnings. | 2958 // To suppress missing implicit constructor warnings. |
2912 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } | 2959 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } |
2913 | 2960 |
2914 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') | 2961 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') |
2915 @DocsEditable() | 2962 @DocsEditable() |
2916 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); | 2963 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); |
2917 | 2964 |
2918 | 2965 |
| 2966 @Deprecated("Internal Use Only") |
2919 static FESpecularLightingElement internalCreateFESpecularLightingElement() { | 2967 static FESpecularLightingElement internalCreateFESpecularLightingElement() { |
2920 return new FESpecularLightingElement._internalWrap(); | 2968 return new FESpecularLightingElement._internalWrap(); |
2921 } | 2969 } |
2922 | 2970 |
2923 factory FESpecularLightingElement._internalWrap() { | 2971 factory FESpecularLightingElement._internalWrap() { |
2924 return new FESpecularLightingElement.internal_(); | 2972 return new FESpecularLightingElement.internal_(); |
2925 } | 2973 } |
2926 | 2974 |
2927 FESpecularLightingElement.internal_() : super.internal_(); | 2975 FESpecularLightingElement.internal_() : super.internal_(); |
2928 | 2976 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2989 @Unstable() | 3037 @Unstable() |
2990 class FESpotLightElement extends SvgElement { | 3038 class FESpotLightElement extends SvgElement { |
2991 // To suppress missing implicit constructor warnings. | 3039 // To suppress missing implicit constructor warnings. |
2992 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} | 3040 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} |
2993 | 3041 |
2994 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') | 3042 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') |
2995 @DocsEditable() | 3043 @DocsEditable() |
2996 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); | 3044 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); |
2997 | 3045 |
2998 | 3046 |
| 3047 @Deprecated("Internal Use Only") |
2999 static FESpotLightElement internalCreateFESpotLightElement() { | 3048 static FESpotLightElement internalCreateFESpotLightElement() { |
3000 return new FESpotLightElement._internalWrap(); | 3049 return new FESpotLightElement._internalWrap(); |
3001 } | 3050 } |
3002 | 3051 |
3003 factory FESpotLightElement._internalWrap() { | 3052 factory FESpotLightElement._internalWrap() { |
3004 return new FESpotLightElement.internal_(); | 3053 return new FESpotLightElement.internal_(); |
3005 } | 3054 } |
3006 | 3055 |
3007 FESpotLightElement.internal_() : super.internal_(); | 3056 FESpotLightElement.internal_() : super.internal_(); |
3008 | 3057 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3065 @Unstable() | 3114 @Unstable() |
3066 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { | 3115 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
3067 // To suppress missing implicit constructor warnings. | 3116 // To suppress missing implicit constructor warnings. |
3068 factory FETileElement._() { throw new UnsupportedError("Not supported"); } | 3117 factory FETileElement._() { throw new UnsupportedError("Not supported"); } |
3069 | 3118 |
3070 @DomName('SVGFETileElement.SVGFETileElement') | 3119 @DomName('SVGFETileElement.SVGFETileElement') |
3071 @DocsEditable() | 3120 @DocsEditable() |
3072 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); | 3121 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); |
3073 | 3122 |
3074 | 3123 |
| 3124 @Deprecated("Internal Use Only") |
3075 static FETileElement internalCreateFETileElement() { | 3125 static FETileElement internalCreateFETileElement() { |
3076 return new FETileElement._internalWrap(); | 3126 return new FETileElement._internalWrap(); |
3077 } | 3127 } |
3078 | 3128 |
3079 factory FETileElement._internalWrap() { | 3129 factory FETileElement._internalWrap() { |
3080 return new FETileElement.internal_(); | 3130 return new FETileElement.internal_(); |
3081 } | 3131 } |
3082 | 3132 |
3083 FETileElement.internal_() : super.internal_(); | 3133 FETileElement.internal_() : super.internal_(); |
3084 | 3134 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3133 @Unstable() | 3183 @Unstable() |
3134 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 3184 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
3135 // To suppress missing implicit constructor warnings. | 3185 // To suppress missing implicit constructor warnings. |
3136 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} | 3186 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} |
3137 | 3187 |
3138 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') | 3188 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') |
3139 @DocsEditable() | 3189 @DocsEditable() |
3140 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); | 3190 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); |
3141 | 3191 |
3142 | 3192 |
| 3193 @Deprecated("Internal Use Only") |
3143 static FETurbulenceElement internalCreateFETurbulenceElement() { | 3194 static FETurbulenceElement internalCreateFETurbulenceElement() { |
3144 return new FETurbulenceElement._internalWrap(); | 3195 return new FETurbulenceElement._internalWrap(); |
3145 } | 3196 } |
3146 | 3197 |
3147 factory FETurbulenceElement._internalWrap() { | 3198 factory FETurbulenceElement._internalWrap() { |
3148 return new FETurbulenceElement.internal_(); | 3199 return new FETurbulenceElement.internal_(); |
3149 } | 3200 } |
3150 | 3201 |
3151 FETurbulenceElement.internal_() : super.internal_(); | 3202 FETurbulenceElement.internal_() : super.internal_(); |
3152 | 3203 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3245 @Unstable() | 3296 @Unstable() |
3246 class FilterElement extends SvgElement implements UriReference { | 3297 class FilterElement extends SvgElement implements UriReference { |
3247 // To suppress missing implicit constructor warnings. | 3298 // To suppress missing implicit constructor warnings. |
3248 factory FilterElement._() { throw new UnsupportedError("Not supported"); } | 3299 factory FilterElement._() { throw new UnsupportedError("Not supported"); } |
3249 | 3300 |
3250 @DomName('SVGFilterElement.SVGFilterElement') | 3301 @DomName('SVGFilterElement.SVGFilterElement') |
3251 @DocsEditable() | 3302 @DocsEditable() |
3252 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); | 3303 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); |
3253 | 3304 |
3254 | 3305 |
| 3306 @Deprecated("Internal Use Only") |
3255 static FilterElement internalCreateFilterElement() { | 3307 static FilterElement internalCreateFilterElement() { |
3256 return new FilterElement._internalWrap(); | 3308 return new FilterElement._internalWrap(); |
3257 } | 3309 } |
3258 | 3310 |
3259 factory FilterElement._internalWrap() { | 3311 factory FilterElement._internalWrap() { |
3260 return new FilterElement.internal_(); | 3312 return new FilterElement.internal_(); |
3261 } | 3313 } |
3262 | 3314 |
3263 FilterElement.internal_() : super.internal_(); | 3315 FilterElement.internal_() : super.internal_(); |
3264 | 3316 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3386 @Unstable() | 3438 @Unstable() |
3387 class ForeignObjectElement extends GraphicsElement { | 3439 class ForeignObjectElement extends GraphicsElement { |
3388 // To suppress missing implicit constructor warnings. | 3440 // To suppress missing implicit constructor warnings. |
3389 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } | 3441 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } |
3390 | 3442 |
3391 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') | 3443 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') |
3392 @DocsEditable() | 3444 @DocsEditable() |
3393 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); | 3445 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); |
3394 | 3446 |
3395 | 3447 |
| 3448 @Deprecated("Internal Use Only") |
3396 static ForeignObjectElement internalCreateForeignObjectElement() { | 3449 static ForeignObjectElement internalCreateForeignObjectElement() { |
3397 return new ForeignObjectElement._internalWrap(); | 3450 return new ForeignObjectElement._internalWrap(); |
3398 } | 3451 } |
3399 | 3452 |
3400 factory ForeignObjectElement._internalWrap() { | 3453 factory ForeignObjectElement._internalWrap() { |
3401 return new ForeignObjectElement.internal_(); | 3454 return new ForeignObjectElement.internal_(); |
3402 } | 3455 } |
3403 | 3456 |
3404 ForeignObjectElement.internal_() : super.internal_(); | 3457 ForeignObjectElement.internal_() : super.internal_(); |
3405 | 3458 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3442 @Unstable() | 3495 @Unstable() |
3443 class GElement extends GraphicsElement { | 3496 class GElement extends GraphicsElement { |
3444 // To suppress missing implicit constructor warnings. | 3497 // To suppress missing implicit constructor warnings. |
3445 factory GElement._() { throw new UnsupportedError("Not supported"); } | 3498 factory GElement._() { throw new UnsupportedError("Not supported"); } |
3446 | 3499 |
3447 @DomName('SVGGElement.SVGGElement') | 3500 @DomName('SVGGElement.SVGGElement') |
3448 @DocsEditable() | 3501 @DocsEditable() |
3449 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); | 3502 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); |
3450 | 3503 |
3451 | 3504 |
| 3505 @Deprecated("Internal Use Only") |
3452 static GElement internalCreateGElement() { | 3506 static GElement internalCreateGElement() { |
3453 return new GElement._internalWrap(); | 3507 return new GElement._internalWrap(); |
3454 } | 3508 } |
3455 | 3509 |
3456 factory GElement._internalWrap() { | 3510 factory GElement._internalWrap() { |
3457 return new GElement.internal_(); | 3511 return new GElement.internal_(); |
3458 } | 3512 } |
3459 | 3513 |
3460 GElement.internal_() : super.internal_(); | 3514 GElement.internal_() : super.internal_(); |
3461 | 3515 |
(...skipping 13 matching lines...) Expand all Loading... |
3475 | 3529 |
3476 | 3530 |
3477 @DocsEditable() | 3531 @DocsEditable() |
3478 @DomName('SVGGeometryElement') | 3532 @DomName('SVGGeometryElement') |
3479 @Experimental() // untriaged | 3533 @Experimental() // untriaged |
3480 class GeometryElement extends GraphicsElement { | 3534 class GeometryElement extends GraphicsElement { |
3481 // To suppress missing implicit constructor warnings. | 3535 // To suppress missing implicit constructor warnings. |
3482 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } | 3536 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } |
3483 | 3537 |
3484 | 3538 |
| 3539 @Deprecated("Internal Use Only") |
3485 static GeometryElement internalCreateGeometryElement() { | 3540 static GeometryElement internalCreateGeometryElement() { |
3486 return new GeometryElement._internalWrap(); | 3541 return new GeometryElement._internalWrap(); |
3487 } | 3542 } |
3488 | 3543 |
3489 factory GeometryElement._internalWrap() { | 3544 factory GeometryElement._internalWrap() { |
3490 return new GeometryElement.internal_(); | 3545 return new GeometryElement.internal_(); |
3491 } | 3546 } |
3492 | 3547 |
3493 GeometryElement.internal_() : super.internal_(); | 3548 GeometryElement.internal_() : super.internal_(); |
3494 | 3549 |
(...skipping 23 matching lines...) Expand all Loading... |
3518 | 3573 |
3519 | 3574 |
3520 @DocsEditable() | 3575 @DocsEditable() |
3521 @DomName('SVGGraphicsElement') | 3576 @DomName('SVGGraphicsElement') |
3522 @Experimental() // untriaged | 3577 @Experimental() // untriaged |
3523 class GraphicsElement extends SvgElement implements Tests { | 3578 class GraphicsElement extends SvgElement implements Tests { |
3524 // To suppress missing implicit constructor warnings. | 3579 // To suppress missing implicit constructor warnings. |
3525 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } | 3580 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } |
3526 | 3581 |
3527 | 3582 |
| 3583 @Deprecated("Internal Use Only") |
3528 static GraphicsElement internalCreateGraphicsElement() { | 3584 static GraphicsElement internalCreateGraphicsElement() { |
3529 return new GraphicsElement._internalWrap(); | 3585 return new GraphicsElement._internalWrap(); |
3530 } | 3586 } |
3531 | 3587 |
3532 factory GraphicsElement._internalWrap() { | 3588 factory GraphicsElement._internalWrap() { |
3533 return new GraphicsElement.internal_(); | 3589 return new GraphicsElement.internal_(); |
3534 } | 3590 } |
3535 | 3591 |
3536 GraphicsElement.internal_() : super.internal_(); | 3592 GraphicsElement.internal_() : super.internal_(); |
3537 | 3593 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3610 @Unstable() | 3666 @Unstable() |
3611 class ImageElement extends GraphicsElement implements UriReference { | 3667 class ImageElement extends GraphicsElement implements UriReference { |
3612 // To suppress missing implicit constructor warnings. | 3668 // To suppress missing implicit constructor warnings. |
3613 factory ImageElement._() { throw new UnsupportedError("Not supported"); } | 3669 factory ImageElement._() { throw new UnsupportedError("Not supported"); } |
3614 | 3670 |
3615 @DomName('SVGImageElement.SVGImageElement') | 3671 @DomName('SVGImageElement.SVGImageElement') |
3616 @DocsEditable() | 3672 @DocsEditable() |
3617 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); | 3673 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); |
3618 | 3674 |
3619 | 3675 |
| 3676 @Deprecated("Internal Use Only") |
3620 static ImageElement internalCreateImageElement() { | 3677 static ImageElement internalCreateImageElement() { |
3621 return new ImageElement._internalWrap(); | 3678 return new ImageElement._internalWrap(); |
3622 } | 3679 } |
3623 | 3680 |
3624 factory ImageElement._internalWrap() { | 3681 factory ImageElement._internalWrap() { |
3625 return new ImageElement.internal_(); | 3682 return new ImageElement.internal_(); |
3626 } | 3683 } |
3627 | 3684 |
3628 ImageElement.internal_() : super.internal_(); | 3685 ImageElement.internal_() : super.internal_(); |
3629 | 3686 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3666 // WARNING: Do not edit - generated code. | 3723 // WARNING: Do not edit - generated code. |
3667 | 3724 |
3668 | 3725 |
3669 @DocsEditable() | 3726 @DocsEditable() |
3670 @DomName('SVGLength') | 3727 @DomName('SVGLength') |
3671 @Unstable() | 3728 @Unstable() |
3672 class Length extends DartHtmlDomObject { | 3729 class Length extends DartHtmlDomObject { |
3673 // To suppress missing implicit constructor warnings. | 3730 // To suppress missing implicit constructor warnings. |
3674 factory Length._() { throw new UnsupportedError("Not supported"); } | 3731 factory Length._() { throw new UnsupportedError("Not supported"); } |
3675 | 3732 |
| 3733 @Deprecated("Internal Use Only") |
3676 static Length internalCreateLength() { | 3734 static Length internalCreateLength() { |
3677 return new Length._internalWrap(); | 3735 return new Length._internalWrap(); |
3678 } | 3736 } |
3679 | 3737 |
3680 factory Length._internalWrap() { | 3738 factory Length._internalWrap() { |
3681 return new Length.internal_(); | 3739 return new Length.internal_(); |
3682 } | 3740 } |
3683 | 3741 |
3684 Length.internal_() { } | 3742 Length.internal_() { } |
3685 | 3743 |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3774 // WARNING: Do not edit - generated code. | 3832 // WARNING: Do not edit - generated code. |
3775 | 3833 |
3776 | 3834 |
3777 @DocsEditable() | 3835 @DocsEditable() |
3778 @DomName('SVGLengthList') | 3836 @DomName('SVGLengthList') |
3779 @Unstable() | 3837 @Unstable() |
3780 class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList
Mixin<Length> implements List<Length> { | 3838 class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList
Mixin<Length> implements List<Length> { |
3781 // To suppress missing implicit constructor warnings. | 3839 // To suppress missing implicit constructor warnings. |
3782 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 3840 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
3783 | 3841 |
| 3842 @Deprecated("Internal Use Only") |
3784 static LengthList internalCreateLengthList() { | 3843 static LengthList internalCreateLengthList() { |
3785 return new LengthList._internalWrap(); | 3844 return new LengthList._internalWrap(); |
3786 } | 3845 } |
3787 | 3846 |
3788 factory LengthList._internalWrap() { | 3847 factory LengthList._internalWrap() { |
3789 return new LengthList.internal_(); | 3848 return new LengthList.internal_(); |
3790 } | 3849 } |
3791 | 3850 |
3792 LengthList.internal_() { } | 3851 LengthList.internal_() { } |
3793 | 3852 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3893 @Unstable() | 3952 @Unstable() |
3894 class LineElement extends GeometryElement { | 3953 class LineElement extends GeometryElement { |
3895 // To suppress missing implicit constructor warnings. | 3954 // To suppress missing implicit constructor warnings. |
3896 factory LineElement._() { throw new UnsupportedError("Not supported"); } | 3955 factory LineElement._() { throw new UnsupportedError("Not supported"); } |
3897 | 3956 |
3898 @DomName('SVGLineElement.SVGLineElement') | 3957 @DomName('SVGLineElement.SVGLineElement') |
3899 @DocsEditable() | 3958 @DocsEditable() |
3900 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); | 3959 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); |
3901 | 3960 |
3902 | 3961 |
| 3962 @Deprecated("Internal Use Only") |
3903 static LineElement internalCreateLineElement() { | 3963 static LineElement internalCreateLineElement() { |
3904 return new LineElement._internalWrap(); | 3964 return new LineElement._internalWrap(); |
3905 } | 3965 } |
3906 | 3966 |
3907 factory LineElement._internalWrap() { | 3967 factory LineElement._internalWrap() { |
3908 return new LineElement.internal_(); | 3968 return new LineElement.internal_(); |
3909 } | 3969 } |
3910 | 3970 |
3911 LineElement.internal_() : super.internal_(); | 3971 LineElement.internal_() : super.internal_(); |
3912 | 3972 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3946 @Unstable() | 4006 @Unstable() |
3947 class LinearGradientElement extends _GradientElement { | 4007 class LinearGradientElement extends _GradientElement { |
3948 // To suppress missing implicit constructor warnings. | 4008 // To suppress missing implicit constructor warnings. |
3949 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } | 4009 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } |
3950 | 4010 |
3951 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') | 4011 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
3952 @DocsEditable() | 4012 @DocsEditable() |
3953 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); | 4013 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); |
3954 | 4014 |
3955 | 4015 |
| 4016 @Deprecated("Internal Use Only") |
3956 static LinearGradientElement internalCreateLinearGradientElement() { | 4017 static LinearGradientElement internalCreateLinearGradientElement() { |
3957 return new LinearGradientElement._internalWrap(); | 4018 return new LinearGradientElement._internalWrap(); |
3958 } | 4019 } |
3959 | 4020 |
3960 factory LinearGradientElement._internalWrap() { | 4021 factory LinearGradientElement._internalWrap() { |
3961 return new LinearGradientElement.internal_(); | 4022 return new LinearGradientElement.internal_(); |
3962 } | 4023 } |
3963 | 4024 |
3964 LinearGradientElement.internal_() : super.internal_(); | 4025 LinearGradientElement.internal_() : super.internal_(); |
3965 | 4026 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3999 @Unstable() | 4060 @Unstable() |
4000 class MarkerElement extends SvgElement implements FitToViewBox { | 4061 class MarkerElement extends SvgElement implements FitToViewBox { |
4001 // To suppress missing implicit constructor warnings. | 4062 // To suppress missing implicit constructor warnings. |
4002 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } | 4063 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } |
4003 | 4064 |
4004 @DomName('SVGMarkerElement.SVGMarkerElement') | 4065 @DomName('SVGMarkerElement.SVGMarkerElement') |
4005 @DocsEditable() | 4066 @DocsEditable() |
4006 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); | 4067 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); |
4007 | 4068 |
4008 | 4069 |
| 4070 @Deprecated("Internal Use Only") |
4009 static MarkerElement internalCreateMarkerElement() { | 4071 static MarkerElement internalCreateMarkerElement() { |
4010 return new MarkerElement._internalWrap(); | 4072 return new MarkerElement._internalWrap(); |
4011 } | 4073 } |
4012 | 4074 |
4013 factory MarkerElement._internalWrap() { | 4075 factory MarkerElement._internalWrap() { |
4014 return new MarkerElement.internal_(); | 4076 return new MarkerElement.internal_(); |
4015 } | 4077 } |
4016 | 4078 |
4017 MarkerElement.internal_() : super.internal_(); | 4079 MarkerElement.internal_() : super.internal_(); |
4018 | 4080 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4104 @Unstable() | 4166 @Unstable() |
4105 class MaskElement extends SvgElement implements Tests { | 4167 class MaskElement extends SvgElement implements Tests { |
4106 // To suppress missing implicit constructor warnings. | 4168 // To suppress missing implicit constructor warnings. |
4107 factory MaskElement._() { throw new UnsupportedError("Not supported"); } | 4169 factory MaskElement._() { throw new UnsupportedError("Not supported"); } |
4108 | 4170 |
4109 @DomName('SVGMaskElement.SVGMaskElement') | 4171 @DomName('SVGMaskElement.SVGMaskElement') |
4110 @DocsEditable() | 4172 @DocsEditable() |
4111 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); | 4173 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); |
4112 | 4174 |
4113 | 4175 |
| 4176 @Deprecated("Internal Use Only") |
4114 static MaskElement internalCreateMaskElement() { | 4177 static MaskElement internalCreateMaskElement() { |
4115 return new MaskElement._internalWrap(); | 4178 return new MaskElement._internalWrap(); |
4116 } | 4179 } |
4117 | 4180 |
4118 factory MaskElement._internalWrap() { | 4181 factory MaskElement._internalWrap() { |
4119 return new MaskElement.internal_(); | 4182 return new MaskElement.internal_(); |
4120 } | 4183 } |
4121 | 4184 |
4122 MaskElement.internal_() : super.internal_(); | 4185 MaskElement.internal_() : super.internal_(); |
4123 | 4186 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4176 // WARNING: Do not edit - generated code. | 4239 // WARNING: Do not edit - generated code. |
4177 | 4240 |
4178 | 4241 |
4179 @DocsEditable() | 4242 @DocsEditable() |
4180 @DomName('SVGMatrix') | 4243 @DomName('SVGMatrix') |
4181 @Unstable() | 4244 @Unstable() |
4182 class Matrix extends DartHtmlDomObject { | 4245 class Matrix extends DartHtmlDomObject { |
4183 // To suppress missing implicit constructor warnings. | 4246 // To suppress missing implicit constructor warnings. |
4184 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 4247 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
4185 | 4248 |
| 4249 @Deprecated("Internal Use Only") |
4186 static Matrix internalCreateMatrix() { | 4250 static Matrix internalCreateMatrix() { |
4187 return new Matrix._internalWrap(); | 4251 return new Matrix._internalWrap(); |
4188 } | 4252 } |
4189 | 4253 |
4190 factory Matrix._internalWrap() { | 4254 factory Matrix._internalWrap() { |
4191 return new Matrix.internal_(); | 4255 return new Matrix.internal_(); |
4192 } | 4256 } |
4193 | 4257 |
4194 Matrix.internal_() { } | 4258 Matrix.internal_() { } |
4195 | 4259 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4297 | 4361 |
4298 | 4362 |
4299 @DocsEditable() | 4363 @DocsEditable() |
4300 @DomName('SVGMetadataElement') | 4364 @DomName('SVGMetadataElement') |
4301 @Unstable() | 4365 @Unstable() |
4302 class MetadataElement extends SvgElement { | 4366 class MetadataElement extends SvgElement { |
4303 // To suppress missing implicit constructor warnings. | 4367 // To suppress missing implicit constructor warnings. |
4304 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } | 4368 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } |
4305 | 4369 |
4306 | 4370 |
| 4371 @Deprecated("Internal Use Only") |
4307 static MetadataElement internalCreateMetadataElement() { | 4372 static MetadataElement internalCreateMetadataElement() { |
4308 return new MetadataElement._internalWrap(); | 4373 return new MetadataElement._internalWrap(); |
4309 } | 4374 } |
4310 | 4375 |
4311 factory MetadataElement._internalWrap() { | 4376 factory MetadataElement._internalWrap() { |
4312 return new MetadataElement.internal_(); | 4377 return new MetadataElement.internal_(); |
4313 } | 4378 } |
4314 | 4379 |
4315 MetadataElement.internal_() : super.internal_(); | 4380 MetadataElement.internal_() : super.internal_(); |
4316 | 4381 |
(...skipping 12 matching lines...) Expand all Loading... |
4329 // WARNING: Do not edit - generated code. | 4394 // WARNING: Do not edit - generated code. |
4330 | 4395 |
4331 | 4396 |
4332 @DocsEditable() | 4397 @DocsEditable() |
4333 @DomName('SVGNumber') | 4398 @DomName('SVGNumber') |
4334 @Unstable() | 4399 @Unstable() |
4335 class Number extends DartHtmlDomObject { | 4400 class Number extends DartHtmlDomObject { |
4336 // To suppress missing implicit constructor warnings. | 4401 // To suppress missing implicit constructor warnings. |
4337 factory Number._() { throw new UnsupportedError("Not supported"); } | 4402 factory Number._() { throw new UnsupportedError("Not supported"); } |
4338 | 4403 |
| 4404 @Deprecated("Internal Use Only") |
4339 static Number internalCreateNumber() { | 4405 static Number internalCreateNumber() { |
4340 return new Number._internalWrap(); | 4406 return new Number._internalWrap(); |
4341 } | 4407 } |
4342 | 4408 |
4343 factory Number._internalWrap() { | 4409 factory Number._internalWrap() { |
4344 return new Number.internal_(); | 4410 return new Number.internal_(); |
4345 } | 4411 } |
4346 | 4412 |
4347 Number.internal_() { } | 4413 Number.internal_() { } |
4348 | 4414 |
(...skipping 16 matching lines...) Expand all Loading... |
4365 // WARNING: Do not edit - generated code. | 4431 // WARNING: Do not edit - generated code. |
4366 | 4432 |
4367 | 4433 |
4368 @DocsEditable() | 4434 @DocsEditable() |
4369 @DomName('SVGNumberList') | 4435 @DomName('SVGNumberList') |
4370 @Unstable() | 4436 @Unstable() |
4371 class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList
Mixin<Number> implements List<Number> { | 4437 class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList
Mixin<Number> implements List<Number> { |
4372 // To suppress missing implicit constructor warnings. | 4438 // To suppress missing implicit constructor warnings. |
4373 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 4439 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
4374 | 4440 |
| 4441 @Deprecated("Internal Use Only") |
4375 static NumberList internalCreateNumberList() { | 4442 static NumberList internalCreateNumberList() { |
4376 return new NumberList._internalWrap(); | 4443 return new NumberList._internalWrap(); |
4377 } | 4444 } |
4378 | 4445 |
4379 factory NumberList._internalWrap() { | 4446 factory NumberList._internalWrap() { |
4380 return new NumberList.internal_(); | 4447 return new NumberList.internal_(); |
4381 } | 4448 } |
4382 | 4449 |
4383 NumberList.internal_() { } | 4450 NumberList.internal_() { } |
4384 | 4451 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4484 @Unstable() | 4551 @Unstable() |
4485 class PathElement extends GeometryElement { | 4552 class PathElement extends GeometryElement { |
4486 // To suppress missing implicit constructor warnings. | 4553 // To suppress missing implicit constructor warnings. |
4487 factory PathElement._() { throw new UnsupportedError("Not supported"); } | 4554 factory PathElement._() { throw new UnsupportedError("Not supported"); } |
4488 | 4555 |
4489 @DomName('SVGPathElement.SVGPathElement') | 4556 @DomName('SVGPathElement.SVGPathElement') |
4490 @DocsEditable() | 4557 @DocsEditable() |
4491 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); | 4558 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); |
4492 | 4559 |
4493 | 4560 |
| 4561 @Deprecated("Internal Use Only") |
4494 static PathElement internalCreatePathElement() { | 4562 static PathElement internalCreatePathElement() { |
4495 return new PathElement._internalWrap(); | 4563 return new PathElement._internalWrap(); |
4496 } | 4564 } |
4497 | 4565 |
4498 factory PathElement._internalWrap() { | 4566 factory PathElement._internalWrap() { |
4499 return new PathElement.internal_(); | 4567 return new PathElement.internal_(); |
4500 } | 4568 } |
4501 | 4569 |
4502 PathElement.internal_() : super.internal_(); | 4570 PathElement.internal_() : super.internal_(); |
4503 | 4571 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4624 // WARNING: Do not edit - generated code. | 4692 // WARNING: Do not edit - generated code. |
4625 | 4693 |
4626 | 4694 |
4627 @DocsEditable() | 4695 @DocsEditable() |
4628 @DomName('SVGPathSeg') | 4696 @DomName('SVGPathSeg') |
4629 @Unstable() | 4697 @Unstable() |
4630 class PathSeg extends DartHtmlDomObject { | 4698 class PathSeg extends DartHtmlDomObject { |
4631 // To suppress missing implicit constructor warnings. | 4699 // To suppress missing implicit constructor warnings. |
4632 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 4700 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
4633 | 4701 |
| 4702 @Deprecated("Internal Use Only") |
4634 static PathSeg internalCreatePathSeg() { | 4703 static PathSeg internalCreatePathSeg() { |
4635 return new PathSeg._internalWrap(); | 4704 return new PathSeg._internalWrap(); |
4636 } | 4705 } |
4637 | 4706 |
4638 factory PathSeg._internalWrap() { | 4707 factory PathSeg._internalWrap() { |
4639 return new PathSeg.internal_(); | 4708 return new PathSeg.internal_(); |
4640 } | 4709 } |
4641 | 4710 |
4642 PathSeg.internal_() { } | 4711 PathSeg.internal_() { } |
4643 | 4712 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4741 | 4810 |
4742 | 4811 |
4743 @DocsEditable() | 4812 @DocsEditable() |
4744 @DomName('SVGPathSegArcAbs') | 4813 @DomName('SVGPathSegArcAbs') |
4745 @Unstable() | 4814 @Unstable() |
4746 class PathSegArcAbs extends PathSeg { | 4815 class PathSegArcAbs extends PathSeg { |
4747 // To suppress missing implicit constructor warnings. | 4816 // To suppress missing implicit constructor warnings. |
4748 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 4817 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
4749 | 4818 |
4750 | 4819 |
| 4820 @Deprecated("Internal Use Only") |
4751 static PathSegArcAbs internalCreatePathSegArcAbs() { | 4821 static PathSegArcAbs internalCreatePathSegArcAbs() { |
4752 return new PathSegArcAbs._internalWrap(); | 4822 return new PathSegArcAbs._internalWrap(); |
4753 } | 4823 } |
4754 | 4824 |
4755 factory PathSegArcAbs._internalWrap() { | 4825 factory PathSegArcAbs._internalWrap() { |
4756 return new PathSegArcAbs.internal_(); | 4826 return new PathSegArcAbs.internal_(); |
4757 } | 4827 } |
4758 | 4828 |
4759 PathSegArcAbs.internal_() : super.internal_(); | 4829 PathSegArcAbs.internal_() : super.internal_(); |
4760 | 4830 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4824 | 4894 |
4825 | 4895 |
4826 @DocsEditable() | 4896 @DocsEditable() |
4827 @DomName('SVGPathSegArcRel') | 4897 @DomName('SVGPathSegArcRel') |
4828 @Unstable() | 4898 @Unstable() |
4829 class PathSegArcRel extends PathSeg { | 4899 class PathSegArcRel extends PathSeg { |
4830 // To suppress missing implicit constructor warnings. | 4900 // To suppress missing implicit constructor warnings. |
4831 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 4901 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
4832 | 4902 |
4833 | 4903 |
| 4904 @Deprecated("Internal Use Only") |
4834 static PathSegArcRel internalCreatePathSegArcRel() { | 4905 static PathSegArcRel internalCreatePathSegArcRel() { |
4835 return new PathSegArcRel._internalWrap(); | 4906 return new PathSegArcRel._internalWrap(); |
4836 } | 4907 } |
4837 | 4908 |
4838 factory PathSegArcRel._internalWrap() { | 4909 factory PathSegArcRel._internalWrap() { |
4839 return new PathSegArcRel.internal_(); | 4910 return new PathSegArcRel.internal_(); |
4840 } | 4911 } |
4841 | 4912 |
4842 PathSegArcRel.internal_() : super.internal_(); | 4913 PathSegArcRel.internal_() : super.internal_(); |
4843 | 4914 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4907 | 4978 |
4908 | 4979 |
4909 @DocsEditable() | 4980 @DocsEditable() |
4910 @DomName('SVGPathSegClosePath') | 4981 @DomName('SVGPathSegClosePath') |
4911 @Unstable() | 4982 @Unstable() |
4912 class PathSegClosePath extends PathSeg { | 4983 class PathSegClosePath extends PathSeg { |
4913 // To suppress missing implicit constructor warnings. | 4984 // To suppress missing implicit constructor warnings. |
4914 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } | 4985 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } |
4915 | 4986 |
4916 | 4987 |
| 4988 @Deprecated("Internal Use Only") |
4917 static PathSegClosePath internalCreatePathSegClosePath() { | 4989 static PathSegClosePath internalCreatePathSegClosePath() { |
4918 return new PathSegClosePath._internalWrap(); | 4990 return new PathSegClosePath._internalWrap(); |
4919 } | 4991 } |
4920 | 4992 |
4921 factory PathSegClosePath._internalWrap() { | 4993 factory PathSegClosePath._internalWrap() { |
4922 return new PathSegClosePath.internal_(); | 4994 return new PathSegClosePath.internal_(); |
4923 } | 4995 } |
4924 | 4996 |
4925 PathSegClosePath.internal_() : super.internal_(); | 4997 PathSegClosePath.internal_() : super.internal_(); |
4926 | 4998 |
4927 | 4999 |
4928 } | 5000 } |
4929 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5001 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4930 // for details. All rights reserved. Use of this source code is governed by a | 5002 // for details. All rights reserved. Use of this source code is governed by a |
4931 // BSD-style license that can be found in the LICENSE file. | 5003 // BSD-style license that can be found in the LICENSE file. |
4932 | 5004 |
4933 // WARNING: Do not edit - generated code. | 5005 // WARNING: Do not edit - generated code. |
4934 | 5006 |
4935 | 5007 |
4936 @DocsEditable() | 5008 @DocsEditable() |
4937 @DomName('SVGPathSegCurvetoCubicAbs') | 5009 @DomName('SVGPathSegCurvetoCubicAbs') |
4938 @Unstable() | 5010 @Unstable() |
4939 class PathSegCurvetoCubicAbs extends PathSeg { | 5011 class PathSegCurvetoCubicAbs extends PathSeg { |
4940 // To suppress missing implicit constructor warnings. | 5012 // To suppress missing implicit constructor warnings. |
4941 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 5013 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
4942 | 5014 |
4943 | 5015 |
| 5016 @Deprecated("Internal Use Only") |
4944 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { | 5017 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { |
4945 return new PathSegCurvetoCubicAbs._internalWrap(); | 5018 return new PathSegCurvetoCubicAbs._internalWrap(); |
4946 } | 5019 } |
4947 | 5020 |
4948 factory PathSegCurvetoCubicAbs._internalWrap() { | 5021 factory PathSegCurvetoCubicAbs._internalWrap() { |
4949 return new PathSegCurvetoCubicAbs.internal_(); | 5022 return new PathSegCurvetoCubicAbs.internal_(); |
4950 } | 5023 } |
4951 | 5024 |
4952 PathSegCurvetoCubicAbs.internal_() : super.internal_(); | 5025 PathSegCurvetoCubicAbs.internal_() : super.internal_(); |
4953 | 5026 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5009 | 5082 |
5010 | 5083 |
5011 @DocsEditable() | 5084 @DocsEditable() |
5012 @DomName('SVGPathSegCurvetoCubicRel') | 5085 @DomName('SVGPathSegCurvetoCubicRel') |
5013 @Unstable() | 5086 @Unstable() |
5014 class PathSegCurvetoCubicRel extends PathSeg { | 5087 class PathSegCurvetoCubicRel extends PathSeg { |
5015 // To suppress missing implicit constructor warnings. | 5088 // To suppress missing implicit constructor warnings. |
5016 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 5089 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
5017 | 5090 |
5018 | 5091 |
| 5092 @Deprecated("Internal Use Only") |
5019 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { | 5093 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { |
5020 return new PathSegCurvetoCubicRel._internalWrap(); | 5094 return new PathSegCurvetoCubicRel._internalWrap(); |
5021 } | 5095 } |
5022 | 5096 |
5023 factory PathSegCurvetoCubicRel._internalWrap() { | 5097 factory PathSegCurvetoCubicRel._internalWrap() { |
5024 return new PathSegCurvetoCubicRel.internal_(); | 5098 return new PathSegCurvetoCubicRel.internal_(); |
5025 } | 5099 } |
5026 | 5100 |
5027 PathSegCurvetoCubicRel.internal_() : super.internal_(); | 5101 PathSegCurvetoCubicRel.internal_() : super.internal_(); |
5028 | 5102 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5084 | 5158 |
5085 | 5159 |
5086 @DocsEditable() | 5160 @DocsEditable() |
5087 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 5161 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
5088 @Unstable() | 5162 @Unstable() |
5089 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 5163 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
5090 // To suppress missing implicit constructor warnings. | 5164 // To suppress missing implicit constructor warnings. |
5091 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 5165 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
5092 | 5166 |
5093 | 5167 |
| 5168 @Deprecated("Internal Use Only") |
5094 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { | 5169 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { |
5095 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); | 5170 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); |
5096 } | 5171 } |
5097 | 5172 |
5098 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { | 5173 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { |
5099 return new PathSegCurvetoCubicSmoothAbs.internal_(); | 5174 return new PathSegCurvetoCubicSmoothAbs.internal_(); |
5100 } | 5175 } |
5101 | 5176 |
5102 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); | 5177 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); |
5103 | 5178 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5143 | 5218 |
5144 | 5219 |
5145 @DocsEditable() | 5220 @DocsEditable() |
5146 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 5221 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
5147 @Unstable() | 5222 @Unstable() |
5148 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 5223 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
5149 // To suppress missing implicit constructor warnings. | 5224 // To suppress missing implicit constructor warnings. |
5150 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 5225 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
5151 | 5226 |
5152 | 5227 |
| 5228 @Deprecated("Internal Use Only") |
5153 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { | 5229 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { |
5154 return new PathSegCurvetoCubicSmoothRel._internalWrap(); | 5230 return new PathSegCurvetoCubicSmoothRel._internalWrap(); |
5155 } | 5231 } |
5156 | 5232 |
5157 factory PathSegCurvetoCubicSmoothRel._internalWrap() { | 5233 factory PathSegCurvetoCubicSmoothRel._internalWrap() { |
5158 return new PathSegCurvetoCubicSmoothRel.internal_(); | 5234 return new PathSegCurvetoCubicSmoothRel.internal_(); |
5159 } | 5235 } |
5160 | 5236 |
5161 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); | 5237 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); |
5162 | 5238 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5202 | 5278 |
5203 | 5279 |
5204 @DocsEditable() | 5280 @DocsEditable() |
5205 @DomName('SVGPathSegCurvetoQuadraticAbs') | 5281 @DomName('SVGPathSegCurvetoQuadraticAbs') |
5206 @Unstable() | 5282 @Unstable() |
5207 class PathSegCurvetoQuadraticAbs extends PathSeg { | 5283 class PathSegCurvetoQuadraticAbs extends PathSeg { |
5208 // To suppress missing implicit constructor warnings. | 5284 // To suppress missing implicit constructor warnings. |
5209 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5285 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
5210 | 5286 |
5211 | 5287 |
| 5288 @Deprecated("Internal Use Only") |
5212 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { | 5289 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { |
5213 return new PathSegCurvetoQuadraticAbs._internalWrap(); | 5290 return new PathSegCurvetoQuadraticAbs._internalWrap(); |
5214 } | 5291 } |
5215 | 5292 |
5216 factory PathSegCurvetoQuadraticAbs._internalWrap() { | 5293 factory PathSegCurvetoQuadraticAbs._internalWrap() { |
5217 return new PathSegCurvetoQuadraticAbs.internal_(); | 5294 return new PathSegCurvetoQuadraticAbs.internal_(); |
5218 } | 5295 } |
5219 | 5296 |
5220 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); | 5297 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); |
5221 | 5298 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5261 | 5338 |
5262 | 5339 |
5263 @DocsEditable() | 5340 @DocsEditable() |
5264 @DomName('SVGPathSegCurvetoQuadraticRel') | 5341 @DomName('SVGPathSegCurvetoQuadraticRel') |
5265 @Unstable() | 5342 @Unstable() |
5266 class PathSegCurvetoQuadraticRel extends PathSeg { | 5343 class PathSegCurvetoQuadraticRel extends PathSeg { |
5267 // To suppress missing implicit constructor warnings. | 5344 // To suppress missing implicit constructor warnings. |
5268 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5345 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
5269 | 5346 |
5270 | 5347 |
| 5348 @Deprecated("Internal Use Only") |
5271 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { | 5349 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { |
5272 return new PathSegCurvetoQuadraticRel._internalWrap(); | 5350 return new PathSegCurvetoQuadraticRel._internalWrap(); |
5273 } | 5351 } |
5274 | 5352 |
5275 factory PathSegCurvetoQuadraticRel._internalWrap() { | 5353 factory PathSegCurvetoQuadraticRel._internalWrap() { |
5276 return new PathSegCurvetoQuadraticRel.internal_(); | 5354 return new PathSegCurvetoQuadraticRel.internal_(); |
5277 } | 5355 } |
5278 | 5356 |
5279 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); | 5357 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); |
5280 | 5358 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5320 | 5398 |
5321 | 5399 |
5322 @DocsEditable() | 5400 @DocsEditable() |
5323 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 5401 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
5324 @Unstable() | 5402 @Unstable() |
5325 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 5403 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
5326 // To suppress missing implicit constructor warnings. | 5404 // To suppress missing implicit constructor warnings. |
5327 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 5405 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
5328 | 5406 |
5329 | 5407 |
| 5408 @Deprecated("Internal Use Only") |
5330 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { | 5409 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { |
5331 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); | 5410 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); |
5332 } | 5411 } |
5333 | 5412 |
5334 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { | 5413 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { |
5335 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); | 5414 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); |
5336 } | 5415 } |
5337 | 5416 |
5338 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); | 5417 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); |
5339 | 5418 |
(...skipping 23 matching lines...) Expand all Loading... |
5363 | 5442 |
5364 | 5443 |
5365 @DocsEditable() | 5444 @DocsEditable() |
5366 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 5445 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
5367 @Unstable() | 5446 @Unstable() |
5368 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 5447 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
5369 // To suppress missing implicit constructor warnings. | 5448 // To suppress missing implicit constructor warnings. |
5370 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 5449 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
5371 | 5450 |
5372 | 5451 |
| 5452 @Deprecated("Internal Use Only") |
5373 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { | 5453 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { |
5374 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); | 5454 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); |
5375 } | 5455 } |
5376 | 5456 |
5377 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { | 5457 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { |
5378 return new PathSegCurvetoQuadraticSmoothRel.internal_(); | 5458 return new PathSegCurvetoQuadraticSmoothRel.internal_(); |
5379 } | 5459 } |
5380 | 5460 |
5381 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); | 5461 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); |
5382 | 5462 |
(...skipping 23 matching lines...) Expand all Loading... |
5406 | 5486 |
5407 | 5487 |
5408 @DocsEditable() | 5488 @DocsEditable() |
5409 @DomName('SVGPathSegLinetoAbs') | 5489 @DomName('SVGPathSegLinetoAbs') |
5410 @Unstable() | 5490 @Unstable() |
5411 class PathSegLinetoAbs extends PathSeg { | 5491 class PathSegLinetoAbs extends PathSeg { |
5412 // To suppress missing implicit constructor warnings. | 5492 // To suppress missing implicit constructor warnings. |
5413 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 5493 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
5414 | 5494 |
5415 | 5495 |
| 5496 @Deprecated("Internal Use Only") |
5416 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { | 5497 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { |
5417 return new PathSegLinetoAbs._internalWrap(); | 5498 return new PathSegLinetoAbs._internalWrap(); |
5418 } | 5499 } |
5419 | 5500 |
5420 factory PathSegLinetoAbs._internalWrap() { | 5501 factory PathSegLinetoAbs._internalWrap() { |
5421 return new PathSegLinetoAbs.internal_(); | 5502 return new PathSegLinetoAbs.internal_(); |
5422 } | 5503 } |
5423 | 5504 |
5424 PathSegLinetoAbs.internal_() : super.internal_(); | 5505 PathSegLinetoAbs.internal_() : super.internal_(); |
5425 | 5506 |
(...skipping 23 matching lines...) Expand all Loading... |
5449 | 5530 |
5450 | 5531 |
5451 @DocsEditable() | 5532 @DocsEditable() |
5452 @DomName('SVGPathSegLinetoHorizontalAbs') | 5533 @DomName('SVGPathSegLinetoHorizontalAbs') |
5453 @Unstable() | 5534 @Unstable() |
5454 class PathSegLinetoHorizontalAbs extends PathSeg { | 5535 class PathSegLinetoHorizontalAbs extends PathSeg { |
5455 // To suppress missing implicit constructor warnings. | 5536 // To suppress missing implicit constructor warnings. |
5456 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5537 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
5457 | 5538 |
5458 | 5539 |
| 5540 @Deprecated("Internal Use Only") |
5459 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { | 5541 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { |
5460 return new PathSegLinetoHorizontalAbs._internalWrap(); | 5542 return new PathSegLinetoHorizontalAbs._internalWrap(); |
5461 } | 5543 } |
5462 | 5544 |
5463 factory PathSegLinetoHorizontalAbs._internalWrap() { | 5545 factory PathSegLinetoHorizontalAbs._internalWrap() { |
5464 return new PathSegLinetoHorizontalAbs.internal_(); | 5546 return new PathSegLinetoHorizontalAbs.internal_(); |
5465 } | 5547 } |
5466 | 5548 |
5467 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); | 5549 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); |
5468 | 5550 |
(...skipping 15 matching lines...) Expand all Loading... |
5484 | 5566 |
5485 | 5567 |
5486 @DocsEditable() | 5568 @DocsEditable() |
5487 @DomName('SVGPathSegLinetoHorizontalRel') | 5569 @DomName('SVGPathSegLinetoHorizontalRel') |
5488 @Unstable() | 5570 @Unstable() |
5489 class PathSegLinetoHorizontalRel extends PathSeg { | 5571 class PathSegLinetoHorizontalRel extends PathSeg { |
5490 // To suppress missing implicit constructor warnings. | 5572 // To suppress missing implicit constructor warnings. |
5491 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5573 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
5492 | 5574 |
5493 | 5575 |
| 5576 @Deprecated("Internal Use Only") |
5494 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { | 5577 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { |
5495 return new PathSegLinetoHorizontalRel._internalWrap(); | 5578 return new PathSegLinetoHorizontalRel._internalWrap(); |
5496 } | 5579 } |
5497 | 5580 |
5498 factory PathSegLinetoHorizontalRel._internalWrap() { | 5581 factory PathSegLinetoHorizontalRel._internalWrap() { |
5499 return new PathSegLinetoHorizontalRel.internal_(); | 5582 return new PathSegLinetoHorizontalRel.internal_(); |
5500 } | 5583 } |
5501 | 5584 |
5502 PathSegLinetoHorizontalRel.internal_() : super.internal_(); | 5585 PathSegLinetoHorizontalRel.internal_() : super.internal_(); |
5503 | 5586 |
(...skipping 15 matching lines...) Expand all Loading... |
5519 | 5602 |
5520 | 5603 |
5521 @DocsEditable() | 5604 @DocsEditable() |
5522 @DomName('SVGPathSegLinetoRel') | 5605 @DomName('SVGPathSegLinetoRel') |
5523 @Unstable() | 5606 @Unstable() |
5524 class PathSegLinetoRel extends PathSeg { | 5607 class PathSegLinetoRel extends PathSeg { |
5525 // To suppress missing implicit constructor warnings. | 5608 // To suppress missing implicit constructor warnings. |
5526 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 5609 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
5527 | 5610 |
5528 | 5611 |
| 5612 @Deprecated("Internal Use Only") |
5529 static PathSegLinetoRel internalCreatePathSegLinetoRel() { | 5613 static PathSegLinetoRel internalCreatePathSegLinetoRel() { |
5530 return new PathSegLinetoRel._internalWrap(); | 5614 return new PathSegLinetoRel._internalWrap(); |
5531 } | 5615 } |
5532 | 5616 |
5533 factory PathSegLinetoRel._internalWrap() { | 5617 factory PathSegLinetoRel._internalWrap() { |
5534 return new PathSegLinetoRel.internal_(); | 5618 return new PathSegLinetoRel.internal_(); |
5535 } | 5619 } |
5536 | 5620 |
5537 PathSegLinetoRel.internal_() : super.internal_(); | 5621 PathSegLinetoRel.internal_() : super.internal_(); |
5538 | 5622 |
(...skipping 23 matching lines...) Expand all Loading... |
5562 | 5646 |
5563 | 5647 |
5564 @DocsEditable() | 5648 @DocsEditable() |
5565 @DomName('SVGPathSegLinetoVerticalAbs') | 5649 @DomName('SVGPathSegLinetoVerticalAbs') |
5566 @Unstable() | 5650 @Unstable() |
5567 class PathSegLinetoVerticalAbs extends PathSeg { | 5651 class PathSegLinetoVerticalAbs extends PathSeg { |
5568 // To suppress missing implicit constructor warnings. | 5652 // To suppress missing implicit constructor warnings. |
5569 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 5653 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
5570 | 5654 |
5571 | 5655 |
| 5656 @Deprecated("Internal Use Only") |
5572 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { | 5657 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { |
5573 return new PathSegLinetoVerticalAbs._internalWrap(); | 5658 return new PathSegLinetoVerticalAbs._internalWrap(); |
5574 } | 5659 } |
5575 | 5660 |
5576 factory PathSegLinetoVerticalAbs._internalWrap() { | 5661 factory PathSegLinetoVerticalAbs._internalWrap() { |
5577 return new PathSegLinetoVerticalAbs.internal_(); | 5662 return new PathSegLinetoVerticalAbs.internal_(); |
5578 } | 5663 } |
5579 | 5664 |
5580 PathSegLinetoVerticalAbs.internal_() : super.internal_(); | 5665 PathSegLinetoVerticalAbs.internal_() : super.internal_(); |
5581 | 5666 |
(...skipping 15 matching lines...) Expand all Loading... |
5597 | 5682 |
5598 | 5683 |
5599 @DocsEditable() | 5684 @DocsEditable() |
5600 @DomName('SVGPathSegLinetoVerticalRel') | 5685 @DomName('SVGPathSegLinetoVerticalRel') |
5601 @Unstable() | 5686 @Unstable() |
5602 class PathSegLinetoVerticalRel extends PathSeg { | 5687 class PathSegLinetoVerticalRel extends PathSeg { |
5603 // To suppress missing implicit constructor warnings. | 5688 // To suppress missing implicit constructor warnings. |
5604 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 5689 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
5605 | 5690 |
5606 | 5691 |
| 5692 @Deprecated("Internal Use Only") |
5607 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { | 5693 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { |
5608 return new PathSegLinetoVerticalRel._internalWrap(); | 5694 return new PathSegLinetoVerticalRel._internalWrap(); |
5609 } | 5695 } |
5610 | 5696 |
5611 factory PathSegLinetoVerticalRel._internalWrap() { | 5697 factory PathSegLinetoVerticalRel._internalWrap() { |
5612 return new PathSegLinetoVerticalRel.internal_(); | 5698 return new PathSegLinetoVerticalRel.internal_(); |
5613 } | 5699 } |
5614 | 5700 |
5615 PathSegLinetoVerticalRel.internal_() : super.internal_(); | 5701 PathSegLinetoVerticalRel.internal_() : super.internal_(); |
5616 | 5702 |
(...skipping 14 matching lines...) Expand all Loading... |
5631 // WARNING: Do not edit - generated code. | 5717 // WARNING: Do not edit - generated code. |
5632 | 5718 |
5633 | 5719 |
5634 @DocsEditable() | 5720 @DocsEditable() |
5635 @DomName('SVGPathSegList') | 5721 @DomName('SVGPathSegList') |
5636 @Unstable() | 5722 @Unstable() |
5637 class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi
stMixin<PathSeg> implements List<PathSeg> { | 5723 class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi
stMixin<PathSeg> implements List<PathSeg> { |
5638 // To suppress missing implicit constructor warnings. | 5724 // To suppress missing implicit constructor warnings. |
5639 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 5725 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
5640 | 5726 |
| 5727 @Deprecated("Internal Use Only") |
5641 static PathSegList internalCreatePathSegList() { | 5728 static PathSegList internalCreatePathSegList() { |
5642 return new PathSegList._internalWrap(); | 5729 return new PathSegList._internalWrap(); |
5643 } | 5730 } |
5644 | 5731 |
5645 factory PathSegList._internalWrap() { | 5732 factory PathSegList._internalWrap() { |
5646 return new PathSegList.internal_(); | 5733 return new PathSegList.internal_(); |
5647 } | 5734 } |
5648 | 5735 |
5649 PathSegList.internal_() { } | 5736 PathSegList.internal_() { } |
5650 | 5737 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5746 | 5833 |
5747 | 5834 |
5748 @DocsEditable() | 5835 @DocsEditable() |
5749 @DomName('SVGPathSegMovetoAbs') | 5836 @DomName('SVGPathSegMovetoAbs') |
5750 @Unstable() | 5837 @Unstable() |
5751 class PathSegMovetoAbs extends PathSeg { | 5838 class PathSegMovetoAbs extends PathSeg { |
5752 // To suppress missing implicit constructor warnings. | 5839 // To suppress missing implicit constructor warnings. |
5753 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 5840 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
5754 | 5841 |
5755 | 5842 |
| 5843 @Deprecated("Internal Use Only") |
5756 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { | 5844 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { |
5757 return new PathSegMovetoAbs._internalWrap(); | 5845 return new PathSegMovetoAbs._internalWrap(); |
5758 } | 5846 } |
5759 | 5847 |
5760 factory PathSegMovetoAbs._internalWrap() { | 5848 factory PathSegMovetoAbs._internalWrap() { |
5761 return new PathSegMovetoAbs.internal_(); | 5849 return new PathSegMovetoAbs.internal_(); |
5762 } | 5850 } |
5763 | 5851 |
5764 PathSegMovetoAbs.internal_() : super.internal_(); | 5852 PathSegMovetoAbs.internal_() : super.internal_(); |
5765 | 5853 |
(...skipping 23 matching lines...) Expand all Loading... |
5789 | 5877 |
5790 | 5878 |
5791 @DocsEditable() | 5879 @DocsEditable() |
5792 @DomName('SVGPathSegMovetoRel') | 5880 @DomName('SVGPathSegMovetoRel') |
5793 @Unstable() | 5881 @Unstable() |
5794 class PathSegMovetoRel extends PathSeg { | 5882 class PathSegMovetoRel extends PathSeg { |
5795 // To suppress missing implicit constructor warnings. | 5883 // To suppress missing implicit constructor warnings. |
5796 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 5884 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
5797 | 5885 |
5798 | 5886 |
| 5887 @Deprecated("Internal Use Only") |
5799 static PathSegMovetoRel internalCreatePathSegMovetoRel() { | 5888 static PathSegMovetoRel internalCreatePathSegMovetoRel() { |
5800 return new PathSegMovetoRel._internalWrap(); | 5889 return new PathSegMovetoRel._internalWrap(); |
5801 } | 5890 } |
5802 | 5891 |
5803 factory PathSegMovetoRel._internalWrap() { | 5892 factory PathSegMovetoRel._internalWrap() { |
5804 return new PathSegMovetoRel.internal_(); | 5893 return new PathSegMovetoRel.internal_(); |
5805 } | 5894 } |
5806 | 5895 |
5807 PathSegMovetoRel.internal_() : super.internal_(); | 5896 PathSegMovetoRel.internal_() : super.internal_(); |
5808 | 5897 |
(...skipping 27 matching lines...) Expand all Loading... |
5836 @Unstable() | 5925 @Unstable() |
5837 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { | 5926 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { |
5838 // To suppress missing implicit constructor warnings. | 5927 // To suppress missing implicit constructor warnings. |
5839 factory PatternElement._() { throw new UnsupportedError("Not supported"); } | 5928 factory PatternElement._() { throw new UnsupportedError("Not supported"); } |
5840 | 5929 |
5841 @DomName('SVGPatternElement.SVGPatternElement') | 5930 @DomName('SVGPatternElement.SVGPatternElement') |
5842 @DocsEditable() | 5931 @DocsEditable() |
5843 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); | 5932 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); |
5844 | 5933 |
5845 | 5934 |
| 5935 @Deprecated("Internal Use Only") |
5846 static PatternElement internalCreatePatternElement() { | 5936 static PatternElement internalCreatePatternElement() { |
5847 return new PatternElement._internalWrap(); | 5937 return new PatternElement._internalWrap(); |
5848 } | 5938 } |
5849 | 5939 |
5850 factory PatternElement._internalWrap() { | 5940 factory PatternElement._internalWrap() { |
5851 return new PatternElement.internal_(); | 5941 return new PatternElement.internal_(); |
5852 } | 5942 } |
5853 | 5943 |
5854 PatternElement.internal_() : super.internal_(); | 5944 PatternElement.internal_() : super.internal_(); |
5855 | 5945 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5924 // WARNING: Do not edit - generated code. | 6014 // WARNING: Do not edit - generated code. |
5925 | 6015 |
5926 | 6016 |
5927 @DocsEditable() | 6017 @DocsEditable() |
5928 @DomName('SVGPoint') | 6018 @DomName('SVGPoint') |
5929 @Unstable() | 6019 @Unstable() |
5930 class Point extends DartHtmlDomObject { | 6020 class Point extends DartHtmlDomObject { |
5931 // To suppress missing implicit constructor warnings. | 6021 // To suppress missing implicit constructor warnings. |
5932 factory Point._() { throw new UnsupportedError("Not supported"); } | 6022 factory Point._() { throw new UnsupportedError("Not supported"); } |
5933 | 6023 |
| 6024 @Deprecated("Internal Use Only") |
5934 static Point internalCreatePoint() { | 6025 static Point internalCreatePoint() { |
5935 return new Point._internalWrap(); | 6026 return new Point._internalWrap(); |
5936 } | 6027 } |
5937 | 6028 |
5938 factory Point._internalWrap() { | 6029 factory Point._internalWrap() { |
5939 return new Point.internal_(); | 6030 return new Point.internal_(); |
5940 } | 6031 } |
5941 | 6032 |
5942 Point.internal_() { } | 6033 Point.internal_() { } |
5943 | 6034 |
(...skipping 28 matching lines...) Expand all Loading... |
5972 // WARNING: Do not edit - generated code. | 6063 // WARNING: Do not edit - generated code. |
5973 | 6064 |
5974 | 6065 |
5975 @DocsEditable() | 6066 @DocsEditable() |
5976 @DomName('SVGPointList') | 6067 @DomName('SVGPointList') |
5977 @Unstable() | 6068 @Unstable() |
5978 class PointList extends DartHtmlDomObject { | 6069 class PointList extends DartHtmlDomObject { |
5979 // To suppress missing implicit constructor warnings. | 6070 // To suppress missing implicit constructor warnings. |
5980 factory PointList._() { throw new UnsupportedError("Not supported"); } | 6071 factory PointList._() { throw new UnsupportedError("Not supported"); } |
5981 | 6072 |
| 6073 @Deprecated("Internal Use Only") |
5982 static PointList internalCreatePointList() { | 6074 static PointList internalCreatePointList() { |
5983 return new PointList._internalWrap(); | 6075 return new PointList._internalWrap(); |
5984 } | 6076 } |
5985 | 6077 |
5986 factory PointList._internalWrap() { | 6078 factory PointList._internalWrap() { |
5987 return new PointList.internal_(); | 6079 return new PointList.internal_(); |
5988 } | 6080 } |
5989 | 6081 |
5990 PointList.internal_() { } | 6082 PointList.internal_() { } |
5991 | 6083 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6047 @Unstable() | 6139 @Unstable() |
6048 class PolygonElement extends GeometryElement { | 6140 class PolygonElement extends GeometryElement { |
6049 // To suppress missing implicit constructor warnings. | 6141 // To suppress missing implicit constructor warnings. |
6050 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } | 6142 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } |
6051 | 6143 |
6052 @DomName('SVGPolygonElement.SVGPolygonElement') | 6144 @DomName('SVGPolygonElement.SVGPolygonElement') |
6053 @DocsEditable() | 6145 @DocsEditable() |
6054 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); | 6146 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); |
6055 | 6147 |
6056 | 6148 |
| 6149 @Deprecated("Internal Use Only") |
6057 static PolygonElement internalCreatePolygonElement() { | 6150 static PolygonElement internalCreatePolygonElement() { |
6058 return new PolygonElement._internalWrap(); | 6151 return new PolygonElement._internalWrap(); |
6059 } | 6152 } |
6060 | 6153 |
6061 factory PolygonElement._internalWrap() { | 6154 factory PolygonElement._internalWrap() { |
6062 return new PolygonElement.internal_(); | 6155 return new PolygonElement.internal_(); |
6063 } | 6156 } |
6064 | 6157 |
6065 PolygonElement.internal_() : super.internal_(); | 6158 PolygonElement.internal_() : super.internal_(); |
6066 | 6159 |
(...skipping 25 matching lines...) Expand all Loading... |
6092 @Unstable() | 6185 @Unstable() |
6093 class PolylineElement extends GeometryElement { | 6186 class PolylineElement extends GeometryElement { |
6094 // To suppress missing implicit constructor warnings. | 6187 // To suppress missing implicit constructor warnings. |
6095 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } | 6188 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } |
6096 | 6189 |
6097 @DomName('SVGPolylineElement.SVGPolylineElement') | 6190 @DomName('SVGPolylineElement.SVGPolylineElement') |
6098 @DocsEditable() | 6191 @DocsEditable() |
6099 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); | 6192 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); |
6100 | 6193 |
6101 | 6194 |
| 6195 @Deprecated("Internal Use Only") |
6102 static PolylineElement internalCreatePolylineElement() { | 6196 static PolylineElement internalCreatePolylineElement() { |
6103 return new PolylineElement._internalWrap(); | 6197 return new PolylineElement._internalWrap(); |
6104 } | 6198 } |
6105 | 6199 |
6106 factory PolylineElement._internalWrap() { | 6200 factory PolylineElement._internalWrap() { |
6107 return new PolylineElement.internal_(); | 6201 return new PolylineElement.internal_(); |
6108 } | 6202 } |
6109 | 6203 |
6110 PolylineElement.internal_() : super.internal_(); | 6204 PolylineElement.internal_() : super.internal_(); |
6111 | 6205 |
(...skipping 20 matching lines...) Expand all Loading... |
6132 // WARNING: Do not edit - generated code. | 6226 // WARNING: Do not edit - generated code. |
6133 | 6227 |
6134 | 6228 |
6135 @DocsEditable() | 6229 @DocsEditable() |
6136 @DomName('SVGPreserveAspectRatio') | 6230 @DomName('SVGPreserveAspectRatio') |
6137 @Unstable() | 6231 @Unstable() |
6138 class PreserveAspectRatio extends DartHtmlDomObject { | 6232 class PreserveAspectRatio extends DartHtmlDomObject { |
6139 // To suppress missing implicit constructor warnings. | 6233 // To suppress missing implicit constructor warnings. |
6140 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 6234 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
6141 | 6235 |
| 6236 @Deprecated("Internal Use Only") |
6142 static PreserveAspectRatio internalCreatePreserveAspectRatio() { | 6237 static PreserveAspectRatio internalCreatePreserveAspectRatio() { |
6143 return new PreserveAspectRatio._internalWrap(); | 6238 return new PreserveAspectRatio._internalWrap(); |
6144 } | 6239 } |
6145 | 6240 |
6146 factory PreserveAspectRatio._internalWrap() { | 6241 factory PreserveAspectRatio._internalWrap() { |
6147 return new PreserveAspectRatio.internal_(); | 6242 return new PreserveAspectRatio.internal_(); |
6148 } | 6243 } |
6149 | 6244 |
6150 PreserveAspectRatio.internal_() { } | 6245 PreserveAspectRatio.internal_() { } |
6151 | 6246 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6237 @Unstable() | 6332 @Unstable() |
6238 class RadialGradientElement extends _GradientElement { | 6333 class RadialGradientElement extends _GradientElement { |
6239 // To suppress missing implicit constructor warnings. | 6334 // To suppress missing implicit constructor warnings. |
6240 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } | 6335 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } |
6241 | 6336 |
6242 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') | 6337 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
6243 @DocsEditable() | 6338 @DocsEditable() |
6244 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); | 6339 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); |
6245 | 6340 |
6246 | 6341 |
| 6342 @Deprecated("Internal Use Only") |
6247 static RadialGradientElement internalCreateRadialGradientElement() { | 6343 static RadialGradientElement internalCreateRadialGradientElement() { |
6248 return new RadialGradientElement._internalWrap(); | 6344 return new RadialGradientElement._internalWrap(); |
6249 } | 6345 } |
6250 | 6346 |
6251 factory RadialGradientElement._internalWrap() { | 6347 factory RadialGradientElement._internalWrap() { |
6252 return new RadialGradientElement.internal_(); | 6348 return new RadialGradientElement.internal_(); |
6253 } | 6349 } |
6254 | 6350 |
6255 RadialGradientElement.internal_() : super.internal_(); | 6351 RadialGradientElement.internal_() : super.internal_(); |
6256 | 6352 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6293 // WARNING: Do not edit - generated code. | 6389 // WARNING: Do not edit - generated code. |
6294 | 6390 |
6295 | 6391 |
6296 @DocsEditable() | 6392 @DocsEditable() |
6297 @DomName('SVGRect') | 6393 @DomName('SVGRect') |
6298 @Unstable() | 6394 @Unstable() |
6299 class Rect extends DartHtmlDomObject { | 6395 class Rect extends DartHtmlDomObject { |
6300 // To suppress missing implicit constructor warnings. | 6396 // To suppress missing implicit constructor warnings. |
6301 factory Rect._() { throw new UnsupportedError("Not supported"); } | 6397 factory Rect._() { throw new UnsupportedError("Not supported"); } |
6302 | 6398 |
| 6399 @Deprecated("Internal Use Only") |
6303 static Rect internalCreateRect() { | 6400 static Rect internalCreateRect() { |
6304 return new Rect._internalWrap(); | 6401 return new Rect._internalWrap(); |
6305 } | 6402 } |
6306 | 6403 |
6307 factory Rect._internalWrap() { | 6404 factory Rect._internalWrap() { |
6308 return new Rect.internal_(); | 6405 return new Rect.internal_(); |
6309 } | 6406 } |
6310 | 6407 |
6311 Rect.internal_() { } | 6408 Rect.internal_() { } |
6312 | 6409 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6358 @Unstable() | 6455 @Unstable() |
6359 class RectElement extends GeometryElement { | 6456 class RectElement extends GeometryElement { |
6360 // To suppress missing implicit constructor warnings. | 6457 // To suppress missing implicit constructor warnings. |
6361 factory RectElement._() { throw new UnsupportedError("Not supported"); } | 6458 factory RectElement._() { throw new UnsupportedError("Not supported"); } |
6362 | 6459 |
6363 @DomName('SVGRectElement.SVGRectElement') | 6460 @DomName('SVGRectElement.SVGRectElement') |
6364 @DocsEditable() | 6461 @DocsEditable() |
6365 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); | 6462 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); |
6366 | 6463 |
6367 | 6464 |
| 6465 @Deprecated("Internal Use Only") |
6368 static RectElement internalCreateRectElement() { | 6466 static RectElement internalCreateRectElement() { |
6369 return new RectElement._internalWrap(); | 6467 return new RectElement._internalWrap(); |
6370 } | 6468 } |
6371 | 6469 |
6372 factory RectElement._internalWrap() { | 6470 factory RectElement._internalWrap() { |
6373 return new RectElement.internal_(); | 6471 return new RectElement.internal_(); |
6374 } | 6472 } |
6375 | 6473 |
6376 RectElement.internal_() : super.internal_(); | 6474 RectElement.internal_() : super.internal_(); |
6377 | 6475 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6414 // WARNING: Do not edit - generated code. | 6512 // WARNING: Do not edit - generated code. |
6415 | 6513 |
6416 | 6514 |
6417 @DocsEditable() | 6515 @DocsEditable() |
6418 @DomName('SVGRenderingIntent') | 6516 @DomName('SVGRenderingIntent') |
6419 @Unstable() | 6517 @Unstable() |
6420 class RenderingIntent extends DartHtmlDomObject { | 6518 class RenderingIntent extends DartHtmlDomObject { |
6421 // To suppress missing implicit constructor warnings. | 6519 // To suppress missing implicit constructor warnings. |
6422 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 6520 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
6423 | 6521 |
| 6522 @Deprecated("Internal Use Only") |
6424 static RenderingIntent internalCreateRenderingIntent() { | 6523 static RenderingIntent internalCreateRenderingIntent() { |
6425 return new RenderingIntent._internalWrap(); | 6524 return new RenderingIntent._internalWrap(); |
6426 } | 6525 } |
6427 | 6526 |
6428 factory RenderingIntent._internalWrap() { | 6527 factory RenderingIntent._internalWrap() { |
6429 return new RenderingIntent.internal_(); | 6528 return new RenderingIntent.internal_(); |
6430 } | 6529 } |
6431 | 6530 |
6432 RenderingIntent.internal_() { } | 6531 RenderingIntent.internal_() { } |
6433 | 6532 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6471 @Unstable() | 6570 @Unstable() |
6472 class ScriptElement extends SvgElement implements UriReference { | 6571 class ScriptElement extends SvgElement implements UriReference { |
6473 // To suppress missing implicit constructor warnings. | 6572 // To suppress missing implicit constructor warnings. |
6474 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } | 6573 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } |
6475 | 6574 |
6476 @DomName('SVGScriptElement.SVGScriptElement') | 6575 @DomName('SVGScriptElement.SVGScriptElement') |
6477 @DocsEditable() | 6576 @DocsEditable() |
6478 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); | 6577 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); |
6479 | 6578 |
6480 | 6579 |
| 6580 @Deprecated("Internal Use Only") |
6481 static ScriptElement internalCreateScriptElement() { | 6581 static ScriptElement internalCreateScriptElement() { |
6482 return new ScriptElement._internalWrap(); | 6582 return new ScriptElement._internalWrap(); |
6483 } | 6583 } |
6484 | 6584 |
6485 factory ScriptElement._internalWrap() { | 6585 factory ScriptElement._internalWrap() { |
6486 return new ScriptElement.internal_(); | 6586 return new ScriptElement.internal_(); |
6487 } | 6587 } |
6488 | 6588 |
6489 ScriptElement.internal_() : super.internal_(); | 6589 ScriptElement.internal_() : super.internal_(); |
6490 | 6590 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6523 @Unstable() | 6623 @Unstable() |
6524 class SetElement extends AnimationElement { | 6624 class SetElement extends AnimationElement { |
6525 // To suppress missing implicit constructor warnings. | 6625 // To suppress missing implicit constructor warnings. |
6526 factory SetElement._() { throw new UnsupportedError("Not supported"); } | 6626 factory SetElement._() { throw new UnsupportedError("Not supported"); } |
6527 | 6627 |
6528 @DomName('SVGSetElement.SVGSetElement') | 6628 @DomName('SVGSetElement.SVGSetElement') |
6529 @DocsEditable() | 6629 @DocsEditable() |
6530 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; | 6630 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; |
6531 | 6631 |
6532 | 6632 |
| 6633 @Deprecated("Internal Use Only") |
6533 static SetElement internalCreateSetElement() { | 6634 static SetElement internalCreateSetElement() { |
6534 return new SetElement._internalWrap(); | 6635 return new SetElement._internalWrap(); |
6535 } | 6636 } |
6536 | 6637 |
6537 factory SetElement._internalWrap() { | 6638 factory SetElement._internalWrap() { |
6538 return new SetElement.internal_(); | 6639 return new SetElement.internal_(); |
6539 } | 6640 } |
6540 | 6641 |
6541 SetElement.internal_() : super.internal_(); | 6642 SetElement.internal_() : super.internal_(); |
6542 | 6643 |
(...skipping 20 matching lines...) Expand all Loading... |
6563 @Unstable() | 6664 @Unstable() |
6564 class StopElement extends SvgElement { | 6665 class StopElement extends SvgElement { |
6565 // To suppress missing implicit constructor warnings. | 6666 // To suppress missing implicit constructor warnings. |
6566 factory StopElement._() { throw new UnsupportedError("Not supported"); } | 6667 factory StopElement._() { throw new UnsupportedError("Not supported"); } |
6567 | 6668 |
6568 @DomName('SVGStopElement.SVGStopElement') | 6669 @DomName('SVGStopElement.SVGStopElement') |
6569 @DocsEditable() | 6670 @DocsEditable() |
6570 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); | 6671 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); |
6571 | 6672 |
6572 | 6673 |
| 6674 @Deprecated("Internal Use Only") |
6573 static StopElement internalCreateStopElement() { | 6675 static StopElement internalCreateStopElement() { |
6574 return new StopElement._internalWrap(); | 6676 return new StopElement._internalWrap(); |
6575 } | 6677 } |
6576 | 6678 |
6577 factory StopElement._internalWrap() { | 6679 factory StopElement._internalWrap() { |
6578 return new StopElement.internal_(); | 6680 return new StopElement.internal_(); |
6579 } | 6681 } |
6580 | 6682 |
6581 StopElement.internal_() : super.internal_(); | 6683 StopElement.internal_() : super.internal_(); |
6582 | 6684 |
(...skipping 16 matching lines...) Expand all Loading... |
6599 // WARNING: Do not edit - generated code. | 6701 // WARNING: Do not edit - generated code. |
6600 | 6702 |
6601 | 6703 |
6602 @DocsEditable() | 6704 @DocsEditable() |
6603 @DomName('SVGStringList') | 6705 @DomName('SVGStringList') |
6604 @Unstable() | 6706 @Unstable() |
6605 class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList
Mixin<String> implements List<String> { | 6707 class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList
Mixin<String> implements List<String> { |
6606 // To suppress missing implicit constructor warnings. | 6708 // To suppress missing implicit constructor warnings. |
6607 factory StringList._() { throw new UnsupportedError("Not supported"); } | 6709 factory StringList._() { throw new UnsupportedError("Not supported"); } |
6608 | 6710 |
| 6711 @Deprecated("Internal Use Only") |
6609 static StringList internalCreateStringList() { | 6712 static StringList internalCreateStringList() { |
6610 return new StringList._internalWrap(); | 6713 return new StringList._internalWrap(); |
6611 } | 6714 } |
6612 | 6715 |
6613 factory StringList._internalWrap() { | 6716 factory StringList._internalWrap() { |
6614 return new StringList.internal_(); | 6717 return new StringList.internal_(); |
6615 } | 6718 } |
6616 | 6719 |
6617 StringList.internal_() { } | 6720 StringList.internal_() { } |
6618 | 6721 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6719 @Experimental() // nonstandard | 6822 @Experimental() // nonstandard |
6720 class StyleElement extends SvgElement { | 6823 class StyleElement extends SvgElement { |
6721 // To suppress missing implicit constructor warnings. | 6824 // To suppress missing implicit constructor warnings. |
6722 factory StyleElement._() { throw new UnsupportedError("Not supported"); } | 6825 factory StyleElement._() { throw new UnsupportedError("Not supported"); } |
6723 | 6826 |
6724 @DomName('SVGStyleElement.SVGStyleElement') | 6827 @DomName('SVGStyleElement.SVGStyleElement') |
6725 @DocsEditable() | 6828 @DocsEditable() |
6726 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); | 6829 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); |
6727 | 6830 |
6728 | 6831 |
| 6832 @Deprecated("Internal Use Only") |
6729 static StyleElement internalCreateStyleElement() { | 6833 static StyleElement internalCreateStyleElement() { |
6730 return new StyleElement._internalWrap(); | 6834 return new StyleElement._internalWrap(); |
6731 } | 6835 } |
6732 | 6836 |
6733 factory StyleElement._internalWrap() { | 6837 factory StyleElement._internalWrap() { |
6734 return new StyleElement.internal_(); | 6838 return new StyleElement.internal_(); |
6735 } | 6839 } |
6736 | 6840 |
6737 StyleElement.internal_() : super.internal_(); | 6841 StyleElement.internal_() : super.internal_(); |
6738 | 6842 |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7198 @DocsEditable() | 7302 @DocsEditable() |
7199 @Experimental() // untriaged | 7303 @Experimental() // untriaged |
7200 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); | 7304 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); |
7201 | 7305 |
7202 @DomName('SVGElement.waitingEvent') | 7306 @DomName('SVGElement.waitingEvent') |
7203 @DocsEditable() | 7307 @DocsEditable() |
7204 @Experimental() // untriaged | 7308 @Experimental() // untriaged |
7205 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); | 7309 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); |
7206 | 7310 |
7207 | 7311 |
| 7312 @Deprecated("Internal Use Only") |
7208 static SvgElement internalCreateSvgElement() { | 7313 static SvgElement internalCreateSvgElement() { |
7209 return new SvgElement._internalWrap(); | 7314 return new SvgElement._internalWrap(); |
7210 } | 7315 } |
7211 | 7316 |
7212 factory SvgElement._internalWrap() { | 7317 factory SvgElement._internalWrap() { |
7213 return new SvgElement.internal_(); | 7318 return new SvgElement.internal_(); |
7214 } | 7319 } |
7215 | 7320 |
7216 SvgElement.internal_() : super.internal_(); | 7321 SvgElement.internal_() : super.internal_(); |
7217 | 7322 |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7551 final el = new SvgElement.tag("svg"); | 7656 final el = new SvgElement.tag("svg"); |
7552 // The SVG spec requires the version attribute to match the spec version | 7657 // The SVG spec requires the version attribute to match the spec version |
7553 el.attributes['version'] = "1.1"; | 7658 el.attributes['version'] = "1.1"; |
7554 return el; | 7659 return el; |
7555 } | 7660 } |
7556 | 7661 |
7557 // To suppress missing implicit constructor warnings. | 7662 // To suppress missing implicit constructor warnings. |
7558 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } | 7663 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } |
7559 | 7664 |
7560 | 7665 |
| 7666 @Deprecated("Internal Use Only") |
7561 static SvgSvgElement internalCreateSvgSvgElement() { | 7667 static SvgSvgElement internalCreateSvgSvgElement() { |
7562 return new SvgSvgElement._internalWrap(); | 7668 return new SvgSvgElement._internalWrap(); |
7563 } | 7669 } |
7564 | 7670 |
7565 factory SvgSvgElement._internalWrap() { | 7671 factory SvgSvgElement._internalWrap() { |
7566 return new SvgSvgElement.internal_(); | 7672 return new SvgSvgElement.internal_(); |
7567 } | 7673 } |
7568 | 7674 |
7569 SvgSvgElement.internal_() : super.internal_(); | 7675 SvgSvgElement.internal_() : super.internal_(); |
7570 | 7676 |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7752 @Unstable() | 7858 @Unstable() |
7753 class SwitchElement extends GraphicsElement { | 7859 class SwitchElement extends GraphicsElement { |
7754 // To suppress missing implicit constructor warnings. | 7860 // To suppress missing implicit constructor warnings. |
7755 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } | 7861 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } |
7756 | 7862 |
7757 @DomName('SVGSwitchElement.SVGSwitchElement') | 7863 @DomName('SVGSwitchElement.SVGSwitchElement') |
7758 @DocsEditable() | 7864 @DocsEditable() |
7759 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); | 7865 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); |
7760 | 7866 |
7761 | 7867 |
| 7868 @Deprecated("Internal Use Only") |
7762 static SwitchElement internalCreateSwitchElement() { | 7869 static SwitchElement internalCreateSwitchElement() { |
7763 return new SwitchElement._internalWrap(); | 7870 return new SwitchElement._internalWrap(); |
7764 } | 7871 } |
7765 | 7872 |
7766 factory SwitchElement._internalWrap() { | 7873 factory SwitchElement._internalWrap() { |
7767 return new SwitchElement.internal_(); | 7874 return new SwitchElement.internal_(); |
7768 } | 7875 } |
7769 | 7876 |
7770 SwitchElement.internal_() : super.internal_(); | 7877 SwitchElement.internal_() : super.internal_(); |
7771 | 7878 |
(...skipping 17 matching lines...) Expand all Loading... |
7789 @Unstable() | 7896 @Unstable() |
7790 class SymbolElement extends SvgElement implements FitToViewBox { | 7897 class SymbolElement extends SvgElement implements FitToViewBox { |
7791 // To suppress missing implicit constructor warnings. | 7898 // To suppress missing implicit constructor warnings. |
7792 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } | 7899 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } |
7793 | 7900 |
7794 @DomName('SVGSymbolElement.SVGSymbolElement') | 7901 @DomName('SVGSymbolElement.SVGSymbolElement') |
7795 @DocsEditable() | 7902 @DocsEditable() |
7796 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); | 7903 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); |
7797 | 7904 |
7798 | 7905 |
| 7906 @Deprecated("Internal Use Only") |
7799 static SymbolElement internalCreateSymbolElement() { | 7907 static SymbolElement internalCreateSymbolElement() { |
7800 return new SymbolElement._internalWrap(); | 7908 return new SymbolElement._internalWrap(); |
7801 } | 7909 } |
7802 | 7910 |
7803 factory SymbolElement._internalWrap() { | 7911 factory SymbolElement._internalWrap() { |
7804 return new SymbolElement.internal_(); | 7912 return new SymbolElement.internal_(); |
7805 } | 7913 } |
7806 | 7914 |
7807 SymbolElement.internal_() : super.internal_(); | 7915 SymbolElement.internal_() : super.internal_(); |
7808 | 7916 |
(...skipping 25 matching lines...) Expand all Loading... |
7834 @Unstable() | 7942 @Unstable() |
7835 class TSpanElement extends TextPositioningElement { | 7943 class TSpanElement extends TextPositioningElement { |
7836 // To suppress missing implicit constructor warnings. | 7944 // To suppress missing implicit constructor warnings. |
7837 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } | 7945 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } |
7838 | 7946 |
7839 @DomName('SVGTSpanElement.SVGTSpanElement') | 7947 @DomName('SVGTSpanElement.SVGTSpanElement') |
7840 @DocsEditable() | 7948 @DocsEditable() |
7841 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); | 7949 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); |
7842 | 7950 |
7843 | 7951 |
| 7952 @Deprecated("Internal Use Only") |
7844 static TSpanElement internalCreateTSpanElement() { | 7953 static TSpanElement internalCreateTSpanElement() { |
7845 return new TSpanElement._internalWrap(); | 7954 return new TSpanElement._internalWrap(); |
7846 } | 7955 } |
7847 | 7956 |
7848 factory TSpanElement._internalWrap() { | 7957 factory TSpanElement._internalWrap() { |
7849 return new TSpanElement.internal_(); | 7958 return new TSpanElement.internal_(); |
7850 } | 7959 } |
7851 | 7960 |
7852 TSpanElement.internal_() : super.internal_(); | 7961 TSpanElement.internal_() : super.internal_(); |
7853 | 7962 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7898 | 8007 |
7899 | 8008 |
7900 @DocsEditable() | 8009 @DocsEditable() |
7901 @DomName('SVGTextContentElement') | 8010 @DomName('SVGTextContentElement') |
7902 @Unstable() | 8011 @Unstable() |
7903 class TextContentElement extends GraphicsElement { | 8012 class TextContentElement extends GraphicsElement { |
7904 // To suppress missing implicit constructor warnings. | 8013 // To suppress missing implicit constructor warnings. |
7905 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} | 8014 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} |
7906 | 8015 |
7907 | 8016 |
| 8017 @Deprecated("Internal Use Only") |
7908 static TextContentElement internalCreateTextContentElement() { | 8018 static TextContentElement internalCreateTextContentElement() { |
7909 return new TextContentElement._internalWrap(); | 8019 return new TextContentElement._internalWrap(); |
7910 } | 8020 } |
7911 | 8021 |
7912 factory TextContentElement._internalWrap() { | 8022 factory TextContentElement._internalWrap() { |
7913 return new TextContentElement.internal_(); | 8023 return new TextContentElement.internal_(); |
7914 } | 8024 } |
7915 | 8025 |
7916 TextContentElement.internal_() : super.internal_(); | 8026 TextContentElement.internal_() : super.internal_(); |
7917 | 8027 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7991 @Unstable() | 8101 @Unstable() |
7992 class TextElement extends TextPositioningElement { | 8102 class TextElement extends TextPositioningElement { |
7993 // To suppress missing implicit constructor warnings. | 8103 // To suppress missing implicit constructor warnings. |
7994 factory TextElement._() { throw new UnsupportedError("Not supported"); } | 8104 factory TextElement._() { throw new UnsupportedError("Not supported"); } |
7995 | 8105 |
7996 @DomName('SVGTextElement.SVGTextElement') | 8106 @DomName('SVGTextElement.SVGTextElement') |
7997 @DocsEditable() | 8107 @DocsEditable() |
7998 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); | 8108 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); |
7999 | 8109 |
8000 | 8110 |
| 8111 @Deprecated("Internal Use Only") |
8001 static TextElement internalCreateTextElement() { | 8112 static TextElement internalCreateTextElement() { |
8002 return new TextElement._internalWrap(); | 8113 return new TextElement._internalWrap(); |
8003 } | 8114 } |
8004 | 8115 |
8005 factory TextElement._internalWrap() { | 8116 factory TextElement._internalWrap() { |
8006 return new TextElement.internal_(); | 8117 return new TextElement.internal_(); |
8007 } | 8118 } |
8008 | 8119 |
8009 TextElement.internal_() : super.internal_(); | 8120 TextElement.internal_() : super.internal_(); |
8010 | 8121 |
(...skipping 13 matching lines...) Expand all Loading... |
8024 | 8135 |
8025 | 8136 |
8026 @DocsEditable() | 8137 @DocsEditable() |
8027 @DomName('SVGTextPathElement') | 8138 @DomName('SVGTextPathElement') |
8028 @Unstable() | 8139 @Unstable() |
8029 class TextPathElement extends TextContentElement implements UriReference { | 8140 class TextPathElement extends TextContentElement implements UriReference { |
8030 // To suppress missing implicit constructor warnings. | 8141 // To suppress missing implicit constructor warnings. |
8031 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } | 8142 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } |
8032 | 8143 |
8033 | 8144 |
| 8145 @Deprecated("Internal Use Only") |
8034 static TextPathElement internalCreateTextPathElement() { | 8146 static TextPathElement internalCreateTextPathElement() { |
8035 return new TextPathElement._internalWrap(); | 8147 return new TextPathElement._internalWrap(); |
8036 } | 8148 } |
8037 | 8149 |
8038 factory TextPathElement._internalWrap() { | 8150 factory TextPathElement._internalWrap() { |
8039 return new TextPathElement.internal_(); | 8151 return new TextPathElement.internal_(); |
8040 } | 8152 } |
8041 | 8153 |
8042 TextPathElement.internal_() : super.internal_(); | 8154 TextPathElement.internal_() : super.internal_(); |
8043 | 8155 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8097 | 8209 |
8098 | 8210 |
8099 @DocsEditable() | 8211 @DocsEditable() |
8100 @DomName('SVGTextPositioningElement') | 8212 @DomName('SVGTextPositioningElement') |
8101 @Unstable() | 8213 @Unstable() |
8102 class TextPositioningElement extends TextContentElement { | 8214 class TextPositioningElement extends TextContentElement { |
8103 // To suppress missing implicit constructor warnings. | 8215 // To suppress missing implicit constructor warnings. |
8104 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } | 8216 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } |
8105 | 8217 |
8106 | 8218 |
| 8219 @Deprecated("Internal Use Only") |
8107 static TextPositioningElement internalCreateTextPositioningElement() { | 8220 static TextPositioningElement internalCreateTextPositioningElement() { |
8108 return new TextPositioningElement._internalWrap(); | 8221 return new TextPositioningElement._internalWrap(); |
8109 } | 8222 } |
8110 | 8223 |
8111 factory TextPositioningElement._internalWrap() { | 8224 factory TextPositioningElement._internalWrap() { |
8112 return new TextPositioningElement.internal_(); | 8225 return new TextPositioningElement.internal_(); |
8113 } | 8226 } |
8114 | 8227 |
8115 TextPositioningElement.internal_() : super.internal_(); | 8228 TextPositioningElement.internal_() : super.internal_(); |
8116 | 8229 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8154 @Unstable() | 8267 @Unstable() |
8155 class TitleElement extends SvgElement { | 8268 class TitleElement extends SvgElement { |
8156 // To suppress missing implicit constructor warnings. | 8269 // To suppress missing implicit constructor warnings. |
8157 factory TitleElement._() { throw new UnsupportedError("Not supported"); } | 8270 factory TitleElement._() { throw new UnsupportedError("Not supported"); } |
8158 | 8271 |
8159 @DomName('SVGTitleElement.SVGTitleElement') | 8272 @DomName('SVGTitleElement.SVGTitleElement') |
8160 @DocsEditable() | 8273 @DocsEditable() |
8161 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); | 8274 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); |
8162 | 8275 |
8163 | 8276 |
| 8277 @Deprecated("Internal Use Only") |
8164 static TitleElement internalCreateTitleElement() { | 8278 static TitleElement internalCreateTitleElement() { |
8165 return new TitleElement._internalWrap(); | 8279 return new TitleElement._internalWrap(); |
8166 } | 8280 } |
8167 | 8281 |
8168 factory TitleElement._internalWrap() { | 8282 factory TitleElement._internalWrap() { |
8169 return new TitleElement.internal_(); | 8283 return new TitleElement.internal_(); |
8170 } | 8284 } |
8171 | 8285 |
8172 TitleElement.internal_() : super.internal_(); | 8286 TitleElement.internal_() : super.internal_(); |
8173 | 8287 |
(...skipping 12 matching lines...) Expand all Loading... |
8186 // WARNING: Do not edit - generated code. | 8300 // WARNING: Do not edit - generated code. |
8187 | 8301 |
8188 | 8302 |
8189 @DocsEditable() | 8303 @DocsEditable() |
8190 @DomName('SVGTransform') | 8304 @DomName('SVGTransform') |
8191 @Unstable() | 8305 @Unstable() |
8192 class Transform extends DartHtmlDomObject { | 8306 class Transform extends DartHtmlDomObject { |
8193 // To suppress missing implicit constructor warnings. | 8307 // To suppress missing implicit constructor warnings. |
8194 factory Transform._() { throw new UnsupportedError("Not supported"); } | 8308 factory Transform._() { throw new UnsupportedError("Not supported"); } |
8195 | 8309 |
| 8310 @Deprecated("Internal Use Only") |
8196 static Transform internalCreateTransform() { | 8311 static Transform internalCreateTransform() { |
8197 return new Transform._internalWrap(); | 8312 return new Transform._internalWrap(); |
8198 } | 8313 } |
8199 | 8314 |
8200 factory Transform._internalWrap() { | 8315 factory Transform._internalWrap() { |
8201 return new Transform.internal_(); | 8316 return new Transform.internal_(); |
8202 } | 8317 } |
8203 | 8318 |
8204 Transform.internal_() { } | 8319 Transform.internal_() { } |
8205 | 8320 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8278 // WARNING: Do not edit - generated code. | 8393 // WARNING: Do not edit - generated code. |
8279 | 8394 |
8280 | 8395 |
8281 @DocsEditable() | 8396 @DocsEditable() |
8282 @DomName('SVGTransformList') | 8397 @DomName('SVGTransformList') |
8283 @Unstable() | 8398 @Unstable() |
8284 class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab
leListMixin<Transform> implements List<Transform> { | 8399 class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab
leListMixin<Transform> implements List<Transform> { |
8285 // To suppress missing implicit constructor warnings. | 8400 // To suppress missing implicit constructor warnings. |
8286 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 8401 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
8287 | 8402 |
| 8403 @Deprecated("Internal Use Only") |
8288 static TransformList internalCreateTransformList() { | 8404 static TransformList internalCreateTransformList() { |
8289 return new TransformList._internalWrap(); | 8405 return new TransformList._internalWrap(); |
8290 } | 8406 } |
8291 | 8407 |
8292 factory TransformList._internalWrap() { | 8408 factory TransformList._internalWrap() { |
8293 return new TransformList.internal_(); | 8409 return new TransformList.internal_(); |
8294 } | 8410 } |
8295 | 8411 |
8296 TransformList.internal_() { } | 8412 TransformList.internal_() { } |
8297 | 8413 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8400 // WARNING: Do not edit - generated code. | 8516 // WARNING: Do not edit - generated code. |
8401 | 8517 |
8402 | 8518 |
8403 @DocsEditable() | 8519 @DocsEditable() |
8404 @DomName('SVGUnitTypes') | 8520 @DomName('SVGUnitTypes') |
8405 @Unstable() | 8521 @Unstable() |
8406 class UnitTypes extends DartHtmlDomObject { | 8522 class UnitTypes extends DartHtmlDomObject { |
8407 // To suppress missing implicit constructor warnings. | 8523 // To suppress missing implicit constructor warnings. |
8408 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 8524 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
8409 | 8525 |
| 8526 @Deprecated("Internal Use Only") |
8410 static UnitTypes internalCreateUnitTypes() { | 8527 static UnitTypes internalCreateUnitTypes() { |
8411 return new UnitTypes._internalWrap(); | 8528 return new UnitTypes._internalWrap(); |
8412 } | 8529 } |
8413 | 8530 |
8414 factory UnitTypes._internalWrap() { | 8531 factory UnitTypes._internalWrap() { |
8415 return new UnitTypes.internal_(); | 8532 return new UnitTypes.internal_(); |
8416 } | 8533 } |
8417 | 8534 |
8418 UnitTypes.internal_() { } | 8535 UnitTypes.internal_() { } |
8419 | 8536 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8464 @Unstable() | 8581 @Unstable() |
8465 class UseElement extends GraphicsElement implements UriReference { | 8582 class UseElement extends GraphicsElement implements UriReference { |
8466 // To suppress missing implicit constructor warnings. | 8583 // To suppress missing implicit constructor warnings. |
8467 factory UseElement._() { throw new UnsupportedError("Not supported"); } | 8584 factory UseElement._() { throw new UnsupportedError("Not supported"); } |
8468 | 8585 |
8469 @DomName('SVGUseElement.SVGUseElement') | 8586 @DomName('SVGUseElement.SVGUseElement') |
8470 @DocsEditable() | 8587 @DocsEditable() |
8471 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; | 8588 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; |
8472 | 8589 |
8473 | 8590 |
| 8591 @Deprecated("Internal Use Only") |
8474 static UseElement internalCreateUseElement() { | 8592 static UseElement internalCreateUseElement() { |
8475 return new UseElement._internalWrap(); | 8593 return new UseElement._internalWrap(); |
8476 } | 8594 } |
8477 | 8595 |
8478 factory UseElement._internalWrap() { | 8596 factory UseElement._internalWrap() { |
8479 return new UseElement.internal_(); | 8597 return new UseElement.internal_(); |
8480 } | 8598 } |
8481 | 8599 |
8482 UseElement.internal_() : super.internal_(); | 8600 UseElement.internal_() : super.internal_(); |
8483 | 8601 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8521 @Unstable() | 8639 @Unstable() |
8522 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { | 8640 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { |
8523 // To suppress missing implicit constructor warnings. | 8641 // To suppress missing implicit constructor warnings. |
8524 factory ViewElement._() { throw new UnsupportedError("Not supported"); } | 8642 factory ViewElement._() { throw new UnsupportedError("Not supported"); } |
8525 | 8643 |
8526 @DomName('SVGViewElement.SVGViewElement') | 8644 @DomName('SVGViewElement.SVGViewElement') |
8527 @DocsEditable() | 8645 @DocsEditable() |
8528 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); | 8646 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); |
8529 | 8647 |
8530 | 8648 |
| 8649 @Deprecated("Internal Use Only") |
8531 static ViewElement internalCreateViewElement() { | 8650 static ViewElement internalCreateViewElement() { |
8532 return new ViewElement._internalWrap(); | 8651 return new ViewElement._internalWrap(); |
8533 } | 8652 } |
8534 | 8653 |
8535 factory ViewElement._internalWrap() { | 8654 factory ViewElement._internalWrap() { |
8536 return new ViewElement.internal_(); | 8655 return new ViewElement.internal_(); |
8537 } | 8656 } |
8538 | 8657 |
8539 ViewElement.internal_() : super.internal_(); | 8658 ViewElement.internal_() : super.internal_(); |
8540 | 8659 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8573 // WARNING: Do not edit - generated code. | 8692 // WARNING: Do not edit - generated code. |
8574 | 8693 |
8575 | 8694 |
8576 @DocsEditable() | 8695 @DocsEditable() |
8577 @DomName('SVGViewSpec') | 8696 @DomName('SVGViewSpec') |
8578 @Unstable() | 8697 @Unstable() |
8579 class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan { | 8698 class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan { |
8580 // To suppress missing implicit constructor warnings. | 8699 // To suppress missing implicit constructor warnings. |
8581 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 8700 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
8582 | 8701 |
| 8702 @Deprecated("Internal Use Only") |
8583 static ViewSpec internalCreateViewSpec() { | 8703 static ViewSpec internalCreateViewSpec() { |
8584 return new ViewSpec._internalWrap(); | 8704 return new ViewSpec._internalWrap(); |
8585 } | 8705 } |
8586 | 8706 |
8587 factory ViewSpec._internalWrap() { | 8707 factory ViewSpec._internalWrap() { |
8588 return new ViewSpec.internal_(); | 8708 return new ViewSpec.internal_(); |
8589 } | 8709 } |
8590 | 8710 |
8591 ViewSpec.internal_() { } | 8711 ViewSpec.internal_() { } |
8592 | 8712 |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8681 | 8801 |
8682 | 8802 |
8683 @DocsEditable() | 8803 @DocsEditable() |
8684 @DomName('SVGZoomEvent') | 8804 @DomName('SVGZoomEvent') |
8685 @Unstable() | 8805 @Unstable() |
8686 class ZoomEvent extends UIEvent { | 8806 class ZoomEvent extends UIEvent { |
8687 // To suppress missing implicit constructor warnings. | 8807 // To suppress missing implicit constructor warnings. |
8688 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } | 8808 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } |
8689 | 8809 |
8690 | 8810 |
| 8811 @Deprecated("Internal Use Only") |
8691 static ZoomEvent internalCreateZoomEvent() { | 8812 static ZoomEvent internalCreateZoomEvent() { |
8692 return new ZoomEvent._internalWrap(); | 8813 return new ZoomEvent._internalWrap(); |
8693 } | 8814 } |
8694 | 8815 |
8695 factory ZoomEvent._internalWrap() { | 8816 factory ZoomEvent._internalWrap() { |
8696 return new ZoomEvent.internal_(); | 8817 return new ZoomEvent.internal_(); |
8697 } | 8818 } |
8698 | 8819 |
8699 ZoomEvent.internal_() : super.internal_(); | 8820 ZoomEvent.internal_() : super.internal_(); |
8700 | 8821 |
(...skipping 27 matching lines...) Expand all Loading... |
8728 | 8849 |
8729 | 8850 |
8730 @DocsEditable() | 8851 @DocsEditable() |
8731 @DomName('SVGGradientElement') | 8852 @DomName('SVGGradientElement') |
8732 @Unstable() | 8853 @Unstable() |
8733 class _GradientElement extends SvgElement implements UriReference { | 8854 class _GradientElement extends SvgElement implements UriReference { |
8734 // To suppress missing implicit constructor warnings. | 8855 // To suppress missing implicit constructor warnings. |
8735 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } | 8856 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } |
8736 | 8857 |
8737 | 8858 |
| 8859 @Deprecated("Internal Use Only") |
8738 static _GradientElement internalCreate_GradientElement() { | 8860 static _GradientElement internalCreate_GradientElement() { |
8739 return new _GradientElement._internalWrap(); | 8861 return new _GradientElement._internalWrap(); |
8740 } | 8862 } |
8741 | 8863 |
8742 factory _GradientElement._internalWrap() { | 8864 factory _GradientElement._internalWrap() { |
8743 return new _GradientElement.internal_(); | 8865 return new _GradientElement.internal_(); |
8744 } | 8866 } |
8745 | 8867 |
8746 _GradientElement.internal_() : super.internal_(); | 8868 _GradientElement.internal_() : super.internal_(); |
8747 | 8869 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8793 | 8915 |
8794 | 8916 |
8795 @DocsEditable() | 8917 @DocsEditable() |
8796 @DomName('SVGAltGlyphDefElement') | 8918 @DomName('SVGAltGlyphDefElement') |
8797 @Unstable() | 8919 @Unstable() |
8798 class _SVGAltGlyphDefElement extends SvgElement { | 8920 class _SVGAltGlyphDefElement extends SvgElement { |
8799 // To suppress missing implicit constructor warnings. | 8921 // To suppress missing implicit constructor warnings. |
8800 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } | 8922 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } |
8801 | 8923 |
8802 | 8924 |
| 8925 @Deprecated("Internal Use Only") |
8803 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { | 8926 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { |
8804 return new _SVGAltGlyphDefElement._internalWrap(); | 8927 return new _SVGAltGlyphDefElement._internalWrap(); |
8805 } | 8928 } |
8806 | 8929 |
8807 factory _SVGAltGlyphDefElement._internalWrap() { | 8930 factory _SVGAltGlyphDefElement._internalWrap() { |
8808 return new _SVGAltGlyphDefElement.internal_(); | 8931 return new _SVGAltGlyphDefElement.internal_(); |
8809 } | 8932 } |
8810 | 8933 |
8811 _SVGAltGlyphDefElement.internal_() : super.internal_(); | 8934 _SVGAltGlyphDefElement.internal_() : super.internal_(); |
8812 | 8935 |
(...skipping 13 matching lines...) Expand all Loading... |
8826 | 8949 |
8827 | 8950 |
8828 @DocsEditable() | 8951 @DocsEditable() |
8829 @DomName('SVGAltGlyphItemElement') | 8952 @DomName('SVGAltGlyphItemElement') |
8830 @Unstable() | 8953 @Unstable() |
8831 class _SVGAltGlyphItemElement extends SvgElement { | 8954 class _SVGAltGlyphItemElement extends SvgElement { |
8832 // To suppress missing implicit constructor warnings. | 8955 // To suppress missing implicit constructor warnings. |
8833 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } | 8956 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } |
8834 | 8957 |
8835 | 8958 |
| 8959 @Deprecated("Internal Use Only") |
8836 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { | 8960 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { |
8837 return new _SVGAltGlyphItemElement._internalWrap(); | 8961 return new _SVGAltGlyphItemElement._internalWrap(); |
8838 } | 8962 } |
8839 | 8963 |
8840 factory _SVGAltGlyphItemElement._internalWrap() { | 8964 factory _SVGAltGlyphItemElement._internalWrap() { |
8841 return new _SVGAltGlyphItemElement.internal_(); | 8965 return new _SVGAltGlyphItemElement.internal_(); |
8842 } | 8966 } |
8843 | 8967 |
8844 _SVGAltGlyphItemElement.internal_() : super.internal_(); | 8968 _SVGAltGlyphItemElement.internal_() : super.internal_(); |
8845 | 8969 |
(...skipping 13 matching lines...) Expand all Loading... |
8859 | 8983 |
8860 | 8984 |
8861 @DocsEditable() | 8985 @DocsEditable() |
8862 @DomName('SVGComponentTransferFunctionElement') | 8986 @DomName('SVGComponentTransferFunctionElement') |
8863 @Unstable() | 8987 @Unstable() |
8864 class _SVGComponentTransferFunctionElement extends SvgElement { | 8988 class _SVGComponentTransferFunctionElement extends SvgElement { |
8865 // To suppress missing implicit constructor warnings. | 8989 // To suppress missing implicit constructor warnings. |
8866 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } | 8990 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } |
8867 | 8991 |
8868 | 8992 |
| 8993 @Deprecated("Internal Use Only") |
8869 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { | 8994 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { |
8870 return new _SVGComponentTransferFunctionElement._internalWrap(); | 8995 return new _SVGComponentTransferFunctionElement._internalWrap(); |
8871 } | 8996 } |
8872 | 8997 |
8873 factory _SVGComponentTransferFunctionElement._internalWrap() { | 8998 factory _SVGComponentTransferFunctionElement._internalWrap() { |
8874 return new _SVGComponentTransferFunctionElement.internal_(); | 8999 return new _SVGComponentTransferFunctionElement.internal_(); |
8875 } | 9000 } |
8876 | 9001 |
8877 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); | 9002 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); |
8878 | 9003 |
(...skipping 15 matching lines...) Expand all Loading... |
8894 @Unstable() | 9019 @Unstable() |
8895 class _SVGCursorElement extends SvgElement implements UriReference, Tests { | 9020 class _SVGCursorElement extends SvgElement implements UriReference, Tests { |
8896 // To suppress missing implicit constructor warnings. | 9021 // To suppress missing implicit constructor warnings. |
8897 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } | 9022 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } |
8898 | 9023 |
8899 @DomName('SVGCursorElement.SVGCursorElement') | 9024 @DomName('SVGCursorElement.SVGCursorElement') |
8900 @DocsEditable() | 9025 @DocsEditable() |
8901 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); | 9026 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); |
8902 | 9027 |
8903 | 9028 |
| 9029 @Deprecated("Internal Use Only") |
8904 static _SVGCursorElement internalCreate_SVGCursorElement() { | 9030 static _SVGCursorElement internalCreate_SVGCursorElement() { |
8905 return new _SVGCursorElement._internalWrap(); | 9031 return new _SVGCursorElement._internalWrap(); |
8906 } | 9032 } |
8907 | 9033 |
8908 factory _SVGCursorElement._internalWrap() { | 9034 factory _SVGCursorElement._internalWrap() { |
8909 return new _SVGCursorElement.internal_(); | 9035 return new _SVGCursorElement.internal_(); |
8910 } | 9036 } |
8911 | 9037 |
8912 _SVGCursorElement.internal_() : super.internal_(); | 9038 _SVGCursorElement.internal_() : super.internal_(); |
8913 | 9039 |
(...skipping 21 matching lines...) Expand all Loading... |
8935 | 9061 |
8936 | 9062 |
8937 @DocsEditable() | 9063 @DocsEditable() |
8938 @DomName('SVGFEDropShadowElement') | 9064 @DomName('SVGFEDropShadowElement') |
8939 @Experimental() // nonstandard | 9065 @Experimental() // nonstandard |
8940 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 9066 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
8941 // To suppress missing implicit constructor warnings. | 9067 // To suppress missing implicit constructor warnings. |
8942 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } | 9068 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } |
8943 | 9069 |
8944 | 9070 |
| 9071 @Deprecated("Internal Use Only") |
8945 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { | 9072 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { |
8946 return new _SVGFEDropShadowElement._internalWrap(); | 9073 return new _SVGFEDropShadowElement._internalWrap(); |
8947 } | 9074 } |
8948 | 9075 |
8949 factory _SVGFEDropShadowElement._internalWrap() { | 9076 factory _SVGFEDropShadowElement._internalWrap() { |
8950 return new _SVGFEDropShadowElement.internal_(); | 9077 return new _SVGFEDropShadowElement.internal_(); |
8951 } | 9078 } |
8952 | 9079 |
8953 _SVGFEDropShadowElement.internal_() : super.internal_(); | 9080 _SVGFEDropShadowElement.internal_() : super.internal_(); |
8954 | 9081 |
(...skipping 20 matching lines...) Expand all Loading... |
8975 | 9102 |
8976 | 9103 |
8977 @DocsEditable() | 9104 @DocsEditable() |
8978 @DomName('SVGFontElement') | 9105 @DomName('SVGFontElement') |
8979 @Unstable() | 9106 @Unstable() |
8980 class _SVGFontElement extends SvgElement { | 9107 class _SVGFontElement extends SvgElement { |
8981 // To suppress missing implicit constructor warnings. | 9108 // To suppress missing implicit constructor warnings. |
8982 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } | 9109 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } |
8983 | 9110 |
8984 | 9111 |
| 9112 @Deprecated("Internal Use Only") |
8985 static _SVGFontElement internalCreate_SVGFontElement() { | 9113 static _SVGFontElement internalCreate_SVGFontElement() { |
8986 return new _SVGFontElement._internalWrap(); | 9114 return new _SVGFontElement._internalWrap(); |
8987 } | 9115 } |
8988 | 9116 |
8989 factory _SVGFontElement._internalWrap() { | 9117 factory _SVGFontElement._internalWrap() { |
8990 return new _SVGFontElement.internal_(); | 9118 return new _SVGFontElement.internal_(); |
8991 } | 9119 } |
8992 | 9120 |
8993 _SVGFontElement.internal_() : super.internal_(); | 9121 _SVGFontElement.internal_() : super.internal_(); |
8994 | 9122 |
(...skipping 13 matching lines...) Expand all Loading... |
9008 | 9136 |
9009 | 9137 |
9010 @DocsEditable() | 9138 @DocsEditable() |
9011 @DomName('SVGFontFaceElement') | 9139 @DomName('SVGFontFaceElement') |
9012 @Unstable() | 9140 @Unstable() |
9013 class _SVGFontFaceElement extends SvgElement { | 9141 class _SVGFontFaceElement extends SvgElement { |
9014 // To suppress missing implicit constructor warnings. | 9142 // To suppress missing implicit constructor warnings. |
9015 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} | 9143 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} |
9016 | 9144 |
9017 | 9145 |
| 9146 @Deprecated("Internal Use Only") |
9018 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { | 9147 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { |
9019 return new _SVGFontFaceElement._internalWrap(); | 9148 return new _SVGFontFaceElement._internalWrap(); |
9020 } | 9149 } |
9021 | 9150 |
9022 factory _SVGFontFaceElement._internalWrap() { | 9151 factory _SVGFontFaceElement._internalWrap() { |
9023 return new _SVGFontFaceElement.internal_(); | 9152 return new _SVGFontFaceElement.internal_(); |
9024 } | 9153 } |
9025 | 9154 |
9026 _SVGFontFaceElement.internal_() : super.internal_(); | 9155 _SVGFontFaceElement.internal_() : super.internal_(); |
9027 | 9156 |
(...skipping 13 matching lines...) Expand all Loading... |
9041 | 9170 |
9042 | 9171 |
9043 @DocsEditable() | 9172 @DocsEditable() |
9044 @DomName('SVGFontFaceFormatElement') | 9173 @DomName('SVGFontFaceFormatElement') |
9045 @Unstable() | 9174 @Unstable() |
9046 class _SVGFontFaceFormatElement extends SvgElement { | 9175 class _SVGFontFaceFormatElement extends SvgElement { |
9047 // To suppress missing implicit constructor warnings. | 9176 // To suppress missing implicit constructor warnings. |
9048 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } | 9177 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } |
9049 | 9178 |
9050 | 9179 |
| 9180 @Deprecated("Internal Use Only") |
9051 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { | 9181 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { |
9052 return new _SVGFontFaceFormatElement._internalWrap(); | 9182 return new _SVGFontFaceFormatElement._internalWrap(); |
9053 } | 9183 } |
9054 | 9184 |
9055 factory _SVGFontFaceFormatElement._internalWrap() { | 9185 factory _SVGFontFaceFormatElement._internalWrap() { |
9056 return new _SVGFontFaceFormatElement.internal_(); | 9186 return new _SVGFontFaceFormatElement.internal_(); |
9057 } | 9187 } |
9058 | 9188 |
9059 _SVGFontFaceFormatElement.internal_() : super.internal_(); | 9189 _SVGFontFaceFormatElement.internal_() : super.internal_(); |
9060 | 9190 |
(...skipping 13 matching lines...) Expand all Loading... |
9074 | 9204 |
9075 | 9205 |
9076 @DocsEditable() | 9206 @DocsEditable() |
9077 @DomName('SVGFontFaceNameElement') | 9207 @DomName('SVGFontFaceNameElement') |
9078 @Unstable() | 9208 @Unstable() |
9079 class _SVGFontFaceNameElement extends SvgElement { | 9209 class _SVGFontFaceNameElement extends SvgElement { |
9080 // To suppress missing implicit constructor warnings. | 9210 // To suppress missing implicit constructor warnings. |
9081 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } | 9211 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } |
9082 | 9212 |
9083 | 9213 |
| 9214 @Deprecated("Internal Use Only") |
9084 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { | 9215 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { |
9085 return new _SVGFontFaceNameElement._internalWrap(); | 9216 return new _SVGFontFaceNameElement._internalWrap(); |
9086 } | 9217 } |
9087 | 9218 |
9088 factory _SVGFontFaceNameElement._internalWrap() { | 9219 factory _SVGFontFaceNameElement._internalWrap() { |
9089 return new _SVGFontFaceNameElement.internal_(); | 9220 return new _SVGFontFaceNameElement.internal_(); |
9090 } | 9221 } |
9091 | 9222 |
9092 _SVGFontFaceNameElement.internal_() : super.internal_(); | 9223 _SVGFontFaceNameElement.internal_() : super.internal_(); |
9093 | 9224 |
(...skipping 13 matching lines...) Expand all Loading... |
9107 | 9238 |
9108 | 9239 |
9109 @DocsEditable() | 9240 @DocsEditable() |
9110 @DomName('SVGFontFaceSrcElement') | 9241 @DomName('SVGFontFaceSrcElement') |
9111 @Unstable() | 9242 @Unstable() |
9112 class _SVGFontFaceSrcElement extends SvgElement { | 9243 class _SVGFontFaceSrcElement extends SvgElement { |
9113 // To suppress missing implicit constructor warnings. | 9244 // To suppress missing implicit constructor warnings. |
9114 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } | 9245 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } |
9115 | 9246 |
9116 | 9247 |
| 9248 @Deprecated("Internal Use Only") |
9117 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { | 9249 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { |
9118 return new _SVGFontFaceSrcElement._internalWrap(); | 9250 return new _SVGFontFaceSrcElement._internalWrap(); |
9119 } | 9251 } |
9120 | 9252 |
9121 factory _SVGFontFaceSrcElement._internalWrap() { | 9253 factory _SVGFontFaceSrcElement._internalWrap() { |
9122 return new _SVGFontFaceSrcElement.internal_(); | 9254 return new _SVGFontFaceSrcElement.internal_(); |
9123 } | 9255 } |
9124 | 9256 |
9125 _SVGFontFaceSrcElement.internal_() : super.internal_(); | 9257 _SVGFontFaceSrcElement.internal_() : super.internal_(); |
9126 | 9258 |
(...skipping 13 matching lines...) Expand all Loading... |
9140 | 9272 |
9141 | 9273 |
9142 @DocsEditable() | 9274 @DocsEditable() |
9143 @DomName('SVGFontFaceUriElement') | 9275 @DomName('SVGFontFaceUriElement') |
9144 @Unstable() | 9276 @Unstable() |
9145 class _SVGFontFaceUriElement extends SvgElement { | 9277 class _SVGFontFaceUriElement extends SvgElement { |
9146 // To suppress missing implicit constructor warnings. | 9278 // To suppress missing implicit constructor warnings. |
9147 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } | 9279 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } |
9148 | 9280 |
9149 | 9281 |
| 9282 @Deprecated("Internal Use Only") |
9150 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { | 9283 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { |
9151 return new _SVGFontFaceUriElement._internalWrap(); | 9284 return new _SVGFontFaceUriElement._internalWrap(); |
9152 } | 9285 } |
9153 | 9286 |
9154 factory _SVGFontFaceUriElement._internalWrap() { | 9287 factory _SVGFontFaceUriElement._internalWrap() { |
9155 return new _SVGFontFaceUriElement.internal_(); | 9288 return new _SVGFontFaceUriElement.internal_(); |
9156 } | 9289 } |
9157 | 9290 |
9158 _SVGFontFaceUriElement.internal_() : super.internal_(); | 9291 _SVGFontFaceUriElement.internal_() : super.internal_(); |
9159 | 9292 |
(...skipping 17 matching lines...) Expand all Loading... |
9177 @Unstable() | 9310 @Unstable() |
9178 class _SVGGlyphElement extends SvgElement { | 9311 class _SVGGlyphElement extends SvgElement { |
9179 // To suppress missing implicit constructor warnings. | 9312 // To suppress missing implicit constructor warnings. |
9180 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } | 9313 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } |
9181 | 9314 |
9182 @DomName('SVGGlyphElement.SVGGlyphElement') | 9315 @DomName('SVGGlyphElement.SVGGlyphElement') |
9183 @DocsEditable() | 9316 @DocsEditable() |
9184 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); | 9317 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); |
9185 | 9318 |
9186 | 9319 |
| 9320 @Deprecated("Internal Use Only") |
9187 static _SVGGlyphElement internalCreate_SVGGlyphElement() { | 9321 static _SVGGlyphElement internalCreate_SVGGlyphElement() { |
9188 return new _SVGGlyphElement._internalWrap(); | 9322 return new _SVGGlyphElement._internalWrap(); |
9189 } | 9323 } |
9190 | 9324 |
9191 factory _SVGGlyphElement._internalWrap() { | 9325 factory _SVGGlyphElement._internalWrap() { |
9192 return new _SVGGlyphElement.internal_(); | 9326 return new _SVGGlyphElement.internal_(); |
9193 } | 9327 } |
9194 | 9328 |
9195 _SVGGlyphElement.internal_() : super.internal_(); | 9329 _SVGGlyphElement.internal_() : super.internal_(); |
9196 | 9330 |
(...skipping 11 matching lines...) Expand all Loading... |
9208 | 9342 |
9209 | 9343 |
9210 @DocsEditable() | 9344 @DocsEditable() |
9211 @DomName('SVGGlyphRefElement') | 9345 @DomName('SVGGlyphRefElement') |
9212 @Unstable() | 9346 @Unstable() |
9213 class _SVGGlyphRefElement extends SvgElement implements UriReference { | 9347 class _SVGGlyphRefElement extends SvgElement implements UriReference { |
9214 // To suppress missing implicit constructor warnings. | 9348 // To suppress missing implicit constructor warnings. |
9215 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} | 9349 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} |
9216 | 9350 |
9217 | 9351 |
| 9352 @Deprecated("Internal Use Only") |
9218 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { | 9353 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { |
9219 return new _SVGGlyphRefElement._internalWrap(); | 9354 return new _SVGGlyphRefElement._internalWrap(); |
9220 } | 9355 } |
9221 | 9356 |
9222 factory _SVGGlyphRefElement._internalWrap() { | 9357 factory _SVGGlyphRefElement._internalWrap() { |
9223 return new _SVGGlyphRefElement.internal_(); | 9358 return new _SVGGlyphRefElement.internal_(); |
9224 } | 9359 } |
9225 | 9360 |
9226 _SVGGlyphRefElement.internal_() : super.internal_(); | 9361 _SVGGlyphRefElement.internal_() : super.internal_(); |
9227 | 9362 |
(...skipping 20 matching lines...) Expand all Loading... |
9248 @Unstable() | 9383 @Unstable() |
9249 class _SVGHKernElement extends SvgElement { | 9384 class _SVGHKernElement extends SvgElement { |
9250 // To suppress missing implicit constructor warnings. | 9385 // To suppress missing implicit constructor warnings. |
9251 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } | 9386 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } |
9252 | 9387 |
9253 @DomName('SVGHKernElement.SVGHKernElement') | 9388 @DomName('SVGHKernElement.SVGHKernElement') |
9254 @DocsEditable() | 9389 @DocsEditable() |
9255 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); | 9390 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); |
9256 | 9391 |
9257 | 9392 |
| 9393 @Deprecated("Internal Use Only") |
9258 static _SVGHKernElement internalCreate_SVGHKernElement() { | 9394 static _SVGHKernElement internalCreate_SVGHKernElement() { |
9259 return new _SVGHKernElement._internalWrap(); | 9395 return new _SVGHKernElement._internalWrap(); |
9260 } | 9396 } |
9261 | 9397 |
9262 factory _SVGHKernElement._internalWrap() { | 9398 factory _SVGHKernElement._internalWrap() { |
9263 return new _SVGHKernElement.internal_(); | 9399 return new _SVGHKernElement.internal_(); |
9264 } | 9400 } |
9265 | 9401 |
9266 _SVGHKernElement.internal_() : super.internal_(); | 9402 _SVGHKernElement.internal_() : super.internal_(); |
9267 | 9403 |
(...skipping 14 matching lines...) Expand all Loading... |
9282 @DomName('SVGMPathElement') | 9418 @DomName('SVGMPathElement') |
9283 class _SVGMPathElement extends SvgElement implements UriReference { | 9419 class _SVGMPathElement extends SvgElement implements UriReference { |
9284 // To suppress missing implicit constructor warnings. | 9420 // To suppress missing implicit constructor warnings. |
9285 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } | 9421 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } |
9286 | 9422 |
9287 @DomName('SVGMPathElement.SVGMPathElement') | 9423 @DomName('SVGMPathElement.SVGMPathElement') |
9288 @DocsEditable() | 9424 @DocsEditable() |
9289 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); | 9425 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); |
9290 | 9426 |
9291 | 9427 |
| 9428 @Deprecated("Internal Use Only") |
9292 static _SVGMPathElement internalCreate_SVGMPathElement() { | 9429 static _SVGMPathElement internalCreate_SVGMPathElement() { |
9293 return new _SVGMPathElement._internalWrap(); | 9430 return new _SVGMPathElement._internalWrap(); |
9294 } | 9431 } |
9295 | 9432 |
9296 factory _SVGMPathElement._internalWrap() { | 9433 factory _SVGMPathElement._internalWrap() { |
9297 return new _SVGMPathElement.internal_(); | 9434 return new _SVGMPathElement.internal_(); |
9298 } | 9435 } |
9299 | 9436 |
9300 _SVGMPathElement.internal_() : super.internal_(); | 9437 _SVGMPathElement.internal_() : super.internal_(); |
9301 | 9438 |
(...skipping 16 matching lines...) Expand all Loading... |
9318 | 9455 |
9319 | 9456 |
9320 @DocsEditable() | 9457 @DocsEditable() |
9321 @DomName('SVGMissingGlyphElement') | 9458 @DomName('SVGMissingGlyphElement') |
9322 @Unstable() | 9459 @Unstable() |
9323 class _SVGMissingGlyphElement extends SvgElement { | 9460 class _SVGMissingGlyphElement extends SvgElement { |
9324 // To suppress missing implicit constructor warnings. | 9461 // To suppress missing implicit constructor warnings. |
9325 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } | 9462 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } |
9326 | 9463 |
9327 | 9464 |
| 9465 @Deprecated("Internal Use Only") |
9328 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { | 9466 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { |
9329 return new _SVGMissingGlyphElement._internalWrap(); | 9467 return new _SVGMissingGlyphElement._internalWrap(); |
9330 } | 9468 } |
9331 | 9469 |
9332 factory _SVGMissingGlyphElement._internalWrap() { | 9470 factory _SVGMissingGlyphElement._internalWrap() { |
9333 return new _SVGMissingGlyphElement.internal_(); | 9471 return new _SVGMissingGlyphElement.internal_(); |
9334 } | 9472 } |
9335 | 9473 |
9336 _SVGMissingGlyphElement.internal_() : super.internal_(); | 9474 _SVGMissingGlyphElement.internal_() : super.internal_(); |
9337 | 9475 |
(...skipping 17 matching lines...) Expand all Loading... |
9355 @Unstable() | 9493 @Unstable() |
9356 class _SVGVKernElement extends SvgElement { | 9494 class _SVGVKernElement extends SvgElement { |
9357 // To suppress missing implicit constructor warnings. | 9495 // To suppress missing implicit constructor warnings. |
9358 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 9496 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
9359 | 9497 |
9360 @DomName('SVGVKernElement.SVGVKernElement') | 9498 @DomName('SVGVKernElement.SVGVKernElement') |
9361 @DocsEditable() | 9499 @DocsEditable() |
9362 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 9500 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
9363 | 9501 |
9364 | 9502 |
| 9503 @Deprecated("Internal Use Only") |
9365 static _SVGVKernElement internalCreate_SVGVKernElement() { | 9504 static _SVGVKernElement internalCreate_SVGVKernElement() { |
9366 return new _SVGVKernElement._internalWrap(); | 9505 return new _SVGVKernElement._internalWrap(); |
9367 } | 9506 } |
9368 | 9507 |
9369 factory _SVGVKernElement._internalWrap() { | 9508 factory _SVGVKernElement._internalWrap() { |
9370 return new _SVGVKernElement.internal_(); | 9509 return new _SVGVKernElement.internal_(); |
9371 } | 9510 } |
9372 | 9511 |
9373 _SVGVKernElement.internal_() : super.internal_(); | 9512 _SVGVKernElement.internal_() : super.internal_(); |
9374 | 9513 |
9375 /** | 9514 /** |
9376 * Constructor instantiated by the DOM when a custom element has been created. | 9515 * Constructor instantiated by the DOM when a custom element has been created. |
9377 * | 9516 * |
9378 * This can only be called by subclasses from their created constructor. | 9517 * This can only be called by subclasses from their created constructor. |
9379 */ | 9518 */ |
9380 _SVGVKernElement.created() : super.created(); | 9519 _SVGVKernElement.created() : super.created(); |
9381 | 9520 |
9382 } | 9521 } |
OLD | NEW |