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

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

Issue 11293292: Add constructors for SVG elements and remove static factory providers for html elements. (Closed) Base URL: http://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
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/svgelement_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 } 51 }
52 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 52 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
53 // for details. All rights reserved. Use of this source code is governed by a 53 // for details. All rights reserved. Use of this source code is governed by a
54 // BSD-style license that can be found in the LICENSE file. 54 // BSD-style license that can be found in the LICENSE file.
55 55
56 // WARNING: Do not edit - generated code. 56 // WARNING: Do not edit - generated code.
57 57
58 58
59 /// @domName SVGAElement 59 /// @domName SVGAElement
60 class SVGAElement extends SVGElement implements SVGLangSpace, SVGTests, SVGStyla ble, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { 60 class SVGAElement extends SVGElement implements SVGLangSpace, SVGTests, SVGStyla ble, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable {
61
62 factory SVGAElement() => _SvgElementFactoryProvider.createSVGElement_tag("a");
61 SVGAElement.internal(): super.internal(); 63 SVGAElement.internal(): super.internal();
62 64
63 65
64 /** @domName SVGAElement.target */ 66 /** @domName SVGAElement.target */
65 SVGAnimatedString get target native "SVGAElement_target_Getter"; 67 SVGAnimatedString get target native "SVGAElement_target_Getter";
66 68
67 69
68 /** @domName SVGAElement.externalResourcesRequired */ 70 /** @domName SVGAElement.externalResourcesRequired */
69 SVGAnimatedBoolean get externalResourcesRequired native "SVGAElement_externalR esourcesRequired_Getter"; 71 SVGAnimatedBoolean get externalResourcesRequired native "SVGAElement_externalR esourcesRequired_Getter";
70 72
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 } 263 }
262 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
263 // for details. All rights reserved. Use of this source code is governed by a 265 // for details. All rights reserved. Use of this source code is governed by a
264 // BSD-style license that can be found in the LICENSE file. 266 // BSD-style license that can be found in the LICENSE file.
265 267
266 // WARNING: Do not edit - generated code. 268 // WARNING: Do not edit - generated code.
267 269
268 270
269 /// @domName SVGAnimateColorElement 271 /// @domName SVGAnimateColorElement
270 class SVGAnimateColorElement extends SVGAnimationElement { 272 class SVGAnimateColorElement extends SVGAnimationElement {
273
274 factory SVGAnimateColorElement() => _SvgElementFactoryProvider.createSVGElemen t_tag("animateColor");
271 SVGAnimateColorElement.internal(): super.internal(); 275 SVGAnimateColorElement.internal(): super.internal();
272 276
273 } 277 }
274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
275 // for details. All rights reserved. Use of this source code is governed by a 279 // for details. All rights reserved. Use of this source code is governed by a
276 // BSD-style license that can be found in the LICENSE file. 280 // BSD-style license that can be found in the LICENSE file.
277 281
278 // WARNING: Do not edit - generated code. 282 // WARNING: Do not edit - generated code.
279 283
280 284
281 /// @domName SVGAnimateElement 285 /// @domName SVGAnimateElement
282 class SVGAnimateElement extends SVGAnimationElement { 286 class SVGAnimateElement extends SVGAnimationElement {
287
288 factory SVGAnimateElement() => _SvgElementFactoryProvider.createSVGElement_tag ("animate");
283 SVGAnimateElement.internal(): super.internal(); 289 SVGAnimateElement.internal(): super.internal();
284 290
285 } 291 }
286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 292 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
287 // for details. All rights reserved. Use of this source code is governed by a 293 // for details. All rights reserved. Use of this source code is governed by a
288 // BSD-style license that can be found in the LICENSE file. 294 // BSD-style license that can be found in the LICENSE file.
289 295
290 // WARNING: Do not edit - generated code. 296 // WARNING: Do not edit - generated code.
291 297
292 298
293 /// @domName SVGAnimateMotionElement 299 /// @domName SVGAnimateMotionElement
294 class SVGAnimateMotionElement extends SVGAnimationElement { 300 class SVGAnimateMotionElement extends SVGAnimationElement {
301
302 factory SVGAnimateMotionElement() => _SvgElementFactoryProvider.createSVGEleme nt_tag("animateMotion");
295 SVGAnimateMotionElement.internal(): super.internal(); 303 SVGAnimateMotionElement.internal(): super.internal();
296 304
297 } 305 }
298 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 306 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
299 // for details. All rights reserved. Use of this source code is governed by a 307 // for details. All rights reserved. Use of this source code is governed by a
300 // BSD-style license that can be found in the LICENSE file. 308 // BSD-style license that can be found in the LICENSE file.
301 309
302 // WARNING: Do not edit - generated code. 310 // WARNING: Do not edit - generated code.
303 311
304 312
305 /// @domName SVGAnimateTransformElement 313 /// @domName SVGAnimateTransformElement
306 class SVGAnimateTransformElement extends SVGAnimationElement { 314 class SVGAnimateTransformElement extends SVGAnimationElement {
315
316 factory SVGAnimateTransformElement() => _SvgElementFactoryProvider.createSVGEl ement_tag("animateTransform");
307 SVGAnimateTransformElement.internal(): super.internal(); 317 SVGAnimateTransformElement.internal(): super.internal();
308 318
309 } 319 }
310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
311 // for details. All rights reserved. Use of this source code is governed by a 321 // for details. All rights reserved. Use of this source code is governed by a
312 // BSD-style license that can be found in the LICENSE file. 322 // BSD-style license that can be found in the LICENSE file.
313 323
314 // WARNING: Do not edit - generated code. 324 // WARNING: Do not edit - generated code.
315 325
316 326
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 } 828 }
819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
820 // for details. All rights reserved. Use of this source code is governed by a 830 // for details. All rights reserved. Use of this source code is governed by a
821 // BSD-style license that can be found in the LICENSE file. 831 // BSD-style license that can be found in the LICENSE file.
822 832
823 // WARNING: Do not edit - generated code. 833 // WARNING: Do not edit - generated code.
824 834
825 835
826 /// @domName SVGAnimationElement 836 /// @domName SVGAnimationElement
827 class SVGAnimationElement extends SVGElement implements ElementTimeControl, SVGT ests, SVGExternalResourcesRequired { 837 class SVGAnimationElement extends SVGElement implements ElementTimeControl, SVGT ests, SVGExternalResourcesRequired {
838
839 factory SVGAnimationElement() => _SvgElementFactoryProvider.createSVGElement_t ag("animation");
828 SVGAnimationElement.internal(): super.internal(); 840 SVGAnimationElement.internal(): super.internal();
829 841
830 842
831 /** @domName SVGAnimationElement.targetElement */ 843 /** @domName SVGAnimationElement.targetElement */
832 SVGElement get targetElement native "SVGAnimationElement_targetElement_Getter" ; 844 SVGElement get targetElement native "SVGAnimationElement_targetElement_Getter" ;
833 845
834 846
835 /** @domName SVGAnimationElement.getCurrentTime */ 847 /** @domName SVGAnimationElement.getCurrentTime */
836 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback"; 848 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
837 849
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 } 894 }
883 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 895 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
884 // for details. All rights reserved. Use of this source code is governed by a 896 // for details. All rights reserved. Use of this source code is governed by a
885 // BSD-style license that can be found in the LICENSE file. 897 // BSD-style license that can be found in the LICENSE file.
886 898
887 // WARNING: Do not edit - generated code. 899 // WARNING: Do not edit - generated code.
888 900
889 901
890 /// @domName SVGCircleElement 902 /// @domName SVGCircleElement
891 class SVGCircleElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 903 class SVGCircleElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired {
904
905 factory SVGCircleElement() => _SvgElementFactoryProvider.createSVGElement_tag( "circle");
892 SVGCircleElement.internal(): super.internal(); 906 SVGCircleElement.internal(): super.internal();
893 907
894 908
895 /** @domName SVGCircleElement.cx */ 909 /** @domName SVGCircleElement.cx */
896 SVGAnimatedLength get cx native "SVGCircleElement_cx_Getter"; 910 SVGAnimatedLength get cx native "SVGCircleElement_cx_Getter";
897 911
898 912
899 /** @domName SVGCircleElement.cy */ 913 /** @domName SVGCircleElement.cy */
900 SVGAnimatedLength get cy native "SVGCircleElement_cy_Getter"; 914 SVGAnimatedLength get cy native "SVGCircleElement_cy_Getter";
901 915
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 } 996 }
983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
984 // for details. All rights reserved. Use of this source code is governed by a 998 // for details. All rights reserved. Use of this source code is governed by a
985 // BSD-style license that can be found in the LICENSE file. 999 // BSD-style license that can be found in the LICENSE file.
986 1000
987 // WARNING: Do not edit - generated code. 1001 // WARNING: Do not edit - generated code.
988 1002
989 1003
990 /// @domName SVGClipPathElement 1004 /// @domName SVGClipPathElement
991 class SVGClipPathElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired { 1005 class SVGClipPathElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired {
1006
1007 factory SVGClipPathElement() => _SvgElementFactoryProvider.createSVGElement_ta g("clipPath");
992 SVGClipPathElement.internal(): super.internal(); 1008 SVGClipPathElement.internal(): super.internal();
993 1009
994 1010
995 /** @domName SVGClipPathElement.clipPathUnits */ 1011 /** @domName SVGClipPathElement.clipPathUnits */
996 SVGAnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUn its_Getter"; 1012 SVGAnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUn its_Getter";
997 1013
998 1014
999 /** @domName SVGClipPathElement.externalResourcesRequired */ 1015 /** @domName SVGClipPathElement.externalResourcesRequired */
1000 SVGAnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_ex ternalResourcesRequired_Getter"; 1016 SVGAnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_ex ternalResourcesRequired_Getter";
1001 1017
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 } 1182 }
1167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1168 // for details. All rights reserved. Use of this source code is governed by a 1184 // for details. All rights reserved. Use of this source code is governed by a
1169 // BSD-style license that can be found in the LICENSE file. 1185 // BSD-style license that can be found in the LICENSE file.
1170 1186
1171 // WARNING: Do not edit - generated code. 1187 // WARNING: Do not edit - generated code.
1172 1188
1173 1189
1174 /// @domName SVGCursorElement 1190 /// @domName SVGCursorElement
1175 class SVGCursorElement extends SVGElement implements SVGURIReference, SVGTests, SVGExternalResourcesRequired { 1191 class SVGCursorElement extends SVGElement implements SVGURIReference, SVGTests, SVGExternalResourcesRequired {
1192
1193 factory SVGCursorElement() => _SvgElementFactoryProvider.createSVGElement_tag( "cursor");
1176 SVGCursorElement.internal(): super.internal(); 1194 SVGCursorElement.internal(): super.internal();
1177 1195
1178 1196
1179 /** @domName SVGCursorElement.x */ 1197 /** @domName SVGCursorElement.x */
1180 SVGAnimatedLength get x native "SVGCursorElement_x_Getter"; 1198 SVGAnimatedLength get x native "SVGCursorElement_x_Getter";
1181 1199
1182 1200
1183 /** @domName SVGCursorElement.y */ 1201 /** @domName SVGCursorElement.y */
1184 SVGAnimatedLength get y native "SVGCursorElement_y_Getter"; 1202 SVGAnimatedLength get y native "SVGCursorElement_y_Getter";
1185 1203
(...skipping 24 matching lines...) Expand all
1210 } 1228 }
1211 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1212 // for details. All rights reserved. Use of this source code is governed by a 1230 // for details. All rights reserved. Use of this source code is governed by a
1213 // BSD-style license that can be found in the LICENSE file. 1231 // BSD-style license that can be found in the LICENSE file.
1214 1232
1215 // WARNING: Do not edit - generated code. 1233 // WARNING: Do not edit - generated code.
1216 1234
1217 1235
1218 /// @domName SVGDefsElement 1236 /// @domName SVGDefsElement
1219 class SVGDefsElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 1237 class SVGDefsElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired {
1238
1239 factory SVGDefsElement() => _SvgElementFactoryProvider.createSVGElement_tag("d efs");
1220 SVGDefsElement.internal(): super.internal(); 1240 SVGDefsElement.internal(): super.internal();
1221 1241
1222 1242
1223 /** @domName SVGDefsElement.externalResourcesRequired */ 1243 /** @domName SVGDefsElement.externalResourcesRequired */
1224 SVGAnimatedBoolean get externalResourcesRequired native "SVGDefsElement_extern alResourcesRequired_Getter"; 1244 SVGAnimatedBoolean get externalResourcesRequired native "SVGDefsElement_extern alResourcesRequired_Getter";
1225 1245
1226 1246
1227 /** @domName SVGDefsElement.xmllang */ 1247 /** @domName SVGDefsElement.xmllang */
1228 String get xmllang native "SVGDefsElement_xmllang_Getter"; 1248 String get xmllang native "SVGDefsElement_xmllang_Getter";
1229 1249
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 } 1318 }
1299 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1319 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1300 // for details. All rights reserved. Use of this source code is governed by a 1320 // for details. All rights reserved. Use of this source code is governed by a
1301 // BSD-style license that can be found in the LICENSE file. 1321 // BSD-style license that can be found in the LICENSE file.
1302 1322
1303 // WARNING: Do not edit - generated code. 1323 // WARNING: Do not edit - generated code.
1304 1324
1305 1325
1306 /// @domName SVGDescElement 1326 /// @domName SVGDescElement
1307 class SVGDescElement extends SVGElement implements SVGLangSpace, SVGStylable { 1327 class SVGDescElement extends SVGElement implements SVGLangSpace, SVGStylable {
1328
1329 factory SVGDescElement() => _SvgElementFactoryProvider.createSVGElement_tag("d esc");
1308 SVGDescElement.internal(): super.internal(); 1330 SVGDescElement.internal(): super.internal();
1309 1331
1310 1332
1311 /** @domName SVGDescElement.xmllang */ 1333 /** @domName SVGDescElement.xmllang */
1312 String get xmllang native "SVGDescElement_xmllang_Getter"; 1334 String get xmllang native "SVGDescElement_xmllang_Getter";
1313 1335
1314 1336
1315 /** @domName SVGDescElement.xmllang */ 1337 /** @domName SVGDescElement.xmllang */
1316 void set xmllang(String value) native "SVGDescElement_xmllang_Setter"; 1338 void set xmllang(String value) native "SVGDescElement_xmllang_Setter";
1317 1339
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 } 1612 }
1591 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1613 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1592 // for details. All rights reserved. Use of this source code is governed by a 1614 // for details. All rights reserved. Use of this source code is governed by a
1593 // BSD-style license that can be found in the LICENSE file. 1615 // BSD-style license that can be found in the LICENSE file.
1594 1616
1595 // WARNING: Do not edit - generated code. 1617 // WARNING: Do not edit - generated code.
1596 1618
1597 1619
1598 /// @domName SVGEllipseElement 1620 /// @domName SVGEllipseElement
1599 class SVGEllipseElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 1621 class SVGEllipseElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired {
1622
1623 factory SVGEllipseElement() => _SvgElementFactoryProvider.createSVGElement_tag ("ellipse");
1600 SVGEllipseElement.internal(): super.internal(); 1624 SVGEllipseElement.internal(): super.internal();
1601 1625
1602 1626
1603 /** @domName SVGEllipseElement.cx */ 1627 /** @domName SVGEllipseElement.cx */
1604 SVGAnimatedLength get cx native "SVGEllipseElement_cx_Getter"; 1628 SVGAnimatedLength get cx native "SVGEllipseElement_cx_Getter";
1605 1629
1606 1630
1607 /** @domName SVGEllipseElement.cy */ 1631 /** @domName SVGEllipseElement.cy */
1608 SVGAnimatedLength get cy native "SVGEllipseElement_cy_Getter"; 1632 SVGAnimatedLength get cy native "SVGEllipseElement_cy_Getter";
1609 1633
(...skipping 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after
3004 } 3028 }
3005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3029 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3006 // for details. All rights reserved. Use of this source code is governed by a 3030 // for details. All rights reserved. Use of this source code is governed by a
3007 // BSD-style license that can be found in the LICENSE file. 3031 // BSD-style license that can be found in the LICENSE file.
3008 3032
3009 // WARNING: Do not edit - generated code. 3033 // WARNING: Do not edit - generated code.
3010 3034
3011 3035
3012 /// @domName SVGFilterElement 3036 /// @domName SVGFilterElement
3013 class SVGFilterElement extends SVGElement implements SVGURIReference, SVGLangSpa ce, SVGExternalResourcesRequired, SVGStylable { 3037 class SVGFilterElement extends SVGElement implements SVGURIReference, SVGLangSpa ce, SVGExternalResourcesRequired, SVGStylable {
3038
3039 factory SVGFilterElement() => _SvgElementFactoryProvider.createSVGElement_tag( "filter");
3014 SVGFilterElement.internal(): super.internal(); 3040 SVGFilterElement.internal(): super.internal();
3015 3041
3016 3042
3017 /** @domName SVGFilterElement.filterResX */ 3043 /** @domName SVGFilterElement.filterResX */
3018 SVGAnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter"; 3044 SVGAnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter";
3019 3045
3020 3046
3021 /** @domName SVGFilterElement.filterResY */ 3047 /** @domName SVGFilterElement.filterResY */
3022 SVGAnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter"; 3048 SVGAnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter";
3023 3049
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
3152 } 3178 }
3153 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3179 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3154 // for details. All rights reserved. Use of this source code is governed by a 3180 // for details. All rights reserved. Use of this source code is governed by a
3155 // BSD-style license that can be found in the LICENSE file. 3181 // BSD-style license that can be found in the LICENSE file.
3156 3182
3157 // WARNING: Do not edit - generated code. 3183 // WARNING: Do not edit - generated code.
3158 3184
3159 3185
3160 /// @domName SVGFontElement 3186 /// @domName SVGFontElement
3161 class SVGFontElement extends SVGElement { 3187 class SVGFontElement extends SVGElement {
3188
3189 factory SVGFontElement() => _SvgElementFactoryProvider.createSVGElement_tag("f ont");
3162 SVGFontElement.internal(): super.internal(); 3190 SVGFontElement.internal(): super.internal();
3163 3191
3164 } 3192 }
3165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3193 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3166 // for details. All rights reserved. Use of this source code is governed by a 3194 // for details. All rights reserved. Use of this source code is governed by a
3167 // BSD-style license that can be found in the LICENSE file. 3195 // BSD-style license that can be found in the LICENSE file.
3168 3196
3169 // WARNING: Do not edit - generated code. 3197 // WARNING: Do not edit - generated code.
3170 3198
3171 3199
3172 /// @domName SVGFontFaceElement 3200 /// @domName SVGFontFaceElement
3173 class SVGFontFaceElement extends SVGElement { 3201 class SVGFontFaceElement extends SVGElement {
3202
3203 factory SVGFontFaceElement() => _SvgElementFactoryProvider.createSVGElement_ta g("font-face");
3174 SVGFontFaceElement.internal(): super.internal(); 3204 SVGFontFaceElement.internal(): super.internal();
3175 3205
3176 } 3206 }
3177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3207 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3178 // for details. All rights reserved. Use of this source code is governed by a 3208 // for details. All rights reserved. Use of this source code is governed by a
3179 // BSD-style license that can be found in the LICENSE file. 3209 // BSD-style license that can be found in the LICENSE file.
3180 3210
3181 // WARNING: Do not edit - generated code. 3211 // WARNING: Do not edit - generated code.
3182 3212
3183 3213
3184 /// @domName SVGFontFaceFormatElement 3214 /// @domName SVGFontFaceFormatElement
3185 class SVGFontFaceFormatElement extends SVGElement { 3215 class SVGFontFaceFormatElement extends SVGElement {
3216
3217 factory SVGFontFaceFormatElement() => _SvgElementFactoryProvider.createSVGElem ent_tag("font-face-format");
3186 SVGFontFaceFormatElement.internal(): super.internal(); 3218 SVGFontFaceFormatElement.internal(): super.internal();
3187 3219
3188 } 3220 }
3189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3221 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3190 // for details. All rights reserved. Use of this source code is governed by a 3222 // for details. All rights reserved. Use of this source code is governed by a
3191 // BSD-style license that can be found in the LICENSE file. 3223 // BSD-style license that can be found in the LICENSE file.
3192 3224
3193 // WARNING: Do not edit - generated code. 3225 // WARNING: Do not edit - generated code.
3194 3226
3195 3227
3196 /// @domName SVGFontFaceNameElement 3228 /// @domName SVGFontFaceNameElement
3197 class SVGFontFaceNameElement extends SVGElement { 3229 class SVGFontFaceNameElement extends SVGElement {
3230
3231 factory SVGFontFaceNameElement() => _SvgElementFactoryProvider.createSVGElemen t_tag("font-face-name");
3198 SVGFontFaceNameElement.internal(): super.internal(); 3232 SVGFontFaceNameElement.internal(): super.internal();
3199 3233
3200 } 3234 }
3201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3235 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3202 // for details. All rights reserved. Use of this source code is governed by a 3236 // for details. All rights reserved. Use of this source code is governed by a
3203 // BSD-style license that can be found in the LICENSE file. 3237 // BSD-style license that can be found in the LICENSE file.
3204 3238
3205 // WARNING: Do not edit - generated code. 3239 // WARNING: Do not edit - generated code.
3206 3240
3207 3241
3208 /// @domName SVGFontFaceSrcElement 3242 /// @domName SVGFontFaceSrcElement
3209 class SVGFontFaceSrcElement extends SVGElement { 3243 class SVGFontFaceSrcElement extends SVGElement {
3244
3245 factory SVGFontFaceSrcElement() => _SvgElementFactoryProvider.createSVGElement _tag("font-face-src");
3210 SVGFontFaceSrcElement.internal(): super.internal(); 3246 SVGFontFaceSrcElement.internal(): super.internal();
3211 3247
3212 } 3248 }
3213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3249 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3214 // for details. All rights reserved. Use of this source code is governed by a 3250 // for details. All rights reserved. Use of this source code is governed by a
3215 // BSD-style license that can be found in the LICENSE file. 3251 // BSD-style license that can be found in the LICENSE file.
3216 3252
3217 // WARNING: Do not edit - generated code. 3253 // WARNING: Do not edit - generated code.
3218 3254
3219 3255
3220 /// @domName SVGFontFaceUriElement 3256 /// @domName SVGFontFaceUriElement
3221 class SVGFontFaceUriElement extends SVGElement { 3257 class SVGFontFaceUriElement extends SVGElement {
3258
3259 factory SVGFontFaceUriElement() => _SvgElementFactoryProvider.createSVGElement _tag("font-face-uri");
3222 SVGFontFaceUriElement.internal(): super.internal(); 3260 SVGFontFaceUriElement.internal(): super.internal();
3223 3261
3224 } 3262 }
3225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3226 // for details. All rights reserved. Use of this source code is governed by a 3264 // for details. All rights reserved. Use of this source code is governed by a
3227 // BSD-style license that can be found in the LICENSE file. 3265 // BSD-style license that can be found in the LICENSE file.
3228 3266
3229 // WARNING: Do not edit - generated code. 3267 // WARNING: Do not edit - generated code.
3230 3268
3231 3269
3232 /// @domName SVGForeignObjectElement 3270 /// @domName SVGForeignObjectElement
3233 class SVGForeignObjectElement extends SVGElement implements SVGLangSpace, SVGSty lable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 3271 class SVGForeignObjectElement extends SVGElement implements SVGLangSpace, SVGSty lable, SVGTests, SVGTransformable, SVGExternalResourcesRequired {
3272
3273 factory SVGForeignObjectElement() => _SvgElementFactoryProvider.createSVGEleme nt_tag("foreignObject");
3234 SVGForeignObjectElement.internal(): super.internal(); 3274 SVGForeignObjectElement.internal(): super.internal();
3235 3275
3236 3276
3237 /** @domName SVGForeignObjectElement.height */ 3277 /** @domName SVGForeignObjectElement.height */
3238 SVGAnimatedLength get height native "SVGForeignObjectElement_height_Getter"; 3278 SVGAnimatedLength get height native "SVGForeignObjectElement_height_Getter";
3239 3279
3240 3280
3241 /** @domName SVGForeignObjectElement.width */ 3281 /** @domName SVGForeignObjectElement.width */
3242 SVGAnimatedLength get width native "SVGForeignObjectElement_width_Getter"; 3282 SVGAnimatedLength get width native "SVGForeignObjectElement_width_Getter";
3243 3283
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
3328 } 3368 }
3329 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3330 // for details. All rights reserved. Use of this source code is governed by a 3370 // for details. All rights reserved. Use of this source code is governed by a
3331 // BSD-style license that can be found in the LICENSE file. 3371 // BSD-style license that can be found in the LICENSE file.
3332 3372
3333 // WARNING: Do not edit - generated code. 3373 // WARNING: Do not edit - generated code.
3334 3374
3335 3375
3336 /// @domName SVGGElement 3376 /// @domName SVGGElement
3337 class SVGGElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTe sts, SVGTransformable, SVGExternalResourcesRequired { 3377 class SVGGElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTe sts, SVGTransformable, SVGExternalResourcesRequired {
3378
3379 factory SVGGElement() => _SvgElementFactoryProvider.createSVGElement_tag("g");
3338 SVGGElement.internal(): super.internal(); 3380 SVGGElement.internal(): super.internal();
3339 3381
3340 3382
3341 /** @domName SVGGElement.externalResourcesRequired */ 3383 /** @domName SVGGElement.externalResourcesRequired */
3342 SVGAnimatedBoolean get externalResourcesRequired native "SVGGElement_externalR esourcesRequired_Getter"; 3384 SVGAnimatedBoolean get externalResourcesRequired native "SVGGElement_externalR esourcesRequired_Getter";
3343 3385
3344 3386
3345 /** @domName SVGGElement.xmllang */ 3387 /** @domName SVGGElement.xmllang */
3346 String get xmllang native "SVGGElement_xmllang_Getter"; 3388 String get xmllang native "SVGGElement_xmllang_Getter";
3347 3389
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
3416 } 3458 }
3417 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3459 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3418 // for details. All rights reserved. Use of this source code is governed by a 3460 // for details. All rights reserved. Use of this source code is governed by a
3419 // BSD-style license that can be found in the LICENSE file. 3461 // BSD-style license that can be found in the LICENSE file.
3420 3462
3421 // WARNING: Do not edit - generated code. 3463 // WARNING: Do not edit - generated code.
3422 3464
3423 3465
3424 /// @domName SVGGlyphElement 3466 /// @domName SVGGlyphElement
3425 class SVGGlyphElement extends SVGElement { 3467 class SVGGlyphElement extends SVGElement {
3468
3469 factory SVGGlyphElement() => _SvgElementFactoryProvider.createSVGElement_tag(" glyph");
3426 SVGGlyphElement.internal(): super.internal(); 3470 SVGGlyphElement.internal(): super.internal();
3427 3471
3428 } 3472 }
3429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3430 // for details. All rights reserved. Use of this source code is governed by a 3474 // for details. All rights reserved. Use of this source code is governed by a
3431 // BSD-style license that can be found in the LICENSE file. 3475 // BSD-style license that can be found in the LICENSE file.
3432 3476
3433 // WARNING: Do not edit - generated code. 3477 // WARNING: Do not edit - generated code.
3434 3478
3435 3479
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
3556 } 3600 }
3557 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3601 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3558 // for details. All rights reserved. Use of this source code is governed by a 3602 // for details. All rights reserved. Use of this source code is governed by a
3559 // BSD-style license that can be found in the LICENSE file. 3603 // BSD-style license that can be found in the LICENSE file.
3560 3604
3561 // WARNING: Do not edit - generated code. 3605 // WARNING: Do not edit - generated code.
3562 3606
3563 3607
3564 /// @domName SVGHKernElement 3608 /// @domName SVGHKernElement
3565 class SVGHKernElement extends SVGElement { 3609 class SVGHKernElement extends SVGElement {
3610
3611 factory SVGHKernElement() => _SvgElementFactoryProvider.createSVGElement_tag(" hkern");
3566 SVGHKernElement.internal(): super.internal(); 3612 SVGHKernElement.internal(): super.internal();
3567 3613
3568 } 3614 }
3569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3570 // for details. All rights reserved. Use of this source code is governed by a 3616 // for details. All rights reserved. Use of this source code is governed by a
3571 // BSD-style license that can be found in the LICENSE file. 3617 // BSD-style license that can be found in the LICENSE file.
3572 3618
3573 // WARNING: Do not edit - generated code. 3619 // WARNING: Do not edit - generated code.
3574 3620
3575 3621
3576 /// @domName SVGImageElement 3622 /// @domName SVGImageElement
3577 class SVGImageElement extends SVGElement implements SVGLangSpace, SVGTests, SVGS tylable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { 3623 class SVGImageElement extends SVGElement implements SVGLangSpace, SVGTests, SVGS tylable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable {
3624
3625 factory SVGImageElement() => _SvgElementFactoryProvider.createSVGElement_tag(" image");
3578 SVGImageElement.internal(): super.internal(); 3626 SVGImageElement.internal(): super.internal();
3579 3627
3580 3628
3581 /** @domName SVGImageElement.height */ 3629 /** @domName SVGImageElement.height */
3582 SVGAnimatedLength get height native "SVGImageElement_height_Getter"; 3630 SVGAnimatedLength get height native "SVGImageElement_height_Getter";
3583 3631
3584 3632
3585 /** @domName SVGImageElement.preserveAspectRatio */ 3633 /** @domName SVGImageElement.preserveAspectRatio */
3586 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement _preserveAspectRatio_Getter"; 3634 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement _preserveAspectRatio_Getter";
3587 3635
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
3905 } 3953 }
3906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3954 // 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 3955 // 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. 3956 // BSD-style license that can be found in the LICENSE file.
3909 3957
3910 // WARNING: Do not edit - generated code. 3958 // WARNING: Do not edit - generated code.
3911 3959
3912 3960
3913 /// @domName SVGLineElement 3961 /// @domName SVGLineElement
3914 class SVGLineElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 3962 class SVGLineElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired {
3963
3964 factory SVGLineElement() => _SvgElementFactoryProvider.createSVGElement_tag("l ine");
3915 SVGLineElement.internal(): super.internal(); 3965 SVGLineElement.internal(): super.internal();
3916 3966
3917 3967
3918 /** @domName SVGLineElement.x1 */ 3968 /** @domName SVGLineElement.x1 */
3919 SVGAnimatedLength get x1 native "SVGLineElement_x1_Getter"; 3969 SVGAnimatedLength get x1 native "SVGLineElement_x1_Getter";
3920 3970
3921 3971
3922 /** @domName SVGLineElement.x2 */ 3972 /** @domName SVGLineElement.x2 */
3923 SVGAnimatedLength get x2 native "SVGLineElement_x2_Getter"; 3973 SVGAnimatedLength get x2 native "SVGLineElement_x2_Getter";
3924 3974
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
4009 } 4059 }
4010 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4060 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4011 // for details. All rights reserved. Use of this source code is governed by a 4061 // for details. All rights reserved. Use of this source code is governed by a
4012 // BSD-style license that can be found in the LICENSE file. 4062 // BSD-style license that can be found in the LICENSE file.
4013 4063
4014 // WARNING: Do not edit - generated code. 4064 // WARNING: Do not edit - generated code.
4015 4065
4016 4066
4017 /// @domName SVGLinearGradientElement 4067 /// @domName SVGLinearGradientElement
4018 class SVGLinearGradientElement extends SVGGradientElement { 4068 class SVGLinearGradientElement extends SVGGradientElement {
4069
4070 factory SVGLinearGradientElement() => _SvgElementFactoryProvider.createSVGElem ent_tag("linearGradient");
4019 SVGLinearGradientElement.internal(): super.internal(); 4071 SVGLinearGradientElement.internal(): super.internal();
4020 4072
4021 4073
4022 /** @domName SVGLinearGradientElement.x1 */ 4074 /** @domName SVGLinearGradientElement.x1 */
4023 SVGAnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; 4075 SVGAnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter";
4024 4076
4025 4077
4026 /** @domName SVGLinearGradientElement.x2 */ 4078 /** @domName SVGLinearGradientElement.x2 */
4027 SVGAnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter"; 4079 SVGAnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter";
4028 4080
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
4073 } 4125 }
4074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4126 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4075 // for details. All rights reserved. Use of this source code is governed by a 4127 // for details. All rights reserved. Use of this source code is governed by a
4076 // BSD-style license that can be found in the LICENSE file. 4128 // BSD-style license that can be found in the LICENSE file.
4077 4129
4078 // WARNING: Do not edit - generated code. 4130 // WARNING: Do not edit - generated code.
4079 4131
4080 4132
4081 /// @domName SVGMPathElement 4133 /// @domName SVGMPathElement
4082 class SVGMPathElement extends SVGElement implements SVGURIReference, SVGExternal ResourcesRequired { 4134 class SVGMPathElement extends SVGElement implements SVGURIReference, SVGExternal ResourcesRequired {
4135
4136 factory SVGMPathElement() => _SvgElementFactoryProvider.createSVGElement_tag(" mpath");
4083 SVGMPathElement.internal(): super.internal(); 4137 SVGMPathElement.internal(): super.internal();
4084 4138
4085 4139
4086 /** @domName SVGMPathElement.externalResourcesRequired */ 4140 /** @domName SVGMPathElement.externalResourcesRequired */
4087 SVGAnimatedBoolean get externalResourcesRequired native "SVGMPathElement_exter nalResourcesRequired_Getter"; 4141 SVGAnimatedBoolean get externalResourcesRequired native "SVGMPathElement_exter nalResourcesRequired_Getter";
4088 4142
4089 4143
4090 /** @domName SVGMPathElement.href */ 4144 /** @domName SVGMPathElement.href */
4091 SVGAnimatedString get href native "SVGMPathElement_href_Getter"; 4145 SVGAnimatedString get href native "SVGMPathElement_href_Getter";
4092 4146
4093 } 4147 }
4094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4095 // for details. All rights reserved. Use of this source code is governed by a 4149 // for details. All rights reserved. Use of this source code is governed by a
4096 // BSD-style license that can be found in the LICENSE file. 4150 // BSD-style license that can be found in the LICENSE file.
4097 4151
4098 // WARNING: Do not edit - generated code. 4152 // WARNING: Do not edit - generated code.
4099 4153
4100 4154
4101 /// @domName SVGMarkerElement 4155 /// @domName SVGMarkerElement
4102 class SVGMarkerElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable { 4156 class SVGMarkerElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable {
4157
4158 factory SVGMarkerElement() => _SvgElementFactoryProvider.createSVGElement_tag( "marker");
4103 SVGMarkerElement.internal(): super.internal(); 4159 SVGMarkerElement.internal(): super.internal();
4104 4160
4105 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 4161 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
4106 4162
4107 static const int SVG_MARKERUNITS_UNKNOWN = 0; 4163 static const int SVG_MARKERUNITS_UNKNOWN = 0;
4108 4164
4109 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; 4165 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
4110 4166
4111 static const int SVG_MARKER_ORIENT_ANGLE = 2; 4167 static const int SVG_MARKER_ORIENT_ANGLE = 2;
4112 4168
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
4193 } 4249 }
4194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4250 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4195 // for details. All rights reserved. Use of this source code is governed by a 4251 // for details. All rights reserved. Use of this source code is governed by a
4196 // BSD-style license that can be found in the LICENSE file. 4252 // BSD-style license that can be found in the LICENSE file.
4197 4253
4198 // WARNING: Do not edit - generated code. 4254 // WARNING: Do not edit - generated code.
4199 4255
4200 4256
4201 /// @domName SVGMaskElement 4257 /// @domName SVGMaskElement
4202 class SVGMaskElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGExternalResourcesRequired { 4258 class SVGMaskElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGExternalResourcesRequired {
4259
4260 factory SVGMaskElement() => _SvgElementFactoryProvider.createSVGElement_tag("m ask");
4203 SVGMaskElement.internal(): super.internal(); 4261 SVGMaskElement.internal(): super.internal();
4204 4262
4205 4263
4206 /** @domName SVGMaskElement.height */ 4264 /** @domName SVGMaskElement.height */
4207 SVGAnimatedLength get height native "SVGMaskElement_height_Getter"; 4265 SVGAnimatedLength get height native "SVGMaskElement_height_Getter";
4208 4266
4209 4267
4210 /** @domName SVGMaskElement.maskContentUnits */ 4268 /** @domName SVGMaskElement.maskContentUnits */
4211 SVGAnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContent Units_Getter"; 4269 SVGAnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContent Units_Getter";
4212 4270
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
4600 } 4658 }
4601 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4659 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4602 // for details. All rights reserved. Use of this source code is governed by a 4660 // for details. All rights reserved. Use of this source code is governed by a
4603 // BSD-style license that can be found in the LICENSE file. 4661 // BSD-style license that can be found in the LICENSE file.
4604 4662
4605 // WARNING: Do not edit - generated code. 4663 // WARNING: Do not edit - generated code.
4606 4664
4607 4665
4608 /// @domName SVGPathElement 4666 /// @domName SVGPathElement
4609 class SVGPathElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 4667 class SVGPathElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired {
4668
4669 factory SVGPathElement() => _SvgElementFactoryProvider.createSVGElement_tag("p ath");
4610 SVGPathElement.internal(): super.internal(); 4670 SVGPathElement.internal(): super.internal();
4611 4671
4612 4672
4613 /** @domName SVGPathElement.animatedNormalizedPathSegList */ 4673 /** @domName SVGPathElement.animatedNormalizedPathSegList */
4614 SVGPathSegList get animatedNormalizedPathSegList native "SVGPathElement_animat edNormalizedPathSegList_Getter"; 4674 SVGPathSegList get animatedNormalizedPathSegList native "SVGPathElement_animat edNormalizedPathSegList_Getter";
4615 4675
4616 4676
4617 /** @domName SVGPathElement.animatedPathSegList */ 4677 /** @domName SVGPathElement.animatedPathSegList */
4618 SVGPathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegL ist_Getter"; 4678 SVGPathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegL ist_Getter";
4619 4679
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after
5675 } 5735 }
5676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5677 // for details. All rights reserved. Use of this source code is governed by a 5737 // for details. All rights reserved. Use of this source code is governed by a
5678 // BSD-style license that can be found in the LICENSE file. 5738 // BSD-style license that can be found in the LICENSE file.
5679 5739
5680 // WARNING: Do not edit - generated code. 5740 // WARNING: Do not edit - generated code.
5681 5741
5682 5742
5683 /// @domName SVGPatternElement 5743 /// @domName SVGPatternElement
5684 class SVGPatternElement extends SVGElement implements SVGLangSpace, SVGTests, SV GStylable, SVGURIReference, SVGFitToViewBox, SVGExternalResourcesRequired { 5744 class SVGPatternElement extends SVGElement implements SVGLangSpace, SVGTests, SV GStylable, SVGURIReference, SVGFitToViewBox, SVGExternalResourcesRequired {
5745
5746 factory SVGPatternElement() => _SvgElementFactoryProvider.createSVGElement_tag ("pattern");
5685 SVGPatternElement.internal(): super.internal(); 5747 SVGPatternElement.internal(): super.internal();
5686 5748
5687 5749
5688 /** @domName SVGPatternElement.height */ 5750 /** @domName SVGPatternElement.height */
5689 SVGAnimatedLength get height native "SVGPatternElement_height_Getter"; 5751 SVGAnimatedLength get height native "SVGPatternElement_height_Getter";
5690 5752
5691 5753
5692 /** @domName SVGPatternElement.patternContentUnits */ 5754 /** @domName SVGPatternElement.patternContentUnits */
5693 SVGAnimatedEnumeration get patternContentUnits native "SVGPatternElement_patte rnContentUnits_Getter"; 5755 SVGAnimatedEnumeration get patternContentUnits native "SVGPatternElement_patte rnContentUnits_Getter";
5694 5756
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
5851 } 5913 }
5852 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5914 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5853 // for details. All rights reserved. Use of this source code is governed by a 5915 // for details. All rights reserved. Use of this source code is governed by a
5854 // BSD-style license that can be found in the LICENSE file. 5916 // BSD-style license that can be found in the LICENSE file.
5855 5917
5856 // WARNING: Do not edit - generated code. 5918 // WARNING: Do not edit - generated code.
5857 5919
5858 5920
5859 /// @domName SVGPolygonElement 5921 /// @domName SVGPolygonElement
5860 class SVGPolygonElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 5922 class SVGPolygonElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired {
5923
5924 factory SVGPolygonElement() => _SvgElementFactoryProvider.createSVGElement_tag ("polygon");
5861 SVGPolygonElement.internal(): super.internal(); 5925 SVGPolygonElement.internal(): super.internal();
5862 5926
5863 5927
5864 /** @domName SVGPolygonElement.animatedPoints */ 5928 /** @domName SVGPolygonElement.animatedPoints */
5865 SVGPointList get animatedPoints native "SVGPolygonElement_animatedPoints_Gette r"; 5929 SVGPointList get animatedPoints native "SVGPolygonElement_animatedPoints_Gette r";
5866 5930
5867 5931
5868 /** @domName SVGPolygonElement.points */ 5932 /** @domName SVGPolygonElement.points */
5869 SVGPointList get points native "SVGPolygonElement_points_Getter"; 5933 SVGPointList get points native "SVGPolygonElement_points_Getter";
5870 5934
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
5947 } 6011 }
5948 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6012 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5949 // for details. All rights reserved. Use of this source code is governed by a 6013 // for details. All rights reserved. Use of this source code is governed by a
5950 // BSD-style license that can be found in the LICENSE file. 6014 // BSD-style license that can be found in the LICENSE file.
5951 6015
5952 // WARNING: Do not edit - generated code. 6016 // WARNING: Do not edit - generated code.
5953 6017
5954 6018
5955 /// @domName SVGPolylineElement 6019 /// @domName SVGPolylineElement
5956 class SVGPolylineElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired { 6020 class SVGPolylineElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired {
6021
6022 factory SVGPolylineElement() => _SvgElementFactoryProvider.createSVGElement_ta g("polyline");
5957 SVGPolylineElement.internal(): super.internal(); 6023 SVGPolylineElement.internal(): super.internal();
5958 6024
5959 6025
5960 /** @domName SVGPolylineElement.animatedPoints */ 6026 /** @domName SVGPolylineElement.animatedPoints */
5961 SVGPointList get animatedPoints native "SVGPolylineElement_animatedPoints_Gett er"; 6027 SVGPointList get animatedPoints native "SVGPolylineElement_animatedPoints_Gett er";
5962 6028
5963 6029
5964 /** @domName SVGPolylineElement.points */ 6030 /** @domName SVGPolylineElement.points */
5965 SVGPointList get points native "SVGPolylineElement_points_Getter"; 6031 SVGPointList get points native "SVGPolylineElement_points_Getter";
5966 6032
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
6099 } 6165 }
6100 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6166 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6101 // for details. All rights reserved. Use of this source code is governed by a 6167 // for details. All rights reserved. Use of this source code is governed by a
6102 // BSD-style license that can be found in the LICENSE file. 6168 // BSD-style license that can be found in the LICENSE file.
6103 6169
6104 // WARNING: Do not edit - generated code. 6170 // WARNING: Do not edit - generated code.
6105 6171
6106 6172
6107 /// @domName SVGRadialGradientElement 6173 /// @domName SVGRadialGradientElement
6108 class SVGRadialGradientElement extends SVGGradientElement { 6174 class SVGRadialGradientElement extends SVGGradientElement {
6175
6176 factory SVGRadialGradientElement() => _SvgElementFactoryProvider.createSVGElem ent_tag("radialGradient");
6109 SVGRadialGradientElement.internal(): super.internal(); 6177 SVGRadialGradientElement.internal(): super.internal();
6110 6178
6111 6179
6112 /** @domName SVGRadialGradientElement.cx */ 6180 /** @domName SVGRadialGradientElement.cx */
6113 SVGAnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; 6181 SVGAnimatedLength get cx native "SVGRadialGradientElement_cx_Getter";
6114 6182
6115 6183
6116 /** @domName SVGRadialGradientElement.cy */ 6184 /** @domName SVGRadialGradientElement.cy */
6117 SVGAnimatedLength get cy native "SVGRadialGradientElement_cy_Getter"; 6185 SVGAnimatedLength get cy native "SVGRadialGradientElement_cy_Getter";
6118 6186
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
6179 } 6247 }
6180 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6248 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6181 // for details. All rights reserved. Use of this source code is governed by a 6249 // for details. All rights reserved. Use of this source code is governed by a
6182 // BSD-style license that can be found in the LICENSE file. 6250 // BSD-style license that can be found in the LICENSE file.
6183 6251
6184 // WARNING: Do not edit - generated code. 6252 // WARNING: Do not edit - generated code.
6185 6253
6186 6254
6187 /// @domName SVGRectElement 6255 /// @domName SVGRectElement
6188 class SVGRectElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 6256 class SVGRectElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired {
6257
6258 factory SVGRectElement() => _SvgElementFactoryProvider.createSVGElement_tag("r ect");
6189 SVGRectElement.internal(): super.internal(); 6259 SVGRectElement.internal(): super.internal();
6190 6260
6191 6261
6192 /** @domName SVGRectElement.height */ 6262 /** @domName SVGRectElement.height */
6193 SVGAnimatedLength get height native "SVGRectElement_height_Getter"; 6263 SVGAnimatedLength get height native "SVGRectElement_height_Getter";
6194 6264
6195 6265
6196 /** @domName SVGRectElement.rx */ 6266 /** @domName SVGRectElement.rx */
6197 SVGAnimatedLength get rx native "SVGRectElement_rx_Getter"; 6267 SVGAnimatedLength get rx native "SVGRectElement_rx_Getter";
6198 6268
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
6578 } 6648 }
6579 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6649 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6580 // for details. All rights reserved. Use of this source code is governed by a 6650 // for details. All rights reserved. Use of this source code is governed by a
6581 // BSD-style license that can be found in the LICENSE file. 6651 // BSD-style license that can be found in the LICENSE file.
6582 6652
6583 // WARNING: Do not edit - generated code. 6653 // WARNING: Do not edit - generated code.
6584 6654
6585 6655
6586 /// @domName SVGScriptElement 6656 /// @domName SVGScriptElement
6587 class SVGScriptElement extends SVGElement implements SVGURIReference, SVGExterna lResourcesRequired { 6657 class SVGScriptElement extends SVGElement implements SVGURIReference, SVGExterna lResourcesRequired {
6658
6659 factory SVGScriptElement() => _SvgElementFactoryProvider.createSVGElement_tag( "script");
6588 SVGScriptElement.internal(): super.internal(); 6660 SVGScriptElement.internal(): super.internal();
6589 6661
6590 6662
6591 /** @domName SVGScriptElement.type */ 6663 /** @domName SVGScriptElement.type */
6592 String get type native "SVGScriptElement_type_Getter"; 6664 String get type native "SVGScriptElement_type_Getter";
6593 6665
6594 6666
6595 /** @domName SVGScriptElement.type */ 6667 /** @domName SVGScriptElement.type */
6596 void set type(String value) native "SVGScriptElement_type_Setter"; 6668 void set type(String value) native "SVGScriptElement_type_Setter";
6597 6669
6598 6670
6599 /** @domName SVGScriptElement.externalResourcesRequired */ 6671 /** @domName SVGScriptElement.externalResourcesRequired */
6600 SVGAnimatedBoolean get externalResourcesRequired native "SVGScriptElement_exte rnalResourcesRequired_Getter"; 6672 SVGAnimatedBoolean get externalResourcesRequired native "SVGScriptElement_exte rnalResourcesRequired_Getter";
6601 6673
6602 6674
6603 /** @domName SVGScriptElement.href */ 6675 /** @domName SVGScriptElement.href */
6604 SVGAnimatedString get href native "SVGScriptElement_href_Getter"; 6676 SVGAnimatedString get href native "SVGScriptElement_href_Getter";
6605 6677
6606 } 6678 }
6607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6608 // for details. All rights reserved. Use of this source code is governed by a 6680 // for details. All rights reserved. Use of this source code is governed by a
6609 // BSD-style license that can be found in the LICENSE file. 6681 // BSD-style license that can be found in the LICENSE file.
6610 6682
6611 // WARNING: Do not edit - generated code. 6683 // WARNING: Do not edit - generated code.
6612 6684
6613 6685
6614 /// @domName SVGSetElement 6686 /// @domName SVGSetElement
6615 class SVGSetElement extends SVGAnimationElement { 6687 class SVGSetElement extends SVGAnimationElement {
6688
6689 factory SVGSetElement() => _SvgElementFactoryProvider.createSVGElement_tag("se t");
6616 SVGSetElement.internal(): super.internal(); 6690 SVGSetElement.internal(): super.internal();
6617 6691
6618 } 6692 }
6619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6620 // for details. All rights reserved. Use of this source code is governed by a 6694 // for details. All rights reserved. Use of this source code is governed by a
6621 // BSD-style license that can be found in the LICENSE file. 6695 // BSD-style license that can be found in the LICENSE file.
6622 6696
6623 // WARNING: Do not edit - generated code. 6697 // WARNING: Do not edit - generated code.
6624 6698
6625 6699
6626 /// @domName SVGStopElement 6700 /// @domName SVGStopElement
6627 class SVGStopElement extends SVGElement implements SVGStylable { 6701 class SVGStopElement extends SVGElement implements SVGStylable {
6702
6703 factory SVGStopElement() => _SvgElementFactoryProvider.createSVGElement_tag("s top");
6628 SVGStopElement.internal(): super.internal(); 6704 SVGStopElement.internal(): super.internal();
6629 6705
6630 6706
6631 /** @domName SVGStopElement.offset */ 6707 /** @domName SVGStopElement.offset */
6632 SVGAnimatedNumber get offset native "SVGStopElement_offset_Getter"; 6708 SVGAnimatedNumber get offset native "SVGStopElement_offset_Getter";
6633 6709
6634 6710
6635 /** @domName SVGStopElement.className */ 6711 /** @domName SVGStopElement.className */
6636 SVGAnimatedString get $dom_svgClassName native "SVGStopElement_className_Gette r"; 6712 SVGAnimatedString get $dom_svgClassName native "SVGStopElement_className_Gette r";
6637 6713
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
6797 } 6873 }
6798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6874 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6799 // for details. All rights reserved. Use of this source code is governed by a 6875 // for details. All rights reserved. Use of this source code is governed by a
6800 // BSD-style license that can be found in the LICENSE file. 6876 // BSD-style license that can be found in the LICENSE file.
6801 6877
6802 // WARNING: Do not edit - generated code. 6878 // WARNING: Do not edit - generated code.
6803 6879
6804 6880
6805 /// @domName SVGStyleElement 6881 /// @domName SVGStyleElement
6806 class SVGStyleElement extends SVGElement implements SVGLangSpace { 6882 class SVGStyleElement extends SVGElement implements SVGLangSpace {
6883
6884 factory SVGStyleElement() => _SvgElementFactoryProvider.createSVGElement_tag(" style");
6807 SVGStyleElement.internal(): super.internal(); 6885 SVGStyleElement.internal(): super.internal();
6808 6886
6809 6887
6810 /** @domName SVGStyleElement.disabled */ 6888 /** @domName SVGStyleElement.disabled */
6811 bool get disabled native "SVGStyleElement_disabled_Getter"; 6889 bool get disabled native "SVGStyleElement_disabled_Getter";
6812 6890
6813 6891
6814 /** @domName SVGStyleElement.disabled */ 6892 /** @domName SVGStyleElement.disabled */
6815 void set disabled(bool value) native "SVGStyleElement_disabled_Setter"; 6893 void set disabled(bool value) native "SVGStyleElement_disabled_Setter";
6816 6894
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
6857 } 6935 }
6858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6936 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6859 // for details. All rights reserved. Use of this source code is governed by a 6937 // for details. All rights reserved. Use of this source code is governed by a
6860 // BSD-style license that can be found in the LICENSE file. 6938 // BSD-style license that can be found in the LICENSE file.
6861 6939
6862 // WARNING: Do not edit - generated code. 6940 // WARNING: Do not edit - generated code.
6863 6941
6864 6942
6865 /// @domName SVGSwitchElement 6943 /// @domName SVGSwitchElement
6866 class SVGSwitchElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 6944 class SVGSwitchElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired {
6945
6946 factory SVGSwitchElement() => _SvgElementFactoryProvider.createSVGElement_tag( "switch");
6867 SVGSwitchElement.internal(): super.internal(); 6947 SVGSwitchElement.internal(): super.internal();
6868 6948
6869 6949
6870 /** @domName SVGSwitchElement.externalResourcesRequired */ 6950 /** @domName SVGSwitchElement.externalResourcesRequired */
6871 SVGAnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_exte rnalResourcesRequired_Getter"; 6951 SVGAnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_exte rnalResourcesRequired_Getter";
6872 6952
6873 6953
6874 /** @domName SVGSwitchElement.xmllang */ 6954 /** @domName SVGSwitchElement.xmllang */
6875 String get xmllang native "SVGSwitchElement_xmllang_Getter"; 6955 String get xmllang native "SVGSwitchElement_xmllang_Getter";
6876 6956
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
6945 } 7025 }
6946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6947 // for details. All rights reserved. Use of this source code is governed by a 7027 // for details. All rights reserved. Use of this source code is governed by a
6948 // BSD-style license that can be found in the LICENSE file. 7028 // BSD-style license that can be found in the LICENSE file.
6949 7029
6950 // WARNING: Do not edit - generated code. 7030 // WARNING: Do not edit - generated code.
6951 7031
6952 7032
6953 /// @domName SVGSymbolElement 7033 /// @domName SVGSymbolElement
6954 class SVGSymbolElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable { 7034 class SVGSymbolElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable {
7035
7036 factory SVGSymbolElement() => _SvgElementFactoryProvider.createSVGElement_tag( "symbol");
6955 SVGSymbolElement.internal(): super.internal(); 7037 SVGSymbolElement.internal(): super.internal();
6956 7038
6957 7039
6958 /** @domName SVGSymbolElement.externalResourcesRequired */ 7040 /** @domName SVGSymbolElement.externalResourcesRequired */
6959 SVGAnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_exte rnalResourcesRequired_Getter"; 7041 SVGAnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_exte rnalResourcesRequired_Getter";
6960 7042
6961 7043
6962 /** @domName SVGSymbolElement.preserveAspectRatio */ 7044 /** @domName SVGSymbolElement.preserveAspectRatio */
6963 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElemen t_preserveAspectRatio_Getter"; 7045 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElemen t_preserveAspectRatio_Getter";
6964 7046
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
6997 } 7079 }
6998 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7080 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6999 // for details. All rights reserved. Use of this source code is governed by a 7081 // for details. All rights reserved. Use of this source code is governed by a
7000 // BSD-style license that can be found in the LICENSE file. 7082 // BSD-style license that can be found in the LICENSE file.
7001 7083
7002 // WARNING: Do not edit - generated code. 7084 // WARNING: Do not edit - generated code.
7003 7085
7004 7086
7005 /// @domName SVGTRefElement 7087 /// @domName SVGTRefElement
7006 class SVGTRefElement extends SVGTextPositioningElement implements SVGURIReferenc e { 7088 class SVGTRefElement extends SVGTextPositioningElement implements SVGURIReferenc e {
7089
7090 factory SVGTRefElement() => _SvgElementFactoryProvider.createSVGElement_tag("t ref");
7007 SVGTRefElement.internal(): super.internal(); 7091 SVGTRefElement.internal(): super.internal();
7008 7092
7009 7093
7010 /** @domName SVGTRefElement.href */ 7094 /** @domName SVGTRefElement.href */
7011 SVGAnimatedString get href native "SVGTRefElement_href_Getter"; 7095 SVGAnimatedString get href native "SVGTRefElement_href_Getter";
7012 7096
7013 } 7097 }
7014 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7098 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7015 // for details. All rights reserved. Use of this source code is governed by a 7099 // for details. All rights reserved. Use of this source code is governed by a
7016 // BSD-style license that can be found in the LICENSE file. 7100 // BSD-style license that can be found in the LICENSE file.
7017 7101
7018 // WARNING: Do not edit - generated code. 7102 // WARNING: Do not edit - generated code.
7019 7103
7020 7104
7021 /// @domName SVGTSpanElement 7105 /// @domName SVGTSpanElement
7022 class SVGTSpanElement extends SVGTextPositioningElement { 7106 class SVGTSpanElement extends SVGTextPositioningElement {
7107
7108 factory SVGTSpanElement() => _SvgElementFactoryProvider.createSVGElement_tag(" tspan");
7023 SVGTSpanElement.internal(): super.internal(); 7109 SVGTSpanElement.internal(): super.internal();
7024 7110
7025 } 7111 }
7026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7112 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7027 // for details. All rights reserved. Use of this source code is governed by a 7113 // for details. All rights reserved. Use of this source code is governed by a
7028 // BSD-style license that can be found in the LICENSE file. 7114 // BSD-style license that can be found in the LICENSE file.
7029 7115
7030 // WARNING: Do not edit - generated code. 7116 // WARNING: Do not edit - generated code.
7031 7117
7032 7118
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
7163 } 7249 }
7164 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7250 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7165 // for details. All rights reserved. Use of this source code is governed by a 7251 // for details. All rights reserved. Use of this source code is governed by a
7166 // BSD-style license that can be found in the LICENSE file. 7252 // BSD-style license that can be found in the LICENSE file.
7167 7253
7168 // WARNING: Do not edit - generated code. 7254 // WARNING: Do not edit - generated code.
7169 7255
7170 7256
7171 /// @domName SVGTextElement 7257 /// @domName SVGTextElement
7172 class SVGTextElement extends SVGTextPositioningElement implements SVGTransformab le { 7258 class SVGTextElement extends SVGTextPositioningElement implements SVGTransformab le {
7259
7260 factory SVGTextElement() => _SvgElementFactoryProvider.createSVGElement_tag("t ext");
7173 SVGTextElement.internal(): super.internal(); 7261 SVGTextElement.internal(): super.internal();
7174 7262
7175 7263
7176 /** @domName SVGTextElement.farthestViewportElement */ 7264 /** @domName SVGTextElement.farthestViewportElement */
7177 SVGElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter"; 7265 SVGElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter";
7178 7266
7179 7267
7180 /** @domName SVGTextElement.nearestViewportElement */ 7268 /** @domName SVGTextElement.nearestViewportElement */
7181 SVGElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter"; 7269 SVGElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter";
7182 7270
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
7275 } 7363 }
7276 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7364 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7277 // for details. All rights reserved. Use of this source code is governed by a 7365 // for details. All rights reserved. Use of this source code is governed by a
7278 // BSD-style license that can be found in the LICENSE file. 7366 // BSD-style license that can be found in the LICENSE file.
7279 7367
7280 // WARNING: Do not edit - generated code. 7368 // WARNING: Do not edit - generated code.
7281 7369
7282 7370
7283 /// @domName SVGTitleElement 7371 /// @domName SVGTitleElement
7284 class SVGTitleElement extends SVGElement implements SVGLangSpace, SVGStylable { 7372 class SVGTitleElement extends SVGElement implements SVGLangSpace, SVGStylable {
7373
7374 factory SVGTitleElement() => _SvgElementFactoryProvider.createSVGElement_tag(" title");
7285 SVGTitleElement.internal(): super.internal(); 7375 SVGTitleElement.internal(): super.internal();
7286 7376
7287 7377
7288 /** @domName SVGTitleElement.xmllang */ 7378 /** @domName SVGTitleElement.xmllang */
7289 String get xmllang native "SVGTitleElement_xmllang_Getter"; 7379 String get xmllang native "SVGTitleElement_xmllang_Getter";
7290 7380
7291 7381
7292 /** @domName SVGTitleElement.xmllang */ 7382 /** @domName SVGTitleElement.xmllang */
7293 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter"; 7383 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter";
7294 7384
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
7586 } 7676 }
7587 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7677 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7588 // for details. All rights reserved. Use of this source code is governed by a 7678 // for details. All rights reserved. Use of this source code is governed by a
7589 // BSD-style license that can be found in the LICENSE file. 7679 // BSD-style license that can be found in the LICENSE file.
7590 7680
7591 // WARNING: Do not edit - generated code. 7681 // WARNING: Do not edit - generated code.
7592 7682
7593 7683
7594 /// @domName SVGUseElement 7684 /// @domName SVGUseElement
7595 class SVGUseElement extends SVGElement implements SVGLangSpace, SVGTests, SVGSty lable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { 7685 class SVGUseElement extends SVGElement implements SVGLangSpace, SVGTests, SVGSty lable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable {
7686
7687 factory SVGUseElement() => _SvgElementFactoryProvider.createSVGElement_tag("us e");
7596 SVGUseElement.internal(): super.internal(); 7688 SVGUseElement.internal(): super.internal();
7597 7689
7598 7690
7599 /** @domName SVGUseElement.animatedInstanceRoot */ 7691 /** @domName SVGUseElement.animatedInstanceRoot */
7600 SVGElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInst anceRoot_Getter"; 7692 SVGElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInst anceRoot_Getter";
7601 7693
7602 7694
7603 /** @domName SVGUseElement.height */ 7695 /** @domName SVGUseElement.height */
7604 SVGAnimatedLength get height native "SVGUseElement_height_Getter"; 7696 SVGAnimatedLength get height native "SVGUseElement_height_Getter";
7605 7697
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
7702 } 7794 }
7703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7795 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7704 // for details. All rights reserved. Use of this source code is governed by a 7796 // for details. All rights reserved. Use of this source code is governed by a
7705 // BSD-style license that can be found in the LICENSE file. 7797 // BSD-style license that can be found in the LICENSE file.
7706 7798
7707 // WARNING: Do not edit - generated code. 7799 // WARNING: Do not edit - generated code.
7708 7800
7709 7801
7710 /// @domName SVGVKernElement 7802 /// @domName SVGVKernElement
7711 class SVGVKernElement extends SVGElement { 7803 class SVGVKernElement extends SVGElement {
7804
7805 factory SVGVKernElement() => _SvgElementFactoryProvider.createSVGElement_tag(" vkern");
7712 SVGVKernElement.internal(): super.internal(); 7806 SVGVKernElement.internal(): super.internal();
7713 7807
7714 } 7808 }
7715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7809 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7716 // for details. All rights reserved. Use of this source code is governed by a 7810 // for details. All rights reserved. Use of this source code is governed by a
7717 // BSD-style license that can be found in the LICENSE file. 7811 // BSD-style license that can be found in the LICENSE file.
7718 7812
7719 // WARNING: Do not edit - generated code. 7813 // WARNING: Do not edit - generated code.
7720 7814
7721 7815
7722 /// @domName SVGViewElement 7816 /// @domName SVGViewElement
7723 class SVGViewElement extends SVGElement implements SVGFitToViewBox, SVGZoomAndPa n, SVGExternalResourcesRequired { 7817 class SVGViewElement extends SVGElement implements SVGFitToViewBox, SVGZoomAndPa n, SVGExternalResourcesRequired {
7818
7819 factory SVGViewElement() => _SvgElementFactoryProvider.createSVGElement_tag("v iew");
7724 SVGViewElement.internal(): super.internal(); 7820 SVGViewElement.internal(): super.internal();
7725 7821
7726 7822
7727 /** @domName SVGViewElement.viewTarget */ 7823 /** @domName SVGViewElement.viewTarget */
7728 SVGStringList get viewTarget native "SVGViewElement_viewTarget_Getter"; 7824 SVGStringList get viewTarget native "SVGViewElement_viewTarget_Getter";
7729 7825
7730 7826
7731 /** @domName SVGViewElement.externalResourcesRequired */ 7827 /** @domName SVGViewElement.externalResourcesRequired */
7732 SVGAnimatedBoolean get externalResourcesRequired native "SVGViewElement_extern alResourcesRequired_Getter"; 7828 SVGAnimatedBoolean get externalResourcesRequired native "SVGViewElement_extern alResourcesRequired_Getter";
7733 7829
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
7954 List<SVGElementInstance> getRange(int start, int rangeLength) => 8050 List<SVGElementInstance> getRange(int start, int rangeLength) =>
7955 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]); 8051 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]);
7956 8052
7957 // -- end List<SVGElementInstance> mixins. 8053 // -- end List<SVGElementInstance> mixins.
7958 8054
7959 8055
7960 /** @domName SVGElementInstanceList.item */ 8056 /** @domName SVGElementInstanceList.item */
7961 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac k"; 8057 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac k";
7962 8058
7963 } 8059 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/svgelement_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698