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

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

Issue 11418075: Dartifying members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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:html'; 3 import 'dart:html';
4 import 'dart:nativewrappers'; 4 import 'dart:nativewrappers';
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:svg library. 6 // Auto-generated dart:svg library.
7 7
8 8
9 9
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 static SvgElement createSvgElement_svg(String svg) { 26 static SvgElement createSvgElement_svg(String svg) {
27 Element parentTag; 27 Element parentTag;
28 final match = _START_TAG_REGEXP.firstMatch(svg); 28 final match = _START_TAG_REGEXP.firstMatch(svg);
29 if (match != null && match.group(1).toLowerCase() == 'svg') { 29 if (match != null && match.group(1).toLowerCase() == 'svg') {
30 parentTag = new Element.tag('div'); 30 parentTag = new Element.tag('div');
31 } else { 31 } else {
32 parentTag = new SvgSvgElement(); 32 parentTag = new SvgSvgElement();
33 } 33 }
34 34
35 parentTag.innerHTML = svg; 35 parentTag.innerHtml = svg;
36 if (parentTag.elements.length == 1) return parentTag.elements.removeLast(); 36 if (parentTag.elements.length == 1) return parentTag.elements.removeLast();
37 37
38 throw new ArgumentError( 38 throw new ArgumentError(
39 'SVG had ${parentTag.elements.length} ' 39 'SVG had ${parentTag.elements.length} '
40 'top-level elements but 1 expected'); 40 'top-level elements but 1 expected');
41 } 41 }
42 } 42 }
43 43
44 class _SvgSvgElementFactoryProvider { 44 class _SvgSvgElementFactoryProvider {
45 static SvgSvgElement createSvgSvgElement() { 45 static SvgSvgElement createSvgSvgElement() {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 /** @domName SVGAElement.nearestViewportElement */ 94 /** @domName SVGAElement.nearestViewportElement */
95 SvgElement get nearestViewportElement native "SVGAElement_nearestViewportEleme nt_Getter"; 95 SvgElement get nearestViewportElement native "SVGAElement_nearestViewportEleme nt_Getter";
96 96
97 97
98 /** @domName SVGAElement.getBBox */ 98 /** @domName SVGAElement.getBBox */
99 Rect getBBox() native "SVGAElement_getBBox_Callback"; 99 Rect getBBox() native "SVGAElement_getBBox_Callback";
100 100
101 101
102 /** @domName SVGAElement.getCTM */ 102 /** @domName SVGAElement.getCTM */
103 Matrix getCTM() native "SVGAElement_getCTM_Callback"; 103 Matrix getCtm() native "SVGAElement_getCTM_Callback";
104 104
105 105
106 /** @domName SVGAElement.getScreenCTM */ 106 /** @domName SVGAElement.getScreenCTM */
107 Matrix getScreenCTM() native "SVGAElement_getScreenCTM_Callback"; 107 Matrix getScreenCtm() native "SVGAElement_getScreenCTM_Callback";
108 108
109 109
110 /** @domName SVGAElement.getTransformToElement */ 110 /** @domName SVGAElement.getTransformToElement */
111 Matrix getTransformToElement(SvgElement element) native "SVGAElement_getTransf ormToElement_Callback"; 111 Matrix getTransformToElement(SvgElement element) native "SVGAElement_getTransf ormToElement_Callback";
112 112
113 113
114 /** @domName SVGAElement.className */ 114 /** @domName SVGAElement.className */
115 AnimatedString get $dom_svgClassName native "SVGAElement_className_Getter"; 115 AnimatedString get $dom_svgClassName native "SVGAElement_className_Getter";
116 116
117 117
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 950
951 /** @domName SVGCircleElement.nearestViewportElement */ 951 /** @domName SVGCircleElement.nearestViewportElement */
952 SvgElement get nearestViewportElement native "SVGCircleElement_nearestViewport Element_Getter"; 952 SvgElement get nearestViewportElement native "SVGCircleElement_nearestViewport Element_Getter";
953 953
954 954
955 /** @domName SVGCircleElement.getBBox */ 955 /** @domName SVGCircleElement.getBBox */
956 Rect getBBox() native "SVGCircleElement_getBBox_Callback"; 956 Rect getBBox() native "SVGCircleElement_getBBox_Callback";
957 957
958 958
959 /** @domName SVGCircleElement.getCTM */ 959 /** @domName SVGCircleElement.getCTM */
960 Matrix getCTM() native "SVGCircleElement_getCTM_Callback"; 960 Matrix getCtm() native "SVGCircleElement_getCTM_Callback";
961 961
962 962
963 /** @domName SVGCircleElement.getScreenCTM */ 963 /** @domName SVGCircleElement.getScreenCTM */
964 Matrix getScreenCTM() native "SVGCircleElement_getScreenCTM_Callback"; 964 Matrix getScreenCtm() native "SVGCircleElement_getScreenCTM_Callback";
965 965
966 966
967 /** @domName SVGCircleElement.getTransformToElement */ 967 /** @domName SVGCircleElement.getTransformToElement */
968 Matrix getTransformToElement(SvgElement element) native "SVGCircleElement_getT ransformToElement_Callback"; 968 Matrix getTransformToElement(SvgElement element) native "SVGCircleElement_getT ransformToElement_Callback";
969 969
970 970
971 /** @domName SVGCircleElement.className */ 971 /** @domName SVGCircleElement.className */
972 AnimatedString get $dom_svgClassName native "SVGCircleElement_className_Getter "; 972 AnimatedString get $dom_svgClassName native "SVGCircleElement_className_Getter ";
973 973
974 974
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 1044
1045 /** @domName SVGClipPathElement.nearestViewportElement */ 1045 /** @domName SVGClipPathElement.nearestViewportElement */
1046 SvgElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo rtElement_Getter"; 1046 SvgElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo rtElement_Getter";
1047 1047
1048 1048
1049 /** @domName SVGClipPathElement.getBBox */ 1049 /** @domName SVGClipPathElement.getBBox */
1050 Rect getBBox() native "SVGClipPathElement_getBBox_Callback"; 1050 Rect getBBox() native "SVGClipPathElement_getBBox_Callback";
1051 1051
1052 1052
1053 /** @domName SVGClipPathElement.getCTM */ 1053 /** @domName SVGClipPathElement.getCTM */
1054 Matrix getCTM() native "SVGClipPathElement_getCTM_Callback"; 1054 Matrix getCtm() native "SVGClipPathElement_getCTM_Callback";
1055 1055
1056 1056
1057 /** @domName SVGClipPathElement.getScreenCTM */ 1057 /** @domName SVGClipPathElement.getScreenCTM */
1058 Matrix getScreenCTM() native "SVGClipPathElement_getScreenCTM_Callback"; 1058 Matrix getScreenCtm() native "SVGClipPathElement_getScreenCTM_Callback";
1059 1059
1060 1060
1061 /** @domName SVGClipPathElement.getTransformToElement */ 1061 /** @domName SVGClipPathElement.getTransformToElement */
1062 Matrix getTransformToElement(SvgElement element) native "SVGClipPathElement_ge tTransformToElement_Callback"; 1062 Matrix getTransformToElement(SvgElement element) native "SVGClipPathElement_ge tTransformToElement_Callback";
1063 1063
1064 1064
1065 /** @domName SVGClipPathElement.className */ 1065 /** @domName SVGClipPathElement.className */
1066 AnimatedString get $dom_svgClassName native "SVGClipPathElement_className_Gett er"; 1066 AnimatedString get $dom_svgClassName native "SVGClipPathElement_className_Gett er";
1067 1067
1068 1068
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 1120
1121 /** @domName SVGColor.rgbColor */ 1121 /** @domName SVGColor.rgbColor */
1122 RGBColor get rgbColor native "SVGColor_rgbColor_Getter"; 1122 RGBColor get rgbColor native "SVGColor_rgbColor_Getter";
1123 1123
1124 1124
1125 /** @domName SVGColor.setColor */ 1125 /** @domName SVGColor.setColor */
1126 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo r_setColor_Callback"; 1126 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo r_setColor_Callback";
1127 1127
1128 1128
1129 /** @domName SVGColor.setRGBColor */ 1129 /** @domName SVGColor.setRGBColor */
1130 void setRGBColor(String rgbColor) native "SVGColor_setRGBColor_Callback"; 1130 void setRgbColor(String rgbColor) native "SVGColor_setRGBColor_Callback";
1131 1131
1132 1132
1133 /** @domName SVGColor.setRGBColorICCColor */ 1133 /** @domName SVGColor.setRGBColorICCColor */
1134 void setRGBColorICCColor(String rgbColor, String iccColor) native "SVGColor_se tRGBColorICCColor_Callback"; 1134 void setRgbColorIccColor(String rgbColor, String iccColor) native "SVGColor_se tRGBColorICCColor_Callback";
1135 1135
1136 } 1136 }
1137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1138 // for details. All rights reserved. Use of this source code is governed by a 1138 // for details. All rights reserved. Use of this source code is governed by a
1139 // BSD-style license that can be found in the LICENSE file. 1139 // BSD-style license that can be found in the LICENSE file.
1140 1140
1141 // WARNING: Do not edit - generated code. 1141 // WARNING: Do not edit - generated code.
1142 1142
1143 1143
1144 /// @domName SVGComponentTransferFunctionElement 1144 /// @domName SVGComponentTransferFunctionElement
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 1272
1273 /** @domName SVGDefsElement.nearestViewportElement */ 1273 /** @domName SVGDefsElement.nearestViewportElement */
1274 SvgElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl ement_Getter"; 1274 SvgElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl ement_Getter";
1275 1275
1276 1276
1277 /** @domName SVGDefsElement.getBBox */ 1277 /** @domName SVGDefsElement.getBBox */
1278 Rect getBBox() native "SVGDefsElement_getBBox_Callback"; 1278 Rect getBBox() native "SVGDefsElement_getBBox_Callback";
1279 1279
1280 1280
1281 /** @domName SVGDefsElement.getCTM */ 1281 /** @domName SVGDefsElement.getCTM */
1282 Matrix getCTM() native "SVGDefsElement_getCTM_Callback"; 1282 Matrix getCtm() native "SVGDefsElement_getCTM_Callback";
1283 1283
1284 1284
1285 /** @domName SVGDefsElement.getScreenCTM */ 1285 /** @domName SVGDefsElement.getScreenCTM */
1286 Matrix getScreenCTM() native "SVGDefsElement_getScreenCTM_Callback"; 1286 Matrix getScreenCtm() native "SVGDefsElement_getScreenCTM_Callback";
1287 1287
1288 1288
1289 /** @domName SVGDefsElement.getTransformToElement */ 1289 /** @domName SVGDefsElement.getTransformToElement */
1290 Matrix getTransformToElement(SvgElement element) native "SVGDefsElement_getTra nsformToElement_Callback"; 1290 Matrix getTransformToElement(SvgElement element) native "SVGDefsElement_getTra nsformToElement_Callback";
1291 1291
1292 1292
1293 /** @domName SVGDefsElement.className */ 1293 /** @domName SVGDefsElement.className */
1294 AnimatedString get $dom_svgClassName native "SVGDefsElement_className_Getter"; 1294 AnimatedString get $dom_svgClassName native "SVGDefsElement_className_Getter";
1295 1295
1296 1296
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 1554
1555 /** @domName SVGEllipseElement.nearestViewportElement */ 1555 /** @domName SVGEllipseElement.nearestViewportElement */
1556 SvgElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor tElement_Getter"; 1556 SvgElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor tElement_Getter";
1557 1557
1558 1558
1559 /** @domName SVGEllipseElement.getBBox */ 1559 /** @domName SVGEllipseElement.getBBox */
1560 Rect getBBox() native "SVGEllipseElement_getBBox_Callback"; 1560 Rect getBBox() native "SVGEllipseElement_getBBox_Callback";
1561 1561
1562 1562
1563 /** @domName SVGEllipseElement.getCTM */ 1563 /** @domName SVGEllipseElement.getCTM */
1564 Matrix getCTM() native "SVGEllipseElement_getCTM_Callback"; 1564 Matrix getCtm() native "SVGEllipseElement_getCTM_Callback";
1565 1565
1566 1566
1567 /** @domName SVGEllipseElement.getScreenCTM */ 1567 /** @domName SVGEllipseElement.getScreenCTM */
1568 Matrix getScreenCTM() native "SVGEllipseElement_getScreenCTM_Callback"; 1568 Matrix getScreenCtm() native "SVGEllipseElement_getScreenCTM_Callback";
1569 1569
1570 1570
1571 /** @domName SVGEllipseElement.getTransformToElement */ 1571 /** @domName SVGEllipseElement.getTransformToElement */
1572 Matrix getTransformToElement(SvgElement element) native "SVGEllipseElement_get TransformToElement_Callback"; 1572 Matrix getTransformToElement(SvgElement element) native "SVGEllipseElement_get TransformToElement_Callback";
1573 1573
1574 1574
1575 /** @domName SVGEllipseElement.className */ 1575 /** @domName SVGEllipseElement.className */
1576 AnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Gette r"; 1576 AnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Gette r";
1577 1577
1578 1578
(...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after
3204 3204
3205 /** @domName SVGForeignObjectElement.nearestViewportElement */ 3205 /** @domName SVGForeignObjectElement.nearestViewportElement */
3206 SvgElement get nearestViewportElement native "SVGForeignObjectElement_nearestV iewportElement_Getter"; 3206 SvgElement get nearestViewportElement native "SVGForeignObjectElement_nearestV iewportElement_Getter";
3207 3207
3208 3208
3209 /** @domName SVGForeignObjectElement.getBBox */ 3209 /** @domName SVGForeignObjectElement.getBBox */
3210 Rect getBBox() native "SVGForeignObjectElement_getBBox_Callback"; 3210 Rect getBBox() native "SVGForeignObjectElement_getBBox_Callback";
3211 3211
3212 3212
3213 /** @domName SVGForeignObjectElement.getCTM */ 3213 /** @domName SVGForeignObjectElement.getCTM */
3214 Matrix getCTM() native "SVGForeignObjectElement_getCTM_Callback"; 3214 Matrix getCtm() native "SVGForeignObjectElement_getCTM_Callback";
3215 3215
3216 3216
3217 /** @domName SVGForeignObjectElement.getScreenCTM */ 3217 /** @domName SVGForeignObjectElement.getScreenCTM */
3218 Matrix getScreenCTM() native "SVGForeignObjectElement_getScreenCTM_Callback"; 3218 Matrix getScreenCtm() native "SVGForeignObjectElement_getScreenCTM_Callback";
3219 3219
3220 3220
3221 /** @domName SVGForeignObjectElement.getTransformToElement */ 3221 /** @domName SVGForeignObjectElement.getTransformToElement */
3222 Matrix getTransformToElement(SvgElement element) native "SVGForeignObjectEleme nt_getTransformToElement_Callback"; 3222 Matrix getTransformToElement(SvgElement element) native "SVGForeignObjectEleme nt_getTransformToElement_Callback";
3223 3223
3224 3224
3225 /** @domName SVGForeignObjectElement.className */ 3225 /** @domName SVGForeignObjectElement.className */
3226 AnimatedString get $dom_svgClassName native "SVGForeignObjectElement_className _Getter"; 3226 AnimatedString get $dom_svgClassName native "SVGForeignObjectElement_className _Getter";
3227 3227
3228 3228
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
3294 3294
3295 /** @domName SVGGElement.nearestViewportElement */ 3295 /** @domName SVGGElement.nearestViewportElement */
3296 SvgElement get nearestViewportElement native "SVGGElement_nearestViewportEleme nt_Getter"; 3296 SvgElement get nearestViewportElement native "SVGGElement_nearestViewportEleme nt_Getter";
3297 3297
3298 3298
3299 /** @domName SVGGElement.getBBox */ 3299 /** @domName SVGGElement.getBBox */
3300 Rect getBBox() native "SVGGElement_getBBox_Callback"; 3300 Rect getBBox() native "SVGGElement_getBBox_Callback";
3301 3301
3302 3302
3303 /** @domName SVGGElement.getCTM */ 3303 /** @domName SVGGElement.getCTM */
3304 Matrix getCTM() native "SVGGElement_getCTM_Callback"; 3304 Matrix getCtm() native "SVGGElement_getCTM_Callback";
3305 3305
3306 3306
3307 /** @domName SVGGElement.getScreenCTM */ 3307 /** @domName SVGGElement.getScreenCTM */
3308 Matrix getScreenCTM() native "SVGGElement_getScreenCTM_Callback"; 3308 Matrix getScreenCtm() native "SVGGElement_getScreenCTM_Callback";
3309 3309
3310 3310
3311 /** @domName SVGGElement.getTransformToElement */ 3311 /** @domName SVGGElement.getTransformToElement */
3312 Matrix getTransformToElement(SvgElement element) native "SVGGElement_getTransf ormToElement_Callback"; 3312 Matrix getTransformToElement(SvgElement element) native "SVGGElement_getTransf ormToElement_Callback";
3313 3313
3314 3314
3315 /** @domName SVGGElement.className */ 3315 /** @domName SVGGElement.className */
3316 AnimatedString get $dom_svgClassName native "SVGGElement_className_Getter"; 3316 AnimatedString get $dom_svgClassName native "SVGGElement_className_Getter";
3317 3317
3318 3318
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
3560 3560
3561 /** @domName SVGImageElement.nearestViewportElement */ 3561 /** @domName SVGImageElement.nearestViewportElement */
3562 SvgElement get nearestViewportElement native "SVGImageElement_nearestViewportE lement_Getter"; 3562 SvgElement get nearestViewportElement native "SVGImageElement_nearestViewportE lement_Getter";
3563 3563
3564 3564
3565 /** @domName SVGImageElement.getBBox */ 3565 /** @domName SVGImageElement.getBBox */
3566 Rect getBBox() native "SVGImageElement_getBBox_Callback"; 3566 Rect getBBox() native "SVGImageElement_getBBox_Callback";
3567 3567
3568 3568
3569 /** @domName SVGImageElement.getCTM */ 3569 /** @domName SVGImageElement.getCTM */
3570 Matrix getCTM() native "SVGImageElement_getCTM_Callback"; 3570 Matrix getCtm() native "SVGImageElement_getCTM_Callback";
3571 3571
3572 3572
3573 /** @domName SVGImageElement.getScreenCTM */ 3573 /** @domName SVGImageElement.getScreenCTM */
3574 Matrix getScreenCTM() native "SVGImageElement_getScreenCTM_Callback"; 3574 Matrix getScreenCtm() native "SVGImageElement_getScreenCTM_Callback";
3575 3575
3576 3576
3577 /** @domName SVGImageElement.getTransformToElement */ 3577 /** @domName SVGImageElement.getTransformToElement */
3578 Matrix getTransformToElement(SvgElement element) native "SVGImageElement_getTr ansformToElement_Callback"; 3578 Matrix getTransformToElement(SvgElement element) native "SVGImageElement_getTr ansformToElement_Callback";
3579 3579
3580 3580
3581 /** @domName SVGImageElement.className */ 3581 /** @domName SVGImageElement.className */
3582 AnimatedString get $dom_svgClassName native "SVGImageElement_className_Getter" ; 3582 AnimatedString get $dom_svgClassName native "SVGImageElement_className_Getter" ;
3583 3583
3584 3584
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
3897 3897
3898 /** @domName SVGLineElement.nearestViewportElement */ 3898 /** @domName SVGLineElement.nearestViewportElement */
3899 SvgElement get nearestViewportElement native "SVGLineElement_nearestViewportEl ement_Getter"; 3899 SvgElement get nearestViewportElement native "SVGLineElement_nearestViewportEl ement_Getter";
3900 3900
3901 3901
3902 /** @domName SVGLineElement.getBBox */ 3902 /** @domName SVGLineElement.getBBox */
3903 Rect getBBox() native "SVGLineElement_getBBox_Callback"; 3903 Rect getBBox() native "SVGLineElement_getBBox_Callback";
3904 3904
3905 3905
3906 /** @domName SVGLineElement.getCTM */ 3906 /** @domName SVGLineElement.getCTM */
3907 Matrix getCTM() native "SVGLineElement_getCTM_Callback"; 3907 Matrix getCtm() native "SVGLineElement_getCTM_Callback";
3908 3908
3909 3909
3910 /** @domName SVGLineElement.getScreenCTM */ 3910 /** @domName SVGLineElement.getScreenCTM */
3911 Matrix getScreenCTM() native "SVGLineElement_getScreenCTM_Callback"; 3911 Matrix getScreenCtm() native "SVGLineElement_getScreenCTM_Callback";
3912 3912
3913 3913
3914 /** @domName SVGLineElement.getTransformToElement */ 3914 /** @domName SVGLineElement.getTransformToElement */
3915 Matrix getTransformToElement(SvgElement element) native "SVGLineElement_getTra nsformToElement_Callback"; 3915 Matrix getTransformToElement(SvgElement element) native "SVGLineElement_getTra nsformToElement_Callback";
3916 3916
3917 3917
3918 /** @domName SVGLineElement.className */ 3918 /** @domName SVGLineElement.className */
3919 AnimatedString get $dom_svgClassName native "SVGLineElement_className_Getter"; 3919 AnimatedString get $dom_svgClassName native "SVGLineElement_className_Getter";
3920 3920
3921 3921
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
3995 3995
3996 /** @domName SVGLocatable.nearestViewportElement */ 3996 /** @domName SVGLocatable.nearestViewportElement */
3997 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter"; 3997 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter";
3998 3998
3999 3999
4000 /** @domName SVGLocatable.getBBox */ 4000 /** @domName SVGLocatable.getBBox */
4001 Rect getBBox() native "SVGLocatable_getBBox_Callback"; 4001 Rect getBBox() native "SVGLocatable_getBBox_Callback";
4002 4002
4003 4003
4004 /** @domName SVGLocatable.getCTM */ 4004 /** @domName SVGLocatable.getCTM */
4005 Matrix getCTM() native "SVGLocatable_getCTM_Callback"; 4005 Matrix getCtm() native "SVGLocatable_getCTM_Callback";
4006 4006
4007 4007
4008 /** @domName SVGLocatable.getScreenCTM */ 4008 /** @domName SVGLocatable.getScreenCTM */
4009 Matrix getScreenCTM() native "SVGLocatable_getScreenCTM_Callback"; 4009 Matrix getScreenCtm() native "SVGLocatable_getScreenCTM_Callback";
4010 4010
4011 4011
4012 /** @domName SVGLocatable.getTransformToElement */ 4012 /** @domName SVGLocatable.getTransformToElement */
4013 Matrix getTransformToElement(SvgElement element) native "SVGLocatable_getTrans formToElement_Callback"; 4013 Matrix getTransformToElement(SvgElement element) native "SVGLocatable_getTrans formToElement_Callback";
4014 4014
4015 } 4015 }
4016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4017 // for details. All rights reserved. Use of this source code is governed by a 4017 // for details. All rights reserved. Use of this source code is governed by a
4018 // BSD-style license that can be found in the LICENSE file. 4018 // BSD-style license that can be found in the LICENSE file.
4019 4019
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
4576 4576
4577 /** @domName SVGPathElement.pathLength */ 4577 /** @domName SVGPathElement.pathLength */
4578 AnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter"; 4578 AnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter";
4579 4579
4580 4580
4581 /** @domName SVGPathElement.pathSegList */ 4581 /** @domName SVGPathElement.pathSegList */
4582 PathSegList get pathSegList native "SVGPathElement_pathSegList_Getter"; 4582 PathSegList get pathSegList native "SVGPathElement_pathSegList_Getter";
4583 4583
4584 4584
4585 /** @domName SVGPathElement.createSVGPathSegArcAbs */ 4585 /** @domName SVGPathElement.createSVGPathSegArcAbs */
4586 PathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs _Callback"; 4586 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs _Callback";
4587 4587
4588 4588
4589 /** @domName SVGPathElement.createSVGPathSegArcRel */ 4589 /** @domName SVGPathElement.createSVGPathSegArcRel */
4590 PathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel _Callback"; 4590 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel _Callback";
4591 4591
4592 4592
4593 /** @domName SVGPathElement.createSVGPathSegClosePath */ 4593 /** @domName SVGPathElement.createSVGPathSegClosePath */
4594 PathSegClosePath createSVGPathSegClosePath() native "SVGPathElement_createSVGP athSegClosePath_Callback"; 4594 PathSegClosePath createSvgPathSegClosePath() native "SVGPathElement_createSVGP athSegClosePath_Callback";
4595 4595
4596 4596
4597 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */ 4597 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */
4598 PathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Ca llback"; 4598 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Ca llback";
4599 4599
4600 4600
4601 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */ 4601 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */
4602 PathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Ca llback"; 4602 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Ca llback";
4603 4603
4604 4604
4605 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */ 4605 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */
4606 PathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_ Callback"; 4606 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_ Callback";
4607 4607
4608 4608
4609 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */ 4609 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */
4610 PathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_ Callback"; 4610 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_ Callback";
4611 4611
4612 4612
4613 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */ 4613 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */
4614 PathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callba ck"; 4614 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callba ck";
4615 4615
4616 4616
4617 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */ 4617 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */
4618 PathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callba ck"; 4618 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callba ck";
4619 4619
4620 4620
4621 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */ 4621 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */
4622 PathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Call back"; 4622 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Call back";
4623 4623
4624 4624
4625 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */ 4625 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */
4626 PathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Call back"; 4626 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Call back";
4627 4627
4628 4628
4629 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */ 4629 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */
4630 PathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoAbs_Callback"; 4630 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoAbs_Callback";
4631 4631
4632 4632
4633 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */ 4633 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */
4634 PathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback"; 4634 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback";
4635 4635
4636 4636
4637 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */ 4637 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */
4638 PathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback"; 4638 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback";
4639 4639
4640 4640
4641 /** @domName SVGPathElement.createSVGPathSegLinetoRel */ 4641 /** @domName SVGPathElement.createSVGPathSegLinetoRel */
4642 PathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoRel_Callback"; 4642 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoRel_Callback";
4643 4643
4644 4644
4645 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */ 4645 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */
4646 PathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalAbs_Callback"; 4646 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalAbs_Callback";
4647 4647
4648 4648
4649 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */ 4649 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */
4650 PathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalRel_Callback"; 4650 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalRel_Callback";
4651 4651
4652 4652
4653 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */ 4653 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */
4654 PathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoAbs_Callback"; 4654 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoAbs_Callback";
4655 4655
4656 4656
4657 /** @domName SVGPathElement.createSVGPathSegMovetoRel */ 4657 /** @domName SVGPathElement.createSVGPathSegMovetoRel */
4658 PathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoRel_Callback"; 4658 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoRel_Callback";
4659 4659
4660 4660
4661 /** @domName SVGPathElement.getPathSegAtLength */ 4661 /** @domName SVGPathElement.getPathSegAtLength */
4662 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength _Callback"; 4662 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength _Callback";
4663 4663
4664 4664
4665 /** @domName SVGPathElement.getPointAtLength */ 4665 /** @domName SVGPathElement.getPointAtLength */
4666 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C allback"; 4666 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C allback";
4667 4667
4668 4668
(...skipping 27 matching lines...) Expand all
4696 4696
4697 /** @domName SVGPathElement.nearestViewportElement */ 4697 /** @domName SVGPathElement.nearestViewportElement */
4698 SvgElement get nearestViewportElement native "SVGPathElement_nearestViewportEl ement_Getter"; 4698 SvgElement get nearestViewportElement native "SVGPathElement_nearestViewportEl ement_Getter";
4699 4699
4700 4700
4701 /** @domName SVGPathElement.getBBox */ 4701 /** @domName SVGPathElement.getBBox */
4702 Rect getBBox() native "SVGPathElement_getBBox_Callback"; 4702 Rect getBBox() native "SVGPathElement_getBBox_Callback";
4703 4703
4704 4704
4705 /** @domName SVGPathElement.getCTM */ 4705 /** @domName SVGPathElement.getCTM */
4706 Matrix getCTM() native "SVGPathElement_getCTM_Callback"; 4706 Matrix getCtm() native "SVGPathElement_getCTM_Callback";
4707 4707
4708 4708
4709 /** @domName SVGPathElement.getScreenCTM */ 4709 /** @domName SVGPathElement.getScreenCTM */
4710 Matrix getScreenCTM() native "SVGPathElement_getScreenCTM_Callback"; 4710 Matrix getScreenCtm() native "SVGPathElement_getScreenCTM_Callback";
4711 4711
4712 4712
4713 /** @domName SVGPathElement.getTransformToElement */ 4713 /** @domName SVGPathElement.getTransformToElement */
4714 Matrix getTransformToElement(SvgElement element) native "SVGPathElement_getTra nsformToElement_Callback"; 4714 Matrix getTransformToElement(SvgElement element) native "SVGPathElement_getTra nsformToElement_Callback";
4715 4715
4716 4716
4717 /** @domName SVGPathElement.className */ 4717 /** @domName SVGPathElement.className */
4718 AnimatedString get $dom_svgClassName native "SVGPathElement_className_Getter"; 4718 AnimatedString get $dom_svgClassName native "SVGPathElement_className_Getter";
4719 4719
4720 4720
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
5853 5853
5854 /** @domName SVGPolygonElement.nearestViewportElement */ 5854 /** @domName SVGPolygonElement.nearestViewportElement */
5855 SvgElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor tElement_Getter"; 5855 SvgElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor tElement_Getter";
5856 5856
5857 5857
5858 /** @domName SVGPolygonElement.getBBox */ 5858 /** @domName SVGPolygonElement.getBBox */
5859 Rect getBBox() native "SVGPolygonElement_getBBox_Callback"; 5859 Rect getBBox() native "SVGPolygonElement_getBBox_Callback";
5860 5860
5861 5861
5862 /** @domName SVGPolygonElement.getCTM */ 5862 /** @domName SVGPolygonElement.getCTM */
5863 Matrix getCTM() native "SVGPolygonElement_getCTM_Callback"; 5863 Matrix getCtm() native "SVGPolygonElement_getCTM_Callback";
5864 5864
5865 5865
5866 /** @domName SVGPolygonElement.getScreenCTM */ 5866 /** @domName SVGPolygonElement.getScreenCTM */
5867 Matrix getScreenCTM() native "SVGPolygonElement_getScreenCTM_Callback"; 5867 Matrix getScreenCtm() native "SVGPolygonElement_getScreenCTM_Callback";
5868 5868
5869 5869
5870 /** @domName SVGPolygonElement.getTransformToElement */ 5870 /** @domName SVGPolygonElement.getTransformToElement */
5871 Matrix getTransformToElement(SvgElement element) native "SVGPolygonElement_get TransformToElement_Callback"; 5871 Matrix getTransformToElement(SvgElement element) native "SVGPolygonElement_get TransformToElement_Callback";
5872 5872
5873 5873
5874 /** @domName SVGPolygonElement.className */ 5874 /** @domName SVGPolygonElement.className */
5875 AnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Gette r"; 5875 AnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Gette r";
5876 5876
5877 5877
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
5951 5951
5952 /** @domName SVGPolylineElement.nearestViewportElement */ 5952 /** @domName SVGPolylineElement.nearestViewportElement */
5953 SvgElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo rtElement_Getter"; 5953 SvgElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo rtElement_Getter";
5954 5954
5955 5955
5956 /** @domName SVGPolylineElement.getBBox */ 5956 /** @domName SVGPolylineElement.getBBox */
5957 Rect getBBox() native "SVGPolylineElement_getBBox_Callback"; 5957 Rect getBBox() native "SVGPolylineElement_getBBox_Callback";
5958 5958
5959 5959
5960 /** @domName SVGPolylineElement.getCTM */ 5960 /** @domName SVGPolylineElement.getCTM */
5961 Matrix getCTM() native "SVGPolylineElement_getCTM_Callback"; 5961 Matrix getCtm() native "SVGPolylineElement_getCTM_Callback";
5962 5962
5963 5963
5964 /** @domName SVGPolylineElement.getScreenCTM */ 5964 /** @domName SVGPolylineElement.getScreenCTM */
5965 Matrix getScreenCTM() native "SVGPolylineElement_getScreenCTM_Callback"; 5965 Matrix getScreenCtm() native "SVGPolylineElement_getScreenCTM_Callback";
5966 5966
5967 5967
5968 /** @domName SVGPolylineElement.getTransformToElement */ 5968 /** @domName SVGPolylineElement.getTransformToElement */
5969 Matrix getTransformToElement(SvgElement element) native "SVGPolylineElement_ge tTransformToElement_Callback"; 5969 Matrix getTransformToElement(SvgElement element) native "SVGPolylineElement_ge tTransformToElement_Callback";
5970 5970
5971 5971
5972 /** @domName SVGPolylineElement.className */ 5972 /** @domName SVGPolylineElement.className */
5973 AnimatedString get $dom_svgClassName native "SVGPolylineElement_className_Gett er"; 5973 AnimatedString get $dom_svgClassName native "SVGPolylineElement_className_Gett er";
5974 5974
5975 5975
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
6203 6203
6204 /** @domName SVGRectElement.nearestViewportElement */ 6204 /** @domName SVGRectElement.nearestViewportElement */
6205 SvgElement get nearestViewportElement native "SVGRectElement_nearestViewportEl ement_Getter"; 6205 SvgElement get nearestViewportElement native "SVGRectElement_nearestViewportEl ement_Getter";
6206 6206
6207 6207
6208 /** @domName SVGRectElement.getBBox */ 6208 /** @domName SVGRectElement.getBBox */
6209 Rect getBBox() native "SVGRectElement_getBBox_Callback"; 6209 Rect getBBox() native "SVGRectElement_getBBox_Callback";
6210 6210
6211 6211
6212 /** @domName SVGRectElement.getCTM */ 6212 /** @domName SVGRectElement.getCTM */
6213 Matrix getCTM() native "SVGRectElement_getCTM_Callback"; 6213 Matrix getCtm() native "SVGRectElement_getCTM_Callback";
6214 6214
6215 6215
6216 /** @domName SVGRectElement.getScreenCTM */ 6216 /** @domName SVGRectElement.getScreenCTM */
6217 Matrix getScreenCTM() native "SVGRectElement_getScreenCTM_Callback"; 6217 Matrix getScreenCtm() native "SVGRectElement_getScreenCTM_Callback";
6218 6218
6219 6219
6220 /** @domName SVGRectElement.getTransformToElement */ 6220 /** @domName SVGRectElement.getTransformToElement */
6221 Matrix getTransformToElement(SvgElement element) native "SVGRectElement_getTra nsformToElement_Callback"; 6221 Matrix getTransformToElement(SvgElement element) native "SVGRectElement_getTra nsformToElement_Callback";
6222 6222
6223 6223
6224 /** @domName SVGRectElement.className */ 6224 /** @domName SVGRectElement.className */
6225 AnimatedString get $dom_svgClassName native "SVGRectElement_className_Getter"; 6225 AnimatedString get $dom_svgClassName native "SVGRectElement_className_Getter";
6226 6226
6227 6227
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
6641 } 6641 }
6642 6642
6643 List<Element> get children => new FilteredElementList(this); 6643 List<Element> get children => new FilteredElementList(this);
6644 6644
6645 void set children(Collection<Element> value) { 6645 void set children(Collection<Element> value) {
6646 final children = this.children; 6646 final children = this.children;
6647 children.clear(); 6647 children.clear();
6648 children.addAll(value); 6648 children.addAll(value);
6649 } 6649 }
6650 6650
6651 String get outerHTML { 6651 String get outerHtml {
6652 final container = new Element.tag("div"); 6652 final container = new Element.tag("div");
6653 final SvgElement cloned = this.clone(true); 6653 final SvgElement cloned = this.clone(true);
6654 container.children.add(cloned); 6654 container.children.add(cloned);
6655 return container.innerHTML; 6655 return container.innerHtml;
6656 } 6656 }
6657 6657
6658 String get innerHTML { 6658 String get innerHtml {
6659 final container = new Element.tag("div"); 6659 final container = new Element.tag("div");
6660 final SvgElement cloned = this.clone(true); 6660 final SvgElement cloned = this.clone(true);
6661 container.children.addAll(cloned.children); 6661 container.children.addAll(cloned.children);
6662 return container.innerHTML; 6662 return container.innerHtml;
6663 } 6663 }
6664 6664
6665 void set innerHTML(String svg) { 6665 void set innerHtml(String svg) {
6666 final container = new Element.tag("div"); 6666 final container = new Element.tag("div");
6667 // Wrap the SVG string in <svg> so that SvgElements are created, rather than 6667 // Wrap the SVG string in <svg> so that SvgElements are created, rather than
6668 // HTMLElements. 6668 // HTMLElements.
6669 container.innerHTML = '<svg version="1.1">$svg</svg>'; 6669 container.innerHtml = '<svg version="1.1">$svg</svg>';
6670 this.children = container.children[0].children; 6670 this.children = container.children[0].children;
6671 } 6671 }
6672 6672
6673 SvgElement.internal(): super.internal(); 6673 SvgElement.internal(): super.internal();
6674 6674
6675 6675
6676 /** @domName SVGElement.id */ 6676 /** @domName SVGElement.id */
6677 String get id native "SVGElement_id_Getter"; 6677 String get id native "SVGElement_id_Getter";
6678 6678
6679 6679
6680 /** @domName SVGElement.id */ 6680 /** @domName SVGElement.id */
6681 void set id(String value) native "SVGElement_id_Setter"; 6681 void set id(String value) native "SVGElement_id_Setter";
6682 6682
6683 6683
6684 /** @domName SVGElement.ownerSVGElement */ 6684 /** @domName SVGElement.ownerSVGElement */
6685 SvgSvgElement get ownerSVGElement native "SVGElement_ownerSVGElement_Getter"; 6685 SvgSvgElement get ownerSvgElement native "SVGElement_ownerSVGElement_Getter";
6686 6686
6687 6687
6688 /** @domName SVGElement.viewportElement */ 6688 /** @domName SVGElement.viewportElement */
6689 SvgElement get viewportElement native "SVGElement_viewportElement_Getter"; 6689 SvgElement get viewportElement native "SVGElement_viewportElement_Getter";
6690 6690
6691 6691
6692 /** @domName SVGElement.xmlbase */ 6692 /** @domName SVGElement.xmlbase */
6693 String get xmlbase native "SVGElement_xmlbase_Getter"; 6693 String get xmlbase native "SVGElement_xmlbase_Getter";
6694 6694
6695 6695
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
6786 6786
6787 /** @domName SVGSVGElement.checkEnclosure */ 6787 /** @domName SVGSVGElement.checkEnclosure */
6788 bool checkEnclosure(SvgElement element, Rect rect) native "SVGSVGElement_check Enclosure_Callback"; 6788 bool checkEnclosure(SvgElement element, Rect rect) native "SVGSVGElement_check Enclosure_Callback";
6789 6789
6790 6790
6791 /** @domName SVGSVGElement.checkIntersection */ 6791 /** @domName SVGSVGElement.checkIntersection */
6792 bool checkIntersection(SvgElement element, Rect rect) native "SVGSVGElement_ch eckIntersection_Callback"; 6792 bool checkIntersection(SvgElement element, Rect rect) native "SVGSVGElement_ch eckIntersection_Callback";
6793 6793
6794 6794
6795 /** @domName SVGSVGElement.createSVGAngle */ 6795 /** @domName SVGSVGElement.createSVGAngle */
6796 Angle createSVGAngle() native "SVGSVGElement_createSVGAngle_Callback"; 6796 Angle createSvgAngle() native "SVGSVGElement_createSVGAngle_Callback";
6797 6797
6798 6798
6799 /** @domName SVGSVGElement.createSVGLength */ 6799 /** @domName SVGSVGElement.createSVGLength */
6800 Length createSVGLength() native "SVGSVGElement_createSVGLength_Callback"; 6800 Length createSvgLength() native "SVGSVGElement_createSVGLength_Callback";
6801 6801
6802 6802
6803 /** @domName SVGSVGElement.createSVGMatrix */ 6803 /** @domName SVGSVGElement.createSVGMatrix */
6804 Matrix createSVGMatrix() native "SVGSVGElement_createSVGMatrix_Callback"; 6804 Matrix createSvgMatrix() native "SVGSVGElement_createSVGMatrix_Callback";
6805 6805
6806 6806
6807 /** @domName SVGSVGElement.createSVGNumber */ 6807 /** @domName SVGSVGElement.createSVGNumber */
6808 Number createSVGNumber() native "SVGSVGElement_createSVGNumber_Callback"; 6808 Number createSvgNumber() native "SVGSVGElement_createSVGNumber_Callback";
6809 6809
6810 6810
6811 /** @domName SVGSVGElement.createSVGPoint */ 6811 /** @domName SVGSVGElement.createSVGPoint */
6812 Point createSVGPoint() native "SVGSVGElement_createSVGPoint_Callback"; 6812 Point createSvgPoint() native "SVGSVGElement_createSVGPoint_Callback";
6813 6813
6814 6814
6815 /** @domName SVGSVGElement.createSVGRect */ 6815 /** @domName SVGSVGElement.createSVGRect */
6816 Rect createSVGRect() native "SVGSVGElement_createSVGRect_Callback"; 6816 Rect createSvgRect() native "SVGSVGElement_createSVGRect_Callback";
6817 6817
6818 6818
6819 /** @domName SVGSVGElement.createSVGTransform */ 6819 /** @domName SVGSVGElement.createSVGTransform */
6820 Transform createSVGTransform() native "SVGSVGElement_createSVGTransform_Callba ck"; 6820 Transform createSvgTransform() native "SVGSVGElement_createSVGTransform_Callba ck";
6821 6821
6822 6822
6823 /** @domName SVGSVGElement.createSVGTransformFromMatrix */ 6823 /** @domName SVGSVGElement.createSVGTransformFromMatrix */
6824 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGSVGElement_cr eateSVGTransformFromMatrix_Callback"; 6824 Transform createSvgTransformFromMatrix(Matrix matrix) native "SVGSVGElement_cr eateSVGTransformFromMatrix_Callback";
6825 6825
6826 6826
6827 /** @domName SVGSVGElement.deselectAll */ 6827 /** @domName SVGSVGElement.deselectAll */
6828 void deselectAll() native "SVGSVGElement_deselectAll_Callback"; 6828 void deselectAll() native "SVGSVGElement_deselectAll_Callback";
6829 6829
6830 6830
6831 /** @domName SVGSVGElement.forceRedraw */ 6831 /** @domName SVGSVGElement.forceRedraw */
6832 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback"; 6832 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback";
6833 6833
6834 6834
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
6906 6906
6907 /** @domName SVGSVGElement.nearestViewportElement */ 6907 /** @domName SVGSVGElement.nearestViewportElement */
6908 SvgElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle ment_Getter"; 6908 SvgElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle ment_Getter";
6909 6909
6910 6910
6911 /** @domName SVGSVGElement.getBBox */ 6911 /** @domName SVGSVGElement.getBBox */
6912 Rect getBBox() native "SVGSVGElement_getBBox_Callback"; 6912 Rect getBBox() native "SVGSVGElement_getBBox_Callback";
6913 6913
6914 6914
6915 /** @domName SVGSVGElement.getCTM */ 6915 /** @domName SVGSVGElement.getCTM */
6916 Matrix getCTM() native "SVGSVGElement_getCTM_Callback"; 6916 Matrix getCtm() native "SVGSVGElement_getCTM_Callback";
6917 6917
6918 6918
6919 /** @domName SVGSVGElement.getScreenCTM */ 6919 /** @domName SVGSVGElement.getScreenCTM */
6920 Matrix getScreenCTM() native "SVGSVGElement_getScreenCTM_Callback"; 6920 Matrix getScreenCtm() native "SVGSVGElement_getScreenCTM_Callback";
6921 6921
6922 6922
6923 /** @domName SVGSVGElement.getTransformToElement */ 6923 /** @domName SVGSVGElement.getTransformToElement */
6924 Matrix getTransformToElement(SvgElement element) native "SVGSVGElement_getTran sformToElement_Callback"; 6924 Matrix getTransformToElement(SvgElement element) native "SVGSVGElement_getTran sformToElement_Callback";
6925 6925
6926 6926
6927 /** @domName SVGSVGElement.className */ 6927 /** @domName SVGSVGElement.className */
6928 AnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter"; 6928 AnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter";
6929 6929
6930 6930
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
7000 7000
7001 /** @domName SVGSwitchElement.nearestViewportElement */ 7001 /** @domName SVGSwitchElement.nearestViewportElement */
7002 SvgElement get nearestViewportElement native "SVGSwitchElement_nearestViewport Element_Getter"; 7002 SvgElement get nearestViewportElement native "SVGSwitchElement_nearestViewport Element_Getter";
7003 7003
7004 7004
7005 /** @domName SVGSwitchElement.getBBox */ 7005 /** @domName SVGSwitchElement.getBBox */
7006 Rect getBBox() native "SVGSwitchElement_getBBox_Callback"; 7006 Rect getBBox() native "SVGSwitchElement_getBBox_Callback";
7007 7007
7008 7008
7009 /** @domName SVGSwitchElement.getCTM */ 7009 /** @domName SVGSwitchElement.getCTM */
7010 Matrix getCTM() native "SVGSwitchElement_getCTM_Callback"; 7010 Matrix getCtm() native "SVGSwitchElement_getCTM_Callback";
7011 7011
7012 7012
7013 /** @domName SVGSwitchElement.getScreenCTM */ 7013 /** @domName SVGSwitchElement.getScreenCTM */
7014 Matrix getScreenCTM() native "SVGSwitchElement_getScreenCTM_Callback"; 7014 Matrix getScreenCtm() native "SVGSwitchElement_getScreenCTM_Callback";
7015 7015
7016 7016
7017 /** @domName SVGSwitchElement.getTransformToElement */ 7017 /** @domName SVGSwitchElement.getTransformToElement */
7018 Matrix getTransformToElement(SvgElement element) native "SVGSwitchElement_getT ransformToElement_Callback"; 7018 Matrix getTransformToElement(SvgElement element) native "SVGSwitchElement_getT ransformToElement_Callback";
7019 7019
7020 7020
7021 /** @domName SVGSwitchElement.className */ 7021 /** @domName SVGSwitchElement.className */
7022 AnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Getter "; 7022 AnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Getter ";
7023 7023
7024 7024
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
7294 7294
7295 /** @domName SVGTextElement.nearestViewportElement */ 7295 /** @domName SVGTextElement.nearestViewportElement */
7296 SvgElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter"; 7296 SvgElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter";
7297 7297
7298 7298
7299 /** @domName SVGTextElement.getBBox */ 7299 /** @domName SVGTextElement.getBBox */
7300 Rect getBBox() native "SVGTextElement_getBBox_Callback"; 7300 Rect getBBox() native "SVGTextElement_getBBox_Callback";
7301 7301
7302 7302
7303 /** @domName SVGTextElement.getCTM */ 7303 /** @domName SVGTextElement.getCTM */
7304 Matrix getCTM() native "SVGTextElement_getCTM_Callback"; 7304 Matrix getCtm() native "SVGTextElement_getCTM_Callback";
7305 7305
7306 7306
7307 /** @domName SVGTextElement.getScreenCTM */ 7307 /** @domName SVGTextElement.getScreenCTM */
7308 Matrix getScreenCTM() native "SVGTextElement_getScreenCTM_Callback"; 7308 Matrix getScreenCtm() native "SVGTextElement_getScreenCTM_Callback";
7309 7309
7310 7310
7311 /** @domName SVGTextElement.getTransformToElement */ 7311 /** @domName SVGTextElement.getTransformToElement */
7312 Matrix getTransformToElement(SvgElement element) native "SVGTextElement_getTra nsformToElement_Callback"; 7312 Matrix getTransformToElement(SvgElement element) native "SVGTextElement_getTra nsformToElement_Callback";
7313 7313
7314 7314
7315 /** @domName SVGTextElement.transform */ 7315 /** @domName SVGTextElement.transform */
7316 AnimatedTransformList get transform native "SVGTextElement_transform_Getter"; 7316 AnimatedTransformList get transform native "SVGTextElement_transform_Getter";
7317 7317
7318 } 7318 }
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
7599 7599
7600 /** @domName SVGTransformList.clear */ 7600 /** @domName SVGTransformList.clear */
7601 void clear() native "SVGTransformList_clear_Callback"; 7601 void clear() native "SVGTransformList_clear_Callback";
7602 7602
7603 7603
7604 /** @domName SVGTransformList.consolidate */ 7604 /** @domName SVGTransformList.consolidate */
7605 Transform consolidate() native "SVGTransformList_consolidate_Callback"; 7605 Transform consolidate() native "SVGTransformList_consolidate_Callback";
7606 7606
7607 7607
7608 /** @domName SVGTransformList.createSVGTransformFromMatrix */ 7608 /** @domName SVGTransformList.createSVGTransformFromMatrix */
7609 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGTransformList _createSVGTransformFromMatrix_Callback"; 7609 Transform createSvgTransformFromMatrix(Matrix matrix) native "SVGTransformList _createSVGTransformFromMatrix_Callback";
7610 7610
7611 7611
7612 /** @domName SVGTransformList.getItem */ 7612 /** @domName SVGTransformList.getItem */
7613 Transform getItem(int index) native "SVGTransformList_getItem_Callback"; 7613 Transform getItem(int index) native "SVGTransformList_getItem_Callback";
7614 7614
7615 7615
7616 /** @domName SVGTransformList.initialize */ 7616 /** @domName SVGTransformList.initialize */
7617 Transform initialize(Transform item) native "SVGTransformList_initialize_Callb ack"; 7617 Transform initialize(Transform item) native "SVGTransformList_initialize_Callb ack";
7618 7618
7619 7619
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
7651 7651
7652 /** @domName SVGTransformable.nearestViewportElement */ 7652 /** @domName SVGTransformable.nearestViewportElement */
7653 SvgElement get nearestViewportElement native "SVGTransformable_nearestViewport Element_Getter"; 7653 SvgElement get nearestViewportElement native "SVGTransformable_nearestViewport Element_Getter";
7654 7654
7655 7655
7656 /** @domName SVGTransformable.getBBox */ 7656 /** @domName SVGTransformable.getBBox */
7657 Rect getBBox() native "SVGTransformable_getBBox_Callback"; 7657 Rect getBBox() native "SVGTransformable_getBBox_Callback";
7658 7658
7659 7659
7660 /** @domName SVGTransformable.getCTM */ 7660 /** @domName SVGTransformable.getCTM */
7661 Matrix getCTM() native "SVGTransformable_getCTM_Callback"; 7661 Matrix getCtm() native "SVGTransformable_getCTM_Callback";
7662 7662
7663 7663
7664 /** @domName SVGTransformable.getScreenCTM */ 7664 /** @domName SVGTransformable.getScreenCTM */
7665 Matrix getScreenCTM() native "SVGTransformable_getScreenCTM_Callback"; 7665 Matrix getScreenCtm() native "SVGTransformable_getScreenCTM_Callback";
7666 7666
7667 7667
7668 /** @domName SVGTransformable.getTransformToElement */ 7668 /** @domName SVGTransformable.getTransformToElement */
7669 Matrix getTransformToElement(SvgElement element) native "SVGTransformable_getT ransformToElement_Callback"; 7669 Matrix getTransformToElement(SvgElement element) native "SVGTransformable_getT ransformToElement_Callback";
7670 7670
7671 } 7671 }
7672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7673 // for details. All rights reserved. Use of this source code is governed by a 7673 // for details. All rights reserved. Use of this source code is governed by a
7674 // BSD-style license that can be found in the LICENSE file. 7674 // BSD-style license that can be found in the LICENSE file.
7675 7675
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
7767 7767
7768 /** @domName SVGUseElement.nearestViewportElement */ 7768 /** @domName SVGUseElement.nearestViewportElement */
7769 SvgElement get nearestViewportElement native "SVGUseElement_nearestViewportEle ment_Getter"; 7769 SvgElement get nearestViewportElement native "SVGUseElement_nearestViewportEle ment_Getter";
7770 7770
7771 7771
7772 /** @domName SVGUseElement.getBBox */ 7772 /** @domName SVGUseElement.getBBox */
7773 Rect getBBox() native "SVGUseElement_getBBox_Callback"; 7773 Rect getBBox() native "SVGUseElement_getBBox_Callback";
7774 7774
7775 7775
7776 /** @domName SVGUseElement.getCTM */ 7776 /** @domName SVGUseElement.getCTM */
7777 Matrix getCTM() native "SVGUseElement_getCTM_Callback"; 7777 Matrix getCtm() native "SVGUseElement_getCTM_Callback";
7778 7778
7779 7779
7780 /** @domName SVGUseElement.getScreenCTM */ 7780 /** @domName SVGUseElement.getScreenCTM */
7781 Matrix getScreenCTM() native "SVGUseElement_getScreenCTM_Callback"; 7781 Matrix getScreenCtm() native "SVGUseElement_getScreenCTM_Callback";
7782 7782
7783 7783
7784 /** @domName SVGUseElement.getTransformToElement */ 7784 /** @domName SVGUseElement.getTransformToElement */
7785 Matrix getTransformToElement(SvgElement element) native "SVGUseElement_getTran sformToElement_Callback"; 7785 Matrix getTransformToElement(SvgElement element) native "SVGUseElement_getTran sformToElement_Callback";
7786 7786
7787 7787
7788 /** @domName SVGUseElement.className */ 7788 /** @domName SVGUseElement.className */
7789 AnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter"; 7789 AnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter";
7790 7790
7791 7791
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
8081 List<ElementInstance> getRange(int start, int rangeLength) => 8081 List<ElementInstance> getRange(int start, int rangeLength) =>
8082 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); 8082 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]);
8083 8083
8084 // -- end List<ElementInstance> mixins. 8084 // -- end List<ElementInstance> mixins.
8085 8085
8086 8086
8087 /** @domName SVGElementInstanceList.item */ 8087 /** @domName SVGElementInstanceList.item */
8088 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; 8088 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback";
8089 8089
8090 } 8090 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698