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

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

Issue 22352004: Regenerating DOM types from IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev' hide deprecated; 5 import 'dart:_collection-dev' hide deprecated;
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 56 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
57 // for details. All rights reserved. Use of this source code is governed by a 57 // for details. All rights reserved. Use of this source code is governed by a
58 // BSD-style license that can be found in the LICENSE file. 58 // BSD-style license that can be found in the LICENSE file.
59 59
60 // WARNING: Do not edit - generated code. 60 // WARNING: Do not edit - generated code.
61 61
62 62
63 @DocsEditable() 63 @DocsEditable()
64 @DomName('SVGAElement') 64 @DomName('SVGAElement')
65 @Unstable() 65 @Unstable()
66 class AElement extends StyledElement implements Transformable, ExternalResources Required, UriReference, Tests, LangSpace { 66 class AElement extends GraphicsElement implements UriReference, ExternalResource sRequired {
67 // To suppress missing implicit constructor warnings. 67 // To suppress missing implicit constructor warnings.
68 factory AElement._() { throw new UnsupportedError("Not supported"); } 68 factory AElement._() { throw new UnsupportedError("Not supported"); }
69 69
70 @DomName('SVGAElement.SVGAElement') 70 @DomName('SVGAElement.SVGAElement')
71 @DocsEditable() 71 @DocsEditable()
72 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 72 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
73 73
74 @DomName('SVGAElement.target') 74 @DomName('SVGAElement.target')
75 @DocsEditable() 75 @DocsEditable()
76 AnimatedString get target native "SVGAElement_target_Getter"; 76 AnimatedString get target native "SVGAElement_target_Getter";
77 77
78 @DomName('SVGAElement.externalResourcesRequired') 78 @DomName('SVGAElement.externalResourcesRequired')
79 @DocsEditable() 79 @DocsEditable()
80 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso urcesRequired_Getter"; 80 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso urcesRequired_Getter";
81 81
82 @DomName('SVGAElement.xmllang')
83 @DocsEditable()
84 String get xmllang native "SVGAElement_xmllang_Getter";
85
86 @DomName('SVGAElement.xmllang')
87 @DocsEditable()
88 void set xmllang(String value) native "SVGAElement_xmllang_Setter";
89
90 @DomName('SVGAElement.xmlspace')
91 @DocsEditable()
92 String get xmlspace native "SVGAElement_xmlspace_Getter";
93
94 @DomName('SVGAElement.xmlspace')
95 @DocsEditable()
96 void set xmlspace(String value) native "SVGAElement_xmlspace_Setter";
97
98 @DomName('SVGAElement.farthestViewportElement')
99 @DocsEditable()
100 SvgElement get farthestViewportElement native "SVGAElement_farthestViewportEle ment_Getter";
101
102 @DomName('SVGAElement.nearestViewportElement')
103 @DocsEditable()
104 SvgElement get nearestViewportElement native "SVGAElement_nearestViewportEleme nt_Getter";
105
106 @DomName('SVGAElement.getBBox')
107 @DocsEditable()
108 Rect getBBox() native "SVGAElement_getBBox_Callback";
109
110 @DomName('SVGAElement.getCTM')
111 @DocsEditable()
112 Matrix getCtm() native "SVGAElement_getCTM_Callback";
113
114 @DomName('SVGAElement.getScreenCTM')
115 @DocsEditable()
116 Matrix getScreenCtm() native "SVGAElement_getScreenCTM_Callback";
117
118 @DomName('SVGAElement.getTransformToElement')
119 @DocsEditable()
120 Matrix getTransformToElement(SvgElement element) native "SVGAElement_getTransf ormToElement_Callback";
121
122 @DomName('SVGAElement.requiredExtensions')
123 @DocsEditable()
124 StringList get requiredExtensions native "SVGAElement_requiredExtensions_Gette r";
125
126 @DomName('SVGAElement.requiredFeatures')
127 @DocsEditable()
128 StringList get requiredFeatures native "SVGAElement_requiredFeatures_Getter";
129
130 @DomName('SVGAElement.systemLanguage')
131 @DocsEditable()
132 StringList get systemLanguage native "SVGAElement_systemLanguage_Getter";
133
134 @DomName('SVGAElement.hasExtension')
135 @DocsEditable()
136 bool hasExtension(String extension) native "SVGAElement_hasExtension_Callback" ;
137
138 @DomName('SVGAElement.transform')
139 @DocsEditable()
140 AnimatedTransformList get transform native "SVGAElement_transform_Getter";
141
142 @DomName('SVGAElement.href') 82 @DomName('SVGAElement.href')
143 @DocsEditable() 83 @DocsEditable()
144 AnimatedString get href native "SVGAElement_href_Getter"; 84 AnimatedString get href native "SVGAElement_href_Getter";
145 85
146 } 86 }
147 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 87 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
148 // for details. All rights reserved. Use of this source code is governed by a 88 // for details. All rights reserved. Use of this source code is governed by a
149 // BSD-style license that can be found in the LICENSE file. 89 // BSD-style license that can be found in the LICENSE file.
150 90
151 // WARNING: Do not edit - generated code. 91 // WARNING: Do not edit - generated code.
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 548 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
609 // for details. All rights reserved. Use of this source code is governed by a 549 // for details. All rights reserved. Use of this source code is governed by a
610 // BSD-style license that can be found in the LICENSE file. 550 // BSD-style license that can be found in the LICENSE file.
611 551
612 // WARNING: Do not edit - generated code. 552 // WARNING: Do not edit - generated code.
613 553
614 554
615 @DocsEditable() 555 @DocsEditable()
616 @DomName('SVGAnimationElement') 556 @DomName('SVGAnimationElement')
617 @Unstable() 557 @Unstable()
618 class AnimationElement extends SvgElement implements ExternalResourcesRequired, ElementTimeControl, Tests { 558 class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests {
619 // To suppress missing implicit constructor warnings. 559 // To suppress missing implicit constructor warnings.
620 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } 560 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
621 561
622 @DomName('SVGAnimationElement.SVGAnimationElement') 562 @DomName('SVGAnimationElement.SVGAnimationElement')
623 @DocsEditable() 563 @DocsEditable()
624 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 564 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
625 565
626 @DomName('SVGAnimationElement.targetElement') 566 @DomName('SVGAnimationElement.targetElement')
627 @DocsEditable() 567 @DocsEditable()
628 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ; 568 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ;
629 569
630 @DomName('SVGAnimationElement.getCurrentTime')
631 @DocsEditable()
632 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
633
634 @DomName('SVGAnimationElement.getSimpleDuration')
635 @DocsEditable()
636 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback ";
637
638 @DomName('SVGAnimationElement.getStartTime')
639 @DocsEditable()
640 num getStartTime() native "SVGAnimationElement_getStartTime_Callback";
641
642 @DomName('SVGAnimationElement.beginElement') 570 @DomName('SVGAnimationElement.beginElement')
643 @DocsEditable() 571 @DocsEditable()
644 void beginElement() native "SVGAnimationElement_beginElement_Callback"; 572 void beginElement() native "SVGAnimationElement_beginElement_Callback";
645 573
646 @DomName('SVGAnimationElement.beginElementAt') 574 @DomName('SVGAnimationElement.beginElementAt')
647 @DocsEditable() 575 @DocsEditable()
648 void beginElementAt(num offset) native "SVGAnimationElement_beginElementAt_Cal lback"; 576 void beginElementAt(num offset) native "SVGAnimationElement_beginElementAt_Cal lback";
649 577
650 @DomName('SVGAnimationElement.endElement') 578 @DomName('SVGAnimationElement.endElement')
651 @DocsEditable() 579 @DocsEditable()
652 void endElement() native "SVGAnimationElement_endElement_Callback"; 580 void endElement() native "SVGAnimationElement_endElement_Callback";
653 581
654 @DomName('SVGAnimationElement.endElementAt') 582 @DomName('SVGAnimationElement.endElementAt')
655 @DocsEditable() 583 @DocsEditable()
656 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac k"; 584 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac k";
657 585
586 @DomName('SVGAnimationElement.getCurrentTime')
587 @DocsEditable()
588 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
589
590 @DomName('SVGAnimationElement.getSimpleDuration')
591 @DocsEditable()
592 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback ";
593
594 @DomName('SVGAnimationElement.getStartTime')
595 @DocsEditable()
596 num getStartTime() native "SVGAnimationElement_getStartTime_Callback";
597
658 @DomName('SVGAnimationElement.externalResourcesRequired') 598 @DomName('SVGAnimationElement.externalResourcesRequired')
659 @DocsEditable() 599 @DocsEditable()
660 AnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_exte rnalResourcesRequired_Getter"; 600 AnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_exte rnalResourcesRequired_Getter";
661 601
662 @DomName('SVGAnimationElement.requiredExtensions') 602 @DomName('SVGAnimationElement.requiredExtensions')
663 @DocsEditable() 603 @DocsEditable()
664 StringList get requiredExtensions native "SVGAnimationElement_requiredExtensio ns_Getter"; 604 StringList get requiredExtensions native "SVGAnimationElement_requiredExtensio ns_Getter";
665 605
666 @DomName('SVGAnimationElement.requiredFeatures') 606 @DomName('SVGAnimationElement.requiredFeatures')
667 @DocsEditable() 607 @DocsEditable()
(...skipping 11 matching lines...) Expand all
679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
680 // for details. All rights reserved. Use of this source code is governed by a 620 // for details. All rights reserved. Use of this source code is governed by a
681 // BSD-style license that can be found in the LICENSE file. 621 // BSD-style license that can be found in the LICENSE file.
682 622
683 // WARNING: Do not edit - generated code. 623 // WARNING: Do not edit - generated code.
684 624
685 625
686 @DocsEditable() 626 @DocsEditable()
687 @DomName('SVGCircleElement') 627 @DomName('SVGCircleElement')
688 @Unstable() 628 @Unstable()
689 class CircleElement extends StyledElement implements Transformable, ExternalReso urcesRequired, Tests, LangSpace { 629 class CircleElement extends GraphicsElement implements ExternalResourcesRequired {
690 // To suppress missing implicit constructor warnings. 630 // To suppress missing implicit constructor warnings.
691 factory CircleElement._() { throw new UnsupportedError("Not supported"); } 631 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
692 632
693 @DomName('SVGCircleElement.SVGCircleElement') 633 @DomName('SVGCircleElement.SVGCircleElement')
694 @DocsEditable() 634 @DocsEditable()
695 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 635 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
696 636
697 @DomName('SVGCircleElement.cx') 637 @DomName('SVGCircleElement.cx')
698 @DocsEditable() 638 @DocsEditable()
699 AnimatedLength get cx native "SVGCircleElement_cx_Getter"; 639 AnimatedLength get cx native "SVGCircleElement_cx_Getter";
700 640
701 @DomName('SVGCircleElement.cy') 641 @DomName('SVGCircleElement.cy')
702 @DocsEditable() 642 @DocsEditable()
703 AnimatedLength get cy native "SVGCircleElement_cy_Getter"; 643 AnimatedLength get cy native "SVGCircleElement_cy_Getter";
704 644
705 @DomName('SVGCircleElement.r') 645 @DomName('SVGCircleElement.r')
706 @DocsEditable() 646 @DocsEditable()
707 AnimatedLength get r native "SVGCircleElement_r_Getter"; 647 AnimatedLength get r native "SVGCircleElement_r_Getter";
708 648
709 @DomName('SVGCircleElement.externalResourcesRequired') 649 @DomName('SVGCircleElement.externalResourcesRequired')
710 @DocsEditable() 650 @DocsEditable()
711 AnimatedBoolean get externalResourcesRequired native "SVGCircleElement_externa lResourcesRequired_Getter"; 651 AnimatedBoolean get externalResourcesRequired native "SVGCircleElement_externa lResourcesRequired_Getter";
712 652
713 @DomName('SVGCircleElement.xmllang')
714 @DocsEditable()
715 String get xmllang native "SVGCircleElement_xmllang_Getter";
716
717 @DomName('SVGCircleElement.xmllang')
718 @DocsEditable()
719 void set xmllang(String value) native "SVGCircleElement_xmllang_Setter";
720
721 @DomName('SVGCircleElement.xmlspace')
722 @DocsEditable()
723 String get xmlspace native "SVGCircleElement_xmlspace_Getter";
724
725 @DomName('SVGCircleElement.xmlspace')
726 @DocsEditable()
727 void set xmlspace(String value) native "SVGCircleElement_xmlspace_Setter";
728
729 @DomName('SVGCircleElement.farthestViewportElement')
730 @DocsEditable()
731 SvgElement get farthestViewportElement native "SVGCircleElement_farthestViewpo rtElement_Getter";
732
733 @DomName('SVGCircleElement.nearestViewportElement')
734 @DocsEditable()
735 SvgElement get nearestViewportElement native "SVGCircleElement_nearestViewport Element_Getter";
736
737 @DomName('SVGCircleElement.getBBox')
738 @DocsEditable()
739 Rect getBBox() native "SVGCircleElement_getBBox_Callback";
740
741 @DomName('SVGCircleElement.getCTM')
742 @DocsEditable()
743 Matrix getCtm() native "SVGCircleElement_getCTM_Callback";
744
745 @DomName('SVGCircleElement.getScreenCTM')
746 @DocsEditable()
747 Matrix getScreenCtm() native "SVGCircleElement_getScreenCTM_Callback";
748
749 @DomName('SVGCircleElement.getTransformToElement')
750 @DocsEditable()
751 Matrix getTransformToElement(SvgElement element) native "SVGCircleElement_getT ransformToElement_Callback";
752
753 @DomName('SVGCircleElement.requiredExtensions')
754 @DocsEditable()
755 StringList get requiredExtensions native "SVGCircleElement_requiredExtensions_ Getter";
756
757 @DomName('SVGCircleElement.requiredFeatures')
758 @DocsEditable()
759 StringList get requiredFeatures native "SVGCircleElement_requiredFeatures_Gett er";
760
761 @DomName('SVGCircleElement.systemLanguage')
762 @DocsEditable()
763 StringList get systemLanguage native "SVGCircleElement_systemLanguage_Getter";
764
765 @DomName('SVGCircleElement.hasExtension')
766 @DocsEditable()
767 bool hasExtension(String extension) native "SVGCircleElement_hasExtension_Call back";
768
769 @DomName('SVGCircleElement.transform')
770 @DocsEditable()
771 AnimatedTransformList get transform native "SVGCircleElement_transform_Getter" ;
772
773 } 653 }
774 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
775 // for details. All rights reserved. Use of this source code is governed by a 655 // for details. All rights reserved. Use of this source code is governed by a
776 // BSD-style license that can be found in the LICENSE file. 656 // BSD-style license that can be found in the LICENSE file.
777 657
778 // WARNING: Do not edit - generated code. 658 // WARNING: Do not edit - generated code.
779 659
780 660
781 @DocsEditable() 661 @DocsEditable()
782 @DomName('SVGClipPathElement') 662 @DomName('SVGClipPathElement')
783 @Unstable() 663 @Unstable()
784 class ClipPathElement extends StyledElement implements Transformable, ExternalRe sourcesRequired, Tests, LangSpace { 664 class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir ed {
785 // To suppress missing implicit constructor warnings. 665 // To suppress missing implicit constructor warnings.
786 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } 666 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
787 667
788 @DomName('SVGClipPathElement.SVGClipPathElement') 668 @DomName('SVGClipPathElement.SVGClipPathElement')
789 @DocsEditable() 669 @DocsEditable()
790 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 670 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
791 671
792 @DomName('SVGClipPathElement.clipPathUnits') 672 @DomName('SVGClipPathElement.clipPathUnits')
793 @DocsEditable() 673 @DocsEditable()
794 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter"; 674 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter";
795 675
796 @DomName('SVGClipPathElement.externalResourcesRequired') 676 @DomName('SVGClipPathElement.externalResourcesRequired')
797 @DocsEditable() 677 @DocsEditable()
798 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter nalResourcesRequired_Getter"; 678 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter nalResourcesRequired_Getter";
799 679
800 @DomName('SVGClipPathElement.xmllang')
801 @DocsEditable()
802 String get xmllang native "SVGClipPathElement_xmllang_Getter";
803
804 @DomName('SVGClipPathElement.xmllang')
805 @DocsEditable()
806 void set xmllang(String value) native "SVGClipPathElement_xmllang_Setter";
807
808 @DomName('SVGClipPathElement.xmlspace')
809 @DocsEditable()
810 String get xmlspace native "SVGClipPathElement_xmlspace_Getter";
811
812 @DomName('SVGClipPathElement.xmlspace')
813 @DocsEditable()
814 void set xmlspace(String value) native "SVGClipPathElement_xmlspace_Setter";
815
816 @DomName('SVGClipPathElement.farthestViewportElement')
817 @DocsEditable()
818 SvgElement get farthestViewportElement native "SVGClipPathElement_farthestView portElement_Getter";
819
820 @DomName('SVGClipPathElement.nearestViewportElement')
821 @DocsEditable()
822 SvgElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo rtElement_Getter";
823
824 @DomName('SVGClipPathElement.getBBox')
825 @DocsEditable()
826 Rect getBBox() native "SVGClipPathElement_getBBox_Callback";
827
828 @DomName('SVGClipPathElement.getCTM')
829 @DocsEditable()
830 Matrix getCtm() native "SVGClipPathElement_getCTM_Callback";
831
832 @DomName('SVGClipPathElement.getScreenCTM')
833 @DocsEditable()
834 Matrix getScreenCtm() native "SVGClipPathElement_getScreenCTM_Callback";
835
836 @DomName('SVGClipPathElement.getTransformToElement')
837 @DocsEditable()
838 Matrix getTransformToElement(SvgElement element) native "SVGClipPathElement_ge tTransformToElement_Callback";
839
840 @DomName('SVGClipPathElement.requiredExtensions')
841 @DocsEditable()
842 StringList get requiredExtensions native "SVGClipPathElement_requiredExtension s_Getter";
843
844 @DomName('SVGClipPathElement.requiredFeatures')
845 @DocsEditable()
846 StringList get requiredFeatures native "SVGClipPathElement_requiredFeatures_Ge tter";
847
848 @DomName('SVGClipPathElement.systemLanguage')
849 @DocsEditable()
850 StringList get systemLanguage native "SVGClipPathElement_systemLanguage_Getter ";
851
852 @DomName('SVGClipPathElement.hasExtension')
853 @DocsEditable()
854 bool hasExtension(String extension) native "SVGClipPathElement_hasExtension_Ca llback";
855
856 @DomName('SVGClipPathElement.transform')
857 @DocsEditable()
858 AnimatedTransformList get transform native "SVGClipPathElement_transform_Gette r";
859
860 } 680 }
861 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
862 // for details. All rights reserved. Use of this source code is governed by a 682 // for details. All rights reserved. Use of this source code is governed by a
863 // BSD-style license that can be found in the LICENSE file. 683 // BSD-style license that can be found in the LICENSE file.
864 684
865 // WARNING: Do not edit - generated code. 685 // WARNING: Do not edit - generated code.
866 686
867 687
868 @DocsEditable() 688 @DocsEditable()
869 @DomName('SVGDefsElement') 689 @DomName('SVGDefsElement')
870 @Unstable() 690 @Unstable()
871 class DefsElement extends StyledElement implements Transformable, ExternalResour cesRequired, Tests, LangSpace { 691 class DefsElement extends GraphicsElement implements ExternalResourcesRequired {
872 // To suppress missing implicit constructor warnings. 692 // To suppress missing implicit constructor warnings.
873 factory DefsElement._() { throw new UnsupportedError("Not supported"); } 693 factory DefsElement._() { throw new UnsupportedError("Not supported"); }
874 694
875 @DomName('SVGDefsElement.SVGDefsElement') 695 @DomName('SVGDefsElement.SVGDefsElement')
876 @DocsEditable() 696 @DocsEditable()
877 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 697 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
878 698
879 @DomName('SVGDefsElement.externalResourcesRequired') 699 @DomName('SVGDefsElement.externalResourcesRequired')
880 @DocsEditable() 700 @DocsEditable()
881 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter"; 701 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter";
882 702
883 @DomName('SVGDefsElement.xmllang')
884 @DocsEditable()
885 String get xmllang native "SVGDefsElement_xmllang_Getter";
886
887 @DomName('SVGDefsElement.xmllang')
888 @DocsEditable()
889 void set xmllang(String value) native "SVGDefsElement_xmllang_Setter";
890
891 @DomName('SVGDefsElement.xmlspace')
892 @DocsEditable()
893 String get xmlspace native "SVGDefsElement_xmlspace_Getter";
894
895 @DomName('SVGDefsElement.xmlspace')
896 @DocsEditable()
897 void set xmlspace(String value) native "SVGDefsElement_xmlspace_Setter";
898
899 @DomName('SVGDefsElement.farthestViewportElement')
900 @DocsEditable()
901 SvgElement get farthestViewportElement native "SVGDefsElement_farthestViewport Element_Getter";
902
903 @DomName('SVGDefsElement.nearestViewportElement')
904 @DocsEditable()
905 SvgElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl ement_Getter";
906
907 @DomName('SVGDefsElement.getBBox')
908 @DocsEditable()
909 Rect getBBox() native "SVGDefsElement_getBBox_Callback";
910
911 @DomName('SVGDefsElement.getCTM')
912 @DocsEditable()
913 Matrix getCtm() native "SVGDefsElement_getCTM_Callback";
914
915 @DomName('SVGDefsElement.getScreenCTM')
916 @DocsEditable()
917 Matrix getScreenCtm() native "SVGDefsElement_getScreenCTM_Callback";
918
919 @DomName('SVGDefsElement.getTransformToElement')
920 @DocsEditable()
921 Matrix getTransformToElement(SvgElement element) native "SVGDefsElement_getTra nsformToElement_Callback";
922
923 @DomName('SVGDefsElement.requiredExtensions')
924 @DocsEditable()
925 StringList get requiredExtensions native "SVGDefsElement_requiredExtensions_Ge tter";
926
927 @DomName('SVGDefsElement.requiredFeatures')
928 @DocsEditable()
929 StringList get requiredFeatures native "SVGDefsElement_requiredFeatures_Getter ";
930
931 @DomName('SVGDefsElement.systemLanguage')
932 @DocsEditable()
933 StringList get systemLanguage native "SVGDefsElement_systemLanguage_Getter";
934
935 @DomName('SVGDefsElement.hasExtension')
936 @DocsEditable()
937 bool hasExtension(String extension) native "SVGDefsElement_hasExtension_Callba ck";
938
939 @DomName('SVGDefsElement.transform')
940 @DocsEditable()
941 AnimatedTransformList get transform native "SVGDefsElement_transform_Getter";
942
943 } 703 }
944 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 704 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
945 // for details. All rights reserved. Use of this source code is governed by a 705 // for details. All rights reserved. Use of this source code is governed by a
946 // BSD-style license that can be found in the LICENSE file. 706 // BSD-style license that can be found in the LICENSE file.
947 707
948 // WARNING: Do not edit - generated code. 708 // WARNING: Do not edit - generated code.
949 709
950 710
951 @DocsEditable() 711 @DocsEditable()
952 @DomName('SVGDescElement') 712 @DomName('SVGDescElement')
953 @Unstable() 713 @Unstable()
954 class DescElement extends StyledElement implements LangSpace { 714 class DescElement extends StyledElement {
955 // To suppress missing implicit constructor warnings. 715 // To suppress missing implicit constructor warnings.
956 factory DescElement._() { throw new UnsupportedError("Not supported"); } 716 factory DescElement._() { throw new UnsupportedError("Not supported"); }
957 717
958 @DomName('SVGDescElement.SVGDescElement') 718 @DomName('SVGDescElement.SVGDescElement')
959 @DocsEditable() 719 @DocsEditable()
960 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 720 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
961 721
962 @DomName('SVGDescElement.xmllang')
963 @DocsEditable()
964 String get xmllang native "SVGDescElement_xmllang_Getter";
965
966 @DomName('SVGDescElement.xmllang')
967 @DocsEditable()
968 void set xmllang(String value) native "SVGDescElement_xmllang_Setter";
969
970 @DomName('SVGDescElement.xmlspace')
971 @DocsEditable()
972 String get xmlspace native "SVGDescElement_xmlspace_Getter";
973
974 @DomName('SVGDescElement.xmlspace')
975 @DocsEditable()
976 void set xmlspace(String value) native "SVGDescElement_xmlspace_Setter";
977
978 } 722 }
979 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 723 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
980 // for details. All rights reserved. Use of this source code is governed by a 724 // for details. All rights reserved. Use of this source code is governed by a
981 // BSD-style license that can be found in the LICENSE file. 725 // BSD-style license that can be found in the LICENSE file.
982 726
983 // WARNING: Do not edit - generated code. 727 // WARNING: Do not edit - generated code.
984 728
985 729
986 @DocsEditable() 730 @DocsEditable()
987 @DomName('SVGElementInstance') 731 @DomName('SVGElementInstance')
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 static const EventStreamProvider<KeyboardEvent> keyUpEvent = const EventStream Provider<KeyboardEvent>('keyup'); 831 static const EventStreamProvider<KeyboardEvent> keyUpEvent = const EventStream Provider<KeyboardEvent>('keyup');
1088 832
1089 @DomName('SVGElementInstance.loadEvent') 833 @DomName('SVGElementInstance.loadEvent')
1090 @DocsEditable() 834 @DocsEditable()
1091 static const EventStreamProvider<Event> loadEvent = const EventStreamProvider< Event>('load'); 835 static const EventStreamProvider<Event> loadEvent = const EventStreamProvider< Event>('load');
1092 836
1093 @DomName('SVGElementInstance.mousedownEvent') 837 @DomName('SVGElementInstance.mousedownEvent')
1094 @DocsEditable() 838 @DocsEditable()
1095 static const EventStreamProvider<MouseEvent> mouseDownEvent = const EventStrea mProvider<MouseEvent>('mousedown'); 839 static const EventStreamProvider<MouseEvent> mouseDownEvent = const EventStrea mProvider<MouseEvent>('mousedown');
1096 840
841 @DomName('SVGElementInstance.mouseenterEvent')
842 @DocsEditable()
843 @Experimental() // untriaged
844 static const EventStreamProvider<MouseEvent> mouseEnterEvent = const EventStre amProvider<MouseEvent>('mouseenter');
845
846 @DomName('SVGElementInstance.mouseleaveEvent')
847 @DocsEditable()
848 @Experimental() // untriaged
849 static const EventStreamProvider<MouseEvent> mouseLeaveEvent = const EventStre amProvider<MouseEvent>('mouseleave');
850
1097 @DomName('SVGElementInstance.mousemoveEvent') 851 @DomName('SVGElementInstance.mousemoveEvent')
1098 @DocsEditable() 852 @DocsEditable()
1099 static const EventStreamProvider<MouseEvent> mouseMoveEvent = const EventStrea mProvider<MouseEvent>('mousemove'); 853 static const EventStreamProvider<MouseEvent> mouseMoveEvent = const EventStrea mProvider<MouseEvent>('mousemove');
1100 854
1101 @DomName('SVGElementInstance.mouseoutEvent') 855 @DomName('SVGElementInstance.mouseoutEvent')
1102 @DocsEditable() 856 @DocsEditable()
1103 static const EventStreamProvider<MouseEvent> mouseOutEvent = const EventStream Provider<MouseEvent>('mouseout'); 857 static const EventStreamProvider<MouseEvent> mouseOutEvent = const EventStream Provider<MouseEvent>('mouseout');
1104 858
1105 @DomName('SVGElementInstance.mouseoverEvent') 859 @DomName('SVGElementInstance.mouseoverEvent')
1106 @DocsEditable() 860 @DocsEditable()
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1281 Stream<KeyboardEvent> get onKeyUp => keyUpEvent.forTarget(this); 1035 Stream<KeyboardEvent> get onKeyUp => keyUpEvent.forTarget(this);
1282 1036
1283 @DomName('SVGElementInstance.onload') 1037 @DomName('SVGElementInstance.onload')
1284 @DocsEditable() 1038 @DocsEditable()
1285 Stream<Event> get onLoad => loadEvent.forTarget(this); 1039 Stream<Event> get onLoad => loadEvent.forTarget(this);
1286 1040
1287 @DomName('SVGElementInstance.onmousedown') 1041 @DomName('SVGElementInstance.onmousedown')
1288 @DocsEditable() 1042 @DocsEditable()
1289 Stream<MouseEvent> get onMouseDown => mouseDownEvent.forTarget(this); 1043 Stream<MouseEvent> get onMouseDown => mouseDownEvent.forTarget(this);
1290 1044
1045 @DomName('SVGElementInstance.onmouseenter')
1046 @DocsEditable()
1047 @Experimental() // untriaged
1048 Stream<MouseEvent> get onMouseEnter => mouseEnterEvent.forTarget(this);
1049
1050 @DomName('SVGElementInstance.onmouseleave')
1051 @DocsEditable()
1052 @Experimental() // untriaged
1053 Stream<MouseEvent> get onMouseLeave => mouseLeaveEvent.forTarget(this);
1054
1291 @DomName('SVGElementInstance.onmousemove') 1055 @DomName('SVGElementInstance.onmousemove')
1292 @DocsEditable() 1056 @DocsEditable()
1293 Stream<MouseEvent> get onMouseMove => mouseMoveEvent.forTarget(this); 1057 Stream<MouseEvent> get onMouseMove => mouseMoveEvent.forTarget(this);
1294 1058
1295 @DomName('SVGElementInstance.onmouseout') 1059 @DomName('SVGElementInstance.onmouseout')
1296 @DocsEditable() 1060 @DocsEditable()
1297 Stream<MouseEvent> get onMouseOut => mouseOutEvent.forTarget(this); 1061 Stream<MouseEvent> get onMouseOut => mouseOutEvent.forTarget(this);
1298 1062
1299 @DomName('SVGElementInstance.onmouseover') 1063 @DomName('SVGElementInstance.onmouseover')
1300 @DocsEditable() 1064 @DocsEditable()
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
1350 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1114 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1351 // for details. All rights reserved. Use of this source code is governed by a 1115 // for details. All rights reserved. Use of this source code is governed by a
1352 // BSD-style license that can be found in the LICENSE file. 1116 // BSD-style license that can be found in the LICENSE file.
1353 1117
1354 // WARNING: Do not edit - generated code. 1118 // WARNING: Do not edit - generated code.
1355 1119
1356 1120
1357 @DocsEditable() 1121 @DocsEditable()
1358 @DomName('SVGEllipseElement') 1122 @DomName('SVGEllipseElement')
1359 @Unstable() 1123 @Unstable()
1360 class EllipseElement extends StyledElement implements Transformable, ExternalRes ourcesRequired, Tests, LangSpace { 1124 class EllipseElement extends GraphicsElement implements ExternalResourcesRequire d {
1361 // To suppress missing implicit constructor warnings. 1125 // To suppress missing implicit constructor warnings.
1362 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } 1126 factory EllipseElement._() { throw new UnsupportedError("Not supported"); }
1363 1127
1364 @DomName('SVGEllipseElement.SVGEllipseElement') 1128 @DomName('SVGEllipseElement.SVGEllipseElement')
1365 @DocsEditable() 1129 @DocsEditable()
1366 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1130 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1367 1131
1368 @DomName('SVGEllipseElement.cx') 1132 @DomName('SVGEllipseElement.cx')
1369 @DocsEditable() 1133 @DocsEditable()
1370 AnimatedLength get cx native "SVGEllipseElement_cx_Getter"; 1134 AnimatedLength get cx native "SVGEllipseElement_cx_Getter";
1371 1135
1372 @DomName('SVGEllipseElement.cy') 1136 @DomName('SVGEllipseElement.cy')
1373 @DocsEditable() 1137 @DocsEditable()
1374 AnimatedLength get cy native "SVGEllipseElement_cy_Getter"; 1138 AnimatedLength get cy native "SVGEllipseElement_cy_Getter";
1375 1139
1376 @DomName('SVGEllipseElement.rx') 1140 @DomName('SVGEllipseElement.rx')
1377 @DocsEditable() 1141 @DocsEditable()
1378 AnimatedLength get rx native "SVGEllipseElement_rx_Getter"; 1142 AnimatedLength get rx native "SVGEllipseElement_rx_Getter";
1379 1143
1380 @DomName('SVGEllipseElement.ry') 1144 @DomName('SVGEllipseElement.ry')
1381 @DocsEditable() 1145 @DocsEditable()
1382 AnimatedLength get ry native "SVGEllipseElement_ry_Getter"; 1146 AnimatedLength get ry native "SVGEllipseElement_ry_Getter";
1383 1147
1384 @DomName('SVGEllipseElement.externalResourcesRequired') 1148 @DomName('SVGEllipseElement.externalResourcesRequired')
1385 @DocsEditable() 1149 @DocsEditable()
1386 AnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_extern alResourcesRequired_Getter"; 1150 AnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_extern alResourcesRequired_Getter";
1387 1151
1388 @DomName('SVGEllipseElement.xmllang')
1389 @DocsEditable()
1390 String get xmllang native "SVGEllipseElement_xmllang_Getter";
1391
1392 @DomName('SVGEllipseElement.xmllang')
1393 @DocsEditable()
1394 void set xmllang(String value) native "SVGEllipseElement_xmllang_Setter";
1395
1396 @DomName('SVGEllipseElement.xmlspace')
1397 @DocsEditable()
1398 String get xmlspace native "SVGEllipseElement_xmlspace_Getter";
1399
1400 @DomName('SVGEllipseElement.xmlspace')
1401 @DocsEditable()
1402 void set xmlspace(String value) native "SVGEllipseElement_xmlspace_Setter";
1403
1404 @DomName('SVGEllipseElement.farthestViewportElement')
1405 @DocsEditable()
1406 SvgElement get farthestViewportElement native "SVGEllipseElement_farthestViewp ortElement_Getter";
1407
1408 @DomName('SVGEllipseElement.nearestViewportElement')
1409 @DocsEditable()
1410 SvgElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor tElement_Getter";
1411
1412 @DomName('SVGEllipseElement.getBBox')
1413 @DocsEditable()
1414 Rect getBBox() native "SVGEllipseElement_getBBox_Callback";
1415
1416 @DomName('SVGEllipseElement.getCTM')
1417 @DocsEditable()
1418 Matrix getCtm() native "SVGEllipseElement_getCTM_Callback";
1419
1420 @DomName('SVGEllipseElement.getScreenCTM')
1421 @DocsEditable()
1422 Matrix getScreenCtm() native "SVGEllipseElement_getScreenCTM_Callback";
1423
1424 @DomName('SVGEllipseElement.getTransformToElement')
1425 @DocsEditable()
1426 Matrix getTransformToElement(SvgElement element) native "SVGEllipseElement_get TransformToElement_Callback";
1427
1428 @DomName('SVGEllipseElement.requiredExtensions')
1429 @DocsEditable()
1430 StringList get requiredExtensions native "SVGEllipseElement_requiredExtensions _Getter";
1431
1432 @DomName('SVGEllipseElement.requiredFeatures')
1433 @DocsEditable()
1434 StringList get requiredFeatures native "SVGEllipseElement_requiredFeatures_Get ter";
1435
1436 @DomName('SVGEllipseElement.systemLanguage')
1437 @DocsEditable()
1438 StringList get systemLanguage native "SVGEllipseElement_systemLanguage_Getter" ;
1439
1440 @DomName('SVGEllipseElement.hasExtension')
1441 @DocsEditable()
1442 bool hasExtension(String extension) native "SVGEllipseElement_hasExtension_Cal lback";
1443
1444 @DomName('SVGEllipseElement.transform')
1445 @DocsEditable()
1446 AnimatedTransformList get transform native "SVGEllipseElement_transform_Getter ";
1447
1448 } 1152 }
1449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1153 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1450 // for details. All rights reserved. Use of this source code is governed by a 1154 // for details. All rights reserved. Use of this source code is governed by a
1451 // BSD-style license that can be found in the LICENSE file. 1155 // BSD-style license that can be found in the LICENSE file.
1452 1156
1453 // WARNING: Do not edit - generated code. 1157 // WARNING: Do not edit - generated code.
1454 1158
1455 1159
1456 @DocsEditable() 1160 @DocsEditable()
1457 @DomName('SVGExternalResourcesRequired') 1161 @DomName('SVGExternalResourcesRequired')
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
2282 // WARNING: Do not edit - generated code. 1986 // WARNING: Do not edit - generated code.
2283 1987
2284 1988
2285 @DocsEditable() 1989 @DocsEditable()
2286 @DomName('SVGFEImageElement') 1990 @DomName('SVGFEImageElement')
2287 @SupportedBrowser(SupportedBrowser.CHROME) 1991 @SupportedBrowser(SupportedBrowser.CHROME)
2288 @SupportedBrowser(SupportedBrowser.FIREFOX) 1992 @SupportedBrowser(SupportedBrowser.FIREFOX)
2289 @SupportedBrowser(SupportedBrowser.IE, '10') 1993 @SupportedBrowser(SupportedBrowser.IE, '10')
2290 @SupportedBrowser(SupportedBrowser.SAFARI) 1994 @SupportedBrowser(SupportedBrowser.SAFARI)
2291 @Unstable() 1995 @Unstable()
2292 class FEImageElement extends StyledElement implements FilterPrimitiveStandardAtt ributes, UriReference, ExternalResourcesRequired, LangSpace { 1996 class FEImageElement extends StyledElement implements FilterPrimitiveStandardAtt ributes, UriReference, ExternalResourcesRequired {
2293 // To suppress missing implicit constructor warnings. 1997 // To suppress missing implicit constructor warnings.
2294 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } 1998 factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
2295 1999
2296 @DomName('SVGFEImageElement.SVGFEImageElement') 2000 @DomName('SVGFEImageElement.SVGFEImageElement')
2297 @DocsEditable() 2001 @DocsEditable()
2298 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 2002 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
2299 2003
2300 /// Checks if this type is supported on the current platform. 2004 /// Checks if this type is supported on the current platform.
2301 static bool get supported => true; 2005 static bool get supported => true;
2302 2006
(...skipping 18 matching lines...) Expand all
2321 AnimatedLength get width native "SVGFEImageElement_width_Getter"; 2025 AnimatedLength get width native "SVGFEImageElement_width_Getter";
2322 2026
2323 @DomName('SVGFEImageElement.x') 2027 @DomName('SVGFEImageElement.x')
2324 @DocsEditable() 2028 @DocsEditable()
2325 AnimatedLength get x native "SVGFEImageElement_x_Getter"; 2029 AnimatedLength get x native "SVGFEImageElement_x_Getter";
2326 2030
2327 @DomName('SVGFEImageElement.y') 2031 @DomName('SVGFEImageElement.y')
2328 @DocsEditable() 2032 @DocsEditable()
2329 AnimatedLength get y native "SVGFEImageElement_y_Getter"; 2033 AnimatedLength get y native "SVGFEImageElement_y_Getter";
2330 2034
2331 @DomName('SVGFEImageElement.xmllang')
2332 @DocsEditable()
2333 String get xmllang native "SVGFEImageElement_xmllang_Getter";
2334
2335 @DomName('SVGFEImageElement.xmllang')
2336 @DocsEditable()
2337 void set xmllang(String value) native "SVGFEImageElement_xmllang_Setter";
2338
2339 @DomName('SVGFEImageElement.xmlspace')
2340 @DocsEditable()
2341 String get xmlspace native "SVGFEImageElement_xmlspace_Getter";
2342
2343 @DomName('SVGFEImageElement.xmlspace')
2344 @DocsEditable()
2345 void set xmlspace(String value) native "SVGFEImageElement_xmlspace_Setter";
2346
2347 @DomName('SVGFEImageElement.href') 2035 @DomName('SVGFEImageElement.href')
2348 @DocsEditable() 2036 @DocsEditable()
2349 AnimatedString get href native "SVGFEImageElement_href_Getter"; 2037 AnimatedString get href native "SVGFEImageElement_href_Getter";
2350 2038
2351 } 2039 }
2352 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2040 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2353 // for details. All rights reserved. Use of this source code is governed by a 2041 // for details. All rights reserved. Use of this source code is governed by a
2354 // BSD-style license that can be found in the LICENSE file. 2042 // BSD-style license that can be found in the LICENSE file.
2355 2043
2356 // WARNING: Do not edit - generated code. 2044 // WARNING: Do not edit - generated code.
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
2863 // WARNING: Do not edit - generated code. 2551 // WARNING: Do not edit - generated code.
2864 2552
2865 2553
2866 @DocsEditable() 2554 @DocsEditable()
2867 @DomName('SVGFilterElement') 2555 @DomName('SVGFilterElement')
2868 @SupportedBrowser(SupportedBrowser.CHROME) 2556 @SupportedBrowser(SupportedBrowser.CHROME)
2869 @SupportedBrowser(SupportedBrowser.FIREFOX) 2557 @SupportedBrowser(SupportedBrowser.FIREFOX)
2870 @SupportedBrowser(SupportedBrowser.IE, '10') 2558 @SupportedBrowser(SupportedBrowser.IE, '10')
2871 @SupportedBrowser(SupportedBrowser.SAFARI) 2559 @SupportedBrowser(SupportedBrowser.SAFARI)
2872 @Unstable() 2560 @Unstable()
2873 class FilterElement extends StyledElement implements UriReference, ExternalResou rcesRequired, LangSpace { 2561 class FilterElement extends StyledElement implements UriReference, ExternalResou rcesRequired {
2874 // To suppress missing implicit constructor warnings. 2562 // To suppress missing implicit constructor warnings.
2875 factory FilterElement._() { throw new UnsupportedError("Not supported"); } 2563 factory FilterElement._() { throw new UnsupportedError("Not supported"); }
2876 2564
2877 @DomName('SVGFilterElement.SVGFilterElement') 2565 @DomName('SVGFilterElement.SVGFilterElement')
2878 @DocsEditable() 2566 @DocsEditable()
2879 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2567 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2880 2568
2881 /// Checks if this type is supported on the current platform. 2569 /// Checks if this type is supported on the current platform.
2882 static bool get supported => true; 2570 static bool get supported => true;
2883 2571
(...skipping 30 matching lines...) Expand all
2914 AnimatedLength get y native "SVGFilterElement_y_Getter"; 2602 AnimatedLength get y native "SVGFilterElement_y_Getter";
2915 2603
2916 @DomName('SVGFilterElement.setFilterRes') 2604 @DomName('SVGFilterElement.setFilterRes')
2917 @DocsEditable() 2605 @DocsEditable()
2918 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set FilterRes_Callback"; 2606 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set FilterRes_Callback";
2919 2607
2920 @DomName('SVGFilterElement.externalResourcesRequired') 2608 @DomName('SVGFilterElement.externalResourcesRequired')
2921 @DocsEditable() 2609 @DocsEditable()
2922 AnimatedBoolean get externalResourcesRequired native "SVGFilterElement_externa lResourcesRequired_Getter"; 2610 AnimatedBoolean get externalResourcesRequired native "SVGFilterElement_externa lResourcesRequired_Getter";
2923 2611
2924 @DomName('SVGFilterElement.xmllang')
2925 @DocsEditable()
2926 String get xmllang native "SVGFilterElement_xmllang_Getter";
2927
2928 @DomName('SVGFilterElement.xmllang')
2929 @DocsEditable()
2930 void set xmllang(String value) native "SVGFilterElement_xmllang_Setter";
2931
2932 @DomName('SVGFilterElement.xmlspace')
2933 @DocsEditable()
2934 String get xmlspace native "SVGFilterElement_xmlspace_Getter";
2935
2936 @DomName('SVGFilterElement.xmlspace')
2937 @DocsEditable()
2938 void set xmlspace(String value) native "SVGFilterElement_xmlspace_Setter";
2939
2940 @DomName('SVGFilterElement.href') 2612 @DomName('SVGFilterElement.href')
2941 @DocsEditable() 2613 @DocsEditable()
2942 AnimatedString get href native "SVGFilterElement_href_Getter"; 2614 AnimatedString get href native "SVGFilterElement_href_Getter";
2943 2615
2944 } 2616 }
2945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2617 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2946 // for details. All rights reserved. Use of this source code is governed by a 2618 // for details. All rights reserved. Use of this source code is governed by a
2947 // BSD-style license that can be found in the LICENSE file. 2619 // BSD-style license that can be found in the LICENSE file.
2948 2620
2949 // WARNING: Do not edit - generated code. 2621 // WARNING: Do not edit - generated code.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
3002 2674
3003 // WARNING: Do not edit - generated code. 2675 // WARNING: Do not edit - generated code.
3004 2676
3005 2677
3006 @DocsEditable() 2678 @DocsEditable()
3007 @DomName('SVGForeignObjectElement') 2679 @DomName('SVGForeignObjectElement')
3008 @SupportedBrowser(SupportedBrowser.CHROME) 2680 @SupportedBrowser(SupportedBrowser.CHROME)
3009 @SupportedBrowser(SupportedBrowser.FIREFOX) 2681 @SupportedBrowser(SupportedBrowser.FIREFOX)
3010 @SupportedBrowser(SupportedBrowser.SAFARI) 2682 @SupportedBrowser(SupportedBrowser.SAFARI)
3011 @Unstable() 2683 @Unstable()
3012 class ForeignObjectElement extends StyledElement implements Transformable, Exter nalResourcesRequired, Tests, LangSpace { 2684 class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR equired {
3013 // To suppress missing implicit constructor warnings. 2685 // To suppress missing implicit constructor warnings.
3014 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; } 2686 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; }
3015 2687
3016 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') 2688 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
3017 @DocsEditable() 2689 @DocsEditable()
3018 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 2690 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
3019 2691
3020 /// Checks if this type is supported on the current platform. 2692 /// Checks if this type is supported on the current platform.
3021 static bool get supported => true; 2693 static bool get supported => true;
3022 2694
(...skipping 10 matching lines...) Expand all
3033 AnimatedLength get x native "SVGForeignObjectElement_x_Getter"; 2705 AnimatedLength get x native "SVGForeignObjectElement_x_Getter";
3034 2706
3035 @DomName('SVGForeignObjectElement.y') 2707 @DomName('SVGForeignObjectElement.y')
3036 @DocsEditable() 2708 @DocsEditable()
3037 AnimatedLength get y native "SVGForeignObjectElement_y_Getter"; 2709 AnimatedLength get y native "SVGForeignObjectElement_y_Getter";
3038 2710
3039 @DomName('SVGForeignObjectElement.externalResourcesRequired') 2711 @DomName('SVGForeignObjectElement.externalResourcesRequired')
3040 @DocsEditable() 2712 @DocsEditable()
3041 AnimatedBoolean get externalResourcesRequired native "SVGForeignObjectElement_ externalResourcesRequired_Getter"; 2713 AnimatedBoolean get externalResourcesRequired native "SVGForeignObjectElement_ externalResourcesRequired_Getter";
3042 2714
3043 @DomName('SVGForeignObjectElement.xmllang')
3044 @DocsEditable()
3045 String get xmllang native "SVGForeignObjectElement_xmllang_Getter";
3046
3047 @DomName('SVGForeignObjectElement.xmllang')
3048 @DocsEditable()
3049 void set xmllang(String value) native "SVGForeignObjectElement_xmllang_Setter" ;
3050
3051 @DomName('SVGForeignObjectElement.xmlspace')
3052 @DocsEditable()
3053 String get xmlspace native "SVGForeignObjectElement_xmlspace_Getter";
3054
3055 @DomName('SVGForeignObjectElement.xmlspace')
3056 @DocsEditable()
3057 void set xmlspace(String value) native "SVGForeignObjectElement_xmlspace_Sette r";
3058
3059 @DomName('SVGForeignObjectElement.farthestViewportElement')
3060 @DocsEditable()
3061 SvgElement get farthestViewportElement native "SVGForeignObjectElement_farthes tViewportElement_Getter";
3062
3063 @DomName('SVGForeignObjectElement.nearestViewportElement')
3064 @DocsEditable()
3065 SvgElement get nearestViewportElement native "SVGForeignObjectElement_nearestV iewportElement_Getter";
3066
3067 @DomName('SVGForeignObjectElement.getBBox')
3068 @DocsEditable()
3069 Rect getBBox() native "SVGForeignObjectElement_getBBox_Callback";
3070
3071 @DomName('SVGForeignObjectElement.getCTM')
3072 @DocsEditable()
3073 Matrix getCtm() native "SVGForeignObjectElement_getCTM_Callback";
3074
3075 @DomName('SVGForeignObjectElement.getScreenCTM')
3076 @DocsEditable()
3077 Matrix getScreenCtm() native "SVGForeignObjectElement_getScreenCTM_Callback";
3078
3079 @DomName('SVGForeignObjectElement.getTransformToElement')
3080 @DocsEditable()
3081 Matrix getTransformToElement(SvgElement element) native "SVGForeignObjectEleme nt_getTransformToElement_Callback";
3082
3083 @DomName('SVGForeignObjectElement.requiredExtensions')
3084 @DocsEditable()
3085 StringList get requiredExtensions native "SVGForeignObjectElement_requiredExte nsions_Getter";
3086
3087 @DomName('SVGForeignObjectElement.requiredFeatures')
3088 @DocsEditable()
3089 StringList get requiredFeatures native "SVGForeignObjectElement_requiredFeatur es_Getter";
3090
3091 @DomName('SVGForeignObjectElement.systemLanguage')
3092 @DocsEditable()
3093 StringList get systemLanguage native "SVGForeignObjectElement_systemLanguage_G etter";
3094
3095 @DomName('SVGForeignObjectElement.hasExtension')
3096 @DocsEditable()
3097 bool hasExtension(String extension) native "SVGForeignObjectElement_hasExtensi on_Callback";
3098
3099 @DomName('SVGForeignObjectElement.transform')
3100 @DocsEditable()
3101 AnimatedTransformList get transform native "SVGForeignObjectElement_transform_ Getter";
3102
3103 } 2715 }
3104 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3105 // for details. All rights reserved. Use of this source code is governed by a 2717 // for details. All rights reserved. Use of this source code is governed by a
3106 // BSD-style license that can be found in the LICENSE file. 2718 // BSD-style license that can be found in the LICENSE file.
3107 2719
3108 // WARNING: Do not edit - generated code. 2720 // WARNING: Do not edit - generated code.
3109 2721
3110 2722
3111 @DocsEditable() 2723 @DocsEditable()
3112 @DomName('SVGGElement') 2724 @DomName('SVGGElement')
3113 @Unstable() 2725 @Unstable()
3114 class GElement extends StyledElement implements Transformable, ExternalResources Required, Tests, LangSpace { 2726 class GElement extends GraphicsElement implements ExternalResourcesRequired {
3115 // To suppress missing implicit constructor warnings. 2727 // To suppress missing implicit constructor warnings.
3116 factory GElement._() { throw new UnsupportedError("Not supported"); } 2728 factory GElement._() { throw new UnsupportedError("Not supported"); }
3117 2729
3118 @DomName('SVGGElement.SVGGElement') 2730 @DomName('SVGGElement.SVGGElement')
3119 @DocsEditable() 2731 @DocsEditable()
3120 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 2732 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
3121 2733
3122 @DomName('SVGGElement.externalResourcesRequired') 2734 @DomName('SVGGElement.externalResourcesRequired')
3123 @DocsEditable() 2735 @DocsEditable()
3124 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter"; 2736 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter";
3125 2737
3126 @DomName('SVGGElement.xmllang') 2738 }
2739 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2740 // for details. All rights reserved. Use of this source code is governed by a
2741 // BSD-style license that can be found in the LICENSE file.
2742
2743 // WARNING: Do not edit - generated code.
2744
2745
2746 @DocsEditable()
2747 @DomName('SVGGraphicsElement')
2748 @Experimental() // untriaged
2749 class GraphicsElement extends StyledElement implements Tests {
2750 // To suppress missing implicit constructor warnings.
2751 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
2752
2753 @DomName('SVGGraphicsElement.farthestViewportElement')
3127 @DocsEditable() 2754 @DocsEditable()
3128 String get xmllang native "SVGGElement_xmllang_Getter"; 2755 @Experimental() // untriaged
2756 SvgElement get farthestViewportElement native "SVGGraphicsElement_farthestView portElement_Getter";
3129 2757
3130 @DomName('SVGGElement.xmllang') 2758 @DomName('SVGGraphicsElement.nearestViewportElement')
3131 @DocsEditable() 2759 @DocsEditable()
3132 void set xmllang(String value) native "SVGGElement_xmllang_Setter"; 2760 @Experimental() // untriaged
2761 SvgElement get nearestViewportElement native "SVGGraphicsElement_nearestViewpo rtElement_Getter";
3133 2762
3134 @DomName('SVGGElement.xmlspace') 2763 @DomName('SVGGraphicsElement.transform')
3135 @DocsEditable() 2764 @DocsEditable()
3136 String get xmlspace native "SVGGElement_xmlspace_Getter"; 2765 @Experimental() // untriaged
2766 AnimatedTransformList get transform native "SVGGraphicsElement_transform_Gette r";
3137 2767
3138 @DomName('SVGGElement.xmlspace') 2768 @DomName('SVGGraphicsElement.getBBox')
3139 @DocsEditable() 2769 @DocsEditable()
3140 void set xmlspace(String value) native "SVGGElement_xmlspace_Setter"; 2770 @Experimental() // untriaged
2771 Rect getBBox() native "SVGGraphicsElement_getBBox_Callback";
3141 2772
3142 @DomName('SVGGElement.farthestViewportElement') 2773 @DomName('SVGGraphicsElement.getCTM')
3143 @DocsEditable() 2774 @DocsEditable()
3144 SvgElement get farthestViewportElement native "SVGGElement_farthestViewportEle ment_Getter"; 2775 @Experimental() // untriaged
2776 Matrix getCtm() native "SVGGraphicsElement_getCTM_Callback";
3145 2777
3146 @DomName('SVGGElement.nearestViewportElement') 2778 @DomName('SVGGraphicsElement.getScreenCTM')
3147 @DocsEditable() 2779 @DocsEditable()
3148 SvgElement get nearestViewportElement native "SVGGElement_nearestViewportEleme nt_Getter"; 2780 @Experimental() // untriaged
2781 Matrix getScreenCtm() native "SVGGraphicsElement_getScreenCTM_Callback";
3149 2782
3150 @DomName('SVGGElement.getBBox') 2783 @DomName('SVGGraphicsElement.getTransformToElement')
3151 @DocsEditable() 2784 @DocsEditable()
3152 Rect getBBox() native "SVGGElement_getBBox_Callback"; 2785 @Experimental() // untriaged
2786 Matrix getTransformToElement(SvgElement element) native "SVGGraphicsElement_ge tTransformToElement_Callback";
3153 2787
3154 @DomName('SVGGElement.getCTM') 2788 @DomName('SVGGraphicsElement.requiredExtensions')
3155 @DocsEditable() 2789 @DocsEditable()
3156 Matrix getCtm() native "SVGGElement_getCTM_Callback"; 2790 @Experimental() // untriaged
2791 StringList get requiredExtensions native "SVGGraphicsElement_requiredExtension s_Getter";
3157 2792
3158 @DomName('SVGGElement.getScreenCTM') 2793 @DomName('SVGGraphicsElement.requiredFeatures')
3159 @DocsEditable() 2794 @DocsEditable()
3160 Matrix getScreenCtm() native "SVGGElement_getScreenCTM_Callback"; 2795 @Experimental() // untriaged
2796 StringList get requiredFeatures native "SVGGraphicsElement_requiredFeatures_Ge tter";
3161 2797
3162 @DomName('SVGGElement.getTransformToElement') 2798 @DomName('SVGGraphicsElement.systemLanguage')
3163 @DocsEditable() 2799 @DocsEditable()
3164 Matrix getTransformToElement(SvgElement element) native "SVGGElement_getTransf ormToElement_Callback"; 2800 @Experimental() // untriaged
2801 StringList get systemLanguage native "SVGGraphicsElement_systemLanguage_Getter ";
3165 2802
3166 @DomName('SVGGElement.requiredExtensions') 2803 @DomName('SVGGraphicsElement.hasExtension')
3167 @DocsEditable() 2804 @DocsEditable()
3168 StringList get requiredExtensions native "SVGGElement_requiredExtensions_Gette r"; 2805 @Experimental() // untriaged
3169 2806 bool hasExtension(String extension) native "SVGGraphicsElement_hasExtension_Ca llback";
3170 @DomName('SVGGElement.requiredFeatures')
3171 @DocsEditable()
3172 StringList get requiredFeatures native "SVGGElement_requiredFeatures_Getter";
3173
3174 @DomName('SVGGElement.systemLanguage')
3175 @DocsEditable()
3176 StringList get systemLanguage native "SVGGElement_systemLanguage_Getter";
3177
3178 @DomName('SVGGElement.hasExtension')
3179 @DocsEditable()
3180 bool hasExtension(String extension) native "SVGGElement_hasExtension_Callback" ;
3181
3182 @DomName('SVGGElement.transform')
3183 @DocsEditable()
3184 AnimatedTransformList get transform native "SVGGElement_transform_Getter";
3185 2807
3186 } 2808 }
3187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2809 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3188 // for details. All rights reserved. Use of this source code is governed by a 2810 // for details. All rights reserved. Use of this source code is governed by a
3189 // BSD-style license that can be found in the LICENSE file. 2811 // BSD-style license that can be found in the LICENSE file.
3190 2812
3191 // WARNING: Do not edit - generated code. 2813 // WARNING: Do not edit - generated code.
3192 2814
3193 2815
3194 @DocsEditable() 2816 @DocsEditable()
3195 @DomName('SVGImageElement') 2817 @DomName('SVGImageElement')
3196 @Unstable() 2818 @Unstable()
3197 class ImageElement extends StyledElement implements Transformable, ExternalResou rcesRequired, UriReference, Tests, LangSpace { 2819 class ImageElement extends GraphicsElement implements UriReference, ExternalReso urcesRequired {
3198 // To suppress missing implicit constructor warnings. 2820 // To suppress missing implicit constructor warnings.
3199 factory ImageElement._() { throw new UnsupportedError("Not supported"); } 2821 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
3200 2822
3201 @DomName('SVGImageElement.SVGImageElement') 2823 @DomName('SVGImageElement.SVGImageElement')
3202 @DocsEditable() 2824 @DocsEditable()
3203 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 2825 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3204 2826
3205 @DomName('SVGImageElement.height') 2827 @DomName('SVGImageElement.height')
3206 @DocsEditable() 2828 @DocsEditable()
3207 AnimatedLength get height native "SVGImageElement_height_Getter"; 2829 AnimatedLength get height native "SVGImageElement_height_Getter";
(...skipping 11 matching lines...) Expand all
3219 AnimatedLength get x native "SVGImageElement_x_Getter"; 2841 AnimatedLength get x native "SVGImageElement_x_Getter";
3220 2842
3221 @DomName('SVGImageElement.y') 2843 @DomName('SVGImageElement.y')
3222 @DocsEditable() 2844 @DocsEditable()
3223 AnimatedLength get y native "SVGImageElement_y_Getter"; 2845 AnimatedLength get y native "SVGImageElement_y_Getter";
3224 2846
3225 @DomName('SVGImageElement.externalResourcesRequired') 2847 @DomName('SVGImageElement.externalResourcesRequired')
3226 @DocsEditable() 2848 @DocsEditable()
3227 AnimatedBoolean get externalResourcesRequired native "SVGImageElement_external ResourcesRequired_Getter"; 2849 AnimatedBoolean get externalResourcesRequired native "SVGImageElement_external ResourcesRequired_Getter";
3228 2850
3229 @DomName('SVGImageElement.xmllang')
3230 @DocsEditable()
3231 String get xmllang native "SVGImageElement_xmllang_Getter";
3232
3233 @DomName('SVGImageElement.xmllang')
3234 @DocsEditable()
3235 void set xmllang(String value) native "SVGImageElement_xmllang_Setter";
3236
3237 @DomName('SVGImageElement.xmlspace')
3238 @DocsEditable()
3239 String get xmlspace native "SVGImageElement_xmlspace_Getter";
3240
3241 @DomName('SVGImageElement.xmlspace')
3242 @DocsEditable()
3243 void set xmlspace(String value) native "SVGImageElement_xmlspace_Setter";
3244
3245 @DomName('SVGImageElement.farthestViewportElement')
3246 @DocsEditable()
3247 SvgElement get farthestViewportElement native "SVGImageElement_farthestViewpor tElement_Getter";
3248
3249 @DomName('SVGImageElement.nearestViewportElement')
3250 @DocsEditable()
3251 SvgElement get nearestViewportElement native "SVGImageElement_nearestViewportE lement_Getter";
3252
3253 @DomName('SVGImageElement.getBBox')
3254 @DocsEditable()
3255 Rect getBBox() native "SVGImageElement_getBBox_Callback";
3256
3257 @DomName('SVGImageElement.getCTM')
3258 @DocsEditable()
3259 Matrix getCtm() native "SVGImageElement_getCTM_Callback";
3260
3261 @DomName('SVGImageElement.getScreenCTM')
3262 @DocsEditable()
3263 Matrix getScreenCtm() native "SVGImageElement_getScreenCTM_Callback";
3264
3265 @DomName('SVGImageElement.getTransformToElement')
3266 @DocsEditable()
3267 Matrix getTransformToElement(SvgElement element) native "SVGImageElement_getTr ansformToElement_Callback";
3268
3269 @DomName('SVGImageElement.requiredExtensions')
3270 @DocsEditable()
3271 StringList get requiredExtensions native "SVGImageElement_requiredExtensions_G etter";
3272
3273 @DomName('SVGImageElement.requiredFeatures')
3274 @DocsEditable()
3275 StringList get requiredFeatures native "SVGImageElement_requiredFeatures_Gette r";
3276
3277 @DomName('SVGImageElement.systemLanguage')
3278 @DocsEditable()
3279 StringList get systemLanguage native "SVGImageElement_systemLanguage_Getter";
3280
3281 @DomName('SVGImageElement.hasExtension')
3282 @DocsEditable()
3283 bool hasExtension(String extension) native "SVGImageElement_hasExtension_Callb ack";
3284
3285 @DomName('SVGImageElement.transform')
3286 @DocsEditable()
3287 AnimatedTransformList get transform native "SVGImageElement_transform_Getter";
3288
3289 @DomName('SVGImageElement.href') 2851 @DomName('SVGImageElement.href')
3290 @DocsEditable() 2852 @DocsEditable()
3291 AnimatedString get href native "SVGImageElement_href_Getter"; 2853 AnimatedString get href native "SVGImageElement_href_Getter";
3292 2854
3293 } 2855 }
3294 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2856 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3295 // for details. All rights reserved. Use of this source code is governed by a 2857 // for details. All rights reserved. Use of this source code is governed by a
3296 // BSD-style license that can be found in the LICENSE file. 2858 // BSD-style license that can be found in the LICENSE file.
3297 2859
3298 // WARNING: Do not edit - generated code. 2860 // WARNING: Do not edit - generated code.
3299 2861
3300 2862
3301 @DocsEditable() 2863 @DocsEditable()
3302 @DomName('SVGLangSpace')
3303 @Unstable()
3304 abstract class LangSpace extends NativeFieldWrapperClass1 {
3305
3306 /// Checks if this type is supported on the current platform.
3307 static bool supported(SvgElement element) => true;
3308
3309 @DomName('SVGLangSpace.xmllang')
3310 @DocsEditable()
3311 String get xmllang native "SVGLangSpace_xmllang_Getter";
3312
3313 @DomName('SVGLangSpace.xmllang')
3314 @DocsEditable()
3315 void set xmllang(String value) native "SVGLangSpace_xmllang_Setter";
3316
3317 @DomName('SVGLangSpace.xmlspace')
3318 @DocsEditable()
3319 String get xmlspace native "SVGLangSpace_xmlspace_Getter";
3320
3321 @DomName('SVGLangSpace.xmlspace')
3322 @DocsEditable()
3323 void set xmlspace(String value) native "SVGLangSpace_xmlspace_Setter";
3324
3325 }
3326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3327 // for details. All rights reserved. Use of this source code is governed by a
3328 // BSD-style license that can be found in the LICENSE file.
3329
3330 // WARNING: Do not edit - generated code.
3331
3332
3333 @DocsEditable()
3334 @DomName('SVGLength') 2864 @DomName('SVGLength')
3335 @Unstable() 2865 @Unstable()
3336 class Length extends NativeFieldWrapperClass1 { 2866 class Length extends NativeFieldWrapperClass1 {
3337 2867
3338 @DomName('SVGLength.SVG_LENGTHTYPE_CM') 2868 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3339 @DocsEditable() 2869 @DocsEditable()
3340 static const int SVG_LENGTHTYPE_CM = 6; 2870 static const int SVG_LENGTHTYPE_CM = 6;
3341 2871
3342 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') 2872 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3343 @DocsEditable() 2873 @DocsEditable()
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
3510 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3040 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3511 // for details. All rights reserved. Use of this source code is governed by a 3041 // for details. All rights reserved. Use of this source code is governed by a
3512 // BSD-style license that can be found in the LICENSE file. 3042 // BSD-style license that can be found in the LICENSE file.
3513 3043
3514 // WARNING: Do not edit - generated code. 3044 // WARNING: Do not edit - generated code.
3515 3045
3516 3046
3517 @DocsEditable() 3047 @DocsEditable()
3518 @DomName('SVGLineElement') 3048 @DomName('SVGLineElement')
3519 @Unstable() 3049 @Unstable()
3520 class LineElement extends StyledElement implements Transformable, ExternalResour cesRequired, Tests, LangSpace { 3050 class LineElement extends GraphicsElement implements ExternalResourcesRequired {
3521 // To suppress missing implicit constructor warnings. 3051 // To suppress missing implicit constructor warnings.
3522 factory LineElement._() { throw new UnsupportedError("Not supported"); } 3052 factory LineElement._() { throw new UnsupportedError("Not supported"); }
3523 3053
3524 @DomName('SVGLineElement.SVGLineElement') 3054 @DomName('SVGLineElement.SVGLineElement')
3525 @DocsEditable() 3055 @DocsEditable()
3526 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3056 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3527 3057
3528 @DomName('SVGLineElement.x1') 3058 @DomName('SVGLineElement.x1')
3529 @DocsEditable() 3059 @DocsEditable()
3530 AnimatedLength get x1 native "SVGLineElement_x1_Getter"; 3060 AnimatedLength get x1 native "SVGLineElement_x1_Getter";
3531 3061
3532 @DomName('SVGLineElement.x2') 3062 @DomName('SVGLineElement.x2')
3533 @DocsEditable() 3063 @DocsEditable()
3534 AnimatedLength get x2 native "SVGLineElement_x2_Getter"; 3064 AnimatedLength get x2 native "SVGLineElement_x2_Getter";
3535 3065
3536 @DomName('SVGLineElement.y1') 3066 @DomName('SVGLineElement.y1')
3537 @DocsEditable() 3067 @DocsEditable()
3538 AnimatedLength get y1 native "SVGLineElement_y1_Getter"; 3068 AnimatedLength get y1 native "SVGLineElement_y1_Getter";
3539 3069
3540 @DomName('SVGLineElement.y2') 3070 @DomName('SVGLineElement.y2')
3541 @DocsEditable() 3071 @DocsEditable()
3542 AnimatedLength get y2 native "SVGLineElement_y2_Getter"; 3072 AnimatedLength get y2 native "SVGLineElement_y2_Getter";
3543 3073
3544 @DomName('SVGLineElement.externalResourcesRequired') 3074 @DomName('SVGLineElement.externalResourcesRequired')
3545 @DocsEditable() 3075 @DocsEditable()
3546 AnimatedBoolean get externalResourcesRequired native "SVGLineElement_externalR esourcesRequired_Getter"; 3076 AnimatedBoolean get externalResourcesRequired native "SVGLineElement_externalR esourcesRequired_Getter";
3547 3077
3548 @DomName('SVGLineElement.xmllang')
3549 @DocsEditable()
3550 String get xmllang native "SVGLineElement_xmllang_Getter";
3551
3552 @DomName('SVGLineElement.xmllang')
3553 @DocsEditable()
3554 void set xmllang(String value) native "SVGLineElement_xmllang_Setter";
3555
3556 @DomName('SVGLineElement.xmlspace')
3557 @DocsEditable()
3558 String get xmlspace native "SVGLineElement_xmlspace_Getter";
3559
3560 @DomName('SVGLineElement.xmlspace')
3561 @DocsEditable()
3562 void set xmlspace(String value) native "SVGLineElement_xmlspace_Setter";
3563
3564 @DomName('SVGLineElement.farthestViewportElement')
3565 @DocsEditable()
3566 SvgElement get farthestViewportElement native "SVGLineElement_farthestViewport Element_Getter";
3567
3568 @DomName('SVGLineElement.nearestViewportElement')
3569 @DocsEditable()
3570 SvgElement get nearestViewportElement native "SVGLineElement_nearestViewportEl ement_Getter";
3571
3572 @DomName('SVGLineElement.getBBox')
3573 @DocsEditable()
3574 Rect getBBox() native "SVGLineElement_getBBox_Callback";
3575
3576 @DomName('SVGLineElement.getCTM')
3577 @DocsEditable()
3578 Matrix getCtm() native "SVGLineElement_getCTM_Callback";
3579
3580 @DomName('SVGLineElement.getScreenCTM')
3581 @DocsEditable()
3582 Matrix getScreenCtm() native "SVGLineElement_getScreenCTM_Callback";
3583
3584 @DomName('SVGLineElement.getTransformToElement')
3585 @DocsEditable()
3586 Matrix getTransformToElement(SvgElement element) native "SVGLineElement_getTra nsformToElement_Callback";
3587
3588 @DomName('SVGLineElement.requiredExtensions')
3589 @DocsEditable()
3590 StringList get requiredExtensions native "SVGLineElement_requiredExtensions_Ge tter";
3591
3592 @DomName('SVGLineElement.requiredFeatures')
3593 @DocsEditable()
3594 StringList get requiredFeatures native "SVGLineElement_requiredFeatures_Getter ";
3595
3596 @DomName('SVGLineElement.systemLanguage')
3597 @DocsEditable()
3598 StringList get systemLanguage native "SVGLineElement_systemLanguage_Getter";
3599
3600 @DomName('SVGLineElement.hasExtension')
3601 @DocsEditable()
3602 bool hasExtension(String extension) native "SVGLineElement_hasExtension_Callba ck";
3603
3604 @DomName('SVGLineElement.transform')
3605 @DocsEditable()
3606 AnimatedTransformList get transform native "SVGLineElement_transform_Getter";
3607
3608 } 3078 }
3609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3079 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3610 // for details. All rights reserved. Use of this source code is governed by a 3080 // for details. All rights reserved. Use of this source code is governed by a
3611 // BSD-style license that can be found in the LICENSE file. 3081 // BSD-style license that can be found in the LICENSE file.
3612 3082
3613 // WARNING: Do not edit - generated code. 3083 // WARNING: Do not edit - generated code.
3614 3084
3615 3085
3616 @DocsEditable() 3086 @DocsEditable()
3617 @DomName('SVGLinearGradientElement') 3087 @DomName('SVGLinearGradientElement')
(...skipping 24 matching lines...) Expand all
3642 3112
3643 } 3113 }
3644 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3114 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3645 // for details. All rights reserved. Use of this source code is governed by a 3115 // for details. All rights reserved. Use of this source code is governed by a
3646 // BSD-style license that can be found in the LICENSE file. 3116 // BSD-style license that can be found in the LICENSE file.
3647 3117
3648 // WARNING: Do not edit - generated code. 3118 // WARNING: Do not edit - generated code.
3649 3119
3650 3120
3651 @DocsEditable() 3121 @DocsEditable()
3652 @DomName('SVGLocatable')
3653 @Unstable()
3654 abstract class Locatable extends NativeFieldWrapperClass1 {
3655
3656 @DomName('SVGLocatable.farthestViewportElement')
3657 @DocsEditable()
3658 SvgElement get farthestViewportElement native "SVGLocatable_farthestViewportEl ement_Getter";
3659
3660 @DomName('SVGLocatable.nearestViewportElement')
3661 @DocsEditable()
3662 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter";
3663
3664 @DomName('SVGLocatable.getBBox')
3665 @DocsEditable()
3666 Rect getBBox() native "SVGLocatable_getBBox_Callback";
3667
3668 @DomName('SVGLocatable.getCTM')
3669 @DocsEditable()
3670 Matrix getCtm() native "SVGLocatable_getCTM_Callback";
3671
3672 @DomName('SVGLocatable.getScreenCTM')
3673 @DocsEditable()
3674 Matrix getScreenCtm() native "SVGLocatable_getScreenCTM_Callback";
3675
3676 @DomName('SVGLocatable.getTransformToElement')
3677 @DocsEditable()
3678 Matrix getTransformToElement(SvgElement element) native "SVGLocatable_getTrans formToElement_Callback";
3679
3680 }
3681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3682 // for details. All rights reserved. Use of this source code is governed by a
3683 // BSD-style license that can be found in the LICENSE file.
3684
3685 // WARNING: Do not edit - generated code.
3686
3687
3688 @DocsEditable()
3689 @DomName('SVGMarkerElement') 3122 @DomName('SVGMarkerElement')
3690 @Unstable() 3123 @Unstable()
3691 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace { 3124 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired {
3692 // To suppress missing implicit constructor warnings. 3125 // To suppress missing implicit constructor warnings.
3693 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } 3126 factory MarkerElement._() { throw new UnsupportedError("Not supported"); }
3694 3127
3695 @DomName('SVGMarkerElement.SVGMarkerElement') 3128 @DomName('SVGMarkerElement.SVGMarkerElement')
3696 @DocsEditable() 3129 @DocsEditable()
3697 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3130 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3698 3131
3699 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') 3132 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
3700 @DocsEditable() 3133 @DocsEditable()
3701 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3134 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
3761 AnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_externa lResourcesRequired_Getter"; 3194 AnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_externa lResourcesRequired_Getter";
3762 3195
3763 @DomName('SVGMarkerElement.preserveAspectRatio') 3196 @DomName('SVGMarkerElement.preserveAspectRatio')
3764 @DocsEditable() 3197 @DocsEditable()
3765 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElement_p reserveAspectRatio_Getter"; 3198 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElement_p reserveAspectRatio_Getter";
3766 3199
3767 @DomName('SVGMarkerElement.viewBox') 3200 @DomName('SVGMarkerElement.viewBox')
3768 @DocsEditable() 3201 @DocsEditable()
3769 AnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter"; 3202 AnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter";
3770 3203
3771 @DomName('SVGMarkerElement.xmllang')
3772 @DocsEditable()
3773 String get xmllang native "SVGMarkerElement_xmllang_Getter";
3774
3775 @DomName('SVGMarkerElement.xmllang')
3776 @DocsEditable()
3777 void set xmllang(String value) native "SVGMarkerElement_xmllang_Setter";
3778
3779 @DomName('SVGMarkerElement.xmlspace')
3780 @DocsEditable()
3781 String get xmlspace native "SVGMarkerElement_xmlspace_Getter";
3782
3783 @DomName('SVGMarkerElement.xmlspace')
3784 @DocsEditable()
3785 void set xmlspace(String value) native "SVGMarkerElement_xmlspace_Setter";
3786
3787 } 3204 }
3788 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3205 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3789 // for details. All rights reserved. Use of this source code is governed by a 3206 // for details. All rights reserved. Use of this source code is governed by a
3790 // BSD-style license that can be found in the LICENSE file. 3207 // BSD-style license that can be found in the LICENSE file.
3791 3208
3792 // WARNING: Do not edit - generated code. 3209 // WARNING: Do not edit - generated code.
3793 3210
3794 3211
3795 @DocsEditable() 3212 @DocsEditable()
3796 @DomName('SVGMaskElement') 3213 @DomName('SVGMaskElement')
3797 @Unstable() 3214 @Unstable()
3798 class MaskElement extends StyledElement implements ExternalResourcesRequired, Te sts, LangSpace { 3215 class MaskElement extends StyledElement implements ExternalResourcesRequired, Te sts {
3799 // To suppress missing implicit constructor warnings. 3216 // To suppress missing implicit constructor warnings.
3800 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3217 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3801 3218
3802 @DomName('SVGMaskElement.SVGMaskElement') 3219 @DomName('SVGMaskElement.SVGMaskElement')
3803 @DocsEditable() 3220 @DocsEditable()
3804 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3221 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3805 3222
3806 @DomName('SVGMaskElement.height') 3223 @DomName('SVGMaskElement.height')
3807 @DocsEditable() 3224 @DocsEditable()
3808 AnimatedLength get height native "SVGMaskElement_height_Getter"; 3225 AnimatedLength get height native "SVGMaskElement_height_Getter";
(...skipping 15 matching lines...) Expand all
3824 AnimatedLength get x native "SVGMaskElement_x_Getter"; 3241 AnimatedLength get x native "SVGMaskElement_x_Getter";
3825 3242
3826 @DomName('SVGMaskElement.y') 3243 @DomName('SVGMaskElement.y')
3827 @DocsEditable() 3244 @DocsEditable()
3828 AnimatedLength get y native "SVGMaskElement_y_Getter"; 3245 AnimatedLength get y native "SVGMaskElement_y_Getter";
3829 3246
3830 @DomName('SVGMaskElement.externalResourcesRequired') 3247 @DomName('SVGMaskElement.externalResourcesRequired')
3831 @DocsEditable() 3248 @DocsEditable()
3832 AnimatedBoolean get externalResourcesRequired native "SVGMaskElement_externalR esourcesRequired_Getter"; 3249 AnimatedBoolean get externalResourcesRequired native "SVGMaskElement_externalR esourcesRequired_Getter";
3833 3250
3834 @DomName('SVGMaskElement.xmllang')
3835 @DocsEditable()
3836 String get xmllang native "SVGMaskElement_xmllang_Getter";
3837
3838 @DomName('SVGMaskElement.xmllang')
3839 @DocsEditable()
3840 void set xmllang(String value) native "SVGMaskElement_xmllang_Setter";
3841
3842 @DomName('SVGMaskElement.xmlspace')
3843 @DocsEditable()
3844 String get xmlspace native "SVGMaskElement_xmlspace_Getter";
3845
3846 @DomName('SVGMaskElement.xmlspace')
3847 @DocsEditable()
3848 void set xmlspace(String value) native "SVGMaskElement_xmlspace_Setter";
3849
3850 @DomName('SVGMaskElement.requiredExtensions') 3251 @DomName('SVGMaskElement.requiredExtensions')
3851 @DocsEditable() 3252 @DocsEditable()
3852 StringList get requiredExtensions native "SVGMaskElement_requiredExtensions_Ge tter"; 3253 StringList get requiredExtensions native "SVGMaskElement_requiredExtensions_Ge tter";
3853 3254
3854 @DomName('SVGMaskElement.requiredFeatures') 3255 @DomName('SVGMaskElement.requiredFeatures')
3855 @DocsEditable() 3256 @DocsEditable()
3856 StringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Getter "; 3257 StringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Getter ";
3857 3258
3858 @DomName('SVGMaskElement.systemLanguage') 3259 @DomName('SVGMaskElement.systemLanguage')
3859 @DocsEditable() 3260 @DocsEditable()
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
4099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4100 // for details. All rights reserved. Use of this source code is governed by a 3501 // for details. All rights reserved. Use of this source code is governed by a
4101 // BSD-style license that can be found in the LICENSE file. 3502 // BSD-style license that can be found in the LICENSE file.
4102 3503
4103 // WARNING: Do not edit - generated code. 3504 // WARNING: Do not edit - generated code.
4104 3505
4105 3506
4106 @DocsEditable() 3507 @DocsEditable()
4107 @DomName('SVGPathElement') 3508 @DomName('SVGPathElement')
4108 @Unstable() 3509 @Unstable()
4109 class PathElement extends StyledElement implements Transformable, ExternalResour cesRequired, Tests, LangSpace { 3510 class PathElement extends GraphicsElement implements ExternalResourcesRequired {
4110 // To suppress missing implicit constructor warnings. 3511 // To suppress missing implicit constructor warnings.
4111 factory PathElement._() { throw new UnsupportedError("Not supported"); } 3512 factory PathElement._() { throw new UnsupportedError("Not supported"); }
4112 3513
4113 @DomName('SVGPathElement.SVGPathElement') 3514 @DomName('SVGPathElement.SVGPathElement')
4114 @DocsEditable() 3515 @DocsEditable()
4115 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 3516 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
4116 3517
4117 @DomName('SVGPathElement.animatedNormalizedPathSegList') 3518 @DomName('SVGPathElement.animatedNormalizedPathSegList')
4118 @DocsEditable() 3519 @DocsEditable()
4119 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter"; 3520 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter";
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
4219 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C allback"; 3620 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C allback";
4220 3621
4221 @DomName('SVGPathElement.getTotalLength') 3622 @DomName('SVGPathElement.getTotalLength')
4222 @DocsEditable() 3623 @DocsEditable()
4223 num getTotalLength() native "SVGPathElement_getTotalLength_Callback"; 3624 num getTotalLength() native "SVGPathElement_getTotalLength_Callback";
4224 3625
4225 @DomName('SVGPathElement.externalResourcesRequired') 3626 @DomName('SVGPathElement.externalResourcesRequired')
4226 @DocsEditable() 3627 @DocsEditable()
4227 AnimatedBoolean get externalResourcesRequired native "SVGPathElement_externalR esourcesRequired_Getter"; 3628 AnimatedBoolean get externalResourcesRequired native "SVGPathElement_externalR esourcesRequired_Getter";
4228 3629
4229 @DomName('SVGPathElement.xmllang')
4230 @DocsEditable()
4231 String get xmllang native "SVGPathElement_xmllang_Getter";
4232
4233 @DomName('SVGPathElement.xmllang')
4234 @DocsEditable()
4235 void set xmllang(String value) native "SVGPathElement_xmllang_Setter";
4236
4237 @DomName('SVGPathElement.xmlspace')
4238 @DocsEditable()
4239 String get xmlspace native "SVGPathElement_xmlspace_Getter";
4240
4241 @DomName('SVGPathElement.xmlspace')
4242 @DocsEditable()
4243 void set xmlspace(String value) native "SVGPathElement_xmlspace_Setter";
4244
4245 @DomName('SVGPathElement.farthestViewportElement')
4246 @DocsEditable()
4247 SvgElement get farthestViewportElement native "SVGPathElement_farthestViewport Element_Getter";
4248
4249 @DomName('SVGPathElement.nearestViewportElement')
4250 @DocsEditable()
4251 SvgElement get nearestViewportElement native "SVGPathElement_nearestViewportEl ement_Getter";
4252
4253 @DomName('SVGPathElement.getBBox')
4254 @DocsEditable()
4255 Rect getBBox() native "SVGPathElement_getBBox_Callback";
4256
4257 @DomName('SVGPathElement.getCTM')
4258 @DocsEditable()
4259 Matrix getCtm() native "SVGPathElement_getCTM_Callback";
4260
4261 @DomName('SVGPathElement.getScreenCTM')
4262 @DocsEditable()
4263 Matrix getScreenCtm() native "SVGPathElement_getScreenCTM_Callback";
4264
4265 @DomName('SVGPathElement.getTransformToElement')
4266 @DocsEditable()
4267 Matrix getTransformToElement(SvgElement element) native "SVGPathElement_getTra nsformToElement_Callback";
4268
4269 @DomName('SVGPathElement.requiredExtensions')
4270 @DocsEditable()
4271 StringList get requiredExtensions native "SVGPathElement_requiredExtensions_Ge tter";
4272
4273 @DomName('SVGPathElement.requiredFeatures')
4274 @DocsEditable()
4275 StringList get requiredFeatures native "SVGPathElement_requiredFeatures_Getter ";
4276
4277 @DomName('SVGPathElement.systemLanguage')
4278 @DocsEditable()
4279 StringList get systemLanguage native "SVGPathElement_systemLanguage_Getter";
4280
4281 @DomName('SVGPathElement.hasExtension')
4282 @DocsEditable()
4283 bool hasExtension(String extension) native "SVGPathElement_hasExtension_Callba ck";
4284
4285 @DomName('SVGPathElement.transform')
4286 @DocsEditable()
4287 AnimatedTransformList get transform native "SVGPathElement_transform_Getter";
4288
4289 } 3630 }
4290 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3631 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4291 // for details. All rights reserved. Use of this source code is governed by a 3632 // for details. All rights reserved. Use of this source code is governed by a
4292 // BSD-style license that can be found in the LICENSE file. 3633 // BSD-style license that can be found in the LICENSE file.
4293 3634
4294 // WARNING: Do not edit - generated code. 3635 // WARNING: Do not edit - generated code.
4295 3636
4296 3637
4297 @DocsEditable() 3638 @DocsEditable()
4298 @DomName('SVGPathSeg') 3639 @DomName('SVGPathSeg')
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
5231 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4572 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5232 // for details. All rights reserved. Use of this source code is governed by a 4573 // for details. All rights reserved. Use of this source code is governed by a
5233 // BSD-style license that can be found in the LICENSE file. 4574 // BSD-style license that can be found in the LICENSE file.
5234 4575
5235 // WARNING: Do not edit - generated code. 4576 // WARNING: Do not edit - generated code.
5236 4577
5237 4578
5238 @DocsEditable() 4579 @DocsEditable()
5239 @DomName('SVGPatternElement') 4580 @DomName('SVGPatternElement')
5240 @Unstable() 4581 @Unstable()
5241 class PatternElement extends StyledElement implements FitToViewBox, UriReference , ExternalResourcesRequired, Tests, LangSpace { 4582 class PatternElement extends StyledElement implements FitToViewBox, UriReference , ExternalResourcesRequired, Tests {
5242 // To suppress missing implicit constructor warnings. 4583 // To suppress missing implicit constructor warnings.
5243 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 4584 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
5244 4585
5245 @DomName('SVGPatternElement.SVGPatternElement') 4586 @DomName('SVGPatternElement.SVGPatternElement')
5246 @DocsEditable() 4587 @DocsEditable()
5247 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 4588 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
5248 4589
5249 @DomName('SVGPatternElement.height') 4590 @DomName('SVGPatternElement.height')
5250 @DocsEditable() 4591 @DocsEditable()
5251 AnimatedLength get height native "SVGPatternElement_height_Getter"; 4592 AnimatedLength get height native "SVGPatternElement_height_Getter";
(...skipping 27 matching lines...) Expand all
5279 AnimatedBoolean get externalResourcesRequired native "SVGPatternElement_extern alResourcesRequired_Getter"; 4620 AnimatedBoolean get externalResourcesRequired native "SVGPatternElement_extern alResourcesRequired_Getter";
5280 4621
5281 @DomName('SVGPatternElement.preserveAspectRatio') 4622 @DomName('SVGPatternElement.preserveAspectRatio')
5282 @DocsEditable() 4623 @DocsEditable()
5283 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternElement_ preserveAspectRatio_Getter"; 4624 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternElement_ preserveAspectRatio_Getter";
5284 4625
5285 @DomName('SVGPatternElement.viewBox') 4626 @DomName('SVGPatternElement.viewBox')
5286 @DocsEditable() 4627 @DocsEditable()
5287 AnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter"; 4628 AnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter";
5288 4629
5289 @DomName('SVGPatternElement.xmllang')
5290 @DocsEditable()
5291 String get xmllang native "SVGPatternElement_xmllang_Getter";
5292
5293 @DomName('SVGPatternElement.xmllang')
5294 @DocsEditable()
5295 void set xmllang(String value) native "SVGPatternElement_xmllang_Setter";
5296
5297 @DomName('SVGPatternElement.xmlspace')
5298 @DocsEditable()
5299 String get xmlspace native "SVGPatternElement_xmlspace_Getter";
5300
5301 @DomName('SVGPatternElement.xmlspace')
5302 @DocsEditable()
5303 void set xmlspace(String value) native "SVGPatternElement_xmlspace_Setter";
5304
5305 @DomName('SVGPatternElement.requiredExtensions') 4630 @DomName('SVGPatternElement.requiredExtensions')
5306 @DocsEditable() 4631 @DocsEditable()
5307 StringList get requiredExtensions native "SVGPatternElement_requiredExtensions _Getter"; 4632 StringList get requiredExtensions native "SVGPatternElement_requiredExtensions _Getter";
5308 4633
5309 @DomName('SVGPatternElement.requiredFeatures') 4634 @DomName('SVGPatternElement.requiredFeatures')
5310 @DocsEditable() 4635 @DocsEditable()
5311 StringList get requiredFeatures native "SVGPatternElement_requiredFeatures_Get ter"; 4636 StringList get requiredFeatures native "SVGPatternElement_requiredFeatures_Get ter";
5312 4637
5313 @DomName('SVGPatternElement.systemLanguage') 4638 @DomName('SVGPatternElement.systemLanguage')
5314 @DocsEditable() 4639 @DocsEditable()
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
5404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5405 // for details. All rights reserved. Use of this source code is governed by a 4730 // for details. All rights reserved. Use of this source code is governed by a
5406 // BSD-style license that can be found in the LICENSE file. 4731 // BSD-style license that can be found in the LICENSE file.
5407 4732
5408 // WARNING: Do not edit - generated code. 4733 // WARNING: Do not edit - generated code.
5409 4734
5410 4735
5411 @DocsEditable() 4736 @DocsEditable()
5412 @DomName('SVGPolygonElement') 4737 @DomName('SVGPolygonElement')
5413 @Unstable() 4738 @Unstable()
5414 class PolygonElement extends StyledElement implements Transformable, ExternalRes ourcesRequired, Tests, LangSpace { 4739 class PolygonElement extends GraphicsElement implements ExternalResourcesRequire d {
5415 // To suppress missing implicit constructor warnings. 4740 // To suppress missing implicit constructor warnings.
5416 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } 4741 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
5417 4742
5418 @DomName('SVGPolygonElement.SVGPolygonElement') 4743 @DomName('SVGPolygonElement.SVGPolygonElement')
5419 @DocsEditable() 4744 @DocsEditable()
5420 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 4745 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
5421 4746
5422 @DomName('SVGPolygonElement.animatedPoints') 4747 @DomName('SVGPolygonElement.animatedPoints')
5423 @DocsEditable() 4748 @DocsEditable()
5424 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter"; 4749 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter";
5425 4750
5426 @DomName('SVGPolygonElement.points') 4751 @DomName('SVGPolygonElement.points')
5427 @DocsEditable() 4752 @DocsEditable()
5428 PointList get points native "SVGPolygonElement_points_Getter"; 4753 PointList get points native "SVGPolygonElement_points_Getter";
5429 4754
5430 @DomName('SVGPolygonElement.externalResourcesRequired') 4755 @DomName('SVGPolygonElement.externalResourcesRequired')
5431 @DocsEditable() 4756 @DocsEditable()
5432 AnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_extern alResourcesRequired_Getter"; 4757 AnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_extern alResourcesRequired_Getter";
5433 4758
5434 @DomName('SVGPolygonElement.xmllang')
5435 @DocsEditable()
5436 String get xmllang native "SVGPolygonElement_xmllang_Getter";
5437
5438 @DomName('SVGPolygonElement.xmllang')
5439 @DocsEditable()
5440 void set xmllang(String value) native "SVGPolygonElement_xmllang_Setter";
5441
5442 @DomName('SVGPolygonElement.xmlspace')
5443 @DocsEditable()
5444 String get xmlspace native "SVGPolygonElement_xmlspace_Getter";
5445
5446 @DomName('SVGPolygonElement.xmlspace')
5447 @DocsEditable()
5448 void set xmlspace(String value) native "SVGPolygonElement_xmlspace_Setter";
5449
5450 @DomName('SVGPolygonElement.farthestViewportElement')
5451 @DocsEditable()
5452 SvgElement get farthestViewportElement native "SVGPolygonElement_farthestViewp ortElement_Getter";
5453
5454 @DomName('SVGPolygonElement.nearestViewportElement')
5455 @DocsEditable()
5456 SvgElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor tElement_Getter";
5457
5458 @DomName('SVGPolygonElement.getBBox')
5459 @DocsEditable()
5460 Rect getBBox() native "SVGPolygonElement_getBBox_Callback";
5461
5462 @DomName('SVGPolygonElement.getCTM')
5463 @DocsEditable()
5464 Matrix getCtm() native "SVGPolygonElement_getCTM_Callback";
5465
5466 @DomName('SVGPolygonElement.getScreenCTM')
5467 @DocsEditable()
5468 Matrix getScreenCtm() native "SVGPolygonElement_getScreenCTM_Callback";
5469
5470 @DomName('SVGPolygonElement.getTransformToElement')
5471 @DocsEditable()
5472 Matrix getTransformToElement(SvgElement element) native "SVGPolygonElement_get TransformToElement_Callback";
5473
5474 @DomName('SVGPolygonElement.requiredExtensions')
5475 @DocsEditable()
5476 StringList get requiredExtensions native "SVGPolygonElement_requiredExtensions _Getter";
5477
5478 @DomName('SVGPolygonElement.requiredFeatures')
5479 @DocsEditable()
5480 StringList get requiredFeatures native "SVGPolygonElement_requiredFeatures_Get ter";
5481
5482 @DomName('SVGPolygonElement.systemLanguage')
5483 @DocsEditable()
5484 StringList get systemLanguage native "SVGPolygonElement_systemLanguage_Getter" ;
5485
5486 @DomName('SVGPolygonElement.hasExtension')
5487 @DocsEditable()
5488 bool hasExtension(String extension) native "SVGPolygonElement_hasExtension_Cal lback";
5489
5490 @DomName('SVGPolygonElement.transform')
5491 @DocsEditable()
5492 AnimatedTransformList get transform native "SVGPolygonElement_transform_Getter ";
5493
5494 } 4759 }
5495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5496 // for details. All rights reserved. Use of this source code is governed by a 4761 // for details. All rights reserved. Use of this source code is governed by a
5497 // BSD-style license that can be found in the LICENSE file. 4762 // BSD-style license that can be found in the LICENSE file.
5498 4763
5499 // WARNING: Do not edit - generated code. 4764 // WARNING: Do not edit - generated code.
5500 4765
5501 4766
5502 @DocsEditable() 4767 @DocsEditable()
5503 @DomName('SVGPolylineElement') 4768 @DomName('SVGPolylineElement')
5504 @Unstable() 4769 @Unstable()
5505 class PolylineElement extends StyledElement implements Transformable, ExternalRe sourcesRequired, Tests, LangSpace { 4770 class PolylineElement extends GraphicsElement implements ExternalResourcesRequir ed {
5506 // To suppress missing implicit constructor warnings. 4771 // To suppress missing implicit constructor warnings.
5507 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } 4772 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
5508 4773
5509 @DomName('SVGPolylineElement.SVGPolylineElement') 4774 @DomName('SVGPolylineElement.SVGPolylineElement')
5510 @DocsEditable() 4775 @DocsEditable()
5511 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 4776 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
5512 4777
5513 @DomName('SVGPolylineElement.animatedPoints') 4778 @DomName('SVGPolylineElement.animatedPoints')
5514 @DocsEditable() 4779 @DocsEditable()
5515 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ; 4780 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ;
5516 4781
5517 @DomName('SVGPolylineElement.points') 4782 @DomName('SVGPolylineElement.points')
5518 @DocsEditable() 4783 @DocsEditable()
5519 PointList get points native "SVGPolylineElement_points_Getter"; 4784 PointList get points native "SVGPolylineElement_points_Getter";
5520 4785
5521 @DomName('SVGPolylineElement.externalResourcesRequired') 4786 @DomName('SVGPolylineElement.externalResourcesRequired')
5522 @DocsEditable() 4787 @DocsEditable()
5523 AnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_exter nalResourcesRequired_Getter"; 4788 AnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_exter nalResourcesRequired_Getter";
5524 4789
5525 @DomName('SVGPolylineElement.xmllang')
5526 @DocsEditable()
5527 String get xmllang native "SVGPolylineElement_xmllang_Getter";
5528
5529 @DomName('SVGPolylineElement.xmllang')
5530 @DocsEditable()
5531 void set xmllang(String value) native "SVGPolylineElement_xmllang_Setter";
5532
5533 @DomName('SVGPolylineElement.xmlspace')
5534 @DocsEditable()
5535 String get xmlspace native "SVGPolylineElement_xmlspace_Getter";
5536
5537 @DomName('SVGPolylineElement.xmlspace')
5538 @DocsEditable()
5539 void set xmlspace(String value) native "SVGPolylineElement_xmlspace_Setter";
5540
5541 @DomName('SVGPolylineElement.farthestViewportElement')
5542 @DocsEditable()
5543 SvgElement get farthestViewportElement native "SVGPolylineElement_farthestView portElement_Getter";
5544
5545 @DomName('SVGPolylineElement.nearestViewportElement')
5546 @DocsEditable()
5547 SvgElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo rtElement_Getter";
5548
5549 @DomName('SVGPolylineElement.getBBox')
5550 @DocsEditable()
5551 Rect getBBox() native "SVGPolylineElement_getBBox_Callback";
5552
5553 @DomName('SVGPolylineElement.getCTM')
5554 @DocsEditable()
5555 Matrix getCtm() native "SVGPolylineElement_getCTM_Callback";
5556
5557 @DomName('SVGPolylineElement.getScreenCTM')
5558 @DocsEditable()
5559 Matrix getScreenCtm() native "SVGPolylineElement_getScreenCTM_Callback";
5560
5561 @DomName('SVGPolylineElement.getTransformToElement')
5562 @DocsEditable()
5563 Matrix getTransformToElement(SvgElement element) native "SVGPolylineElement_ge tTransformToElement_Callback";
5564
5565 @DomName('SVGPolylineElement.requiredExtensions')
5566 @DocsEditable()
5567 StringList get requiredExtensions native "SVGPolylineElement_requiredExtension s_Getter";
5568
5569 @DomName('SVGPolylineElement.requiredFeatures')
5570 @DocsEditable()
5571 StringList get requiredFeatures native "SVGPolylineElement_requiredFeatures_Ge tter";
5572
5573 @DomName('SVGPolylineElement.systemLanguage')
5574 @DocsEditable()
5575 StringList get systemLanguage native "SVGPolylineElement_systemLanguage_Getter ";
5576
5577 @DomName('SVGPolylineElement.hasExtension')
5578 @DocsEditable()
5579 bool hasExtension(String extension) native "SVGPolylineElement_hasExtension_Ca llback";
5580
5581 @DomName('SVGPolylineElement.transform')
5582 @DocsEditable()
5583 AnimatedTransformList get transform native "SVGPolylineElement_transform_Gette r";
5584
5585 } 4790 }
5586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4791 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5587 // for details. All rights reserved. Use of this source code is governed by a 4792 // for details. All rights reserved. Use of this source code is governed by a
5588 // BSD-style license that can be found in the LICENSE file. 4793 // BSD-style license that can be found in the LICENSE file.
5589 4794
5590 // WARNING: Do not edit - generated code. 4795 // WARNING: Do not edit - generated code.
5591 4796
5592 4797
5593 @DocsEditable() 4798 @DocsEditable()
5594 @DomName('SVGPreserveAspectRatio') 4799 @DomName('SVGPreserveAspectRatio')
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
5759 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4964 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5760 // for details. All rights reserved. Use of this source code is governed by a 4965 // for details. All rights reserved. Use of this source code is governed by a
5761 // BSD-style license that can be found in the LICENSE file. 4966 // BSD-style license that can be found in the LICENSE file.
5762 4967
5763 // WARNING: Do not edit - generated code. 4968 // WARNING: Do not edit - generated code.
5764 4969
5765 4970
5766 @DocsEditable() 4971 @DocsEditable()
5767 @DomName('SVGRectElement') 4972 @DomName('SVGRectElement')
5768 @Unstable() 4973 @Unstable()
5769 class RectElement extends StyledElement implements Transformable, ExternalResour cesRequired, Tests, LangSpace { 4974 class RectElement extends GraphicsElement implements ExternalResourcesRequired {
5770 // To suppress missing implicit constructor warnings. 4975 // To suppress missing implicit constructor warnings.
5771 factory RectElement._() { throw new UnsupportedError("Not supported"); } 4976 factory RectElement._() { throw new UnsupportedError("Not supported"); }
5772 4977
5773 @DomName('SVGRectElement.SVGRectElement') 4978 @DomName('SVGRectElement.SVGRectElement')
5774 @DocsEditable() 4979 @DocsEditable()
5775 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 4980 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5776 4981
5777 @DomName('SVGRectElement.height') 4982 @DomName('SVGRectElement.height')
5778 @DocsEditable() 4983 @DocsEditable()
5779 AnimatedLength get height native "SVGRectElement_height_Getter"; 4984 AnimatedLength get height native "SVGRectElement_height_Getter";
(...skipping 15 matching lines...) Expand all
5795 AnimatedLength get x native "SVGRectElement_x_Getter"; 5000 AnimatedLength get x native "SVGRectElement_x_Getter";
5796 5001
5797 @DomName('SVGRectElement.y') 5002 @DomName('SVGRectElement.y')
5798 @DocsEditable() 5003 @DocsEditable()
5799 AnimatedLength get y native "SVGRectElement_y_Getter"; 5004 AnimatedLength get y native "SVGRectElement_y_Getter";
5800 5005
5801 @DomName('SVGRectElement.externalResourcesRequired') 5006 @DomName('SVGRectElement.externalResourcesRequired')
5802 @DocsEditable() 5007 @DocsEditable()
5803 AnimatedBoolean get externalResourcesRequired native "SVGRectElement_externalR esourcesRequired_Getter"; 5008 AnimatedBoolean get externalResourcesRequired native "SVGRectElement_externalR esourcesRequired_Getter";
5804 5009
5805 @DomName('SVGRectElement.xmllang')
5806 @DocsEditable()
5807 String get xmllang native "SVGRectElement_xmllang_Getter";
5808
5809 @DomName('SVGRectElement.xmllang')
5810 @DocsEditable()
5811 void set xmllang(String value) native "SVGRectElement_xmllang_Setter";
5812
5813 @DomName('SVGRectElement.xmlspace')
5814 @DocsEditable()
5815 String get xmlspace native "SVGRectElement_xmlspace_Getter";
5816
5817 @DomName('SVGRectElement.xmlspace')
5818 @DocsEditable()
5819 void set xmlspace(String value) native "SVGRectElement_xmlspace_Setter";
5820
5821 @DomName('SVGRectElement.farthestViewportElement')
5822 @DocsEditable()
5823 SvgElement get farthestViewportElement native "SVGRectElement_farthestViewport Element_Getter";
5824
5825 @DomName('SVGRectElement.nearestViewportElement')
5826 @DocsEditable()
5827 SvgElement get nearestViewportElement native "SVGRectElement_nearestViewportEl ement_Getter";
5828
5829 @DomName('SVGRectElement.getBBox')
5830 @DocsEditable()
5831 Rect getBBox() native "SVGRectElement_getBBox_Callback";
5832
5833 @DomName('SVGRectElement.getCTM')
5834 @DocsEditable()
5835 Matrix getCtm() native "SVGRectElement_getCTM_Callback";
5836
5837 @DomName('SVGRectElement.getScreenCTM')
5838 @DocsEditable()
5839 Matrix getScreenCtm() native "SVGRectElement_getScreenCTM_Callback";
5840
5841 @DomName('SVGRectElement.getTransformToElement')
5842 @DocsEditable()
5843 Matrix getTransformToElement(SvgElement element) native "SVGRectElement_getTra nsformToElement_Callback";
5844
5845 @DomName('SVGRectElement.requiredExtensions')
5846 @DocsEditable()
5847 StringList get requiredExtensions native "SVGRectElement_requiredExtensions_Ge tter";
5848
5849 @DomName('SVGRectElement.requiredFeatures')
5850 @DocsEditable()
5851 StringList get requiredFeatures native "SVGRectElement_requiredFeatures_Getter ";
5852
5853 @DomName('SVGRectElement.systemLanguage')
5854 @DocsEditable()
5855 StringList get systemLanguage native "SVGRectElement_systemLanguage_Getter";
5856
5857 @DomName('SVGRectElement.hasExtension')
5858 @DocsEditable()
5859 bool hasExtension(String extension) native "SVGRectElement_hasExtension_Callba ck";
5860
5861 @DomName('SVGRectElement.transform')
5862 @DocsEditable()
5863 AnimatedTransformList get transform native "SVGRectElement_transform_Getter";
5864
5865 } 5010 }
5866 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5867 // for details. All rights reserved. Use of this source code is governed by a 5012 // for details. All rights reserved. Use of this source code is governed by a
5868 // BSD-style license that can be found in the LICENSE file. 5013 // BSD-style license that can be found in the LICENSE file.
5869 5014
5870 // WARNING: Do not edit - generated code. 5015 // WARNING: Do not edit - generated code.
5871 5016
5872 5017
5873 @DocsEditable() 5018 @DocsEditable()
5874 @DomName('SVGRenderingIntent') 5019 @DomName('SVGRenderingIntent')
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
6078 // for details. All rights reserved. Use of this source code is governed by a 5223 // for details. All rights reserved. Use of this source code is governed by a
6079 // BSD-style license that can be found in the LICENSE file. 5224 // BSD-style license that can be found in the LICENSE file.
6080 5225
6081 // WARNING: Do not edit - generated code. 5226 // WARNING: Do not edit - generated code.
6082 5227
6083 5228
6084 @DocsEditable() 5229 @DocsEditable()
6085 @DomName('SVGStyleElement') 5230 @DomName('SVGStyleElement')
6086 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 5231 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
6087 @Experimental() // nonstandard 5232 @Experimental() // nonstandard
6088 class StyleElement extends SvgElement implements LangSpace { 5233 class StyleElement extends SvgElement {
6089 // To suppress missing implicit constructor warnings. 5234 // To suppress missing implicit constructor warnings.
6090 factory StyleElement._() { throw new UnsupportedError("Not supported"); } 5235 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
6091 5236
6092 @DomName('SVGStyleElement.SVGStyleElement') 5237 @DomName('SVGStyleElement.SVGStyleElement')
6093 @DocsEditable() 5238 @DocsEditable()
6094 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 5239 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
6095 5240
6096 @DomName('SVGStyleElement.disabled') 5241 @DomName('SVGStyleElement.disabled')
6097 @DocsEditable() 5242 @DocsEditable()
6098 bool get disabled native "SVGStyleElement_disabled_Getter"; 5243 bool get disabled native "SVGStyleElement_disabled_Getter";
(...skipping 19 matching lines...) Expand all
6118 void set title(String value) native "SVGStyleElement_title_Setter"; 5263 void set title(String value) native "SVGStyleElement_title_Setter";
6119 5264
6120 @DomName('SVGStyleElement.type') 5265 @DomName('SVGStyleElement.type')
6121 @DocsEditable() 5266 @DocsEditable()
6122 String get type native "SVGStyleElement_type_Getter"; 5267 String get type native "SVGStyleElement_type_Getter";
6123 5268
6124 @DomName('SVGStyleElement.type') 5269 @DomName('SVGStyleElement.type')
6125 @DocsEditable() 5270 @DocsEditable()
6126 void set type(String value) native "SVGStyleElement_type_Setter"; 5271 void set type(String value) native "SVGStyleElement_type_Setter";
6127 5272
6128 @DomName('SVGStyleElement.xmllang')
6129 @DocsEditable()
6130 String get xmllang native "SVGStyleElement_xmllang_Getter";
6131
6132 @DomName('SVGStyleElement.xmllang')
6133 @DocsEditable()
6134 void set xmllang(String value) native "SVGStyleElement_xmllang_Setter";
6135
6136 @DomName('SVGStyleElement.xmlspace')
6137 @DocsEditable()
6138 String get xmlspace native "SVGStyleElement_xmlspace_Getter";
6139
6140 @DomName('SVGStyleElement.xmlspace')
6141 @DocsEditable()
6142 void set xmlspace(String value) native "SVGStyleElement_xmlspace_Setter";
6143
6144 } 5273 }
6145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6146 // for details. All rights reserved. Use of this source code is governed by a 5275 // for details. All rights reserved. Use of this source code is governed by a
6147 // BSD-style license that can be found in the LICENSE file. 5276 // BSD-style license that can be found in the LICENSE file.
6148 5277
6149 // WARNING: Do not edit - generated code. 5278 // WARNING: Do not edit - generated code.
6150 5279
6151 5280
6152 @DocsEditable() 5281 @DocsEditable()
6153 @DomName('SVGStyledElement') 5282 @DomName('SVGStyledElement')
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
6320 SvgElement get viewportElement native "SVGElement_viewportElement_Getter"; 5449 SvgElement get viewportElement native "SVGElement_viewportElement_Getter";
6321 5450
6322 @DomName('SVGElement.xmlbase') 5451 @DomName('SVGElement.xmlbase')
6323 @DocsEditable() 5452 @DocsEditable()
6324 String get xmlbase native "SVGElement_xmlbase_Getter"; 5453 String get xmlbase native "SVGElement_xmlbase_Getter";
6325 5454
6326 @DomName('SVGElement.xmlbase') 5455 @DomName('SVGElement.xmlbase')
6327 @DocsEditable() 5456 @DocsEditable()
6328 void set xmlbase(String value) native "SVGElement_xmlbase_Setter"; 5457 void set xmlbase(String value) native "SVGElement_xmlbase_Setter";
6329 5458
5459 @DomName('SVGElement.xmllang')
5460 @DocsEditable()
5461 @Experimental() // untriaged
5462 String get xmllang native "SVGElement_xmllang_Getter";
5463
5464 @DomName('SVGElement.xmllang')
5465 @DocsEditable()
5466 @Experimental() // untriaged
5467 void set xmllang(String value) native "SVGElement_xmllang_Setter";
5468
5469 @DomName('SVGElement.xmlspace')
5470 @DocsEditable()
5471 @Experimental() // untriaged
5472 String get xmlspace native "SVGElement_xmlspace_Getter";
5473
5474 @DomName('SVGElement.xmlspace')
5475 @DocsEditable()
5476 @Experimental() // untriaged
5477 void set xmlspace(String value) native "SVGElement_xmlspace_Setter";
5478
6330 } 5479 }
6331 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6332 // for details. All rights reserved. Use of this source code is governed by a 5481 // for details. All rights reserved. Use of this source code is governed by a
6333 // BSD-style license that can be found in the LICENSE file. 5482 // BSD-style license that can be found in the LICENSE file.
6334 5483
6335 5484
6336 @DomName('SVGSVGElement') 5485 @DomName('SVGSVGElement')
6337 @Unstable() 5486 @Unstable()
6338 class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable , Tests, ExternalResourcesRequired, ZoomAndPan, LangSpace { 5487 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan {
6339 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ; 5488 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ;
6340 5489
6341 // To suppress missing implicit constructor warnings. 5490 // To suppress missing implicit constructor warnings.
6342 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 5491 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
6343 5492
6344 @DomName('SVGSVGElement.contentScriptType') 5493 @DomName('SVGSVGElement.contentScriptType')
6345 @DocsEditable() 5494 @DocsEditable()
6346 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter"; 5495 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter";
6347 5496
6348 @DomName('SVGSVGElement.contentScriptType') 5497 @DomName('SVGSVGElement.contentScriptType')
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
6510 AnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externalRe sourcesRequired_Getter"; 5659 AnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externalRe sourcesRequired_Getter";
6511 5660
6512 @DomName('SVGSVGElement.preserveAspectRatio') 5661 @DomName('SVGSVGElement.preserveAspectRatio')
6513 @DocsEditable() 5662 @DocsEditable()
6514 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_pres erveAspectRatio_Getter"; 5663 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_pres erveAspectRatio_Getter";
6515 5664
6516 @DomName('SVGSVGElement.viewBox') 5665 @DomName('SVGSVGElement.viewBox')
6517 @DocsEditable() 5666 @DocsEditable()
6518 AnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter"; 5667 AnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter";
6519 5668
6520 @DomName('SVGSVGElement.xmllang')
6521 @DocsEditable()
6522 String get xmllang native "SVGSVGElement_xmllang_Getter";
6523
6524 @DomName('SVGSVGElement.xmllang')
6525 @DocsEditable()
6526 void set xmllang(String value) native "SVGSVGElement_xmllang_Setter";
6527
6528 @DomName('SVGSVGElement.xmlspace')
6529 @DocsEditable()
6530 String get xmlspace native "SVGSVGElement_xmlspace_Getter";
6531
6532 @DomName('SVGSVGElement.xmlspace')
6533 @DocsEditable()
6534 void set xmlspace(String value) native "SVGSVGElement_xmlspace_Setter";
6535
6536 @DomName('SVGSVGElement.farthestViewportElement')
6537 @DocsEditable()
6538 SvgElement get farthestViewportElement native "SVGSVGElement_farthestViewportE lement_Getter";
6539
6540 @DomName('SVGSVGElement.nearestViewportElement')
6541 @DocsEditable()
6542 SvgElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle ment_Getter";
6543
6544 @DomName('SVGSVGElement.getBBox')
6545 @DocsEditable()
6546 Rect getBBox() native "SVGSVGElement_getBBox_Callback";
6547
6548 @DomName('SVGSVGElement.getCTM')
6549 @DocsEditable()
6550 Matrix getCtm() native "SVGSVGElement_getCTM_Callback";
6551
6552 @DomName('SVGSVGElement.getScreenCTM')
6553 @DocsEditable()
6554 Matrix getScreenCtm() native "SVGSVGElement_getScreenCTM_Callback";
6555
6556 @DomName('SVGSVGElement.getTransformToElement')
6557 @DocsEditable()
6558 Matrix getTransformToElement(SvgElement element) native "SVGSVGElement_getTran sformToElement_Callback";
6559
6560 @DomName('SVGSVGElement.requiredExtensions')
6561 @DocsEditable()
6562 StringList get requiredExtensions native "SVGSVGElement_requiredExtensions_Get ter";
6563
6564 @DomName('SVGSVGElement.requiredFeatures')
6565 @DocsEditable()
6566 StringList get requiredFeatures native "SVGSVGElement_requiredFeatures_Getter" ;
6567
6568 @DomName('SVGSVGElement.systemLanguage')
6569 @DocsEditable()
6570 StringList get systemLanguage native "SVGSVGElement_systemLanguage_Getter";
6571
6572 @DomName('SVGSVGElement.hasExtension')
6573 @DocsEditable()
6574 bool hasExtension(String extension) native "SVGSVGElement_hasExtension_Callbac k";
6575
6576 @DomName('SVGSVGElement.transform')
6577 @DocsEditable()
6578 AnimatedTransformList get transform native "SVGSVGElement_transform_Getter";
6579
6580 @DomName('SVGSVGElement.zoomAndPan') 5669 @DomName('SVGSVGElement.zoomAndPan')
6581 @DocsEditable() 5670 @DocsEditable()
6582 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter"; 5671 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter";
6583 5672
6584 @DomName('SVGSVGElement.zoomAndPan') 5673 @DomName('SVGSVGElement.zoomAndPan')
6585 @DocsEditable() 5674 @DocsEditable()
6586 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter"; 5675 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter";
6587 5676
6588 } 5677 }
6589 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6590 // for details. All rights reserved. Use of this source code is governed by a 5679 // for details. All rights reserved. Use of this source code is governed by a
6591 // BSD-style license that can be found in the LICENSE file. 5680 // BSD-style license that can be found in the LICENSE file.
6592 5681
6593 // WARNING: Do not edit - generated code. 5682 // WARNING: Do not edit - generated code.
6594 5683
6595 5684
6596 @DocsEditable() 5685 @DocsEditable()
6597 @DomName('SVGSwitchElement') 5686 @DomName('SVGSwitchElement')
6598 @Unstable() 5687 @Unstable()
6599 class SwitchElement extends StyledElement implements Transformable, ExternalReso urcesRequired, Tests, LangSpace { 5688 class SwitchElement extends GraphicsElement implements ExternalResourcesRequired {
6600 // To suppress missing implicit constructor warnings. 5689 // To suppress missing implicit constructor warnings.
6601 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } 5690 factory SwitchElement._() { throw new UnsupportedError("Not supported"); }
6602 5691
6603 @DomName('SVGSwitchElement.SVGSwitchElement') 5692 @DomName('SVGSwitchElement.SVGSwitchElement')
6604 @DocsEditable() 5693 @DocsEditable()
6605 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 5694 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
6606 5695
6607 @DomName('SVGSwitchElement.externalResourcesRequired') 5696 @DomName('SVGSwitchElement.externalResourcesRequired')
6608 @DocsEditable() 5697 @DocsEditable()
6609 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter"; 5698 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter";
6610 5699
6611 @DomName('SVGSwitchElement.xmllang')
6612 @DocsEditable()
6613 String get xmllang native "SVGSwitchElement_xmllang_Getter";
6614
6615 @DomName('SVGSwitchElement.xmllang')
6616 @DocsEditable()
6617 void set xmllang(String value) native "SVGSwitchElement_xmllang_Setter";
6618
6619 @DomName('SVGSwitchElement.xmlspace')
6620 @DocsEditable()
6621 String get xmlspace native "SVGSwitchElement_xmlspace_Getter";
6622
6623 @DomName('SVGSwitchElement.xmlspace')
6624 @DocsEditable()
6625 void set xmlspace(String value) native "SVGSwitchElement_xmlspace_Setter";
6626
6627 @DomName('SVGSwitchElement.farthestViewportElement')
6628 @DocsEditable()
6629 SvgElement get farthestViewportElement native "SVGSwitchElement_farthestViewpo rtElement_Getter";
6630
6631 @DomName('SVGSwitchElement.nearestViewportElement')
6632 @DocsEditable()
6633 SvgElement get nearestViewportElement native "SVGSwitchElement_nearestViewport Element_Getter";
6634
6635 @DomName('SVGSwitchElement.getBBox')
6636 @DocsEditable()
6637 Rect getBBox() native "SVGSwitchElement_getBBox_Callback";
6638
6639 @DomName('SVGSwitchElement.getCTM')
6640 @DocsEditable()
6641 Matrix getCtm() native "SVGSwitchElement_getCTM_Callback";
6642
6643 @DomName('SVGSwitchElement.getScreenCTM')
6644 @DocsEditable()
6645 Matrix getScreenCtm() native "SVGSwitchElement_getScreenCTM_Callback";
6646
6647 @DomName('SVGSwitchElement.getTransformToElement')
6648 @DocsEditable()
6649 Matrix getTransformToElement(SvgElement element) native "SVGSwitchElement_getT ransformToElement_Callback";
6650
6651 @DomName('SVGSwitchElement.requiredExtensions')
6652 @DocsEditable()
6653 StringList get requiredExtensions native "SVGSwitchElement_requiredExtensions_ Getter";
6654
6655 @DomName('SVGSwitchElement.requiredFeatures')
6656 @DocsEditable()
6657 StringList get requiredFeatures native "SVGSwitchElement_requiredFeatures_Gett er";
6658
6659 @DomName('SVGSwitchElement.systemLanguage')
6660 @DocsEditable()
6661 StringList get systemLanguage native "SVGSwitchElement_systemLanguage_Getter";
6662
6663 @DomName('SVGSwitchElement.hasExtension')
6664 @DocsEditable()
6665 bool hasExtension(String extension) native "SVGSwitchElement_hasExtension_Call back";
6666
6667 @DomName('SVGSwitchElement.transform')
6668 @DocsEditable()
6669 AnimatedTransformList get transform native "SVGSwitchElement_transform_Getter" ;
6670
6671 } 5700 }
6672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6673 // for details. All rights reserved. Use of this source code is governed by a 5702 // for details. All rights reserved. Use of this source code is governed by a
6674 // BSD-style license that can be found in the LICENSE file. 5703 // BSD-style license that can be found in the LICENSE file.
6675 5704
6676 // WARNING: Do not edit - generated code. 5705 // WARNING: Do not edit - generated code.
6677 5706
6678 5707
6679 @DocsEditable() 5708 @DocsEditable()
6680 @DomName('SVGSymbolElement') 5709 @DomName('SVGSymbolElement')
6681 @Unstable() 5710 @Unstable()
6682 class SymbolElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace { 5711 class SymbolElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired {
6683 // To suppress missing implicit constructor warnings. 5712 // To suppress missing implicit constructor warnings.
6684 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } 5713 factory SymbolElement._() { throw new UnsupportedError("Not supported"); }
6685 5714
6686 @DomName('SVGSymbolElement.SVGSymbolElement') 5715 @DomName('SVGSymbolElement.SVGSymbolElement')
6687 @DocsEditable() 5716 @DocsEditable()
6688 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 5717 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6689 5718
6690 @DomName('SVGSymbolElement.externalResourcesRequired') 5719 @DomName('SVGSymbolElement.externalResourcesRequired')
6691 @DocsEditable() 5720 @DocsEditable()
6692 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter"; 5721 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter";
6693 5722
6694 @DomName('SVGSymbolElement.preserveAspectRatio') 5723 @DomName('SVGSymbolElement.preserveAspectRatio')
6695 @DocsEditable() 5724 @DocsEditable()
6696 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p reserveAspectRatio_Getter"; 5725 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p reserveAspectRatio_Getter";
6697 5726
6698 @DomName('SVGSymbolElement.viewBox') 5727 @DomName('SVGSymbolElement.viewBox')
6699 @DocsEditable() 5728 @DocsEditable()
6700 AnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter"; 5729 AnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter";
6701 5730
6702 @DomName('SVGSymbolElement.xmllang')
6703 @DocsEditable()
6704 String get xmllang native "SVGSymbolElement_xmllang_Getter";
6705
6706 @DomName('SVGSymbolElement.xmllang')
6707 @DocsEditable()
6708 void set xmllang(String value) native "SVGSymbolElement_xmllang_Setter";
6709
6710 @DomName('SVGSymbolElement.xmlspace')
6711 @DocsEditable()
6712 String get xmlspace native "SVGSymbolElement_xmlspace_Getter";
6713
6714 @DomName('SVGSymbolElement.xmlspace')
6715 @DocsEditable()
6716 void set xmlspace(String value) native "SVGSymbolElement_xmlspace_Setter";
6717
6718 } 5731 }
6719 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5732 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6720 // for details. All rights reserved. Use of this source code is governed by a 5733 // for details. All rights reserved. Use of this source code is governed by a
6721 // BSD-style license that can be found in the LICENSE file. 5734 // BSD-style license that can be found in the LICENSE file.
6722 5735
6723 // WARNING: Do not edit - generated code. 5736 // WARNING: Do not edit - generated code.
6724 5737
6725 5738
6726 @DocsEditable() 5739 @DocsEditable()
6727 @DomName('SVGTSpanElement') 5740 @DomName('SVGTSpanElement')
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
6767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5780 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6768 // for details. All rights reserved. Use of this source code is governed by a 5781 // for details. All rights reserved. Use of this source code is governed by a
6769 // BSD-style license that can be found in the LICENSE file. 5782 // BSD-style license that can be found in the LICENSE file.
6770 5783
6771 // WARNING: Do not edit - generated code. 5784 // WARNING: Do not edit - generated code.
6772 5785
6773 5786
6774 @DocsEditable() 5787 @DocsEditable()
6775 @DomName('SVGTextContentElement') 5788 @DomName('SVGTextContentElement')
6776 @Unstable() 5789 @Unstable()
6777 class TextContentElement extends StyledElement implements ExternalResourcesRequi red, Tests, LangSpace { 5790 class TextContentElement extends GraphicsElement implements ExternalResourcesReq uired {
6778 // To suppress missing implicit constructor warnings. 5791 // To suppress missing implicit constructor warnings.
6779 factory TextContentElement._() { throw new UnsupportedError("Not supported"); } 5792 factory TextContentElement._() { throw new UnsupportedError("Not supported"); }
6780 5793
6781 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') 5794 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
6782 @DocsEditable() 5795 @DocsEditable()
6783 static const int LENGTHADJUST_SPACING = 1; 5796 static const int LENGTHADJUST_SPACING = 1;
6784 5797
6785 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 5798 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
6786 @DocsEditable() 5799 @DocsEditable()
6787 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 5800 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
6831 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g etSubStringLength_Callback"; 5844 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g etSubStringLength_Callback";
6832 5845
6833 @DomName('SVGTextContentElement.selectSubString') 5846 @DomName('SVGTextContentElement.selectSubString')
6834 @DocsEditable() 5847 @DocsEditable()
6835 void selectSubString(int offset, int length) native "SVGTextContentElement_sel ectSubString_Callback"; 5848 void selectSubString(int offset, int length) native "SVGTextContentElement_sel ectSubString_Callback";
6836 5849
6837 @DomName('SVGTextContentElement.externalResourcesRequired') 5850 @DomName('SVGTextContentElement.externalResourcesRequired')
6838 @DocsEditable() 5851 @DocsEditable()
6839 AnimatedBoolean get externalResourcesRequired native "SVGTextContentElement_ex ternalResourcesRequired_Getter"; 5852 AnimatedBoolean get externalResourcesRequired native "SVGTextContentElement_ex ternalResourcesRequired_Getter";
6840 5853
6841 @DomName('SVGTextContentElement.xmllang')
6842 @DocsEditable()
6843 String get xmllang native "SVGTextContentElement_xmllang_Getter";
6844
6845 @DomName('SVGTextContentElement.xmllang')
6846 @DocsEditable()
6847 void set xmllang(String value) native "SVGTextContentElement_xmllang_Setter";
6848
6849 @DomName('SVGTextContentElement.xmlspace')
6850 @DocsEditable()
6851 String get xmlspace native "SVGTextContentElement_xmlspace_Getter";
6852
6853 @DomName('SVGTextContentElement.xmlspace')
6854 @DocsEditable()
6855 void set xmlspace(String value) native "SVGTextContentElement_xmlspace_Setter" ;
6856
6857 @DomName('SVGTextContentElement.requiredExtensions')
6858 @DocsEditable()
6859 StringList get requiredExtensions native "SVGTextContentElement_requiredExtens ions_Getter";
6860
6861 @DomName('SVGTextContentElement.requiredFeatures')
6862 @DocsEditable()
6863 StringList get requiredFeatures native "SVGTextContentElement_requiredFeatures _Getter";
6864
6865 @DomName('SVGTextContentElement.systemLanguage')
6866 @DocsEditable()
6867 StringList get systemLanguage native "SVGTextContentElement_systemLanguage_Get ter";
6868
6869 @DomName('SVGTextContentElement.hasExtension')
6870 @DocsEditable()
6871 bool hasExtension(String extension) native "SVGTextContentElement_hasExtension _Callback";
6872
6873 } 5854 }
6874 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5855 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6875 // for details. All rights reserved. Use of this source code is governed by a 5856 // for details. All rights reserved. Use of this source code is governed by a
6876 // BSD-style license that can be found in the LICENSE file. 5857 // BSD-style license that can be found in the LICENSE file.
6877 5858
6878 // WARNING: Do not edit - generated code. 5859 // WARNING: Do not edit - generated code.
6879 5860
6880 5861
6881 @DocsEditable() 5862 @DocsEditable()
6882 @DomName('SVGTextElement') 5863 @DomName('SVGTextElement')
6883 @Unstable() 5864 @Unstable()
6884 class TextElement extends TextPositioningElement implements Transformable { 5865 class TextElement extends TextPositioningElement {
6885 // To suppress missing implicit constructor warnings. 5866 // To suppress missing implicit constructor warnings.
6886 factory TextElement._() { throw new UnsupportedError("Not supported"); } 5867 factory TextElement._() { throw new UnsupportedError("Not supported"); }
6887 5868
6888 @DomName('SVGTextElement.SVGTextElement') 5869 @DomName('SVGTextElement.SVGTextElement')
6889 @DocsEditable() 5870 @DocsEditable()
6890 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 5871 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
6891 5872
6892 @DomName('SVGTextElement.farthestViewportElement')
6893 @DocsEditable()
6894 SvgElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter";
6895
6896 @DomName('SVGTextElement.nearestViewportElement')
6897 @DocsEditable()
6898 SvgElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter";
6899
6900 @DomName('SVGTextElement.getBBox')
6901 @DocsEditable()
6902 Rect getBBox() native "SVGTextElement_getBBox_Callback";
6903
6904 @DomName('SVGTextElement.getCTM')
6905 @DocsEditable()
6906 Matrix getCtm() native "SVGTextElement_getCTM_Callback";
6907
6908 @DomName('SVGTextElement.getScreenCTM')
6909 @DocsEditable()
6910 Matrix getScreenCtm() native "SVGTextElement_getScreenCTM_Callback";
6911
6912 @DomName('SVGTextElement.getTransformToElement')
6913 @DocsEditable()
6914 Matrix getTransformToElement(SvgElement element) native "SVGTextElement_getTra nsformToElement_Callback";
6915
6916 @DomName('SVGTextElement.transform')
6917 @DocsEditable()
6918 AnimatedTransformList get transform native "SVGTextElement_transform_Getter";
6919
6920 } 5873 }
6921 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5874 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6922 // for details. All rights reserved. Use of this source code is governed by a 5875 // for details. All rights reserved. Use of this source code is governed by a
6923 // BSD-style license that can be found in the LICENSE file. 5876 // BSD-style license that can be found in the LICENSE file.
6924 5877
6925 // WARNING: Do not edit - generated code. 5878 // WARNING: Do not edit - generated code.
6926 5879
6927 5880
6928 @DocsEditable() 5881 @DocsEditable()
6929 @DomName('SVGTextPathElement') 5882 @DomName('SVGTextPathElement')
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
7011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5964 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7012 // for details. All rights reserved. Use of this source code is governed by a 5965 // for details. All rights reserved. Use of this source code is governed by a
7013 // BSD-style license that can be found in the LICENSE file. 5966 // BSD-style license that can be found in the LICENSE file.
7014 5967
7015 // WARNING: Do not edit - generated code. 5968 // WARNING: Do not edit - generated code.
7016 5969
7017 5970
7018 @DocsEditable() 5971 @DocsEditable()
7019 @DomName('SVGTitleElement') 5972 @DomName('SVGTitleElement')
7020 @Unstable() 5973 @Unstable()
7021 class TitleElement extends StyledElement implements LangSpace { 5974 class TitleElement extends StyledElement {
7022 // To suppress missing implicit constructor warnings. 5975 // To suppress missing implicit constructor warnings.
7023 factory TitleElement._() { throw new UnsupportedError("Not supported"); } 5976 factory TitleElement._() { throw new UnsupportedError("Not supported"); }
7024 5977
7025 @DomName('SVGTitleElement.SVGTitleElement') 5978 @DomName('SVGTitleElement.SVGTitleElement')
7026 @DocsEditable() 5979 @DocsEditable()
7027 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 5980 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
7028 5981
7029 @DomName('SVGTitleElement.xmllang')
7030 @DocsEditable()
7031 String get xmllang native "SVGTitleElement_xmllang_Getter";
7032
7033 @DomName('SVGTitleElement.xmllang')
7034 @DocsEditable()
7035 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter";
7036
7037 @DomName('SVGTitleElement.xmlspace')
7038 @DocsEditable()
7039 String get xmlspace native "SVGTitleElement_xmlspace_Getter";
7040
7041 @DomName('SVGTitleElement.xmlspace')
7042 @DocsEditable()
7043 void set xmlspace(String value) native "SVGTitleElement_xmlspace_Setter";
7044
7045 } 5982 }
7046 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7047 // for details. All rights reserved. Use of this source code is governed by a 5984 // for details. All rights reserved. Use of this source code is governed by a
7048 // BSD-style license that can be found in the LICENSE file. 5985 // BSD-style license that can be found in the LICENSE file.
7049 5986
7050 // WARNING: Do not edit - generated code. 5987 // WARNING: Do not edit - generated code.
7051 5988
7052 5989
7053 @DocsEditable() 5990 @DocsEditable()
7054 @DomName('SVGTransform') 5991 @DomName('SVGTransform')
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
7220 6157
7221 } 6158 }
7222 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7223 // for details. All rights reserved. Use of this source code is governed by a 6160 // for details. All rights reserved. Use of this source code is governed by a
7224 // BSD-style license that can be found in the LICENSE file. 6161 // BSD-style license that can be found in the LICENSE file.
7225 6162
7226 // WARNING: Do not edit - generated code. 6163 // WARNING: Do not edit - generated code.
7227 6164
7228 6165
7229 @DocsEditable() 6166 @DocsEditable()
7230 @DomName('SVGTransformable')
7231 @Unstable()
7232 abstract class Transformable extends NativeFieldWrapperClass1 implements Locatab le {
7233
7234 @DomName('SVGTransformable.transform')
7235 @DocsEditable()
7236 AnimatedTransformList get transform native "SVGTransformable_transform_Getter" ;
7237
7238 @DomName('SVGTransformable.farthestViewportElement')
7239 @DocsEditable()
7240 SvgElement get farthestViewportElement native "SVGTransformable_farthestViewpo rtElement_Getter";
7241
7242 @DomName('SVGTransformable.nearestViewportElement')
7243 @DocsEditable()
7244 SvgElement get nearestViewportElement native "SVGTransformable_nearestViewport Element_Getter";
7245
7246 @DomName('SVGTransformable.getBBox')
7247 @DocsEditable()
7248 Rect getBBox() native "SVGTransformable_getBBox_Callback";
7249
7250 @DomName('SVGTransformable.getCTM')
7251 @DocsEditable()
7252 Matrix getCtm() native "SVGTransformable_getCTM_Callback";
7253
7254 @DomName('SVGTransformable.getScreenCTM')
7255 @DocsEditable()
7256 Matrix getScreenCtm() native "SVGTransformable_getScreenCTM_Callback";
7257
7258 @DomName('SVGTransformable.getTransformToElement')
7259 @DocsEditable()
7260 Matrix getTransformToElement(SvgElement element) native "SVGTransformable_getT ransformToElement_Callback";
7261
7262 }
7263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7264 // for details. All rights reserved. Use of this source code is governed by a
7265 // BSD-style license that can be found in the LICENSE file.
7266
7267 // WARNING: Do not edit - generated code.
7268
7269
7270 @DocsEditable()
7271 @DomName('SVGUnitTypes') 6167 @DomName('SVGUnitTypes')
7272 @Unstable() 6168 @Unstable()
7273 class UnitTypes extends NativeFieldWrapperClass1 { 6169 class UnitTypes extends NativeFieldWrapperClass1 {
7274 6170
7275 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') 6171 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
7276 @DocsEditable() 6172 @DocsEditable()
7277 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 6173 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
7278 6174
7279 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') 6175 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
7280 @DocsEditable() 6176 @DocsEditable()
(...skipping 24 matching lines...) Expand all
7305 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7306 // for details. All rights reserved. Use of this source code is governed by a 6202 // for details. All rights reserved. Use of this source code is governed by a
7307 // BSD-style license that can be found in the LICENSE file. 6203 // BSD-style license that can be found in the LICENSE file.
7308 6204
7309 // WARNING: Do not edit - generated code. 6205 // WARNING: Do not edit - generated code.
7310 6206
7311 6207
7312 @DocsEditable() 6208 @DocsEditable()
7313 @DomName('SVGUseElement') 6209 @DomName('SVGUseElement')
7314 @Unstable() 6210 @Unstable()
7315 class UseElement extends StyledElement implements Transformable, ExternalResourc esRequired, UriReference, Tests, LangSpace { 6211 class UseElement extends GraphicsElement implements UriReference, ExternalResour cesRequired, Tests {
7316 // To suppress missing implicit constructor warnings. 6212 // To suppress missing implicit constructor warnings.
7317 factory UseElement._() { throw new UnsupportedError("Not supported"); } 6213 factory UseElement._() { throw new UnsupportedError("Not supported"); }
7318 6214
7319 @DomName('SVGUseElement.SVGUseElement') 6215 @DomName('SVGUseElement.SVGUseElement')
7320 @DocsEditable() 6216 @DocsEditable()
7321 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 6217 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
7322 6218
7323 @DomName('SVGUseElement.animatedInstanceRoot') 6219 @DomName('SVGUseElement.animatedInstanceRoot')
7324 @DocsEditable() 6220 @DocsEditable()
7325 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter"; 6221 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter";
(...skipping 15 matching lines...) Expand all
7341 AnimatedLength get x native "SVGUseElement_x_Getter"; 6237 AnimatedLength get x native "SVGUseElement_x_Getter";
7342 6238
7343 @DomName('SVGUseElement.y') 6239 @DomName('SVGUseElement.y')
7344 @DocsEditable() 6240 @DocsEditable()
7345 AnimatedLength get y native "SVGUseElement_y_Getter"; 6241 AnimatedLength get y native "SVGUseElement_y_Getter";
7346 6242
7347 @DomName('SVGUseElement.externalResourcesRequired') 6243 @DomName('SVGUseElement.externalResourcesRequired')
7348 @DocsEditable() 6244 @DocsEditable()
7349 AnimatedBoolean get externalResourcesRequired native "SVGUseElement_externalRe sourcesRequired_Getter"; 6245 AnimatedBoolean get externalResourcesRequired native "SVGUseElement_externalRe sourcesRequired_Getter";
7350 6246
7351 @DomName('SVGUseElement.xmllang')
7352 @DocsEditable()
7353 String get xmllang native "SVGUseElement_xmllang_Getter";
7354
7355 @DomName('SVGUseElement.xmllang')
7356 @DocsEditable()
7357 void set xmllang(String value) native "SVGUseElement_xmllang_Setter";
7358
7359 @DomName('SVGUseElement.xmlspace')
7360 @DocsEditable()
7361 String get xmlspace native "SVGUseElement_xmlspace_Getter";
7362
7363 @DomName('SVGUseElement.xmlspace')
7364 @DocsEditable()
7365 void set xmlspace(String value) native "SVGUseElement_xmlspace_Setter";
7366
7367 @DomName('SVGUseElement.farthestViewportElement')
7368 @DocsEditable()
7369 SvgElement get farthestViewportElement native "SVGUseElement_farthestViewportE lement_Getter";
7370
7371 @DomName('SVGUseElement.nearestViewportElement')
7372 @DocsEditable()
7373 SvgElement get nearestViewportElement native "SVGUseElement_nearestViewportEle ment_Getter";
7374
7375 @DomName('SVGUseElement.getBBox')
7376 @DocsEditable()
7377 Rect getBBox() native "SVGUseElement_getBBox_Callback";
7378
7379 @DomName('SVGUseElement.getCTM')
7380 @DocsEditable()
7381 Matrix getCtm() native "SVGUseElement_getCTM_Callback";
7382
7383 @DomName('SVGUseElement.getScreenCTM')
7384 @DocsEditable()
7385 Matrix getScreenCtm() native "SVGUseElement_getScreenCTM_Callback";
7386
7387 @DomName('SVGUseElement.getTransformToElement')
7388 @DocsEditable()
7389 Matrix getTransformToElement(SvgElement element) native "SVGUseElement_getTran sformToElement_Callback";
7390
7391 @DomName('SVGUseElement.requiredExtensions') 6247 @DomName('SVGUseElement.requiredExtensions')
7392 @DocsEditable() 6248 @DocsEditable()
7393 StringList get requiredExtensions native "SVGUseElement_requiredExtensions_Get ter"; 6249 StringList get requiredExtensions native "SVGUseElement_requiredExtensions_Get ter";
7394 6250
7395 @DomName('SVGUseElement.requiredFeatures') 6251 @DomName('SVGUseElement.requiredFeatures')
7396 @DocsEditable() 6252 @DocsEditable()
7397 StringList get requiredFeatures native "SVGUseElement_requiredFeatures_Getter" ; 6253 StringList get requiredFeatures native "SVGUseElement_requiredFeatures_Getter" ;
7398 6254
7399 @DomName('SVGUseElement.systemLanguage') 6255 @DomName('SVGUseElement.systemLanguage')
7400 @DocsEditable() 6256 @DocsEditable()
7401 StringList get systemLanguage native "SVGUseElement_systemLanguage_Getter"; 6257 StringList get systemLanguage native "SVGUseElement_systemLanguage_Getter";
7402 6258
7403 @DomName('SVGUseElement.hasExtension') 6259 @DomName('SVGUseElement.hasExtension')
7404 @DocsEditable() 6260 @DocsEditable()
7405 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac k"; 6261 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac k";
7406 6262
7407 @DomName('SVGUseElement.transform')
7408 @DocsEditable()
7409 AnimatedTransformList get transform native "SVGUseElement_transform_Getter";
7410
7411 @DomName('SVGUseElement.href') 6263 @DomName('SVGUseElement.href')
7412 @DocsEditable() 6264 @DocsEditable()
7413 AnimatedString get href native "SVGUseElement_href_Getter"; 6265 AnimatedString get href native "SVGUseElement_href_Getter";
7414 6266
7415 } 6267 }
7416 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6268 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7417 // for details. All rights reserved. Use of this source code is governed by a 6269 // for details. All rights reserved. Use of this source code is governed by a
7418 // BSD-style license that can be found in the LICENSE file. 6270 // BSD-style license that can be found in the LICENSE file.
7419 6271
7420 // WARNING: Do not edit - generated code. 6272 // WARNING: Do not edit - generated code.
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
8030 @Unstable() 6882 @Unstable()
8031 abstract class _SVGVKernElement extends SvgElement { 6883 abstract class _SVGVKernElement extends SvgElement {
8032 // To suppress missing implicit constructor warnings. 6884 // To suppress missing implicit constructor warnings.
8033 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } 6885 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
8034 6886
8035 @DomName('SVGVKernElement.SVGVKernElement') 6887 @DomName('SVGVKernElement.SVGVKernElement')
8036 @DocsEditable() 6888 @DocsEditable()
8037 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6889 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8038 6890
8039 } 6891 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698