OLD | NEW |
1 /** | 1 /** |
2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
4 * | 4 * |
5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
6 * refer to the | 6 * refer to the |
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
8 */ | 8 */ |
9 library dart.dom.svg; | 9 library dart.dom.svg; |
10 | 10 |
11 import 'dart:async'; | 11 import 'dart:async'; |
12 import 'dart:collection'; | 12 import 'dart:collection'; |
13 import 'dart:_internal'; | 13 import 'dart:_internal'; |
14 import 'dart:html'; | 14 import 'dart:html'; |
15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
16 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
17 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
18 import 'dart:js' as js; | 18 import 'dart:js' as js; |
19 // DO NOT EDIT | 19 // DO NOT EDIT |
20 // Auto-generated dart:svg library. | 20 // Auto-generated dart:svg library. |
21 | 21 |
22 | 22 |
23 | 23 |
24 | 24 |
25 // Need a default constructor for constructing classes with mixins that are | |
26 // also extending NativeFieldWrapperClass2. Defining JsoNativeFieldWrapper | |
27 // extending NativeFieldWrapperClass2 creates a default constructor. | |
28 class JsoNativeFieldWrapper extends NativeFieldWrapperClass2 {} | |
29 | |
30 | 25 |
31 // FIXME: Can we make this private? | 26 // FIXME: Can we make this private? |
32 final svgBlinkMap = { | 27 final svgBlinkMap = { |
33 'SVGAElement': () => AElement, | 28 'SVGAElement': () => AElement, |
34 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, | 29 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, |
35 'SVGAltGlyphElement': () => AltGlyphElement, | 30 'SVGAltGlyphElement': () => AltGlyphElement, |
36 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, | 31 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, |
37 'SVGAngle': () => Angle, | 32 'SVGAngle': () => Angle, |
38 'SVGAnimateElement': () => AnimateElement, | 33 'SVGAnimateElement': () => AnimateElement, |
39 'SVGAnimateMotionElement': () => AnimateMotionElement, | 34 'SVGAnimateMotionElement': () => AnimateMotionElement, |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
440 // for details. All rights reserved. Use of this source code is governed by a | 435 // for details. All rights reserved. Use of this source code is governed by a |
441 // BSD-style license that can be found in the LICENSE file. | 436 // BSD-style license that can be found in the LICENSE file. |
442 | 437 |
443 // WARNING: Do not edit - generated code. | 438 // WARNING: Do not edit - generated code. |
444 | 439 |
445 | 440 |
446 @DocsEditable() | 441 @DocsEditable() |
447 @DomName('SVGAngle') | 442 @DomName('SVGAngle') |
448 @Unstable() | 443 @Unstable() |
449 class Angle extends NativeFieldWrapperClass2 { | 444 class Angle extends DartHtmlDomObject { |
450 // To suppress missing implicit constructor warnings. | 445 // To suppress missing implicit constructor warnings. |
451 factory Angle._() { throw new UnsupportedError("Not supported"); } | 446 factory Angle._() { throw new UnsupportedError("Not supported"); } |
452 | 447 |
453 static Angle internalCreateAngle() { | 448 static Angle internalCreateAngle() { |
454 return new Angle._internalWrap(); | 449 return new Angle._internalWrap(); |
455 } | 450 } |
456 | 451 |
457 js.JsObject blink_jsObject; | |
458 | |
459 factory Angle._internalWrap() { | 452 factory Angle._internalWrap() { |
460 return new Angle.internal_(); | 453 return new Angle.internal_(); |
461 } | 454 } |
462 | 455 |
463 Angle.internal_() { } | 456 Angle.internal_() { } |
464 | 457 |
465 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 458 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
466 int get hashCode => unwrap_jso(this).hashCode; | 459 int get hashCode => unwrap_jso(this).hashCode; |
467 | 460 |
468 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 461 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 647 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
655 // for details. All rights reserved. Use of this source code is governed by a | 648 // for details. All rights reserved. Use of this source code is governed by a |
656 // BSD-style license that can be found in the LICENSE file. | 649 // BSD-style license that can be found in the LICENSE file. |
657 | 650 |
658 // WARNING: Do not edit - generated code. | 651 // WARNING: Do not edit - generated code. |
659 | 652 |
660 | 653 |
661 @DocsEditable() | 654 @DocsEditable() |
662 @DomName('SVGAnimatedAngle') | 655 @DomName('SVGAnimatedAngle') |
663 @Unstable() | 656 @Unstable() |
664 class AnimatedAngle extends NativeFieldWrapperClass2 { | 657 class AnimatedAngle extends DartHtmlDomObject { |
665 // To suppress missing implicit constructor warnings. | 658 // To suppress missing implicit constructor warnings. |
666 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 659 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
667 | 660 |
668 static AnimatedAngle internalCreateAnimatedAngle() { | 661 static AnimatedAngle internalCreateAnimatedAngle() { |
669 return new AnimatedAngle._internalWrap(); | 662 return new AnimatedAngle._internalWrap(); |
670 } | 663 } |
671 | 664 |
672 js.JsObject blink_jsObject; | |
673 | |
674 factory AnimatedAngle._internalWrap() { | 665 factory AnimatedAngle._internalWrap() { |
675 return new AnimatedAngle.internal_(); | 666 return new AnimatedAngle.internal_(); |
676 } | 667 } |
677 | 668 |
678 AnimatedAngle.internal_() { } | 669 AnimatedAngle.internal_() { } |
679 | 670 |
680 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 671 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
681 int get hashCode => unwrap_jso(this).hashCode; | 672 int get hashCode => unwrap_jso(this).hashCode; |
682 | 673 |
683 @DomName('SVGAnimatedAngle.animVal') | 674 @DomName('SVGAnimatedAngle.animVal') |
684 @DocsEditable() | 675 @DocsEditable() |
685 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); | 676 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
686 | 677 |
687 @DomName('SVGAnimatedAngle.baseVal') | 678 @DomName('SVGAnimatedAngle.baseVal') |
688 @DocsEditable() | 679 @DocsEditable() |
689 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); | 680 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); |
690 | 681 |
691 } | 682 } |
692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 683 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
693 // for details. All rights reserved. Use of this source code is governed by a | 684 // for details. All rights reserved. Use of this source code is governed by a |
694 // BSD-style license that can be found in the LICENSE file. | 685 // BSD-style license that can be found in the LICENSE file. |
695 | 686 |
696 // WARNING: Do not edit - generated code. | 687 // WARNING: Do not edit - generated code. |
697 | 688 |
698 | 689 |
699 @DocsEditable() | 690 @DocsEditable() |
700 @DomName('SVGAnimatedBoolean') | 691 @DomName('SVGAnimatedBoolean') |
701 @Unstable() | 692 @Unstable() |
702 class AnimatedBoolean extends NativeFieldWrapperClass2 { | 693 class AnimatedBoolean extends DartHtmlDomObject { |
703 // To suppress missing implicit constructor warnings. | 694 // To suppress missing implicit constructor warnings. |
704 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 695 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
705 | 696 |
706 static AnimatedBoolean internalCreateAnimatedBoolean() { | 697 static AnimatedBoolean internalCreateAnimatedBoolean() { |
707 return new AnimatedBoolean._internalWrap(); | 698 return new AnimatedBoolean._internalWrap(); |
708 } | 699 } |
709 | 700 |
710 js.JsObject blink_jsObject; | |
711 | |
712 factory AnimatedBoolean._internalWrap() { | 701 factory AnimatedBoolean._internalWrap() { |
713 return new AnimatedBoolean.internal_(); | 702 return new AnimatedBoolean.internal_(); |
714 } | 703 } |
715 | 704 |
716 AnimatedBoolean.internal_() { } | 705 AnimatedBoolean.internal_() { } |
717 | 706 |
718 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 707 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
719 int get hashCode => unwrap_jso(this).hashCode; | 708 int get hashCode => unwrap_jso(this).hashCode; |
720 | 709 |
721 @DomName('SVGAnimatedBoolean.animVal') | 710 @DomName('SVGAnimatedBoolean.animVal') |
(...skipping 12 matching lines...) Expand all Loading... |
734 // 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 |
735 // 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 |
736 // BSD-style license that can be found in the LICENSE file. | 725 // BSD-style license that can be found in the LICENSE file. |
737 | 726 |
738 // WARNING: Do not edit - generated code. | 727 // WARNING: Do not edit - generated code. |
739 | 728 |
740 | 729 |
741 @DocsEditable() | 730 @DocsEditable() |
742 @DomName('SVGAnimatedEnumeration') | 731 @DomName('SVGAnimatedEnumeration') |
743 @Unstable() | 732 @Unstable() |
744 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 733 class AnimatedEnumeration extends DartHtmlDomObject { |
745 // To suppress missing implicit constructor warnings. | 734 // To suppress missing implicit constructor warnings. |
746 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 735 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
747 | 736 |
748 static AnimatedEnumeration internalCreateAnimatedEnumeration() { | 737 static AnimatedEnumeration internalCreateAnimatedEnumeration() { |
749 return new AnimatedEnumeration._internalWrap(); | 738 return new AnimatedEnumeration._internalWrap(); |
750 } | 739 } |
751 | 740 |
752 js.JsObject blink_jsObject; | |
753 | |
754 factory AnimatedEnumeration._internalWrap() { | 741 factory AnimatedEnumeration._internalWrap() { |
755 return new AnimatedEnumeration.internal_(); | 742 return new AnimatedEnumeration.internal_(); |
756 } | 743 } |
757 | 744 |
758 AnimatedEnumeration.internal_() { } | 745 AnimatedEnumeration.internal_() { } |
759 | 746 |
760 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 747 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
761 int get hashCode => unwrap_jso(this).hashCode; | 748 int get hashCode => unwrap_jso(this).hashCode; |
762 | 749 |
763 @DomName('SVGAnimatedEnumeration.animVal') | 750 @DomName('SVGAnimatedEnumeration.animVal') |
(...skipping 12 matching lines...) Expand all Loading... |
776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 763 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
777 // for details. All rights reserved. Use of this source code is governed by a | 764 // for details. All rights reserved. Use of this source code is governed by a |
778 // BSD-style license that can be found in the LICENSE file. | 765 // BSD-style license that can be found in the LICENSE file. |
779 | 766 |
780 // WARNING: Do not edit - generated code. | 767 // WARNING: Do not edit - generated code. |
781 | 768 |
782 | 769 |
783 @DocsEditable() | 770 @DocsEditable() |
784 @DomName('SVGAnimatedInteger') | 771 @DomName('SVGAnimatedInteger') |
785 @Unstable() | 772 @Unstable() |
786 class AnimatedInteger extends NativeFieldWrapperClass2 { | 773 class AnimatedInteger extends DartHtmlDomObject { |
787 // To suppress missing implicit constructor warnings. | 774 // To suppress missing implicit constructor warnings. |
788 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 775 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
789 | 776 |
790 static AnimatedInteger internalCreateAnimatedInteger() { | 777 static AnimatedInteger internalCreateAnimatedInteger() { |
791 return new AnimatedInteger._internalWrap(); | 778 return new AnimatedInteger._internalWrap(); |
792 } | 779 } |
793 | 780 |
794 js.JsObject blink_jsObject; | |
795 | |
796 factory AnimatedInteger._internalWrap() { | 781 factory AnimatedInteger._internalWrap() { |
797 return new AnimatedInteger.internal_(); | 782 return new AnimatedInteger.internal_(); |
798 } | 783 } |
799 | 784 |
800 AnimatedInteger.internal_() { } | 785 AnimatedInteger.internal_() { } |
801 | 786 |
802 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 787 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
803 int get hashCode => unwrap_jso(this).hashCode; | 788 int get hashCode => unwrap_jso(this).hashCode; |
804 | 789 |
805 @DomName('SVGAnimatedInteger.animVal') | 790 @DomName('SVGAnimatedInteger.animVal') |
(...skipping 12 matching lines...) Expand all Loading... |
818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
819 // for details. All rights reserved. Use of this source code is governed by a | 804 // for details. All rights reserved. Use of this source code is governed by a |
820 // BSD-style license that can be found in the LICENSE file. | 805 // BSD-style license that can be found in the LICENSE file. |
821 | 806 |
822 // WARNING: Do not edit - generated code. | 807 // WARNING: Do not edit - generated code. |
823 | 808 |
824 | 809 |
825 @DocsEditable() | 810 @DocsEditable() |
826 @DomName('SVGAnimatedLength') | 811 @DomName('SVGAnimatedLength') |
827 @Unstable() | 812 @Unstable() |
828 class AnimatedLength extends NativeFieldWrapperClass2 { | 813 class AnimatedLength extends DartHtmlDomObject { |
829 // To suppress missing implicit constructor warnings. | 814 // To suppress missing implicit constructor warnings. |
830 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 815 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
831 | 816 |
832 static AnimatedLength internalCreateAnimatedLength() { | 817 static AnimatedLength internalCreateAnimatedLength() { |
833 return new AnimatedLength._internalWrap(); | 818 return new AnimatedLength._internalWrap(); |
834 } | 819 } |
835 | 820 |
836 js.JsObject blink_jsObject; | |
837 | |
838 factory AnimatedLength._internalWrap() { | 821 factory AnimatedLength._internalWrap() { |
839 return new AnimatedLength.internal_(); | 822 return new AnimatedLength.internal_(); |
840 } | 823 } |
841 | 824 |
842 AnimatedLength.internal_() { } | 825 AnimatedLength.internal_() { } |
843 | 826 |
844 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 827 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
845 int get hashCode => unwrap_jso(this).hashCode; | 828 int get hashCode => unwrap_jso(this).hashCode; |
846 | 829 |
847 @DomName('SVGAnimatedLength.animVal') | 830 @DomName('SVGAnimatedLength.animVal') |
848 @DocsEditable() | 831 @DocsEditable() |
849 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); | 832 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
850 | 833 |
851 @DomName('SVGAnimatedLength.baseVal') | 834 @DomName('SVGAnimatedLength.baseVal') |
852 @DocsEditable() | 835 @DocsEditable() |
853 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); | 836 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); |
854 | 837 |
855 } | 838 } |
856 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 839 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
857 // for details. All rights reserved. Use of this source code is governed by a | 840 // for details. All rights reserved. Use of this source code is governed by a |
858 // BSD-style license that can be found in the LICENSE file. | 841 // BSD-style license that can be found in the LICENSE file. |
859 | 842 |
860 // WARNING: Do not edit - generated code. | 843 // WARNING: Do not edit - generated code. |
861 | 844 |
862 | 845 |
863 @DocsEditable() | 846 @DocsEditable() |
864 @DomName('SVGAnimatedLengthList') | 847 @DomName('SVGAnimatedLengthList') |
865 @Unstable() | 848 @Unstable() |
866 class AnimatedLengthList extends NativeFieldWrapperClass2 { | 849 class AnimatedLengthList extends DartHtmlDomObject { |
867 // To suppress missing implicit constructor warnings. | 850 // To suppress missing implicit constructor warnings. |
868 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 851 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
869 | 852 |
870 static AnimatedLengthList internalCreateAnimatedLengthList() { | 853 static AnimatedLengthList internalCreateAnimatedLengthList() { |
871 return new AnimatedLengthList._internalWrap(); | 854 return new AnimatedLengthList._internalWrap(); |
872 } | 855 } |
873 | 856 |
874 js.JsObject blink_jsObject; | |
875 | |
876 factory AnimatedLengthList._internalWrap() { | 857 factory AnimatedLengthList._internalWrap() { |
877 return new AnimatedLengthList.internal_(); | 858 return new AnimatedLengthList.internal_(); |
878 } | 859 } |
879 | 860 |
880 AnimatedLengthList.internal_() { } | 861 AnimatedLengthList.internal_() { } |
881 | 862 |
882 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 863 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
883 int get hashCode => unwrap_jso(this).hashCode; | 864 int get hashCode => unwrap_jso(this).hashCode; |
884 | 865 |
885 @DomName('SVGAnimatedLengthList.animVal') | 866 @DomName('SVGAnimatedLengthList.animVal') |
886 @DocsEditable() | 867 @DocsEditable() |
887 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); | 868 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
888 | 869 |
889 @DomName('SVGAnimatedLengthList.baseVal') | 870 @DomName('SVGAnimatedLengthList.baseVal') |
890 @DocsEditable() | 871 @DocsEditable() |
891 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); | 872 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); |
892 | 873 |
893 } | 874 } |
894 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 875 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
895 // for details. All rights reserved. Use of this source code is governed by a | 876 // for details. All rights reserved. Use of this source code is governed by a |
896 // BSD-style license that can be found in the LICENSE file. | 877 // BSD-style license that can be found in the LICENSE file. |
897 | 878 |
898 // WARNING: Do not edit - generated code. | 879 // WARNING: Do not edit - generated code. |
899 | 880 |
900 | 881 |
901 @DocsEditable() | 882 @DocsEditable() |
902 @DomName('SVGAnimatedNumber') | 883 @DomName('SVGAnimatedNumber') |
903 @Unstable() | 884 @Unstable() |
904 class AnimatedNumber extends NativeFieldWrapperClass2 { | 885 class AnimatedNumber extends DartHtmlDomObject { |
905 // To suppress missing implicit constructor warnings. | 886 // To suppress missing implicit constructor warnings. |
906 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 887 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
907 | 888 |
908 static AnimatedNumber internalCreateAnimatedNumber() { | 889 static AnimatedNumber internalCreateAnimatedNumber() { |
909 return new AnimatedNumber._internalWrap(); | 890 return new AnimatedNumber._internalWrap(); |
910 } | 891 } |
911 | 892 |
912 js.JsObject blink_jsObject; | |
913 | |
914 factory AnimatedNumber._internalWrap() { | 893 factory AnimatedNumber._internalWrap() { |
915 return new AnimatedNumber.internal_(); | 894 return new AnimatedNumber.internal_(); |
916 } | 895 } |
917 | 896 |
918 AnimatedNumber.internal_() { } | 897 AnimatedNumber.internal_() { } |
919 | 898 |
920 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 899 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
921 int get hashCode => unwrap_jso(this).hashCode; | 900 int get hashCode => unwrap_jso(this).hashCode; |
922 | 901 |
923 @DomName('SVGAnimatedNumber.animVal') | 902 @DomName('SVGAnimatedNumber.animVal') |
(...skipping 12 matching lines...) Expand all Loading... |
936 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 915 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
937 // for details. All rights reserved. Use of this source code is governed by a | 916 // for details. All rights reserved. Use of this source code is governed by a |
938 // BSD-style license that can be found in the LICENSE file. | 917 // BSD-style license that can be found in the LICENSE file. |
939 | 918 |
940 // WARNING: Do not edit - generated code. | 919 // WARNING: Do not edit - generated code. |
941 | 920 |
942 | 921 |
943 @DocsEditable() | 922 @DocsEditable() |
944 @DomName('SVGAnimatedNumberList') | 923 @DomName('SVGAnimatedNumberList') |
945 @Unstable() | 924 @Unstable() |
946 class AnimatedNumberList extends NativeFieldWrapperClass2 { | 925 class AnimatedNumberList extends DartHtmlDomObject { |
947 // To suppress missing implicit constructor warnings. | 926 // To suppress missing implicit constructor warnings. |
948 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 927 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
949 | 928 |
950 static AnimatedNumberList internalCreateAnimatedNumberList() { | 929 static AnimatedNumberList internalCreateAnimatedNumberList() { |
951 return new AnimatedNumberList._internalWrap(); | 930 return new AnimatedNumberList._internalWrap(); |
952 } | 931 } |
953 | 932 |
954 js.JsObject blink_jsObject; | |
955 | |
956 factory AnimatedNumberList._internalWrap() { | 933 factory AnimatedNumberList._internalWrap() { |
957 return new AnimatedNumberList.internal_(); | 934 return new AnimatedNumberList.internal_(); |
958 } | 935 } |
959 | 936 |
960 AnimatedNumberList.internal_() { } | 937 AnimatedNumberList.internal_() { } |
961 | 938 |
962 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 939 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
963 int get hashCode => unwrap_jso(this).hashCode; | 940 int get hashCode => unwrap_jso(this).hashCode; |
964 | 941 |
965 @DomName('SVGAnimatedNumberList.animVal') | 942 @DomName('SVGAnimatedNumberList.animVal') |
966 @DocsEditable() | 943 @DocsEditable() |
967 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); | 944 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
968 | 945 |
969 @DomName('SVGAnimatedNumberList.baseVal') | 946 @DomName('SVGAnimatedNumberList.baseVal') |
970 @DocsEditable() | 947 @DocsEditable() |
971 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); | 948 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); |
972 | 949 |
973 } | 950 } |
974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 951 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
975 // for details. All rights reserved. Use of this source code is governed by a | 952 // for details. All rights reserved. Use of this source code is governed by a |
976 // BSD-style license that can be found in the LICENSE file. | 953 // BSD-style license that can be found in the LICENSE file. |
977 | 954 |
978 // WARNING: Do not edit - generated code. | 955 // WARNING: Do not edit - generated code. |
979 | 956 |
980 | 957 |
981 @DocsEditable() | 958 @DocsEditable() |
982 @DomName('SVGAnimatedPreserveAspectRatio') | 959 @DomName('SVGAnimatedPreserveAspectRatio') |
983 @Unstable() | 960 @Unstable() |
984 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { | 961 class AnimatedPreserveAspectRatio extends DartHtmlDomObject { |
985 // To suppress missing implicit constructor warnings. | 962 // To suppress missing implicit constructor warnings. |
986 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 963 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
987 | 964 |
988 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ | 965 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ |
989 return new AnimatedPreserveAspectRatio._internalWrap(); | 966 return new AnimatedPreserveAspectRatio._internalWrap(); |
990 } | 967 } |
991 | 968 |
992 js.JsObject blink_jsObject; | |
993 | |
994 factory AnimatedPreserveAspectRatio._internalWrap() { | 969 factory AnimatedPreserveAspectRatio._internalWrap() { |
995 return new AnimatedPreserveAspectRatio.internal_(); | 970 return new AnimatedPreserveAspectRatio.internal_(); |
996 } | 971 } |
997 | 972 |
998 AnimatedPreserveAspectRatio.internal_() { } | 973 AnimatedPreserveAspectRatio.internal_() { } |
999 | 974 |
1000 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 975 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1001 int get hashCode => unwrap_jso(this).hashCode; | 976 int get hashCode => unwrap_jso(this).hashCode; |
1002 | 977 |
1003 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 978 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
1004 @DocsEditable() | 979 @DocsEditable() |
1005 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); | 980 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
1006 | 981 |
1007 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 982 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
1008 @DocsEditable() | 983 @DocsEditable() |
1009 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); | 984 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); |
1010 | 985 |
1011 } | 986 } |
1012 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1013 // for details. All rights reserved. Use of this source code is governed by a | 988 // for details. All rights reserved. Use of this source code is governed by a |
1014 // BSD-style license that can be found in the LICENSE file. | 989 // BSD-style license that can be found in the LICENSE file. |
1015 | 990 |
1016 // WARNING: Do not edit - generated code. | 991 // WARNING: Do not edit - generated code. |
1017 | 992 |
1018 | 993 |
1019 @DocsEditable() | 994 @DocsEditable() |
1020 @DomName('SVGAnimatedRect') | 995 @DomName('SVGAnimatedRect') |
1021 @Unstable() | 996 @Unstable() |
1022 class AnimatedRect extends NativeFieldWrapperClass2 { | 997 class AnimatedRect extends DartHtmlDomObject { |
1023 // To suppress missing implicit constructor warnings. | 998 // To suppress missing implicit constructor warnings. |
1024 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 999 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
1025 | 1000 |
1026 static AnimatedRect internalCreateAnimatedRect() { | 1001 static AnimatedRect internalCreateAnimatedRect() { |
1027 return new AnimatedRect._internalWrap(); | 1002 return new AnimatedRect._internalWrap(); |
1028 } | 1003 } |
1029 | 1004 |
1030 js.JsObject blink_jsObject; | |
1031 | |
1032 factory AnimatedRect._internalWrap() { | 1005 factory AnimatedRect._internalWrap() { |
1033 return new AnimatedRect.internal_(); | 1006 return new AnimatedRect.internal_(); |
1034 } | 1007 } |
1035 | 1008 |
1036 AnimatedRect.internal_() { } | 1009 AnimatedRect.internal_() { } |
1037 | 1010 |
1038 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1011 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1039 int get hashCode => unwrap_jso(this).hashCode; | 1012 int get hashCode => unwrap_jso(this).hashCode; |
1040 | 1013 |
1041 @DomName('SVGAnimatedRect.animVal') | 1014 @DomName('SVGAnimatedRect.animVal') |
1042 @DocsEditable() | 1015 @DocsEditable() |
1043 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); | 1016 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
1044 | 1017 |
1045 @DomName('SVGAnimatedRect.baseVal') | 1018 @DomName('SVGAnimatedRect.baseVal') |
1046 @DocsEditable() | 1019 @DocsEditable() |
1047 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); | 1020 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); |
1048 | 1021 |
1049 } | 1022 } |
1050 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1023 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1051 // for details. All rights reserved. Use of this source code is governed by a | 1024 // for details. All rights reserved. Use of this source code is governed by a |
1052 // BSD-style license that can be found in the LICENSE file. | 1025 // BSD-style license that can be found in the LICENSE file. |
1053 | 1026 |
1054 // WARNING: Do not edit - generated code. | 1027 // WARNING: Do not edit - generated code. |
1055 | 1028 |
1056 | 1029 |
1057 @DocsEditable() | 1030 @DocsEditable() |
1058 @DomName('SVGAnimatedString') | 1031 @DomName('SVGAnimatedString') |
1059 @Unstable() | 1032 @Unstable() |
1060 class AnimatedString extends NativeFieldWrapperClass2 { | 1033 class AnimatedString extends DartHtmlDomObject { |
1061 // To suppress missing implicit constructor warnings. | 1034 // To suppress missing implicit constructor warnings. |
1062 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 1035 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
1063 | 1036 |
1064 static AnimatedString internalCreateAnimatedString() { | 1037 static AnimatedString internalCreateAnimatedString() { |
1065 return new AnimatedString._internalWrap(); | 1038 return new AnimatedString._internalWrap(); |
1066 } | 1039 } |
1067 | 1040 |
1068 js.JsObject blink_jsObject; | |
1069 | |
1070 factory AnimatedString._internalWrap() { | 1041 factory AnimatedString._internalWrap() { |
1071 return new AnimatedString.internal_(); | 1042 return new AnimatedString.internal_(); |
1072 } | 1043 } |
1073 | 1044 |
1074 AnimatedString.internal_() { } | 1045 AnimatedString.internal_() { } |
1075 | 1046 |
1076 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1047 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1077 int get hashCode => unwrap_jso(this).hashCode; | 1048 int get hashCode => unwrap_jso(this).hashCode; |
1078 | 1049 |
1079 @DomName('SVGAnimatedString.animVal') | 1050 @DomName('SVGAnimatedString.animVal') |
(...skipping 12 matching lines...) Expand all Loading... |
1092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1063 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1093 // for details. All rights reserved. Use of this source code is governed by a | 1064 // for details. All rights reserved. Use of this source code is governed by a |
1094 // BSD-style license that can be found in the LICENSE file. | 1065 // BSD-style license that can be found in the LICENSE file. |
1095 | 1066 |
1096 // WARNING: Do not edit - generated code. | 1067 // WARNING: Do not edit - generated code. |
1097 | 1068 |
1098 | 1069 |
1099 @DocsEditable() | 1070 @DocsEditable() |
1100 @DomName('SVGAnimatedTransformList') | 1071 @DomName('SVGAnimatedTransformList') |
1101 @Unstable() | 1072 @Unstable() |
1102 class AnimatedTransformList extends NativeFieldWrapperClass2 { | 1073 class AnimatedTransformList extends DartHtmlDomObject { |
1103 // To suppress missing implicit constructor warnings. | 1074 // To suppress missing implicit constructor warnings. |
1104 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 1075 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
1105 | 1076 |
1106 static AnimatedTransformList internalCreateAnimatedTransformList() { | 1077 static AnimatedTransformList internalCreateAnimatedTransformList() { |
1107 return new AnimatedTransformList._internalWrap(); | 1078 return new AnimatedTransformList._internalWrap(); |
1108 } | 1079 } |
1109 | 1080 |
1110 js.JsObject blink_jsObject; | |
1111 | |
1112 factory AnimatedTransformList._internalWrap() { | 1081 factory AnimatedTransformList._internalWrap() { |
1113 return new AnimatedTransformList.internal_(); | 1082 return new AnimatedTransformList.internal_(); |
1114 } | 1083 } |
1115 | 1084 |
1116 AnimatedTransformList.internal_() { } | 1085 AnimatedTransformList.internal_() { } |
1117 | 1086 |
1118 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1087 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1119 int get hashCode => unwrap_jso(this).hashCode; | 1088 int get hashCode => unwrap_jso(this).hashCode; |
1120 | 1089 |
1121 @DomName('SVGAnimatedTransformList.animVal') | 1090 @DomName('SVGAnimatedTransformList.animVal') |
(...skipping 2225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3347 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3348 // for details. All rights reserved. Use of this source code is governed by a | 3317 // for details. All rights reserved. Use of this source code is governed by a |
3349 // BSD-style license that can be found in the LICENSE file. | 3318 // BSD-style license that can be found in the LICENSE file. |
3350 | 3319 |
3351 // WARNING: Do not edit - generated code. | 3320 // WARNING: Do not edit - generated code. |
3352 | 3321 |
3353 | 3322 |
3354 @DocsEditable() | 3323 @DocsEditable() |
3355 @DomName('SVGFilterPrimitiveStandardAttributes') | 3324 @DomName('SVGFilterPrimitiveStandardAttributes') |
3356 @Unstable() | 3325 @Unstable() |
3357 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { | 3326 abstract class FilterPrimitiveStandardAttributes extends DartHtmlDomObject { |
3358 // To suppress missing implicit constructor warnings. | 3327 // To suppress missing implicit constructor warnings. |
3359 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } | 3328 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } |
3360 | 3329 |
3361 @DomName('SVGFilterPrimitiveStandardAttributes.height') | 3330 @DomName('SVGFilterPrimitiveStandardAttributes.height') |
3362 @DocsEditable() | 3331 @DocsEditable() |
3363 AnimatedLength get height; | 3332 AnimatedLength get height; |
3364 | 3333 |
3365 @DomName('SVGFilterPrimitiveStandardAttributes.result') | 3334 @DomName('SVGFilterPrimitiveStandardAttributes.result') |
3366 @DocsEditable() | 3335 @DocsEditable() |
3367 AnimatedString get result; | 3336 AnimatedString get result; |
(...skipping 14 matching lines...) Expand all Loading... |
3382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3383 // for details. All rights reserved. Use of this source code is governed by a | 3352 // for details. All rights reserved. Use of this source code is governed by a |
3384 // BSD-style license that can be found in the LICENSE file. | 3353 // BSD-style license that can be found in the LICENSE file. |
3385 | 3354 |
3386 // WARNING: Do not edit - generated code. | 3355 // WARNING: Do not edit - generated code. |
3387 | 3356 |
3388 | 3357 |
3389 @DocsEditable() | 3358 @DocsEditable() |
3390 @DomName('SVGFitToViewBox') | 3359 @DomName('SVGFitToViewBox') |
3391 @Unstable() | 3360 @Unstable() |
3392 abstract class FitToViewBox extends NativeFieldWrapperClass2 { | 3361 abstract class FitToViewBox extends DartHtmlDomObject { |
3393 // To suppress missing implicit constructor warnings. | 3362 // To suppress missing implicit constructor warnings. |
3394 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } | 3363 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } |
3395 | 3364 |
3396 @DomName('SVGFitToViewBox.preserveAspectRatio') | 3365 @DomName('SVGFitToViewBox.preserveAspectRatio') |
3397 @DocsEditable() | 3366 @DocsEditable() |
3398 AnimatedPreserveAspectRatio get preserveAspectRatio; | 3367 AnimatedPreserveAspectRatio get preserveAspectRatio; |
3399 | 3368 |
3400 @DomName('SVGFitToViewBox.viewBox') | 3369 @DomName('SVGFitToViewBox.viewBox') |
3401 @DocsEditable() | 3370 @DocsEditable() |
3402 AnimatedRect get viewBox; | 3371 AnimatedRect get viewBox; |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3662 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3694 // for details. All rights reserved. Use of this source code is governed by a | 3663 // for details. All rights reserved. Use of this source code is governed by a |
3695 // BSD-style license that can be found in the LICENSE file. | 3664 // BSD-style license that can be found in the LICENSE file. |
3696 | 3665 |
3697 // WARNING: Do not edit - generated code. | 3666 // WARNING: Do not edit - generated code. |
3698 | 3667 |
3699 | 3668 |
3700 @DocsEditable() | 3669 @DocsEditable() |
3701 @DomName('SVGLength') | 3670 @DomName('SVGLength') |
3702 @Unstable() | 3671 @Unstable() |
3703 class Length extends NativeFieldWrapperClass2 { | 3672 class Length extends DartHtmlDomObject { |
3704 // To suppress missing implicit constructor warnings. | 3673 // To suppress missing implicit constructor warnings. |
3705 factory Length._() { throw new UnsupportedError("Not supported"); } | 3674 factory Length._() { throw new UnsupportedError("Not supported"); } |
3706 | 3675 |
3707 static Length internalCreateLength() { | 3676 static Length internalCreateLength() { |
3708 return new Length._internalWrap(); | 3677 return new Length._internalWrap(); |
3709 } | 3678 } |
3710 | 3679 |
3711 js.JsObject blink_jsObject; | |
3712 | |
3713 factory Length._internalWrap() { | 3680 factory Length._internalWrap() { |
3714 return new Length.internal_(); | 3681 return new Length.internal_(); |
3715 } | 3682 } |
3716 | 3683 |
3717 Length.internal_() { } | 3684 Length.internal_() { } |
3718 | 3685 |
3719 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3686 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3720 int get hashCode => unwrap_jso(this).hashCode; | 3687 int get hashCode => unwrap_jso(this).hashCode; |
3721 | 3688 |
3722 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 3689 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3770 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3804 // for details. All rights reserved. Use of this source code is governed by a | 3771 // for details. All rights reserved. Use of this source code is governed by a |
3805 // BSD-style license that can be found in the LICENSE file. | 3772 // BSD-style license that can be found in the LICENSE file. |
3806 | 3773 |
3807 // WARNING: Do not edit - generated code. | 3774 // WARNING: Do not edit - generated code. |
3808 | 3775 |
3809 | 3776 |
3810 @DocsEditable() | 3777 @DocsEditable() |
3811 @DomName('SVGLengthList') | 3778 @DomName('SVGLengthList') |
3812 @Unstable() | 3779 @Unstable() |
3813 class LengthList extends JsoNativeFieldWrapper with ListMixin<Length>, Immutable
ListMixin<Length> implements List<Length> { | 3780 class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList
Mixin<Length> implements List<Length> { |
3814 // To suppress missing implicit constructor warnings. | 3781 // To suppress missing implicit constructor warnings. |
3815 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 3782 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
3816 | 3783 |
3817 static LengthList internalCreateLengthList() { | 3784 static LengthList internalCreateLengthList() { |
3818 return new LengthList._internalWrap(); | 3785 return new LengthList._internalWrap(); |
3819 } | 3786 } |
3820 | 3787 |
3821 js.JsObject blink_jsObject; | |
3822 | |
3823 factory LengthList._internalWrap() { | 3788 factory LengthList._internalWrap() { |
3824 return new LengthList.internal_(); | 3789 return new LengthList.internal_(); |
3825 } | 3790 } |
3826 | 3791 |
3827 LengthList.internal_() { } | 3792 LengthList.internal_() { } |
3828 | 3793 |
3829 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3794 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3830 int get hashCode => unwrap_jso(this).hashCode; | 3795 int get hashCode => unwrap_jso(this).hashCode; |
3831 | 3796 |
3832 @DomName('SVGLengthList.length') | 3797 @DomName('SVGLengthList.length') |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4207 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4208 // for details. All rights reserved. Use of this source code is governed by a | 4173 // for details. All rights reserved. Use of this source code is governed by a |
4209 // BSD-style license that can be found in the LICENSE file. | 4174 // BSD-style license that can be found in the LICENSE file. |
4210 | 4175 |
4211 // WARNING: Do not edit - generated code. | 4176 // WARNING: Do not edit - generated code. |
4212 | 4177 |
4213 | 4178 |
4214 @DocsEditable() | 4179 @DocsEditable() |
4215 @DomName('SVGMatrix') | 4180 @DomName('SVGMatrix') |
4216 @Unstable() | 4181 @Unstable() |
4217 class Matrix extends NativeFieldWrapperClass2 { | 4182 class Matrix extends DartHtmlDomObject { |
4218 // To suppress missing implicit constructor warnings. | 4183 // To suppress missing implicit constructor warnings. |
4219 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 4184 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
4220 | 4185 |
4221 static Matrix internalCreateMatrix() { | 4186 static Matrix internalCreateMatrix() { |
4222 return new Matrix._internalWrap(); | 4187 return new Matrix._internalWrap(); |
4223 } | 4188 } |
4224 | 4189 |
4225 js.JsObject blink_jsObject; | |
4226 | |
4227 factory Matrix._internalWrap() { | 4190 factory Matrix._internalWrap() { |
4228 return new Matrix.internal_(); | 4191 return new Matrix.internal_(); |
4229 } | 4192 } |
4230 | 4193 |
4231 Matrix.internal_() { } | 4194 Matrix.internal_() { } |
4232 | 4195 |
4233 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4196 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
4234 int get hashCode => unwrap_jso(this).hashCode; | 4197 int get hashCode => unwrap_jso(this).hashCode; |
4235 | 4198 |
4236 @DomName('SVGMatrix.a') | 4199 @DomName('SVGMatrix.a') |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4362 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4363 // for details. All rights reserved. Use of this source code is governed by a | 4326 // for details. All rights reserved. Use of this source code is governed by a |
4364 // BSD-style license that can be found in the LICENSE file. | 4327 // BSD-style license that can be found in the LICENSE file. |
4365 | 4328 |
4366 // WARNING: Do not edit - generated code. | 4329 // WARNING: Do not edit - generated code. |
4367 | 4330 |
4368 | 4331 |
4369 @DocsEditable() | 4332 @DocsEditable() |
4370 @DomName('SVGNumber') | 4333 @DomName('SVGNumber') |
4371 @Unstable() | 4334 @Unstable() |
4372 class Number extends NativeFieldWrapperClass2 { | 4335 class Number extends DartHtmlDomObject { |
4373 // To suppress missing implicit constructor warnings. | 4336 // To suppress missing implicit constructor warnings. |
4374 factory Number._() { throw new UnsupportedError("Not supported"); } | 4337 factory Number._() { throw new UnsupportedError("Not supported"); } |
4375 | 4338 |
4376 static Number internalCreateNumber() { | 4339 static Number internalCreateNumber() { |
4377 return new Number._internalWrap(); | 4340 return new Number._internalWrap(); |
4378 } | 4341 } |
4379 | 4342 |
4380 js.JsObject blink_jsObject; | |
4381 | |
4382 factory Number._internalWrap() { | 4343 factory Number._internalWrap() { |
4383 return new Number.internal_(); | 4344 return new Number.internal_(); |
4384 } | 4345 } |
4385 | 4346 |
4386 Number.internal_() { } | 4347 Number.internal_() { } |
4387 | 4348 |
4388 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4349 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
4389 int get hashCode => unwrap_jso(this).hashCode; | 4350 int get hashCode => unwrap_jso(this).hashCode; |
4390 | 4351 |
4391 @DomName('SVGNumber.value') | 4352 @DomName('SVGNumber.value') |
4392 @DocsEditable() | 4353 @DocsEditable() |
4393 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); | 4354 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
4394 | 4355 |
4395 @DomName('SVGNumber.value') | 4356 @DomName('SVGNumber.value') |
4396 @DocsEditable() | 4357 @DocsEditable() |
4397 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_js
o(this), value); | 4358 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_js
o(this), value); |
4398 | 4359 |
4399 } | 4360 } |
4400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4401 // for details. All rights reserved. Use of this source code is governed by a | 4362 // for details. All rights reserved. Use of this source code is governed by a |
4402 // BSD-style license that can be found in the LICENSE file. | 4363 // BSD-style license that can be found in the LICENSE file. |
4403 | 4364 |
4404 // WARNING: Do not edit - generated code. | 4365 // WARNING: Do not edit - generated code. |
4405 | 4366 |
4406 | 4367 |
4407 @DocsEditable() | 4368 @DocsEditable() |
4408 @DomName('SVGNumberList') | 4369 @DomName('SVGNumberList') |
4409 @Unstable() | 4370 @Unstable() |
4410 class NumberList extends JsoNativeFieldWrapper with ListMixin<Number>, Immutable
ListMixin<Number> implements List<Number> { | 4371 class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList
Mixin<Number> implements List<Number> { |
4411 // To suppress missing implicit constructor warnings. | 4372 // To suppress missing implicit constructor warnings. |
4412 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 4373 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
4413 | 4374 |
4414 static NumberList internalCreateNumberList() { | 4375 static NumberList internalCreateNumberList() { |
4415 return new NumberList._internalWrap(); | 4376 return new NumberList._internalWrap(); |
4416 } | 4377 } |
4417 | 4378 |
4418 js.JsObject blink_jsObject; | |
4419 | |
4420 factory NumberList._internalWrap() { | 4379 factory NumberList._internalWrap() { |
4421 return new NumberList.internal_(); | 4380 return new NumberList.internal_(); |
4422 } | 4381 } |
4423 | 4382 |
4424 NumberList.internal_() { } | 4383 NumberList.internal_() { } |
4425 | 4384 |
4426 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4385 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
4427 int get hashCode => unwrap_jso(this).hashCode; | 4386 int get hashCode => unwrap_jso(this).hashCode; |
4428 | 4387 |
4429 @DomName('SVGNumberList.length') | 4388 @DomName('SVGNumberList.length') |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4661 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
4662 // for details. All rights reserved. Use of this source code is governed by a | 4621 // for details. All rights reserved. Use of this source code is governed by a |
4663 // BSD-style license that can be found in the LICENSE file. | 4622 // BSD-style license that can be found in the LICENSE file. |
4664 | 4623 |
4665 // WARNING: Do not edit - generated code. | 4624 // WARNING: Do not edit - generated code. |
4666 | 4625 |
4667 | 4626 |
4668 @DocsEditable() | 4627 @DocsEditable() |
4669 @DomName('SVGPathSeg') | 4628 @DomName('SVGPathSeg') |
4670 @Unstable() | 4629 @Unstable() |
4671 class PathSeg extends NativeFieldWrapperClass2 { | 4630 class PathSeg extends DartHtmlDomObject { |
4672 // To suppress missing implicit constructor warnings. | 4631 // To suppress missing implicit constructor warnings. |
4673 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 4632 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
4674 | 4633 |
4675 static PathSeg internalCreatePathSeg() { | 4634 static PathSeg internalCreatePathSeg() { |
4676 return new PathSeg._internalWrap(); | 4635 return new PathSeg._internalWrap(); |
4677 } | 4636 } |
4678 | 4637 |
4679 js.JsObject blink_jsObject; | |
4680 | |
4681 factory PathSeg._internalWrap() { | 4638 factory PathSeg._internalWrap() { |
4682 return new PathSeg.internal_(); | 4639 return new PathSeg.internal_(); |
4683 } | 4640 } |
4684 | 4641 |
4685 PathSeg.internal_() { } | 4642 PathSeg.internal_() { } |
4686 | 4643 |
4687 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 4644 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
4688 int get hashCode => unwrap_jso(this).hashCode; | 4645 int get hashCode => unwrap_jso(this).hashCode; |
4689 | 4646 |
4690 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 4647 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5670 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5627 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5671 // for details. All rights reserved. Use of this source code is governed by a | 5628 // for details. All rights reserved. Use of this source code is governed by a |
5672 // BSD-style license that can be found in the LICENSE file. | 5629 // BSD-style license that can be found in the LICENSE file. |
5673 | 5630 |
5674 // WARNING: Do not edit - generated code. | 5631 // WARNING: Do not edit - generated code. |
5675 | 5632 |
5676 | 5633 |
5677 @DocsEditable() | 5634 @DocsEditable() |
5678 @DomName('SVGPathSegList') | 5635 @DomName('SVGPathSegList') |
5679 @Unstable() | 5636 @Unstable() |
5680 class PathSegList extends JsoNativeFieldWrapper with ListMixin<PathSeg>, Immutab
leListMixin<PathSeg> implements List<PathSeg> { | 5637 class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi
stMixin<PathSeg> implements List<PathSeg> { |
5681 // To suppress missing implicit constructor warnings. | 5638 // To suppress missing implicit constructor warnings. |
5682 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 5639 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
5683 | 5640 |
5684 static PathSegList internalCreatePathSegList() { | 5641 static PathSegList internalCreatePathSegList() { |
5685 return new PathSegList._internalWrap(); | 5642 return new PathSegList._internalWrap(); |
5686 } | 5643 } |
5687 | 5644 |
5688 js.JsObject blink_jsObject; | |
5689 | |
5690 factory PathSegList._internalWrap() { | 5645 factory PathSegList._internalWrap() { |
5691 return new PathSegList.internal_(); | 5646 return new PathSegList.internal_(); |
5692 } | 5647 } |
5693 | 5648 |
5694 PathSegList.internal_() { } | 5649 PathSegList.internal_() { } |
5695 | 5650 |
5696 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 5651 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
5697 int get hashCode => unwrap_jso(this).hashCode; | 5652 int get hashCode => unwrap_jso(this).hashCode; |
5698 | 5653 |
5699 @DomName('SVGPathSegList.length') | 5654 @DomName('SVGPathSegList.length') |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5965 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
5966 // for details. All rights reserved. Use of this source code is governed by a | 5921 // for details. All rights reserved. Use of this source code is governed by a |
5967 // BSD-style license that can be found in the LICENSE file. | 5922 // BSD-style license that can be found in the LICENSE file. |
5968 | 5923 |
5969 // WARNING: Do not edit - generated code. | 5924 // WARNING: Do not edit - generated code. |
5970 | 5925 |
5971 | 5926 |
5972 @DocsEditable() | 5927 @DocsEditable() |
5973 @DomName('SVGPoint') | 5928 @DomName('SVGPoint') |
5974 @Unstable() | 5929 @Unstable() |
5975 class Point extends NativeFieldWrapperClass2 { | 5930 class Point extends DartHtmlDomObject { |
5976 // To suppress missing implicit constructor warnings. | 5931 // To suppress missing implicit constructor warnings. |
5977 factory Point._() { throw new UnsupportedError("Not supported"); } | 5932 factory Point._() { throw new UnsupportedError("Not supported"); } |
5978 | 5933 |
5979 static Point internalCreatePoint() { | 5934 static Point internalCreatePoint() { |
5980 return new Point._internalWrap(); | 5935 return new Point._internalWrap(); |
5981 } | 5936 } |
5982 | 5937 |
5983 js.JsObject blink_jsObject; | |
5984 | |
5985 factory Point._internalWrap() { | 5938 factory Point._internalWrap() { |
5986 return new Point.internal_(); | 5939 return new Point.internal_(); |
5987 } | 5940 } |
5988 | 5941 |
5989 Point.internal_() { } | 5942 Point.internal_() { } |
5990 | 5943 |
5991 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 5944 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
5992 int get hashCode => unwrap_jso(this).hashCode; | 5945 int get hashCode => unwrap_jso(this).hashCode; |
5993 | 5946 |
5994 @DomName('SVGPoint.x') | 5947 @DomName('SVGPoint.x') |
(...skipping 20 matching lines...) Expand all Loading... |
6015 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6016 // for details. All rights reserved. Use of this source code is governed by a | 5969 // for details. All rights reserved. Use of this source code is governed by a |
6017 // BSD-style license that can be found in the LICENSE file. | 5970 // BSD-style license that can be found in the LICENSE file. |
6018 | 5971 |
6019 // WARNING: Do not edit - generated code. | 5972 // WARNING: Do not edit - generated code. |
6020 | 5973 |
6021 | 5974 |
6022 @DocsEditable() | 5975 @DocsEditable() |
6023 @DomName('SVGPointList') | 5976 @DomName('SVGPointList') |
6024 @Unstable() | 5977 @Unstable() |
6025 class PointList extends NativeFieldWrapperClass2 { | 5978 class PointList extends DartHtmlDomObject { |
6026 // To suppress missing implicit constructor warnings. | 5979 // To suppress missing implicit constructor warnings. |
6027 factory PointList._() { throw new UnsupportedError("Not supported"); } | 5980 factory PointList._() { throw new UnsupportedError("Not supported"); } |
6028 | 5981 |
6029 static PointList internalCreatePointList() { | 5982 static PointList internalCreatePointList() { |
6030 return new PointList._internalWrap(); | 5983 return new PointList._internalWrap(); |
6031 } | 5984 } |
6032 | 5985 |
6033 js.JsObject blink_jsObject; | |
6034 | |
6035 factory PointList._internalWrap() { | 5986 factory PointList._internalWrap() { |
6036 return new PointList.internal_(); | 5987 return new PointList.internal_(); |
6037 } | 5988 } |
6038 | 5989 |
6039 PointList.internal_() { } | 5990 PointList.internal_() { } |
6040 | 5991 |
6041 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 5992 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
6042 int get hashCode => unwrap_jso(this).hashCode; | 5993 int get hashCode => unwrap_jso(this).hashCode; |
6043 | 5994 |
6044 @DomName('SVGPointList.length') | 5995 @DomName('SVGPointList.length') |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6128 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6178 // for details. All rights reserved. Use of this source code is governed by a | 6129 // for details. All rights reserved. Use of this source code is governed by a |
6179 // BSD-style license that can be found in the LICENSE file. | 6130 // BSD-style license that can be found in the LICENSE file. |
6180 | 6131 |
6181 // WARNING: Do not edit - generated code. | 6132 // WARNING: Do not edit - generated code. |
6182 | 6133 |
6183 | 6134 |
6184 @DocsEditable() | 6135 @DocsEditable() |
6185 @DomName('SVGPreserveAspectRatio') | 6136 @DomName('SVGPreserveAspectRatio') |
6186 @Unstable() | 6137 @Unstable() |
6187 class PreserveAspectRatio extends NativeFieldWrapperClass2 { | 6138 class PreserveAspectRatio extends DartHtmlDomObject { |
6188 // To suppress missing implicit constructor warnings. | 6139 // To suppress missing implicit constructor warnings. |
6189 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 6140 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
6190 | 6141 |
6191 static PreserveAspectRatio internalCreatePreserveAspectRatio() { | 6142 static PreserveAspectRatio internalCreatePreserveAspectRatio() { |
6192 return new PreserveAspectRatio._internalWrap(); | 6143 return new PreserveAspectRatio._internalWrap(); |
6193 } | 6144 } |
6194 | 6145 |
6195 js.JsObject blink_jsObject; | |
6196 | |
6197 factory PreserveAspectRatio._internalWrap() { | 6146 factory PreserveAspectRatio._internalWrap() { |
6198 return new PreserveAspectRatio.internal_(); | 6147 return new PreserveAspectRatio.internal_(); |
6199 } | 6148 } |
6200 | 6149 |
6201 PreserveAspectRatio.internal_() { } | 6150 PreserveAspectRatio.internal_() { } |
6202 | 6151 |
6203 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6152 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
6204 int get hashCode => unwrap_jso(this).hashCode; | 6153 int get hashCode => unwrap_jso(this).hashCode; |
6205 | 6154 |
6206 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 6155 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6340 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6341 // for details. All rights reserved. Use of this source code is governed by a | 6290 // for details. All rights reserved. Use of this source code is governed by a |
6342 // BSD-style license that can be found in the LICENSE file. | 6291 // BSD-style license that can be found in the LICENSE file. |
6343 | 6292 |
6344 // WARNING: Do not edit - generated code. | 6293 // WARNING: Do not edit - generated code. |
6345 | 6294 |
6346 | 6295 |
6347 @DocsEditable() | 6296 @DocsEditable() |
6348 @DomName('SVGRect') | 6297 @DomName('SVGRect') |
6349 @Unstable() | 6298 @Unstable() |
6350 class Rect extends NativeFieldWrapperClass2 { | 6299 class Rect extends DartHtmlDomObject { |
6351 // To suppress missing implicit constructor warnings. | 6300 // To suppress missing implicit constructor warnings. |
6352 factory Rect._() { throw new UnsupportedError("Not supported"); } | 6301 factory Rect._() { throw new UnsupportedError("Not supported"); } |
6353 | 6302 |
6354 static Rect internalCreateRect() { | 6303 static Rect internalCreateRect() { |
6355 return new Rect._internalWrap(); | 6304 return new Rect._internalWrap(); |
6356 } | 6305 } |
6357 | 6306 |
6358 js.JsObject blink_jsObject; | |
6359 | |
6360 factory Rect._internalWrap() { | 6307 factory Rect._internalWrap() { |
6361 return new Rect.internal_(); | 6308 return new Rect.internal_(); |
6362 } | 6309 } |
6363 | 6310 |
6364 Rect.internal_() { } | 6311 Rect.internal_() { } |
6365 | 6312 |
6366 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6313 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
6367 int get hashCode => unwrap_jso(this).hashCode; | 6314 int get hashCode => unwrap_jso(this).hashCode; |
6368 | 6315 |
6369 @DomName('SVGRect.height') | 6316 @DomName('SVGRect.height') |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6463 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6464 // for details. All rights reserved. Use of this source code is governed by a | 6411 // for details. All rights reserved. Use of this source code is governed by a |
6465 // BSD-style license that can be found in the LICENSE file. | 6412 // BSD-style license that can be found in the LICENSE file. |
6466 | 6413 |
6467 // WARNING: Do not edit - generated code. | 6414 // WARNING: Do not edit - generated code. |
6468 | 6415 |
6469 | 6416 |
6470 @DocsEditable() | 6417 @DocsEditable() |
6471 @DomName('SVGRenderingIntent') | 6418 @DomName('SVGRenderingIntent') |
6472 @Unstable() | 6419 @Unstable() |
6473 class RenderingIntent extends NativeFieldWrapperClass2 { | 6420 class RenderingIntent extends DartHtmlDomObject { |
6474 // To suppress missing implicit constructor warnings. | 6421 // To suppress missing implicit constructor warnings. |
6475 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 6422 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
6476 | 6423 |
6477 static RenderingIntent internalCreateRenderingIntent() { | 6424 static RenderingIntent internalCreateRenderingIntent() { |
6478 return new RenderingIntent._internalWrap(); | 6425 return new RenderingIntent._internalWrap(); |
6479 } | 6426 } |
6480 | 6427 |
6481 js.JsObject blink_jsObject; | |
6482 | |
6483 factory RenderingIntent._internalWrap() { | 6428 factory RenderingIntent._internalWrap() { |
6484 return new RenderingIntent.internal_(); | 6429 return new RenderingIntent.internal_(); |
6485 } | 6430 } |
6486 | 6431 |
6487 RenderingIntent.internal_() { } | 6432 RenderingIntent.internal_() { } |
6488 | 6433 |
6489 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6434 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
6490 int get hashCode => unwrap_jso(this).hashCode; | 6435 int get hashCode => unwrap_jso(this).hashCode; |
6491 | 6436 |
6492 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 6437 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6650 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6595 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6651 // for details. All rights reserved. Use of this source code is governed by a | 6596 // for details. All rights reserved. Use of this source code is governed by a |
6652 // BSD-style license that can be found in the LICENSE file. | 6597 // BSD-style license that can be found in the LICENSE file. |
6653 | 6598 |
6654 // WARNING: Do not edit - generated code. | 6599 // WARNING: Do not edit - generated code. |
6655 | 6600 |
6656 | 6601 |
6657 @DocsEditable() | 6602 @DocsEditable() |
6658 @DomName('SVGStringList') | 6603 @DomName('SVGStringList') |
6659 @Unstable() | 6604 @Unstable() |
6660 class StringList extends JsoNativeFieldWrapper with ListMixin<String>, Immutable
ListMixin<String> implements List<String> { | 6605 class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList
Mixin<String> implements List<String> { |
6661 // To suppress missing implicit constructor warnings. | 6606 // To suppress missing implicit constructor warnings. |
6662 factory StringList._() { throw new UnsupportedError("Not supported"); } | 6607 factory StringList._() { throw new UnsupportedError("Not supported"); } |
6663 | 6608 |
6664 static StringList internalCreateStringList() { | 6609 static StringList internalCreateStringList() { |
6665 return new StringList._internalWrap(); | 6610 return new StringList._internalWrap(); |
6666 } | 6611 } |
6667 | 6612 |
6668 js.JsObject blink_jsObject; | |
6669 | |
6670 factory StringList._internalWrap() { | 6613 factory StringList._internalWrap() { |
6671 return new StringList.internal_(); | 6614 return new StringList.internal_(); |
6672 } | 6615 } |
6673 | 6616 |
6674 StringList.internal_() { } | 6617 StringList.internal_() { } |
6675 | 6618 |
6676 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 6619 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
6677 int get hashCode => unwrap_jso(this).hashCode; | 6620 int get hashCode => unwrap_jso(this).hashCode; |
6678 | 6621 |
6679 @DomName('SVGStringList.length') | 6622 @DomName('SVGStringList.length') |
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7919 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7862 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7920 // for details. All rights reserved. Use of this source code is governed by a | 7863 // for details. All rights reserved. Use of this source code is governed by a |
7921 // BSD-style license that can be found in the LICENSE file. | 7864 // BSD-style license that can be found in the LICENSE file. |
7922 | 7865 |
7923 // WARNING: Do not edit - generated code. | 7866 // WARNING: Do not edit - generated code. |
7924 | 7867 |
7925 | 7868 |
7926 @DocsEditable() | 7869 @DocsEditable() |
7927 @DomName('SVGTests') | 7870 @DomName('SVGTests') |
7928 @Unstable() | 7871 @Unstable() |
7929 abstract class Tests extends NativeFieldWrapperClass2 { | 7872 abstract class Tests extends DartHtmlDomObject { |
7930 // To suppress missing implicit constructor warnings. | 7873 // To suppress missing implicit constructor warnings. |
7931 factory Tests._() { throw new UnsupportedError("Not supported"); } | 7874 factory Tests._() { throw new UnsupportedError("Not supported"); } |
7932 | 7875 |
7933 @DomName('SVGTests.requiredExtensions') | 7876 @DomName('SVGTests.requiredExtensions') |
7934 @DocsEditable() | 7877 @DocsEditable() |
7935 StringList get requiredExtensions; | 7878 StringList get requiredExtensions; |
7936 | 7879 |
7937 @DomName('SVGTests.requiredFeatures') | 7880 @DomName('SVGTests.requiredFeatures') |
7938 @DocsEditable() | 7881 @DocsEditable() |
7939 StringList get requiredFeatures; | 7882 StringList get requiredFeatures; |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8182 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8240 // for details. All rights reserved. Use of this source code is governed by a | 8183 // for details. All rights reserved. Use of this source code is governed by a |
8241 // BSD-style license that can be found in the LICENSE file. | 8184 // BSD-style license that can be found in the LICENSE file. |
8242 | 8185 |
8243 // WARNING: Do not edit - generated code. | 8186 // WARNING: Do not edit - generated code. |
8244 | 8187 |
8245 | 8188 |
8246 @DocsEditable() | 8189 @DocsEditable() |
8247 @DomName('SVGTransform') | 8190 @DomName('SVGTransform') |
8248 @Unstable() | 8191 @Unstable() |
8249 class Transform extends NativeFieldWrapperClass2 { | 8192 class Transform extends DartHtmlDomObject { |
8250 // To suppress missing implicit constructor warnings. | 8193 // To suppress missing implicit constructor warnings. |
8251 factory Transform._() { throw new UnsupportedError("Not supported"); } | 8194 factory Transform._() { throw new UnsupportedError("Not supported"); } |
8252 | 8195 |
8253 static Transform internalCreateTransform() { | 8196 static Transform internalCreateTransform() { |
8254 return new Transform._internalWrap(); | 8197 return new Transform._internalWrap(); |
8255 } | 8198 } |
8256 | 8199 |
8257 js.JsObject blink_jsObject; | |
8258 | |
8259 factory Transform._internalWrap() { | 8200 factory Transform._internalWrap() { |
8260 return new Transform.internal_(); | 8201 return new Transform.internal_(); |
8261 } | 8202 } |
8262 | 8203 |
8263 Transform.internal_() { } | 8204 Transform.internal_() { } |
8264 | 8205 |
8265 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8206 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
8266 int get hashCode => unwrap_jso(this).hashCode; | 8207 int get hashCode => unwrap_jso(this).hashCode; |
8267 | 8208 |
8268 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 8209 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8333 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8334 // for details. All rights reserved. Use of this source code is governed by a | 8275 // for details. All rights reserved. Use of this source code is governed by a |
8335 // BSD-style license that can be found in the LICENSE file. | 8276 // BSD-style license that can be found in the LICENSE file. |
8336 | 8277 |
8337 // WARNING: Do not edit - generated code. | 8278 // WARNING: Do not edit - generated code. |
8338 | 8279 |
8339 | 8280 |
8340 @DocsEditable() | 8281 @DocsEditable() |
8341 @DomName('SVGTransformList') | 8282 @DomName('SVGTransformList') |
8342 @Unstable() | 8283 @Unstable() |
8343 class TransformList extends JsoNativeFieldWrapper with ListMixin<Transform>, Imm
utableListMixin<Transform> implements List<Transform> { | 8284 class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab
leListMixin<Transform> implements List<Transform> { |
8344 // To suppress missing implicit constructor warnings. | 8285 // To suppress missing implicit constructor warnings. |
8345 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 8286 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
8346 | 8287 |
8347 static TransformList internalCreateTransformList() { | 8288 static TransformList internalCreateTransformList() { |
8348 return new TransformList._internalWrap(); | 8289 return new TransformList._internalWrap(); |
8349 } | 8290 } |
8350 | 8291 |
8351 js.JsObject blink_jsObject; | |
8352 | |
8353 factory TransformList._internalWrap() { | 8292 factory TransformList._internalWrap() { |
8354 return new TransformList.internal_(); | 8293 return new TransformList.internal_(); |
8355 } | 8294 } |
8356 | 8295 |
8357 TransformList.internal_() { } | 8296 TransformList.internal_() { } |
8358 | 8297 |
8359 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8298 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
8360 int get hashCode => unwrap_jso(this).hashCode; | 8299 int get hashCode => unwrap_jso(this).hashCode; |
8361 | 8300 |
8362 @DomName('SVGTransformList.length') | 8301 @DomName('SVGTransformList.length') |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8458 // for details. All rights reserved. Use of this source code is governed by a | 8397 // for details. All rights reserved. Use of this source code is governed by a |
8459 // BSD-style license that can be found in the LICENSE file. | 8398 // BSD-style license that can be found in the LICENSE file. |
8460 | 8399 |
8461 // WARNING: Do not edit - generated code. | 8400 // WARNING: Do not edit - generated code. |
8462 | 8401 |
8463 | 8402 |
8464 @DocsEditable() | 8403 @DocsEditable() |
8465 @DomName('SVGUnitTypes') | 8404 @DomName('SVGUnitTypes') |
8466 @Unstable() | 8405 @Unstable() |
8467 class UnitTypes extends NativeFieldWrapperClass2 { | 8406 class UnitTypes extends DartHtmlDomObject { |
8468 // To suppress missing implicit constructor warnings. | 8407 // To suppress missing implicit constructor warnings. |
8469 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 8408 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
8470 | 8409 |
8471 static UnitTypes internalCreateUnitTypes() { | 8410 static UnitTypes internalCreateUnitTypes() { |
8472 return new UnitTypes._internalWrap(); | 8411 return new UnitTypes._internalWrap(); |
8473 } | 8412 } |
8474 | 8413 |
8475 js.JsObject blink_jsObject; | |
8476 | |
8477 factory UnitTypes._internalWrap() { | 8414 factory UnitTypes._internalWrap() { |
8478 return new UnitTypes.internal_(); | 8415 return new UnitTypes.internal_(); |
8479 } | 8416 } |
8480 | 8417 |
8481 UnitTypes.internal_() { } | 8418 UnitTypes.internal_() { } |
8482 | 8419 |
8483 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8420 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
8484 int get hashCode => unwrap_jso(this).hashCode; | 8421 int get hashCode => unwrap_jso(this).hashCode; |
8485 | 8422 |
8486 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 8423 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
(...skipping 12 matching lines...) Expand all Loading... |
8499 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8436 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8500 // for details. All rights reserved. Use of this source code is governed by a | 8437 // for details. All rights reserved. Use of this source code is governed by a |
8501 // BSD-style license that can be found in the LICENSE file. | 8438 // BSD-style license that can be found in the LICENSE file. |
8502 | 8439 |
8503 // WARNING: Do not edit - generated code. | 8440 // WARNING: Do not edit - generated code. |
8504 | 8441 |
8505 | 8442 |
8506 @DocsEditable() | 8443 @DocsEditable() |
8507 @DomName('SVGURIReference') | 8444 @DomName('SVGURIReference') |
8508 @Unstable() | 8445 @Unstable() |
8509 abstract class UriReference extends NativeFieldWrapperClass2 { | 8446 abstract class UriReference extends DartHtmlDomObject { |
8510 // To suppress missing implicit constructor warnings. | 8447 // To suppress missing implicit constructor warnings. |
8511 factory UriReference._() { throw new UnsupportedError("Not supported"); } | 8448 factory UriReference._() { throw new UnsupportedError("Not supported"); } |
8512 | 8449 |
8513 @DomName('SVGURIReference.href') | 8450 @DomName('SVGURIReference.href') |
8514 @DocsEditable() | 8451 @DocsEditable() |
8515 AnimatedString get href; | 8452 AnimatedString get href; |
8516 | 8453 |
8517 } | 8454 } |
8518 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8455 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8519 // for details. All rights reserved. Use of this source code is governed by a | 8456 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8632 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8633 // for details. All rights reserved. Use of this source code is governed by a | 8570 // for details. All rights reserved. Use of this source code is governed by a |
8634 // BSD-style license that can be found in the LICENSE file. | 8571 // BSD-style license that can be found in the LICENSE file. |
8635 | 8572 |
8636 // WARNING: Do not edit - generated code. | 8573 // WARNING: Do not edit - generated code. |
8637 | 8574 |
8638 | 8575 |
8639 @DocsEditable() | 8576 @DocsEditable() |
8640 @DomName('SVGViewSpec') | 8577 @DomName('SVGViewSpec') |
8641 @Unstable() | 8578 @Unstable() |
8642 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { | 8579 class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan { |
8643 // To suppress missing implicit constructor warnings. | 8580 // To suppress missing implicit constructor warnings. |
8644 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 8581 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
8645 | 8582 |
8646 static ViewSpec internalCreateViewSpec() { | 8583 static ViewSpec internalCreateViewSpec() { |
8647 return new ViewSpec._internalWrap(); | 8584 return new ViewSpec._internalWrap(); |
8648 } | 8585 } |
8649 | 8586 |
8650 js.JsObject blink_jsObject; | |
8651 | |
8652 factory ViewSpec._internalWrap() { | 8587 factory ViewSpec._internalWrap() { |
8653 return new ViewSpec.internal_(); | 8588 return new ViewSpec.internal_(); |
8654 } | 8589 } |
8655 | 8590 |
8656 ViewSpec.internal_() { } | 8591 ViewSpec.internal_() { } |
8657 | 8592 |
8658 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 8593 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
8659 int get hashCode => unwrap_jso(this).hashCode; | 8594 int get hashCode => unwrap_jso(this).hashCode; |
8660 | 8595 |
8661 @DomName('SVGViewSpec.preserveAspectRatioString') | 8596 @DomName('SVGViewSpec.preserveAspectRatioString') |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
8707 // for details. All rights reserved. Use of this source code is governed by a | 8642 // for details. All rights reserved. Use of this source code is governed by a |
8708 // BSD-style license that can be found in the LICENSE file. | 8643 // BSD-style license that can be found in the LICENSE file. |
8709 | 8644 |
8710 // WARNING: Do not edit - generated code. | 8645 // WARNING: Do not edit - generated code. |
8711 | 8646 |
8712 | 8647 |
8713 @DocsEditable() | 8648 @DocsEditable() |
8714 @DomName('SVGZoomAndPan') | 8649 @DomName('SVGZoomAndPan') |
8715 @Unstable() | 8650 @Unstable() |
8716 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { | 8651 abstract class ZoomAndPan extends DartHtmlDomObject { |
8717 // To suppress missing implicit constructor warnings. | 8652 // To suppress missing implicit constructor warnings. |
8718 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } | 8653 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } |
8719 | 8654 |
8720 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') | 8655 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') |
8721 @DocsEditable() | 8656 @DocsEditable() |
8722 static const int SVG_ZOOMANDPAN_DISABLE = 1; | 8657 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
8723 | 8658 |
8724 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') | 8659 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') |
8725 @DocsEditable() | 8660 @DocsEditable() |
8726 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; | 8661 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9438 _SVGVKernElement.internal_() : super.internal_(); | 9373 _SVGVKernElement.internal_() : super.internal_(); |
9439 | 9374 |
9440 /** | 9375 /** |
9441 * Constructor instantiated by the DOM when a custom element has been created. | 9376 * Constructor instantiated by the DOM when a custom element has been created. |
9442 * | 9377 * |
9443 * This can only be called by subclasses from their created constructor. | 9378 * This can only be called by subclasses from their created constructor. |
9444 */ | 9379 */ |
9445 _SVGVKernElement.created() : super.created(); | 9380 _SVGVKernElement.created() : super.created(); |
9446 | 9381 |
9447 } | 9382 } |
OLD | NEW |