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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 12087112: Can now correctly add documentation to constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library svg; 1 library svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
8 import 'dart:_foreign_helper' show JS; 8 import 'dart:_foreign_helper' show JS;
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 } 56 }
57 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 57 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
58 // for details. All rights reserved. Use of this source code is governed by a 58 // for details. All rights reserved. Use of this source code is governed by a
59 // BSD-style license that can be found in the LICENSE file. 59 // BSD-style license that can be found in the LICENSE file.
60 60
61 61
62 @DocsEditable 62 @DocsEditable
63 @DomName('SVGAElement') 63 @DomName('SVGAElement')
64 class AElement extends SvgElement implements Transformable, Tests, UriReference, Stylable, ExternalResourcesRequired, LangSpace native "*SVGAElement" { 64 class AElement extends SvgElement implements Transformable, Tests, UriReference, Stylable, ExternalResourcesRequired, LangSpace native "*SVGAElement" {
65 65
66 @DomName('SVGAElement.SVGAElement')
66 @DocsEditable 67 @DocsEditable
67 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 68 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
68 69
69 @DomName('SVGAElement.target') 70 @DomName('SVGAElement.target')
70 @DocsEditable 71 @DocsEditable
71 final AnimatedString target; 72 final AnimatedString target;
72 73
73 // From SVGExternalResourcesRequired 74 // From SVGExternalResourcesRequired
74 75
75 @DomName('SVGAElement.externalResourcesRequired') 76 @DomName('SVGAElement.externalResourcesRequired')
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 } 243 }
243 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
244 // for details. All rights reserved. Use of this source code is governed by a 245 // for details. All rights reserved. Use of this source code is governed by a
245 // BSD-style license that can be found in the LICENSE file. 246 // BSD-style license that can be found in the LICENSE file.
246 247
247 248
248 @DocsEditable 249 @DocsEditable
249 @DomName('SVGAnimateColorElement') 250 @DomName('SVGAnimateColorElement')
250 class AnimateColorElement extends AnimationElement native "*SVGAnimateColorEleme nt" { 251 class AnimateColorElement extends AnimationElement native "*SVGAnimateColorEleme nt" {
251 252
253 @DomName('SVGAnimateColorElement.SVGAnimateColorElement')
252 @DocsEditable 254 @DocsEditable
253 factory AnimateColorElement() => _SvgElementFactoryProvider.createSvgElement_t ag("animateColor"); 255 factory AnimateColorElement() => _SvgElementFactoryProvider.createSvgElement_t ag("animateColor");
254 } 256 }
255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
256 // for details. All rights reserved. Use of this source code is governed by a 258 // for details. All rights reserved. Use of this source code is governed by a
257 // BSD-style license that can be found in the LICENSE file. 259 // BSD-style license that can be found in the LICENSE file.
258 260
259 261
260 @DocsEditable 262 @DocsEditable
261 @DomName('SVGAnimateElement') 263 @DomName('SVGAnimateElement')
262 class AnimateElement extends AnimationElement native "*SVGAnimateElement" { 264 class AnimateElement extends AnimationElement native "*SVGAnimateElement" {
263 265
266 @DomName('SVGAnimateElement.SVGAnimateElement')
264 @DocsEditable 267 @DocsEditable
265 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate"); 268 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate");
266 } 269 }
267 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 270 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
268 // for details. All rights reserved. Use of this source code is governed by a 271 // for details. All rights reserved. Use of this source code is governed by a
269 // BSD-style license that can be found in the LICENSE file. 272 // BSD-style license that can be found in the LICENSE file.
270 273
271 274
272 @DocsEditable 275 @DocsEditable
273 @DomName('SVGAnimateMotionElement') 276 @DomName('SVGAnimateMotionElement')
274 class AnimateMotionElement extends AnimationElement native "*SVGAnimateMotionEle ment" { 277 class AnimateMotionElement extends AnimationElement native "*SVGAnimateMotionEle ment" {
275 278
279 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
276 @DocsEditable 280 @DocsEditable
277 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion"); 281 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion");
278 } 282 }
279 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
280 // for details. All rights reserved. Use of this source code is governed by a 284 // for details. All rights reserved. Use of this source code is governed by a
281 // BSD-style license that can be found in the LICENSE file. 285 // BSD-style license that can be found in the LICENSE file.
282 286
283 287
284 @DocsEditable 288 @DocsEditable
285 @DomName('SVGAnimateTransformElement') 289 @DomName('SVGAnimateTransformElement')
286 class AnimateTransformElement extends AnimationElement native "*SVGAnimateTransf ormElement" { 290 class AnimateTransformElement extends AnimationElement native "*SVGAnimateTransf ormElement" {
287 291
292 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
288 @DocsEditable 293 @DocsEditable
289 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform"); 294 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform");
290 } 295 }
291 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 296 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
292 // for details. All rights reserved. Use of this source code is governed by a 297 // for details. All rights reserved. Use of this source code is governed by a
293 // BSD-style license that can be found in the LICENSE file. 298 // BSD-style license that can be found in the LICENSE file.
294 299
295 300
296 @DocsEditable 301 @DocsEditable
297 @DomName('SVGAnimatedAngle') 302 @DomName('SVGAnimatedAngle')
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 } 499 }
495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
496 // for details. All rights reserved. Use of this source code is governed by a 501 // for details. All rights reserved. Use of this source code is governed by a
497 // BSD-style license that can be found in the LICENSE file. 502 // BSD-style license that can be found in the LICENSE file.
498 503
499 504
500 @DocsEditable 505 @DocsEditable
501 @DomName('SVGAnimationElement') 506 @DomName('SVGAnimationElement')
502 class AnimationElement extends SvgElement implements Tests, ElementTimeControl, ExternalResourcesRequired native "*SVGAnimationElement" { 507 class AnimationElement extends SvgElement implements Tests, ElementTimeControl, ExternalResourcesRequired native "*SVGAnimationElement" {
503 508
509 @DomName('SVGAnimationElement.SVGAnimationElement')
504 @DocsEditable 510 @DocsEditable
505 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 511 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
506 512
507 @DomName('SVGAnimationElement.targetElement') 513 @DomName('SVGAnimationElement.targetElement')
508 @DocsEditable 514 @DocsEditable
509 final SvgElement targetElement; 515 final SvgElement targetElement;
510 516
511 @DomName('SVGAnimationElement.getCurrentTime') 517 @DomName('SVGAnimationElement.getCurrentTime')
512 @DocsEditable 518 @DocsEditable
513 num getCurrentTime() native; 519 num getCurrentTime() native;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 } 570 }
565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 571 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
566 // for details. All rights reserved. Use of this source code is governed by a 572 // for details. All rights reserved. Use of this source code is governed by a
567 // BSD-style license that can be found in the LICENSE file. 573 // BSD-style license that can be found in the LICENSE file.
568 574
569 575
570 @DocsEditable 576 @DocsEditable
571 @DomName('SVGCircleElement') 577 @DomName('SVGCircleElement')
572 class CircleElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace native "*SVGCircleElement" { 578 class CircleElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace native "*SVGCircleElement" {
573 579
580 @DomName('SVGCircleElement.SVGCircleElement')
574 @DocsEditable 581 @DocsEditable
575 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 582 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
576 583
577 @DomName('SVGCircleElement.cx') 584 @DomName('SVGCircleElement.cx')
578 @DocsEditable 585 @DocsEditable
579 final AnimatedLength cx; 586 final AnimatedLength cx;
580 587
581 @DomName('SVGCircleElement.cy') 588 @DomName('SVGCircleElement.cy')
582 @DocsEditable 589 @DocsEditable
583 final AnimatedLength cy; 590 final AnimatedLength cy;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 } 675 }
669 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
670 // for details. All rights reserved. Use of this source code is governed by a 677 // for details. All rights reserved. Use of this source code is governed by a
671 // BSD-style license that can be found in the LICENSE file. 678 // BSD-style license that can be found in the LICENSE file.
672 679
673 680
674 @DocsEditable 681 @DocsEditable
675 @DomName('SVGClipPathElement') 682 @DomName('SVGClipPathElement')
676 class ClipPathElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace native "*SVGClipPathElement" { 683 class ClipPathElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace native "*SVGClipPathElement" {
677 684
685 @DomName('SVGClipPathElement.SVGClipPathElement')
678 @DocsEditable 686 @DocsEditable
679 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 687 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
680 688
681 @DomName('SVGClipPathElement.clipPathUnits') 689 @DomName('SVGClipPathElement.clipPathUnits')
682 @DocsEditable 690 @DocsEditable
683 final AnimatedEnumeration clipPathUnits; 691 final AnimatedEnumeration clipPathUnits;
684 692
685 // From SVGExternalResourcesRequired 693 // From SVGExternalResourcesRequired
686 694
687 @DomName('SVGClipPathElement.externalResourcesRequired') 695 @DomName('SVGClipPathElement.externalResourcesRequired')
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 } 860 }
853 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 861 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
854 // for details. All rights reserved. Use of this source code is governed by a 862 // for details. All rights reserved. Use of this source code is governed by a
855 // BSD-style license that can be found in the LICENSE file. 863 // BSD-style license that can be found in the LICENSE file.
856 864
857 865
858 @DocsEditable 866 @DocsEditable
859 @DomName('SVGCursorElement') 867 @DomName('SVGCursorElement')
860 class CursorElement extends SvgElement implements UriReference, Tests, ExternalR esourcesRequired native "*SVGCursorElement" { 868 class CursorElement extends SvgElement implements UriReference, Tests, ExternalR esourcesRequired native "*SVGCursorElement" {
861 869
870 @DomName('SVGCursorElement.SVGCursorElement')
862 @DocsEditable 871 @DocsEditable
863 factory CursorElement() => _SvgElementFactoryProvider.createSvgElement_tag("cu rsor"); 872 factory CursorElement() => _SvgElementFactoryProvider.createSvgElement_tag("cu rsor");
864 873
865 @DomName('SVGCursorElement.x') 874 @DomName('SVGCursorElement.x')
866 @DocsEditable 875 @DocsEditable
867 final AnimatedLength x; 876 final AnimatedLength x;
868 877
869 @DomName('SVGCursorElement.y') 878 @DomName('SVGCursorElement.y')
870 @DocsEditable 879 @DocsEditable
871 final AnimatedLength y; 880 final AnimatedLength y;
(...skipping 30 matching lines...) Expand all
902 } 911 }
903 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
904 // for details. All rights reserved. Use of this source code is governed by a 913 // for details. All rights reserved. Use of this source code is governed by a
905 // BSD-style license that can be found in the LICENSE file. 914 // BSD-style license that can be found in the LICENSE file.
906 915
907 916
908 @DocsEditable 917 @DocsEditable
909 @DomName('SVGDefsElement') 918 @DomName('SVGDefsElement')
910 class DefsElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGDefsElement" { 919 class DefsElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGDefsElement" {
911 920
921 @DomName('SVGDefsElement.SVGDefsElement')
912 @DocsEditable 922 @DocsEditable
913 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 923 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
914 924
915 // From SVGExternalResourcesRequired 925 // From SVGExternalResourcesRequired
916 926
917 @DomName('SVGDefsElement.externalResourcesRequired') 927 @DomName('SVGDefsElement.externalResourcesRequired')
918 @DocsEditable 928 @DocsEditable
919 final AnimatedBoolean externalResourcesRequired; 929 final AnimatedBoolean externalResourcesRequired;
920 930
921 // From SVGLangSpace 931 // From SVGLangSpace
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 } 1004 }
995 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
996 // for details. All rights reserved. Use of this source code is governed by a 1006 // for details. All rights reserved. Use of this source code is governed by a
997 // BSD-style license that can be found in the LICENSE file. 1007 // BSD-style license that can be found in the LICENSE file.
998 1008
999 1009
1000 @DocsEditable 1010 @DocsEditable
1001 @DomName('SVGDescElement') 1011 @DomName('SVGDescElement')
1002 class DescElement extends SvgElement implements Stylable, LangSpace native "*SVG DescElement" { 1012 class DescElement extends SvgElement implements Stylable, LangSpace native "*SVG DescElement" {
1003 1013
1014 @DomName('SVGDescElement.SVGDescElement')
1004 @DocsEditable 1015 @DocsEditable
1005 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 1016 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
1006 1017
1007 // From SVGLangSpace 1018 // From SVGLangSpace
1008 1019
1009 @DomName('SVGDescElement.xmllang') 1020 @DomName('SVGDescElement.xmllang')
1010 @DocsEditable 1021 @DocsEditable
1011 String xmllang; 1022 String xmllang;
1012 1023
1013 @DomName('SVGDescElement.xmlspace') 1024 @DomName('SVGDescElement.xmlspace')
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 } 1551 }
1541 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1542 // for details. All rights reserved. Use of this source code is governed by a 1553 // for details. All rights reserved. Use of this source code is governed by a
1543 // BSD-style license that can be found in the LICENSE file. 1554 // BSD-style license that can be found in the LICENSE file.
1544 1555
1545 1556
1546 @DocsEditable 1557 @DocsEditable
1547 @DomName('SVGEllipseElement') 1558 @DomName('SVGEllipseElement')
1548 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" { 1559 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" {
1549 1560
1561 @DomName('SVGEllipseElement.SVGEllipseElement')
1550 @DocsEditable 1562 @DocsEditable
1551 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1563 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1552 1564
1553 @DomName('SVGEllipseElement.cx') 1565 @DomName('SVGEllipseElement.cx')
1554 @DocsEditable 1566 @DocsEditable
1555 final AnimatedLength cx; 1567 final AnimatedLength cx;
1556 1568
1557 @DomName('SVGEllipseElement.cy') 1569 @DomName('SVGEllipseElement.cy')
1558 @DocsEditable 1570 @DocsEditable
1559 final AnimatedLength cy; 1571 final AnimatedLength cy;
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2875 } 2887 }
2876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2877 // for details. All rights reserved. Use of this source code is governed by a 2889 // for details. All rights reserved. Use of this source code is governed by a
2878 // BSD-style license that can be found in the LICENSE file. 2890 // BSD-style license that can be found in the LICENSE file.
2879 2891
2880 2892
2881 @DocsEditable 2893 @DocsEditable
2882 @DomName('SVGFilterElement') 2894 @DomName('SVGFilterElement')
2883 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired, Stylable, LangSpace native "*SVGFilterElement" { 2895 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired, Stylable, LangSpace native "*SVGFilterElement" {
2884 2896
2897 @DomName('SVGFilterElement.SVGFilterElement')
2885 @DocsEditable 2898 @DocsEditable
2886 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2899 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2887 2900
2888 @DomName('SVGFilterElement.filterResX') 2901 @DomName('SVGFilterElement.filterResX')
2889 @DocsEditable 2902 @DocsEditable
2890 final AnimatedInteger filterResX; 2903 final AnimatedInteger filterResX;
2891 2904
2892 @DomName('SVGFilterElement.filterResY') 2905 @DomName('SVGFilterElement.filterResY')
2893 @DocsEditable 2906 @DocsEditable
2894 final AnimatedInteger filterResY; 2907 final AnimatedInteger filterResY;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
2995 } 3008 }
2996 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3009 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2997 // for details. All rights reserved. Use of this source code is governed by a 3010 // for details. All rights reserved. Use of this source code is governed by a
2998 // BSD-style license that can be found in the LICENSE file. 3011 // BSD-style license that can be found in the LICENSE file.
2999 3012
3000 3013
3001 @DocsEditable 3014 @DocsEditable
3002 @DomName('SVGFontElement') 3015 @DomName('SVGFontElement')
3003 class FontElement extends SvgElement native "*SVGFontElement" { 3016 class FontElement extends SvgElement native "*SVGFontElement" {
3004 3017
3018 @DomName('SVGFontElement.SVGFontElement')
3005 @DocsEditable 3019 @DocsEditable
3006 factory FontElement() => _SvgElementFactoryProvider.createSvgElement_tag("font "); 3020 factory FontElement() => _SvgElementFactoryProvider.createSvgElement_tag("font ");
3007 } 3021 }
3008 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3022 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3009 // for details. All rights reserved. Use of this source code is governed by a 3023 // for details. All rights reserved. Use of this source code is governed by a
3010 // BSD-style license that can be found in the LICENSE file. 3024 // BSD-style license that can be found in the LICENSE file.
3011 3025
3012 3026
3013 @DocsEditable 3027 @DocsEditable
3014 @DomName('SVGFontFaceElement') 3028 @DomName('SVGFontFaceElement')
3015 class FontFaceElement extends SvgElement native "*SVGFontFaceElement" { 3029 class FontFaceElement extends SvgElement native "*SVGFontFaceElement" {
3016 3030
3031 @DomName('SVGFontFaceElement.SVGFontFaceElement')
3017 @DocsEditable 3032 @DocsEditable
3018 factory FontFaceElement() => _SvgElementFactoryProvider.createSvgElement_tag(" font-face"); 3033 factory FontFaceElement() => _SvgElementFactoryProvider.createSvgElement_tag(" font-face");
3019 } 3034 }
3020 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3021 // for details. All rights reserved. Use of this source code is governed by a 3036 // for details. All rights reserved. Use of this source code is governed by a
3022 // BSD-style license that can be found in the LICENSE file. 3037 // BSD-style license that can be found in the LICENSE file.
3023 3038
3024 3039
3025 @DocsEditable 3040 @DocsEditable
3026 @DomName('SVGFontFaceFormatElement') 3041 @DomName('SVGFontFaceFormatElement')
3027 class FontFaceFormatElement extends SvgElement native "*SVGFontFaceFormatElement " { 3042 class FontFaceFormatElement extends SvgElement native "*SVGFontFaceFormatElement " {
3028 3043
3044 @DomName('SVGFontFaceFormatElement.SVGFontFaceFormatElement')
3029 @DocsEditable 3045 @DocsEditable
3030 factory FontFaceFormatElement() => _SvgElementFactoryProvider.createSvgElement _tag("font-face-format"); 3046 factory FontFaceFormatElement() => _SvgElementFactoryProvider.createSvgElement _tag("font-face-format");
3031 } 3047 }
3032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3048 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3033 // for details. All rights reserved. Use of this source code is governed by a 3049 // for details. All rights reserved. Use of this source code is governed by a
3034 // BSD-style license that can be found in the LICENSE file. 3050 // BSD-style license that can be found in the LICENSE file.
3035 3051
3036 3052
3037 @DocsEditable 3053 @DocsEditable
3038 @DomName('SVGFontFaceNameElement') 3054 @DomName('SVGFontFaceNameElement')
3039 class FontFaceNameElement extends SvgElement native "*SVGFontFaceNameElement" { 3055 class FontFaceNameElement extends SvgElement native "*SVGFontFaceNameElement" {
3040 3056
3057 @DomName('SVGFontFaceNameElement.SVGFontFaceNameElement')
3041 @DocsEditable 3058 @DocsEditable
3042 factory FontFaceNameElement() => _SvgElementFactoryProvider.createSvgElement_t ag("font-face-name"); 3059 factory FontFaceNameElement() => _SvgElementFactoryProvider.createSvgElement_t ag("font-face-name");
3043 } 3060 }
3044 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3061 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3045 // for details. All rights reserved. Use of this source code is governed by a 3062 // for details. All rights reserved. Use of this source code is governed by a
3046 // BSD-style license that can be found in the LICENSE file. 3063 // BSD-style license that can be found in the LICENSE file.
3047 3064
3048 3065
3049 @DocsEditable 3066 @DocsEditable
3050 @DomName('SVGFontFaceSrcElement') 3067 @DomName('SVGFontFaceSrcElement')
3051 class FontFaceSrcElement extends SvgElement native "*SVGFontFaceSrcElement" { 3068 class FontFaceSrcElement extends SvgElement native "*SVGFontFaceSrcElement" {
3052 3069
3070 @DomName('SVGFontFaceSrcElement.SVGFontFaceSrcElement')
3053 @DocsEditable 3071 @DocsEditable
3054 factory FontFaceSrcElement() => _SvgElementFactoryProvider.createSvgElement_ta g("font-face-src"); 3072 factory FontFaceSrcElement() => _SvgElementFactoryProvider.createSvgElement_ta g("font-face-src");
3055 } 3073 }
3056 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3057 // for details. All rights reserved. Use of this source code is governed by a 3075 // for details. All rights reserved. Use of this source code is governed by a
3058 // BSD-style license that can be found in the LICENSE file. 3076 // BSD-style license that can be found in the LICENSE file.
3059 3077
3060 3078
3061 @DocsEditable 3079 @DocsEditable
3062 @DomName('SVGFontFaceUriElement') 3080 @DomName('SVGFontFaceUriElement')
3063 class FontFaceUriElement extends SvgElement native "*SVGFontFaceUriElement" { 3081 class FontFaceUriElement extends SvgElement native "*SVGFontFaceUriElement" {
3064 3082
3083 @DomName('SVGFontFaceUriElement.SVGFontFaceUriElement')
3065 @DocsEditable 3084 @DocsEditable
3066 factory FontFaceUriElement() => _SvgElementFactoryProvider.createSvgElement_ta g("font-face-uri"); 3085 factory FontFaceUriElement() => _SvgElementFactoryProvider.createSvgElement_ta g("font-face-uri");
3067 } 3086 }
3068 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3087 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3069 // for details. All rights reserved. Use of this source code is governed by a 3088 // for details. All rights reserved. Use of this source code is governed by a
3070 // BSD-style license that can be found in the LICENSE file. 3089 // BSD-style license that can be found in the LICENSE file.
3071 3090
3072 3091
3073 @DocsEditable 3092 @DocsEditable
3074 @DomName('SVGForeignObjectElement') 3093 @DomName('SVGForeignObjectElement')
3075 class ForeignObjectElement extends SvgElement implements Transformable, Tests, S tylable, ExternalResourcesRequired, LangSpace native "*SVGForeignObjectElement" { 3094 class ForeignObjectElement extends SvgElement implements Transformable, Tests, S tylable, ExternalResourcesRequired, LangSpace native "*SVGForeignObjectElement" {
3076 3095
3096 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
3077 @DocsEditable 3097 @DocsEditable
3078 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 3098 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
3079 3099
3080 @DomName('SVGForeignObjectElement.height') 3100 @DomName('SVGForeignObjectElement.height')
3081 @DocsEditable 3101 @DocsEditable
3082 final AnimatedLength height; 3102 final AnimatedLength height;
3083 3103
3084 @DomName('SVGForeignObjectElement.width') 3104 @DomName('SVGForeignObjectElement.width')
3085 @DocsEditable 3105 @DocsEditable
3086 final AnimatedLength width; 3106 final AnimatedLength width;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
3175 } 3195 }
3176 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3196 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3177 // for details. All rights reserved. Use of this source code is governed by a 3197 // for details. All rights reserved. Use of this source code is governed by a
3178 // BSD-style license that can be found in the LICENSE file. 3198 // BSD-style license that can be found in the LICENSE file.
3179 3199
3180 3200
3181 @DocsEditable 3201 @DocsEditable
3182 @DomName('SVGGElement') 3202 @DomName('SVGGElement')
3183 class GElement extends SvgElement implements Transformable, Tests, Stylable, Ext ernalResourcesRequired, LangSpace native "*SVGGElement" { 3203 class GElement extends SvgElement implements Transformable, Tests, Stylable, Ext ernalResourcesRequired, LangSpace native "*SVGGElement" {
3184 3204
3205 @DomName('SVGGElement.SVGGElement')
3185 @DocsEditable 3206 @DocsEditable
3186 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 3207 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
3187 3208
3188 // From SVGExternalResourcesRequired 3209 // From SVGExternalResourcesRequired
3189 3210
3190 @DomName('SVGGElement.externalResourcesRequired') 3211 @DomName('SVGGElement.externalResourcesRequired')
3191 @DocsEditable 3212 @DocsEditable
3192 final AnimatedBoolean externalResourcesRequired; 3213 final AnimatedBoolean externalResourcesRequired;
3193 3214
3194 // From SVGLangSpace 3215 // From SVGLangSpace
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
3267 } 3288 }
3268 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3269 // for details. All rights reserved. Use of this source code is governed by a 3290 // for details. All rights reserved. Use of this source code is governed by a
3270 // BSD-style license that can be found in the LICENSE file. 3291 // BSD-style license that can be found in the LICENSE file.
3271 3292
3272 3293
3273 @DocsEditable 3294 @DocsEditable
3274 @DomName('SVGGlyphElement') 3295 @DomName('SVGGlyphElement')
3275 class GlyphElement extends SvgElement native "*SVGGlyphElement" { 3296 class GlyphElement extends SvgElement native "*SVGGlyphElement" {
3276 3297
3298 @DomName('SVGGlyphElement.SVGGlyphElement')
3277 @DocsEditable 3299 @DocsEditable
3278 factory GlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("gly ph"); 3300 factory GlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("gly ph");
3279 } 3301 }
3280 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3302 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3281 // for details. All rights reserved. Use of this source code is governed by a 3303 // for details. All rights reserved. Use of this source code is governed by a
3282 // BSD-style license that can be found in the LICENSE file. 3304 // BSD-style license that can be found in the LICENSE file.
3283 3305
3284 3306
3285 @DocsEditable 3307 @DocsEditable
3286 @DomName('SVGGlyphRefElement') 3308 @DomName('SVGGlyphRefElement')
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
3383 } 3405 }
3384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3406 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3385 // for details. All rights reserved. Use of this source code is governed by a 3407 // for details. All rights reserved. Use of this source code is governed by a
3386 // BSD-style license that can be found in the LICENSE file. 3408 // BSD-style license that can be found in the LICENSE file.
3387 3409
3388 3410
3389 @DocsEditable 3411 @DocsEditable
3390 @DomName('SVGHKernElement') 3412 @DomName('SVGHKernElement')
3391 class HKernElement extends SvgElement native "*SVGHKernElement" { 3413 class HKernElement extends SvgElement native "*SVGHKernElement" {
3392 3414
3415 @DomName('SVGHKernElement.SVGHKernElement')
3393 @DocsEditable 3416 @DocsEditable
3394 factory HKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("hke rn"); 3417 factory HKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("hke rn");
3395 } 3418 }
3396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3397 // for details. All rights reserved. Use of this source code is governed by a 3420 // for details. All rights reserved. Use of this source code is governed by a
3398 // BSD-style license that can be found in the LICENSE file. 3421 // BSD-style license that can be found in the LICENSE file.
3399 3422
3400 3423
3401 @DocsEditable 3424 @DocsEditable
3402 @DomName('SVGImageElement') 3425 @DomName('SVGImageElement')
3403 class ImageElement extends SvgElement implements Transformable, Tests, UriRefere nce, Stylable, ExternalResourcesRequired, LangSpace native "*SVGImageElement" { 3426 class ImageElement extends SvgElement implements Transformable, Tests, UriRefere nce, Stylable, ExternalResourcesRequired, LangSpace native "*SVGImageElement" {
3404 3427
3428 @DomName('SVGImageElement.SVGImageElement')
3405 @DocsEditable 3429 @DocsEditable
3406 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 3430 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3407 3431
3408 @DomName('SVGImageElement.height') 3432 @DomName('SVGImageElement.height')
3409 @DocsEditable 3433 @DocsEditable
3410 final AnimatedLength height; 3434 final AnimatedLength height;
3411 3435
3412 @DomName('SVGImageElement.preserveAspectRatio') 3436 @DomName('SVGImageElement.preserveAspectRatio')
3413 @DocsEditable 3437 @DocsEditable
3414 final AnimatedPreserveAspectRatio preserveAspectRatio; 3438 final AnimatedPreserveAspectRatio preserveAspectRatio;
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
3797 } 3821 }
3798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3822 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3799 // for details. All rights reserved. Use of this source code is governed by a 3823 // for details. All rights reserved. Use of this source code is governed by a
3800 // BSD-style license that can be found in the LICENSE file. 3824 // BSD-style license that can be found in the LICENSE file.
3801 3825
3802 3826
3803 @DocsEditable 3827 @DocsEditable
3804 @DomName('SVGLineElement') 3828 @DomName('SVGLineElement')
3805 class LineElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGLineElement" { 3829 class LineElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGLineElement" {
3806 3830
3831 @DomName('SVGLineElement.SVGLineElement')
3807 @DocsEditable 3832 @DocsEditable
3808 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3833 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3809 3834
3810 @DomName('SVGLineElement.x1') 3835 @DomName('SVGLineElement.x1')
3811 @DocsEditable 3836 @DocsEditable
3812 final AnimatedLength x1; 3837 final AnimatedLength x1;
3813 3838
3814 @DomName('SVGLineElement.x2') 3839 @DomName('SVGLineElement.x2')
3815 @DocsEditable 3840 @DocsEditable
3816 final AnimatedLength x2; 3841 final AnimatedLength x2;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
3905 } 3930 }
3906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3907 // for details. All rights reserved. Use of this source code is governed by a 3932 // for details. All rights reserved. Use of this source code is governed by a
3908 // BSD-style license that can be found in the LICENSE file. 3933 // BSD-style license that can be found in the LICENSE file.
3909 3934
3910 3935
3911 @DocsEditable 3936 @DocsEditable
3912 @DomName('SVGLinearGradientElement') 3937 @DomName('SVGLinearGradientElement')
3913 class LinearGradientElement extends GradientElement native "*SVGLinearGradientEl ement" { 3938 class LinearGradientElement extends GradientElement native "*SVGLinearGradientEl ement" {
3914 3939
3940 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
3915 @DocsEditable 3941 @DocsEditable
3916 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3942 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3917 3943
3918 @DomName('SVGLinearGradientElement.x1') 3944 @DomName('SVGLinearGradientElement.x1')
3919 @DocsEditable 3945 @DocsEditable
3920 final AnimatedLength x1; 3946 final AnimatedLength x1;
3921 3947
3922 @DomName('SVGLinearGradientElement.x2') 3948 @DomName('SVGLinearGradientElement.x2')
3923 @DocsEditable 3949 @DocsEditable
3924 final AnimatedLength x2; 3950 final AnimatedLength x2;
(...skipping 28 matching lines...) Expand all
3953 } 3979 }
3954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3955 // for details. All rights reserved. Use of this source code is governed by a 3981 // for details. All rights reserved. Use of this source code is governed by a
3956 // BSD-style license that can be found in the LICENSE file. 3982 // BSD-style license that can be found in the LICENSE file.
3957 3983
3958 3984
3959 @DocsEditable 3985 @DocsEditable
3960 @DomName('SVGMPathElement') 3986 @DomName('SVGMPathElement')
3961 class MPathElement extends SvgElement implements UriReference, ExternalResources Required native "*SVGMPathElement" { 3987 class MPathElement extends SvgElement implements UriReference, ExternalResources Required native "*SVGMPathElement" {
3962 3988
3989 @DomName('SVGMPathElement.SVGMPathElement')
3963 @DocsEditable 3990 @DocsEditable
3964 factory MPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("mpa th"); 3991 factory MPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("mpa th");
3965 3992
3966 // From SVGExternalResourcesRequired 3993 // From SVGExternalResourcesRequired
3967 3994
3968 @DomName('SVGMPathElement.externalResourcesRequired') 3995 @DomName('SVGMPathElement.externalResourcesRequired')
3969 @DocsEditable 3996 @DocsEditable
3970 final AnimatedBoolean externalResourcesRequired; 3997 final AnimatedBoolean externalResourcesRequired;
3971 3998
3972 // From SVGURIReference 3999 // From SVGURIReference
3973 4000
3974 @DomName('SVGMPathElement.href') 4001 @DomName('SVGMPathElement.href')
3975 @DocsEditable 4002 @DocsEditable
3976 final AnimatedString href; 4003 final AnimatedString href;
3977 } 4004 }
3978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3979 // for details. All rights reserved. Use of this source code is governed by a 4006 // for details. All rights reserved. Use of this source code is governed by a
3980 // BSD-style license that can be found in the LICENSE file. 4007 // BSD-style license that can be found in the LICENSE file.
3981 4008
3982 4009
3983 @DocsEditable 4010 @DocsEditable
3984 @DomName('SVGMarkerElement') 4011 @DomName('SVGMarkerElement')
3985 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace native "*SVGMarkerElement" { 4012 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace native "*SVGMarkerElement" {
3986 4013
4014 @DomName('SVGMarkerElement.SVGMarkerElement')
3987 @DocsEditable 4015 @DocsEditable
3988 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 4016 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3989 4017
3990 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 4018 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
3991 4019
3992 static const int SVG_MARKERUNITS_UNKNOWN = 0; 4020 static const int SVG_MARKERUNITS_UNKNOWN = 0;
3993 4021
3994 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; 4022 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
3995 4023
3996 static const int SVG_MARKER_ORIENT_ANGLE = 2; 4024 static const int SVG_MARKER_ORIENT_ANGLE = 2;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
4075 } 4103 }
4076 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4104 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4077 // for details. All rights reserved. Use of this source code is governed by a 4105 // for details. All rights reserved. Use of this source code is governed by a
4078 // BSD-style license that can be found in the LICENSE file. 4106 // BSD-style license that can be found in the LICENSE file.
4079 4107
4080 4108
4081 @DocsEditable 4109 @DocsEditable
4082 @DomName('SVGMaskElement') 4110 @DomName('SVGMaskElement')
4083 class MaskElement extends SvgElement implements Tests, Stylable, ExternalResourc esRequired, LangSpace native "*SVGMaskElement" { 4111 class MaskElement extends SvgElement implements Tests, Stylable, ExternalResourc esRequired, LangSpace native "*SVGMaskElement" {
4084 4112
4113 @DomName('SVGMaskElement.SVGMaskElement')
4085 @DocsEditable 4114 @DocsEditable
4086 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 4115 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
4087 4116
4088 @DomName('SVGMaskElement.height') 4117 @DomName('SVGMaskElement.height')
4089 @DocsEditable 4118 @DocsEditable
4090 final AnimatedLength height; 4119 final AnimatedLength height;
4091 4120
4092 @DomName('SVGMaskElement.maskContentUnits') 4121 @DomName('SVGMaskElement.maskContentUnits')
4093 @DocsEditable 4122 @DocsEditable
4094 final AnimatedEnumeration maskContentUnits; 4123 final AnimatedEnumeration maskContentUnits;
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
4527 } 4556 }
4528 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4557 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4529 // for details. All rights reserved. Use of this source code is governed by a 4558 // for details. All rights reserved. Use of this source code is governed by a
4530 // BSD-style license that can be found in the LICENSE file. 4559 // BSD-style license that can be found in the LICENSE file.
4531 4560
4532 4561
4533 @DocsEditable 4562 @DocsEditable
4534 @DomName('SVGPathElement') 4563 @DomName('SVGPathElement')
4535 class PathElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGPathElement" { 4564 class PathElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGPathElement" {
4536 4565
4566 @DomName('SVGPathElement.SVGPathElement')
4537 @DocsEditable 4567 @DocsEditable
4538 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 4568 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
4539 4569
4540 @DomName('SVGPathElement.animatedNormalizedPathSegList') 4570 @DomName('SVGPathElement.animatedNormalizedPathSegList')
4541 @DocsEditable 4571 @DocsEditable
4542 final PathSegList animatedNormalizedPathSegList; 4572 final PathSegList animatedNormalizedPathSegList;
4543 4573
4544 @DomName('SVGPathElement.animatedPathSegList') 4574 @DomName('SVGPathElement.animatedPathSegList')
4545 @DocsEditable 4575 @DocsEditable
4546 final PathSegList animatedPathSegList; 4576 final PathSegList animatedPathSegList;
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
5423 } 5453 }
5424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5454 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5425 // for details. All rights reserved. Use of this source code is governed by a 5455 // for details. All rights reserved. Use of this source code is governed by a
5426 // BSD-style license that can be found in the LICENSE file. 5456 // BSD-style license that can be found in the LICENSE file.
5427 5457
5428 5458
5429 @DocsEditable 5459 @DocsEditable
5430 @DomName('SVGPatternElement') 5460 @DomName('SVGPatternElement')
5431 class PatternElement extends SvgElement implements FitToViewBox, Tests, UriRefer ence, Stylable, ExternalResourcesRequired, LangSpace native "*SVGPatternElement" { 5461 class PatternElement extends SvgElement implements FitToViewBox, Tests, UriRefer ence, Stylable, ExternalResourcesRequired, LangSpace native "*SVGPatternElement" {
5432 5462
5463 @DomName('SVGPatternElement.SVGPatternElement')
5433 @DocsEditable 5464 @DocsEditable
5434 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 5465 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
5435 5466
5436 @DomName('SVGPatternElement.height') 5467 @DomName('SVGPatternElement.height')
5437 @DocsEditable 5468 @DocsEditable
5438 final AnimatedLength height; 5469 final AnimatedLength height;
5439 5470
5440 @DomName('SVGPatternElement.patternContentUnits') 5471 @DomName('SVGPatternElement.patternContentUnits')
5441 @DocsEditable 5472 @DocsEditable
5442 final AnimatedEnumeration patternContentUnits; 5473 final AnimatedEnumeration patternContentUnits;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
5587 } 5618 }
5588 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5589 // for details. All rights reserved. Use of this source code is governed by a 5620 // for details. All rights reserved. Use of this source code is governed by a
5590 // BSD-style license that can be found in the LICENSE file. 5621 // BSD-style license that can be found in the LICENSE file.
5591 5622
5592 5623
5593 @DocsEditable 5624 @DocsEditable
5594 @DomName('SVGPolygonElement') 5625 @DomName('SVGPolygonElement')
5595 class PolygonElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGPolygonElement" { 5626 class PolygonElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGPolygonElement" {
5596 5627
5628 @DomName('SVGPolygonElement.SVGPolygonElement')
5597 @DocsEditable 5629 @DocsEditable
5598 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 5630 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
5599 5631
5600 @DomName('SVGPolygonElement.animatedPoints') 5632 @DomName('SVGPolygonElement.animatedPoints')
5601 @DocsEditable 5633 @DocsEditable
5602 final PointList animatedPoints; 5634 final PointList animatedPoints;
5603 5635
5604 @DomName('SVGPolygonElement.points') 5636 @DomName('SVGPolygonElement.points')
5605 @DocsEditable 5637 @DocsEditable
5606 final PointList points; 5638 final PointList points;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
5687 } 5719 }
5688 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5720 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5689 // for details. All rights reserved. Use of this source code is governed by a 5721 // for details. All rights reserved. Use of this source code is governed by a
5690 // BSD-style license that can be found in the LICENSE file. 5722 // BSD-style license that can be found in the LICENSE file.
5691 5723
5692 5724
5693 @DocsEditable 5725 @DocsEditable
5694 @DomName('SVGPolylineElement') 5726 @DomName('SVGPolylineElement')
5695 class PolylineElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace native "*SVGPolylineElement" { 5727 class PolylineElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace native "*SVGPolylineElement" {
5696 5728
5729 @DomName('SVGPolylineElement.SVGPolylineElement')
5697 @DocsEditable 5730 @DocsEditable
5698 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 5731 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
5699 5732
5700 @DomName('SVGPolylineElement.animatedPoints') 5733 @DomName('SVGPolylineElement.animatedPoints')
5701 @DocsEditable 5734 @DocsEditable
5702 final PointList animatedPoints; 5735 final PointList animatedPoints;
5703 5736
5704 @DomName('SVGPolylineElement.points') 5737 @DomName('SVGPolylineElement.points')
5705 @DocsEditable 5738 @DocsEditable
5706 final PointList points; 5739 final PointList points;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
5832 } 5865 }
5833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5866 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5834 // for details. All rights reserved. Use of this source code is governed by a 5867 // for details. All rights reserved. Use of this source code is governed by a
5835 // BSD-style license that can be found in the LICENSE file. 5868 // BSD-style license that can be found in the LICENSE file.
5836 5869
5837 5870
5838 @DocsEditable 5871 @DocsEditable
5839 @DomName('SVGRadialGradientElement') 5872 @DomName('SVGRadialGradientElement')
5840 class RadialGradientElement extends GradientElement native "*SVGRadialGradientEl ement" { 5873 class RadialGradientElement extends GradientElement native "*SVGRadialGradientEl ement" {
5841 5874
5875 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
5842 @DocsEditable 5876 @DocsEditable
5843 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 5877 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
5844 5878
5845 @DomName('SVGRadialGradientElement.cx') 5879 @DomName('SVGRadialGradientElement.cx')
5846 @DocsEditable 5880 @DocsEditable
5847 final AnimatedLength cx; 5881 final AnimatedLength cx;
5848 5882
5849 @DomName('SVGRadialGradientElement.cy') 5883 @DomName('SVGRadialGradientElement.cy')
5850 @DocsEditable 5884 @DocsEditable
5851 final AnimatedLength cy; 5885 final AnimatedLength cy;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
5893 } 5927 }
5894 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5895 // for details. All rights reserved. Use of this source code is governed by a 5929 // for details. All rights reserved. Use of this source code is governed by a
5896 // BSD-style license that can be found in the LICENSE file. 5930 // BSD-style license that can be found in the LICENSE file.
5897 5931
5898 5932
5899 @DocsEditable 5933 @DocsEditable
5900 @DomName('SVGRectElement') 5934 @DomName('SVGRectElement')
5901 class RectElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGRectElement" { 5935 class RectElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGRectElement" {
5902 5936
5937 @DomName('SVGRectElement.SVGRectElement')
5903 @DocsEditable 5938 @DocsEditable
5904 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 5939 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5905 5940
5906 @DomName('SVGRectElement.height') 5941 @DomName('SVGRectElement.height')
5907 @DocsEditable 5942 @DocsEditable
5908 final AnimatedLength height; 5943 final AnimatedLength height;
5909 5944
5910 @DomName('SVGRectElement.rx') 5945 @DomName('SVGRectElement.rx')
5911 @DocsEditable 5946 @DocsEditable
5912 final AnimatedLength rx; 5947 final AnimatedLength rx;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
6030 } 6065 }
6031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6066 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6032 // for details. All rights reserved. Use of this source code is governed by a 6067 // for details. All rights reserved. Use of this source code is governed by a
6033 // BSD-style license that can be found in the LICENSE file. 6068 // BSD-style license that can be found in the LICENSE file.
6034 6069
6035 6070
6036 @DocsEditable 6071 @DocsEditable
6037 @DomName('SVGScriptElement') 6072 @DomName('SVGScriptElement')
6038 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "*SVGScriptElement" { 6073 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "*SVGScriptElement" {
6039 6074
6075 @DomName('SVGScriptElement.SVGScriptElement')
6040 @DocsEditable 6076 @DocsEditable
6041 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 6077 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
6042 6078
6043 @DomName('SVGScriptElement.type') 6079 @DomName('SVGScriptElement.type')
6044 @DocsEditable 6080 @DocsEditable
6045 String type; 6081 String type;
6046 6082
6047 // From SVGExternalResourcesRequired 6083 // From SVGExternalResourcesRequired
6048 6084
6049 @DomName('SVGScriptElement.externalResourcesRequired') 6085 @DomName('SVGScriptElement.externalResourcesRequired')
6050 @DocsEditable 6086 @DocsEditable
6051 final AnimatedBoolean externalResourcesRequired; 6087 final AnimatedBoolean externalResourcesRequired;
6052 6088
6053 // From SVGURIReference 6089 // From SVGURIReference
6054 6090
6055 @DomName('SVGScriptElement.href') 6091 @DomName('SVGScriptElement.href')
6056 @DocsEditable 6092 @DocsEditable
6057 final AnimatedString href; 6093 final AnimatedString href;
6058 } 6094 }
6059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6095 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6060 // for details. All rights reserved. Use of this source code is governed by a 6096 // for details. All rights reserved. Use of this source code is governed by a
6061 // BSD-style license that can be found in the LICENSE file. 6097 // BSD-style license that can be found in the LICENSE file.
6062 6098
6063 6099
6064 @DocsEditable 6100 @DocsEditable
6065 @DomName('SVGSetElement') 6101 @DomName('SVGSetElement')
6066 class SetElement extends AnimationElement native "*SVGSetElement" { 6102 class SetElement extends AnimationElement native "*SVGSetElement" {
6067 6103
6104 @DomName('SVGSetElement.SVGSetElement')
6068 @DocsEditable 6105 @DocsEditable
6069 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ; 6106 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ;
6070 } 6107 }
6071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6108 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6072 // for details. All rights reserved. Use of this source code is governed by a 6109 // for details. All rights reserved. Use of this source code is governed by a
6073 // BSD-style license that can be found in the LICENSE file. 6110 // BSD-style license that can be found in the LICENSE file.
6074 6111
6075 6112
6076 @DocsEditable 6113 @DocsEditable
6077 @DomName('SVGStopElement') 6114 @DomName('SVGStopElement')
6078 class StopElement extends SvgElement implements Stylable native "*SVGStopElement " { 6115 class StopElement extends SvgElement implements Stylable native "*SVGStopElement " {
6079 6116
6117 @DomName('SVGStopElement.SVGStopElement')
6080 @DocsEditable 6118 @DocsEditable
6081 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 6119 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
6082 6120
6083 @DomName('SVGStopElement.offset') 6121 @DomName('SVGStopElement.offset')
6084 @DocsEditable 6122 @DocsEditable
6085 final AnimatedNumber offset; 6123 final AnimatedNumber offset;
6086 6124
6087 // From SVGStylable 6125 // From SVGStylable
6088 6126
6089 // Shadowing definition. 6127 // Shadowing definition.
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
6329 } 6367 }
6330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6368 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6331 // for details. All rights reserved. Use of this source code is governed by a 6369 // for details. All rights reserved. Use of this source code is governed by a
6332 // BSD-style license that can be found in the LICENSE file. 6370 // BSD-style license that can be found in the LICENSE file.
6333 6371
6334 6372
6335 @DocsEditable 6373 @DocsEditable
6336 @DomName('SVGStyleElement') 6374 @DomName('SVGStyleElement')
6337 class StyleElement extends SvgElement implements LangSpace native "*SVGStyleElem ent" { 6375 class StyleElement extends SvgElement implements LangSpace native "*SVGStyleElem ent" {
6338 6376
6377 @DomName('SVGStyleElement.SVGStyleElement')
6339 @DocsEditable 6378 @DocsEditable
6340 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 6379 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
6341 6380
6342 @DomName('SVGStyleElement.disabled') 6381 @DomName('SVGStyleElement.disabled')
6343 @DocsEditable 6382 @DocsEditable
6344 bool disabled; 6383 bool disabled;
6345 6384
6346 @DomName('SVGStyleElement.media') 6385 @DomName('SVGStyleElement.media')
6347 @DocsEditable 6386 @DocsEditable
6348 String media; 6387 String media;
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
6819 } 6858 }
6820 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6821 // for details. All rights reserved. Use of this source code is governed by a 6860 // for details. All rights reserved. Use of this source code is governed by a
6822 // BSD-style license that can be found in the LICENSE file. 6861 // BSD-style license that can be found in the LICENSE file.
6823 6862
6824 6863
6825 @DocsEditable 6864 @DocsEditable
6826 @DomName('SVGSwitchElement') 6865 @DomName('SVGSwitchElement')
6827 class SwitchElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace native "*SVGSwitchElement" { 6866 class SwitchElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace native "*SVGSwitchElement" {
6828 6867
6868 @DomName('SVGSwitchElement.SVGSwitchElement')
6829 @DocsEditable 6869 @DocsEditable
6830 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 6870 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
6831 6871
6832 // From SVGExternalResourcesRequired 6872 // From SVGExternalResourcesRequired
6833 6873
6834 @DomName('SVGSwitchElement.externalResourcesRequired') 6874 @DomName('SVGSwitchElement.externalResourcesRequired')
6835 @DocsEditable 6875 @DocsEditable
6836 final AnimatedBoolean externalResourcesRequired; 6876 final AnimatedBoolean externalResourcesRequired;
6837 6877
6838 // From SVGLangSpace 6878 // From SVGLangSpace
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
6911 } 6951 }
6912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6952 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6913 // for details. All rights reserved. Use of this source code is governed by a 6953 // for details. All rights reserved. Use of this source code is governed by a
6914 // BSD-style license that can be found in the LICENSE file. 6954 // BSD-style license that can be found in the LICENSE file.
6915 6955
6916 6956
6917 @DocsEditable 6957 @DocsEditable
6918 @DomName('SVGSymbolElement') 6958 @DomName('SVGSymbolElement')
6919 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace native "*SVGSymbolElement" { 6959 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace native "*SVGSymbolElement" {
6920 6960
6961 @DomName('SVGSymbolElement.SVGSymbolElement')
6921 @DocsEditable 6962 @DocsEditable
6922 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 6963 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6923 6964
6924 // From SVGExternalResourcesRequired 6965 // From SVGExternalResourcesRequired
6925 6966
6926 @DomName('SVGSymbolElement.externalResourcesRequired') 6967 @DomName('SVGSymbolElement.externalResourcesRequired')
6927 @DocsEditable 6968 @DocsEditable
6928 final AnimatedBoolean externalResourcesRequired; 6969 final AnimatedBoolean externalResourcesRequired;
6929 6970
6930 // From SVGFitToViewBox 6971 // From SVGFitToViewBox
(...skipping 30 matching lines...) Expand all
6961 } 7002 }
6962 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6963 // for details. All rights reserved. Use of this source code is governed by a 7004 // for details. All rights reserved. Use of this source code is governed by a
6964 // BSD-style license that can be found in the LICENSE file. 7005 // BSD-style license that can be found in the LICENSE file.
6965 7006
6966 7007
6967 @DocsEditable 7008 @DocsEditable
6968 @DomName('SVGTRefElement') 7009 @DomName('SVGTRefElement')
6969 class TRefElement extends TextPositioningElement implements UriReference native "*SVGTRefElement" { 7010 class TRefElement extends TextPositioningElement implements UriReference native "*SVGTRefElement" {
6970 7011
7012 @DomName('SVGTRefElement.SVGTRefElement')
6971 @DocsEditable 7013 @DocsEditable
6972 factory TRefElement() => _SvgElementFactoryProvider.createSvgElement_tag("tref "); 7014 factory TRefElement() => _SvgElementFactoryProvider.createSvgElement_tag("tref ");
6973 7015
6974 // From SVGURIReference 7016 // From SVGURIReference
6975 7017
6976 @DomName('SVGTRefElement.href') 7018 @DomName('SVGTRefElement.href')
6977 @DocsEditable 7019 @DocsEditable
6978 final AnimatedString href; 7020 final AnimatedString href;
6979 } 7021 }
6980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7022 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6981 // for details. All rights reserved. Use of this source code is governed by a 7023 // for details. All rights reserved. Use of this source code is governed by a
6982 // BSD-style license that can be found in the LICENSE file. 7024 // BSD-style license that can be found in the LICENSE file.
6983 7025
6984 7026
6985 @DocsEditable 7027 @DocsEditable
6986 @DomName('SVGTSpanElement') 7028 @DomName('SVGTSpanElement')
6987 class TSpanElement extends TextPositioningElement native "*SVGTSpanElement" { 7029 class TSpanElement extends TextPositioningElement native "*SVGTSpanElement" {
6988 7030
7031 @DomName('SVGTSpanElement.SVGTSpanElement')
6989 @DocsEditable 7032 @DocsEditable
6990 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an"); 7033 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an");
6991 } 7034 }
6992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6993 // for details. All rights reserved. Use of this source code is governed by a 7036 // for details. All rights reserved. Use of this source code is governed by a
6994 // BSD-style license that can be found in the LICENSE file. 7037 // BSD-style license that can be found in the LICENSE file.
6995 7038
6996 7039
6997 @DomName('SVGTests') 7040 @DomName('SVGTests')
6998 abstract class Tests { 7041 abstract class Tests {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
7112 } 7155 }
7113 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7156 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7114 // for details. All rights reserved. Use of this source code is governed by a 7157 // for details. All rights reserved. Use of this source code is governed by a
7115 // BSD-style license that can be found in the LICENSE file. 7158 // BSD-style license that can be found in the LICENSE file.
7116 7159
7117 7160
7118 @DocsEditable 7161 @DocsEditable
7119 @DomName('SVGTextElement') 7162 @DomName('SVGTextElement')
7120 class TextElement extends TextPositioningElement implements Transformable native "*SVGTextElement" { 7163 class TextElement extends TextPositioningElement implements Transformable native "*SVGTextElement" {
7121 7164
7165 @DomName('SVGTextElement.SVGTextElement')
7122 @DocsEditable 7166 @DocsEditable
7123 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 7167 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
7124 7168
7125 // From SVGLocatable 7169 // From SVGLocatable
7126 7170
7127 @DomName('SVGTextElement.farthestViewportElement') 7171 @DomName('SVGTextElement.farthestViewportElement')
7128 @DocsEditable 7172 @DocsEditable
7129 final SvgElement farthestViewportElement; 7173 final SvgElement farthestViewportElement;
7130 7174
7131 @DomName('SVGTextElement.nearestViewportElement') 7175 @DomName('SVGTextElement.nearestViewportElement')
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
7226 } 7270 }
7227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7271 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7228 // for details. All rights reserved. Use of this source code is governed by a 7272 // for details. All rights reserved. Use of this source code is governed by a
7229 // BSD-style license that can be found in the LICENSE file. 7273 // BSD-style license that can be found in the LICENSE file.
7230 7274
7231 7275
7232 @DocsEditable 7276 @DocsEditable
7233 @DomName('SVGTitleElement') 7277 @DomName('SVGTitleElement')
7234 class TitleElement extends SvgElement implements Stylable, LangSpace native "*SV GTitleElement" { 7278 class TitleElement extends SvgElement implements Stylable, LangSpace native "*SV GTitleElement" {
7235 7279
7280 @DomName('SVGTitleElement.SVGTitleElement')
7236 @DocsEditable 7281 @DocsEditable
7237 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 7282 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
7238 7283
7239 // From SVGLangSpace 7284 // From SVGLangSpace
7240 7285
7241 @DomName('SVGTitleElement.xmllang') 7286 @DomName('SVGTitleElement.xmllang')
7242 @DocsEditable 7287 @DocsEditable
7243 String xmllang; 7288 String xmllang;
7244 7289
7245 @DomName('SVGTitleElement.xmlspace') 7290 @DomName('SVGTitleElement.xmlspace')
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
7594 } 7639 }
7595 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7640 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7596 // for details. All rights reserved. Use of this source code is governed by a 7641 // for details. All rights reserved. Use of this source code is governed by a
7597 // BSD-style license that can be found in the LICENSE file. 7642 // BSD-style license that can be found in the LICENSE file.
7598 7643
7599 7644
7600 @DocsEditable 7645 @DocsEditable
7601 @DomName('SVGUseElement') 7646 @DomName('SVGUseElement')
7602 class UseElement extends SvgElement implements Transformable, Tests, UriReferenc e, Stylable, ExternalResourcesRequired, LangSpace native "*SVGUseElement" { 7647 class UseElement extends SvgElement implements Transformable, Tests, UriReferenc e, Stylable, ExternalResourcesRequired, LangSpace native "*SVGUseElement" {
7603 7648
7649 @DomName('SVGUseElement.SVGUseElement')
7604 @DocsEditable 7650 @DocsEditable
7605 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 7651 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
7606 7652
7607 @DomName('SVGUseElement.animatedInstanceRoot') 7653 @DomName('SVGUseElement.animatedInstanceRoot')
7608 @DocsEditable 7654 @DocsEditable
7609 final ElementInstance animatedInstanceRoot; 7655 final ElementInstance animatedInstanceRoot;
7610 7656
7611 @DomName('SVGUseElement.height') 7657 @DomName('SVGUseElement.height')
7612 @DocsEditable 7658 @DocsEditable
7613 final AnimatedLength height; 7659 final AnimatedLength height;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
7716 } 7762 }
7717 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7763 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7718 // for details. All rights reserved. Use of this source code is governed by a 7764 // for details. All rights reserved. Use of this source code is governed by a
7719 // BSD-style license that can be found in the LICENSE file. 7765 // BSD-style license that can be found in the LICENSE file.
7720 7766
7721 7767
7722 @DocsEditable 7768 @DocsEditable
7723 @DomName('SVGVKernElement') 7769 @DomName('SVGVKernElement')
7724 class VKernElement extends SvgElement native "*SVGVKernElement" { 7770 class VKernElement extends SvgElement native "*SVGVKernElement" {
7725 7771
7772 @DomName('SVGVKernElement.SVGVKernElement')
7726 @DocsEditable 7773 @DocsEditable
7727 factory VKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("vke rn"); 7774 factory VKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("vke rn");
7728 } 7775 }
7729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7730 // for details. All rights reserved. Use of this source code is governed by a 7777 // for details. All rights reserved. Use of this source code is governed by a
7731 // BSD-style license that can be found in the LICENSE file. 7778 // BSD-style license that can be found in the LICENSE file.
7732 7779
7733 7780
7734 @DocsEditable 7781 @DocsEditable
7735 @DomName('SVGViewElement') 7782 @DomName('SVGViewElement')
7736 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan native "*SVGViewElement" { 7783 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan native "*SVGViewElement" {
7737 7784
7785 @DomName('SVGViewElement.SVGViewElement')
7738 @DocsEditable 7786 @DocsEditable
7739 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 7787 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
7740 7788
7741 @DomName('SVGViewElement.viewTarget') 7789 @DomName('SVGViewElement.viewTarget')
7742 @DocsEditable 7790 @DocsEditable
7743 final StringList viewTarget; 7791 final StringList viewTarget;
7744 7792
7745 // From SVGExternalResourcesRequired 7793 // From SVGExternalResourcesRequired
7746 7794
7747 @DomName('SVGViewElement.externalResourcesRequired') 7795 @DomName('SVGViewElement.externalResourcesRequired')
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
8040 8088
8041 List<ElementInstance> getRange(int start, int rangeLength) => 8089 List<ElementInstance> getRange(int start, int rangeLength) =>
8042 Lists.getRange(this, start, rangeLength, <ElementInstance>[]); 8090 Lists.getRange(this, start, rangeLength, <ElementInstance>[]);
8043 8091
8044 // -- end List<ElementInstance> mixins. 8092 // -- end List<ElementInstance> mixins.
8045 8093
8046 @DomName('SVGElementInstanceList.item') 8094 @DomName('SVGElementInstanceList.item')
8047 @DocsEditable 8095 @DocsEditable
8048 ElementInstance item(int index) native; 8096 ElementInstance item(int index) native;
8049 } 8097 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698