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

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

Issue 11364186: Dartifying SVG library class names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporating review feedback. 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
11 11
12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13 // for details. All rights reserved. Use of this source code is governed by a 13 // for details. All rights reserved. Use of this source code is governed by a
14 // BSD-style license that can be found in the LICENSE file. 14 // BSD-style license that can be found in the LICENSE file.
15 15
16 16
17 final _START_TAG_REGEXP = const RegExp('<(\\w+)'); 17 final _START_TAG_REGEXP = const RegExp('<(\\w+)');
18 18
19 class _SVGElementFactoryProvider { 19 class _SvgElementFactoryProvider {
20 static SVGElement createSVGElement_tag(String tag) { 20 static SvgElement createSvgElement_tag(String tag) {
21 final Element temp = 21 final Element temp =
22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag); 22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag);
23 return temp; 23 return temp;
24 } 24 }
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() {
46 final el = new SVGElement.tag("svg"); 46 final el = new SvgElement.tag("svg");
47 // The SVG spec requires the version attribute to match the spec version 47 // The SVG spec requires the version attribute to match the spec version
48 el.attributes['version'] = "1.1"; 48 el.attributes['version'] = "1.1";
49 return el; 49 return el;
50 } 50 }
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 AElement extends SvgElement implements Transformable, Tests, UriReference, Stylable, ExternalResourcesRequired, LangSpace {
61 SVGAElement.internal(): super.internal(); 61 AElement.internal(): super.internal();
62 62
63 63
64 /** @domName SVGAElement.target */ 64 /** @domName SVGAElement.target */
65 SVGAnimatedString get target native "SVGAElement_target_Getter"; 65 AnimatedString get target native "SVGAElement_target_Getter";
66 66
67 67
68 /** @domName SVGAElement.externalResourcesRequired */ 68 /** @domName SVGAElement.externalResourcesRequired */
69 SVGAnimatedBoolean get externalResourcesRequired native "SVGAElement_externalR esourcesRequired_Getter"; 69 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso urcesRequired_Getter";
70 70
71 71
72 /** @domName SVGAElement.xmllang */ 72 /** @domName SVGAElement.xmllang */
73 String get xmllang native "SVGAElement_xmllang_Getter"; 73 String get xmllang native "SVGAElement_xmllang_Getter";
74 74
75 75
76 /** @domName SVGAElement.xmllang */ 76 /** @domName SVGAElement.xmllang */
77 void set xmllang(String value) native "SVGAElement_xmllang_Setter"; 77 void set xmllang(String value) native "SVGAElement_xmllang_Setter";
78 78
79 79
80 /** @domName SVGAElement.xmlspace */ 80 /** @domName SVGAElement.xmlspace */
81 String get xmlspace native "SVGAElement_xmlspace_Getter"; 81 String get xmlspace native "SVGAElement_xmlspace_Getter";
82 82
83 83
84 /** @domName SVGAElement.xmlspace */ 84 /** @domName SVGAElement.xmlspace */
85 void set xmlspace(String value) native "SVGAElement_xmlspace_Setter"; 85 void set xmlspace(String value) native "SVGAElement_xmlspace_Setter";
86 86
87 87
88 /** @domName SVGAElement.farthestViewportElement */ 88 /** @domName SVGAElement.farthestViewportElement */
89 SVGElement get farthestViewportElement native "SVGAElement_farthestViewportEle ment_Getter"; 89 SvgElement get farthestViewportElement native "SVGAElement_farthestViewportEle ment_Getter";
90 90
91 91
92 /** @domName SVGAElement.nearestViewportElement */ 92 /** @domName SVGAElement.nearestViewportElement */
93 SVGElement get nearestViewportElement native "SVGAElement_nearestViewportEleme nt_Getter"; 93 SvgElement get nearestViewportElement native "SVGAElement_nearestViewportEleme nt_Getter";
94 94
95 95
96 /** @domName SVGAElement.getBBox */ 96 /** @domName SVGAElement.getBBox */
97 SVGRect getBBox() native "SVGAElement_getBBox_Callback"; 97 Rect getBBox() native "SVGAElement_getBBox_Callback";
98 98
99 99
100 /** @domName SVGAElement.getCTM */ 100 /** @domName SVGAElement.getCTM */
101 SVGMatrix getCTM() native "SVGAElement_getCTM_Callback"; 101 Matrix getCTM() native "SVGAElement_getCTM_Callback";
102 102
103 103
104 /** @domName SVGAElement.getScreenCTM */ 104 /** @domName SVGAElement.getScreenCTM */
105 SVGMatrix getScreenCTM() native "SVGAElement_getScreenCTM_Callback"; 105 Matrix getScreenCTM() native "SVGAElement_getScreenCTM_Callback";
106 106
107 107
108 /** @domName SVGAElement.getTransformToElement */ 108 /** @domName SVGAElement.getTransformToElement */
109 SVGMatrix getTransformToElement(SVGElement element) native "SVGAElement_getTra nsformToElement_Callback"; 109 Matrix getTransformToElement(SvgElement element) native "SVGAElement_getTransf ormToElement_Callback";
110 110
111 111
112 /** @domName SVGAElement.className */ 112 /** @domName SVGAElement.className */
113 SVGAnimatedString get $dom_svgClassName native "SVGAElement_className_Getter"; 113 AnimatedString get $dom_svgClassName native "SVGAElement_className_Getter";
114 114
115 115
116 /** @domName SVGAElement.style */ 116 /** @domName SVGAElement.style */
117 CSSStyleDeclaration get style native "SVGAElement_style_Getter"; 117 CSSStyleDeclaration get style native "SVGAElement_style_Getter";
118 118
119 119
120 /** @domName SVGAElement.getPresentationAttribute */ 120 /** @domName SVGAElement.getPresentationAttribute */
121 CSSValue getPresentationAttribute(String name) native "SVGAElement_getPresenta tionAttribute_Callback"; 121 CSSValue getPresentationAttribute(String name) native "SVGAElement_getPresenta tionAttribute_Callback";
122 122
123 123
124 /** @domName SVGAElement.requiredExtensions */ 124 /** @domName SVGAElement.requiredExtensions */
125 SVGStringList get requiredExtensions native "SVGAElement_requiredExtensions_Ge tter"; 125 StringList get requiredExtensions native "SVGAElement_requiredExtensions_Gette r";
126 126
127 127
128 /** @domName SVGAElement.requiredFeatures */ 128 /** @domName SVGAElement.requiredFeatures */
129 SVGStringList get requiredFeatures native "SVGAElement_requiredFeatures_Getter "; 129 StringList get requiredFeatures native "SVGAElement_requiredFeatures_Getter";
130 130
131 131
132 /** @domName SVGAElement.systemLanguage */ 132 /** @domName SVGAElement.systemLanguage */
133 SVGStringList get systemLanguage native "SVGAElement_systemLanguage_Getter"; 133 StringList get systemLanguage native "SVGAElement_systemLanguage_Getter";
134 134
135 135
136 /** @domName SVGAElement.hasExtension */ 136 /** @domName SVGAElement.hasExtension */
137 bool hasExtension(String extension) native "SVGAElement_hasExtension_Callback" ; 137 bool hasExtension(String extension) native "SVGAElement_hasExtension_Callback" ;
138 138
139 139
140 /** @domName SVGAElement.transform */ 140 /** @domName SVGAElement.transform */
141 SVGAnimatedTransformList get transform native "SVGAElement_transform_Getter"; 141 AnimatedTransformList get transform native "SVGAElement_transform_Getter";
142 142
143 143
144 /** @domName SVGAElement.href */ 144 /** @domName SVGAElement.href */
145 SVGAnimatedString get href native "SVGAElement_href_Getter"; 145 AnimatedString get href native "SVGAElement_href_Getter";
146 146
147 } 147 }
148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
149 // for details. All rights reserved. Use of this source code is governed by a 149 // for details. All rights reserved. Use of this source code is governed by a
150 // BSD-style license that can be found in the LICENSE file. 150 // BSD-style license that can be found in the LICENSE file.
151 151
152 // WARNING: Do not edit - generated code. 152 // WARNING: Do not edit - generated code.
153 153
154 154
155 /// @domName SVGAltGlyphDefElement 155 /// @domName SVGAltGlyphDefElement
156 class SVGAltGlyphDefElement extends SVGElement { 156 class AltGlyphDefElement extends SvgElement {
157 SVGAltGlyphDefElement.internal(): super.internal(); 157 AltGlyphDefElement.internal(): super.internal();
158 158
159 } 159 }
160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
161 // for details. All rights reserved. Use of this source code is governed by a 161 // for details. All rights reserved. Use of this source code is governed by a
162 // BSD-style license that can be found in the LICENSE file. 162 // BSD-style license that can be found in the LICENSE file.
163 163
164 // WARNING: Do not edit - generated code. 164 // WARNING: Do not edit - generated code.
165 165
166 166
167 /// @domName SVGAltGlyphElement 167 /// @domName SVGAltGlyphElement
168 class SVGAltGlyphElement extends SVGTextPositioningElement implements SVGURIRefe rence { 168 class AltGlyphElement extends TextPositioningElement implements UriReference {
169 SVGAltGlyphElement.internal(): super.internal(); 169 AltGlyphElement.internal(): super.internal();
170 170
171 171
172 /** @domName SVGAltGlyphElement.format */ 172 /** @domName SVGAltGlyphElement.format */
173 String get format native "SVGAltGlyphElement_format_Getter"; 173 String get format native "SVGAltGlyphElement_format_Getter";
174 174
175 175
176 /** @domName SVGAltGlyphElement.format */ 176 /** @domName SVGAltGlyphElement.format */
177 void set format(String value) native "SVGAltGlyphElement_format_Setter"; 177 void set format(String value) native "SVGAltGlyphElement_format_Setter";
178 178
179 179
180 /** @domName SVGAltGlyphElement.glyphRef */ 180 /** @domName SVGAltGlyphElement.glyphRef */
181 String get glyphRef native "SVGAltGlyphElement_glyphRef_Getter"; 181 String get glyphRef native "SVGAltGlyphElement_glyphRef_Getter";
182 182
183 183
184 /** @domName SVGAltGlyphElement.glyphRef */ 184 /** @domName SVGAltGlyphElement.glyphRef */
185 void set glyphRef(String value) native "SVGAltGlyphElement_glyphRef_Setter"; 185 void set glyphRef(String value) native "SVGAltGlyphElement_glyphRef_Setter";
186 186
187 187
188 /** @domName SVGAltGlyphElement.href */ 188 /** @domName SVGAltGlyphElement.href */
189 SVGAnimatedString get href native "SVGAltGlyphElement_href_Getter"; 189 AnimatedString get href native "SVGAltGlyphElement_href_Getter";
190 190
191 } 191 }
192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
193 // for details. All rights reserved. Use of this source code is governed by a 193 // for details. All rights reserved. Use of this source code is governed by a
194 // BSD-style license that can be found in the LICENSE file. 194 // BSD-style license that can be found in the LICENSE file.
195 195
196 // WARNING: Do not edit - generated code. 196 // WARNING: Do not edit - generated code.
197 197
198 198
199 /// @domName SVGAltGlyphItemElement 199 /// @domName SVGAltGlyphItemElement
200 class SVGAltGlyphItemElement extends SVGElement { 200 class AltGlyphItemElement extends SvgElement {
201 SVGAltGlyphItemElement.internal(): super.internal(); 201 AltGlyphItemElement.internal(): super.internal();
202 202
203 } 203 }
204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
205 // for details. All rights reserved. Use of this source code is governed by a 205 // for details. All rights reserved. Use of this source code is governed by a
206 // BSD-style license that can be found in the LICENSE file. 206 // BSD-style license that can be found in the LICENSE file.
207 207
208 // WARNING: Do not edit - generated code. 208 // WARNING: Do not edit - generated code.
209 209
210 210
211 /// @domName SVGAngle 211 /// @domName SVGAngle
212 class SVGAngle extends NativeFieldWrapperClass1 { 212 class Angle extends NativeFieldWrapperClass1 {
213 SVGAngle.internal(); 213 Angle.internal();
214 214
215 static const int SVG_ANGLETYPE_DEG = 2; 215 static const int SVG_ANGLETYPE_DEG = 2;
216 216
217 static const int SVG_ANGLETYPE_GRAD = 4; 217 static const int SVG_ANGLETYPE_GRAD = 4;
218 218
219 static const int SVG_ANGLETYPE_RAD = 3; 219 static const int SVG_ANGLETYPE_RAD = 3;
220 220
221 static const int SVG_ANGLETYPE_UNKNOWN = 0; 221 static const int SVG_ANGLETYPE_UNKNOWN = 0;
222 222
223 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 223 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 260
261 } 261 }
262 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 262 // 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 263 // 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. 264 // BSD-style license that can be found in the LICENSE file.
265 265
266 // WARNING: Do not edit - generated code. 266 // WARNING: Do not edit - generated code.
267 267
268 268
269 /// @domName SVGAnimateColorElement 269 /// @domName SVGAnimateColorElement
270 class SVGAnimateColorElement extends SVGAnimationElement { 270 class AnimateColorElement extends AnimationElement {
271 SVGAnimateColorElement.internal(): super.internal(); 271 AnimateColorElement.internal(): super.internal();
272 272
273 } 273 }
274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 274 // 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 275 // 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. 276 // BSD-style license that can be found in the LICENSE file.
277 277
278 // WARNING: Do not edit - generated code. 278 // WARNING: Do not edit - generated code.
279 279
280 280
281 /// @domName SVGAnimateElement 281 /// @domName SVGAnimateElement
282 class SVGAnimateElement extends SVGAnimationElement { 282 class AnimateElement extends AnimationElement {
283 SVGAnimateElement.internal(): super.internal(); 283 AnimateElement.internal(): super.internal();
284 284
285 } 285 }
286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 286 // 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 287 // 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. 288 // BSD-style license that can be found in the LICENSE file.
289 289
290 // WARNING: Do not edit - generated code. 290 // WARNING: Do not edit - generated code.
291 291
292 292
293 /// @domName SVGAnimateMotionElement 293 /// @domName SVGAnimateMotionElement
294 class SVGAnimateMotionElement extends SVGAnimationElement { 294 class AnimateMotionElement extends AnimationElement {
295 SVGAnimateMotionElement.internal(): super.internal(); 295 AnimateMotionElement.internal(): super.internal();
296 296
297 } 297 }
298 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 298 // 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 299 // 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. 300 // BSD-style license that can be found in the LICENSE file.
301 301
302 // WARNING: Do not edit - generated code. 302 // WARNING: Do not edit - generated code.
303 303
304 304
305 /// @domName SVGAnimateTransformElement 305 /// @domName SVGAnimateTransformElement
306 class SVGAnimateTransformElement extends SVGAnimationElement { 306 class AnimateTransformElement extends AnimationElement {
307 SVGAnimateTransformElement.internal(): super.internal(); 307 AnimateTransformElement.internal(): super.internal();
308 308
309 } 309 }
310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 310 // 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 311 // 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. 312 // BSD-style license that can be found in the LICENSE file.
313 313
314 // WARNING: Do not edit - generated code. 314 // WARNING: Do not edit - generated code.
315 315
316 316
317 /// @domName SVGAnimatedAngle 317 /// @domName SVGAnimatedAngle
318 class SVGAnimatedAngle extends NativeFieldWrapperClass1 { 318 class AnimatedAngle extends NativeFieldWrapperClass1 {
319 SVGAnimatedAngle.internal(); 319 AnimatedAngle.internal();
320 320
321 321
322 /** @domName SVGAnimatedAngle.animVal */ 322 /** @domName SVGAnimatedAngle.animVal */
323 SVGAngle get animVal native "SVGAnimatedAngle_animVal_Getter"; 323 Angle get animVal native "SVGAnimatedAngle_animVal_Getter";
324 324
325 325
326 /** @domName SVGAnimatedAngle.baseVal */ 326 /** @domName SVGAnimatedAngle.baseVal */
327 SVGAngle get baseVal native "SVGAnimatedAngle_baseVal_Getter"; 327 Angle get baseVal native "SVGAnimatedAngle_baseVal_Getter";
328 328
329 } 329 }
330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
331 // for details. All rights reserved. Use of this source code is governed by a 331 // for details. All rights reserved. Use of this source code is governed by a
332 // BSD-style license that can be found in the LICENSE file. 332 // BSD-style license that can be found in the LICENSE file.
333 333
334 // WARNING: Do not edit - generated code. 334 // WARNING: Do not edit - generated code.
335 335
336 336
337 /// @domName SVGAnimatedBoolean 337 /// @domName SVGAnimatedBoolean
338 class SVGAnimatedBoolean extends NativeFieldWrapperClass1 { 338 class AnimatedBoolean extends NativeFieldWrapperClass1 {
339 SVGAnimatedBoolean.internal(); 339 AnimatedBoolean.internal();
340 340
341 341
342 /** @domName SVGAnimatedBoolean.animVal */ 342 /** @domName SVGAnimatedBoolean.animVal */
343 bool get animVal native "SVGAnimatedBoolean_animVal_Getter"; 343 bool get animVal native "SVGAnimatedBoolean_animVal_Getter";
344 344
345 345
346 /** @domName SVGAnimatedBoolean.baseVal */ 346 /** @domName SVGAnimatedBoolean.baseVal */
347 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter"; 347 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter";
348 348
349 349
350 /** @domName SVGAnimatedBoolean.baseVal */ 350 /** @domName SVGAnimatedBoolean.baseVal */
351 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter"; 351 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter";
352 352
353 } 353 }
354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
355 // for details. All rights reserved. Use of this source code is governed by a 355 // for details. All rights reserved. Use of this source code is governed by a
356 // BSD-style license that can be found in the LICENSE file. 356 // BSD-style license that can be found in the LICENSE file.
357 357
358 // WARNING: Do not edit - generated code. 358 // WARNING: Do not edit - generated code.
359 359
360 360
361 /// @domName SVGAnimatedEnumeration 361 /// @domName SVGAnimatedEnumeration
362 class SVGAnimatedEnumeration extends NativeFieldWrapperClass1 { 362 class AnimatedEnumeration extends NativeFieldWrapperClass1 {
363 SVGAnimatedEnumeration.internal(); 363 AnimatedEnumeration.internal();
364 364
365 365
366 /** @domName SVGAnimatedEnumeration.animVal */ 366 /** @domName SVGAnimatedEnumeration.animVal */
367 int get animVal native "SVGAnimatedEnumeration_animVal_Getter"; 367 int get animVal native "SVGAnimatedEnumeration_animVal_Getter";
368 368
369 369
370 /** @domName SVGAnimatedEnumeration.baseVal */ 370 /** @domName SVGAnimatedEnumeration.baseVal */
371 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter"; 371 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter";
372 372
373 373
374 /** @domName SVGAnimatedEnumeration.baseVal */ 374 /** @domName SVGAnimatedEnumeration.baseVal */
375 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter"; 375 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter";
376 376
377 } 377 }
378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
379 // for details. All rights reserved. Use of this source code is governed by a 379 // for details. All rights reserved. Use of this source code is governed by a
380 // BSD-style license that can be found in the LICENSE file. 380 // BSD-style license that can be found in the LICENSE file.
381 381
382 // WARNING: Do not edit - generated code. 382 // WARNING: Do not edit - generated code.
383 383
384 384
385 /// @domName SVGAnimatedInteger 385 /// @domName SVGAnimatedInteger
386 class SVGAnimatedInteger extends NativeFieldWrapperClass1 { 386 class AnimatedInteger extends NativeFieldWrapperClass1 {
387 SVGAnimatedInteger.internal(); 387 AnimatedInteger.internal();
388 388
389 389
390 /** @domName SVGAnimatedInteger.animVal */ 390 /** @domName SVGAnimatedInteger.animVal */
391 int get animVal native "SVGAnimatedInteger_animVal_Getter"; 391 int get animVal native "SVGAnimatedInteger_animVal_Getter";
392 392
393 393
394 /** @domName SVGAnimatedInteger.baseVal */ 394 /** @domName SVGAnimatedInteger.baseVal */
395 int get baseVal native "SVGAnimatedInteger_baseVal_Getter"; 395 int get baseVal native "SVGAnimatedInteger_baseVal_Getter";
396 396
397 397
398 /** @domName SVGAnimatedInteger.baseVal */ 398 /** @domName SVGAnimatedInteger.baseVal */
399 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter"; 399 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter";
400 400
401 } 401 }
402 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 402 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
403 // for details. All rights reserved. Use of this source code is governed by a 403 // for details. All rights reserved. Use of this source code is governed by a
404 // BSD-style license that can be found in the LICENSE file. 404 // BSD-style license that can be found in the LICENSE file.
405 405
406 // WARNING: Do not edit - generated code. 406 // WARNING: Do not edit - generated code.
407 407
408 408
409 /// @domName SVGAnimatedLength 409 /// @domName SVGAnimatedLength
410 class SVGAnimatedLength extends NativeFieldWrapperClass1 { 410 class AnimatedLength extends NativeFieldWrapperClass1 {
411 SVGAnimatedLength.internal(); 411 AnimatedLength.internal();
412 412
413 413
414 /** @domName SVGAnimatedLength.animVal */ 414 /** @domName SVGAnimatedLength.animVal */
415 SVGLength get animVal native "SVGAnimatedLength_animVal_Getter"; 415 Length get animVal native "SVGAnimatedLength_animVal_Getter";
416 416
417 417
418 /** @domName SVGAnimatedLength.baseVal */ 418 /** @domName SVGAnimatedLength.baseVal */
419 SVGLength get baseVal native "SVGAnimatedLength_baseVal_Getter"; 419 Length get baseVal native "SVGAnimatedLength_baseVal_Getter";
420 420
421 } 421 }
422 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 422 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
423 // for details. All rights reserved. Use of this source code is governed by a 423 // for details. All rights reserved. Use of this source code is governed by a
424 // BSD-style license that can be found in the LICENSE file. 424 // BSD-style license that can be found in the LICENSE file.
425 425
426 // WARNING: Do not edit - generated code. 426 // WARNING: Do not edit - generated code.
427 427
428 428
429 /// @domName SVGAnimatedLengthList 429 /// @domName SVGAnimatedLengthList
430 class SVGAnimatedLengthList extends NativeFieldWrapperClass1 implements List<SVG AnimatedLength> { 430 class AnimatedLengthList extends NativeFieldWrapperClass1 implements List<Animat edLength> {
431 SVGAnimatedLengthList.internal(); 431 AnimatedLengthList.internal();
432 432
433 433
434 /** @domName SVGAnimatedLengthList.animVal */ 434 /** @domName SVGAnimatedLengthList.animVal */
435 SVGLengthList get animVal native "SVGAnimatedLengthList_animVal_Getter"; 435 LengthList get animVal native "SVGAnimatedLengthList_animVal_Getter";
436 436
437 437
438 /** @domName SVGAnimatedLengthList.baseVal */ 438 /** @domName SVGAnimatedLengthList.baseVal */
439 SVGLengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter"; 439 LengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter";
440 440
441 SVGAnimatedLength operator[](int index) native "SVGAnimatedLengthList_item_Cal lback"; 441 AnimatedLength operator[](int index) native "SVGAnimatedLengthList_item_Callba ck";
442 442
443 void operator[]=(int index, SVGAnimatedLength value) { 443 void operator[]=(int index, AnimatedLength value) {
444 throw new UnsupportedError("Cannot assign element of immutable List."); 444 throw new UnsupportedError("Cannot assign element of immutable List.");
445 } 445 }
446 // -- start List<SVGAnimatedLength> mixins. 446 // -- start List<AnimatedLength> mixins.
447 // SVGAnimatedLength is the element type. 447 // AnimatedLength is the element type.
448 448
449 // From Iterable<SVGAnimatedLength>: 449 // From Iterable<AnimatedLength>:
450 450
451 Iterator<SVGAnimatedLength> iterator() { 451 Iterator<AnimatedLength> iterator() {
452 // Note: NodeLists are not fixed size. And most probably length shouldn't 452 // Note: NodeLists are not fixed size. And most probably length shouldn't
453 // be cached in both iterator _and_ forEach method. For now caching it 453 // be cached in both iterator _and_ forEach method. For now caching it
454 // for consistency. 454 // for consistency.
455 return new FixedSizeListIterator<SVGAnimatedLength>(this); 455 return new FixedSizeListIterator<AnimatedLength>(this);
456 } 456 }
457 457
458 // From Collection<SVGAnimatedLength>: 458 // From Collection<AnimatedLength>:
459 459
460 void add(SVGAnimatedLength value) { 460 void add(AnimatedLength value) {
461 throw new UnsupportedError("Cannot add to immutable List."); 461 throw new UnsupportedError("Cannot add to immutable List.");
462 } 462 }
463 463
464 void addLast(SVGAnimatedLength value) { 464 void addLast(AnimatedLength value) {
465 throw new UnsupportedError("Cannot add to immutable List."); 465 throw new UnsupportedError("Cannot add to immutable List.");
466 } 466 }
467 467
468 void addAll(Collection<SVGAnimatedLength> collection) { 468 void addAll(Collection<AnimatedLength> collection) {
469 throw new UnsupportedError("Cannot add to immutable List."); 469 throw new UnsupportedError("Cannot add to immutable List.");
470 } 470 }
471 471
472 bool contains(SVGAnimatedLength element) => _Collections.contains(this, elemen t); 472 bool contains(AnimatedLength element) => _Collections.contains(this, element);
473 473
474 void forEach(void f(SVGAnimatedLength element)) => _Collections.forEach(this, f); 474 void forEach(void f(AnimatedLength element)) => _Collections.forEach(this, f);
475 475
476 Collection map(f(SVGAnimatedLength element)) => _Collections.map(this, [], f); 476 Collection map(f(AnimatedLength element)) => _Collections.map(this, [], f);
477 477
478 Collection<SVGAnimatedLength> filter(bool f(SVGAnimatedLength element)) => 478 Collection<AnimatedLength> filter(bool f(AnimatedLength element)) =>
479 _Collections.filter(this, <SVGAnimatedLength>[], f); 479 _Collections.filter(this, <AnimatedLength>[], f);
480 480
481 bool every(bool f(SVGAnimatedLength element)) => _Collections.every(this, f); 481 bool every(bool f(AnimatedLength element)) => _Collections.every(this, f);
482 482
483 bool some(bool f(SVGAnimatedLength element)) => _Collections.some(this, f); 483 bool some(bool f(AnimatedLength element)) => _Collections.some(this, f);
484 484
485 bool get isEmpty => this.length == 0; 485 bool get isEmpty => this.length == 0;
486 486
487 // From List<SVGAnimatedLength>: 487 // From List<AnimatedLength>:
488 488
489 void sort([Comparator<SVGAnimatedLength> compare = Comparable.compare]) { 489 void sort([Comparator<AnimatedLength> compare = Comparable.compare]) {
490 throw new UnsupportedError("Cannot sort immutable List."); 490 throw new UnsupportedError("Cannot sort immutable List.");
491 } 491 }
492 492
493 int indexOf(SVGAnimatedLength element, [int start = 0]) => 493 int indexOf(AnimatedLength element, [int start = 0]) =>
494 _Lists.indexOf(this, element, start, this.length); 494 _Lists.indexOf(this, element, start, this.length);
495 495
496 int lastIndexOf(SVGAnimatedLength element, [int start]) { 496 int lastIndexOf(AnimatedLength element, [int start]) {
497 if (start == null) start = length - 1; 497 if (start == null) start = length - 1;
498 return _Lists.lastIndexOf(this, element, start); 498 return _Lists.lastIndexOf(this, element, start);
499 } 499 }
500 500
501 SVGAnimatedLength get last => this[length - 1]; 501 AnimatedLength get last => this[length - 1];
502 502
503 SVGAnimatedLength removeLast() { 503 AnimatedLength removeLast() {
504 throw new UnsupportedError("Cannot removeLast on immutable List."); 504 throw new UnsupportedError("Cannot removeLast on immutable List.");
505 } 505 }
506 506
507 void setRange(int start, int rangeLength, List<SVGAnimatedLength> from, [int s tartFrom]) { 507 void setRange(int start, int rangeLength, List<AnimatedLength> from, [int star tFrom]) {
508 throw new UnsupportedError("Cannot setRange on immutable List."); 508 throw new UnsupportedError("Cannot setRange on immutable List.");
509 } 509 }
510 510
511 void removeRange(int start, int rangeLength) { 511 void removeRange(int start, int rangeLength) {
512 throw new UnsupportedError("Cannot removeRange on immutable List."); 512 throw new UnsupportedError("Cannot removeRange on immutable List.");
513 } 513 }
514 514
515 void insertRange(int start, int rangeLength, [SVGAnimatedLength initialValue]) { 515 void insertRange(int start, int rangeLength, [AnimatedLength initialValue]) {
516 throw new UnsupportedError("Cannot insertRange on immutable List."); 516 throw new UnsupportedError("Cannot insertRange on immutable List.");
517 } 517 }
518 518
519 List<SVGAnimatedLength> getRange(int start, int rangeLength) => 519 List<AnimatedLength> getRange(int start, int rangeLength) =>
520 _Lists.getRange(this, start, rangeLength, <SVGAnimatedLength>[]); 520 _Lists.getRange(this, start, rangeLength, <AnimatedLength>[]);
521 521
522 // -- end List<SVGAnimatedLength> mixins. 522 // -- end List<AnimatedLength> mixins.
523 523
524 } 524 }
525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
526 // for details. All rights reserved. Use of this source code is governed by a 526 // for details. All rights reserved. Use of this source code is governed by a
527 // BSD-style license that can be found in the LICENSE file. 527 // BSD-style license that can be found in the LICENSE file.
528 528
529 // WARNING: Do not edit - generated code. 529 // WARNING: Do not edit - generated code.
530 530
531 531
532 /// @domName SVGAnimatedNumber 532 /// @domName SVGAnimatedNumber
533 class SVGAnimatedNumber extends NativeFieldWrapperClass1 { 533 class AnimatedNumber extends NativeFieldWrapperClass1 {
534 SVGAnimatedNumber.internal(); 534 AnimatedNumber.internal();
535 535
536 536
537 /** @domName SVGAnimatedNumber.animVal */ 537 /** @domName SVGAnimatedNumber.animVal */
538 num get animVal native "SVGAnimatedNumber_animVal_Getter"; 538 num get animVal native "SVGAnimatedNumber_animVal_Getter";
539 539
540 540
541 /** @domName SVGAnimatedNumber.baseVal */ 541 /** @domName SVGAnimatedNumber.baseVal */
542 num get baseVal native "SVGAnimatedNumber_baseVal_Getter"; 542 num get baseVal native "SVGAnimatedNumber_baseVal_Getter";
543 543
544 544
545 /** @domName SVGAnimatedNumber.baseVal */ 545 /** @domName SVGAnimatedNumber.baseVal */
546 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter"; 546 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter";
547 547
548 } 548 }
549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
550 // for details. All rights reserved. Use of this source code is governed by a 550 // for details. All rights reserved. Use of this source code is governed by a
551 // BSD-style license that can be found in the LICENSE file. 551 // BSD-style license that can be found in the LICENSE file.
552 552
553 // WARNING: Do not edit - generated code. 553 // WARNING: Do not edit - generated code.
554 554
555 555
556 /// @domName SVGAnimatedNumberList 556 /// @domName SVGAnimatedNumberList
557 class SVGAnimatedNumberList extends NativeFieldWrapperClass1 implements List<SVG AnimatedNumber> { 557 class AnimatedNumberList extends NativeFieldWrapperClass1 implements List<Animat edNumber> {
558 SVGAnimatedNumberList.internal(); 558 AnimatedNumberList.internal();
559 559
560 560
561 /** @domName SVGAnimatedNumberList.animVal */ 561 /** @domName SVGAnimatedNumberList.animVal */
562 SVGNumberList get animVal native "SVGAnimatedNumberList_animVal_Getter"; 562 NumberList get animVal native "SVGAnimatedNumberList_animVal_Getter";
563 563
564 564
565 /** @domName SVGAnimatedNumberList.baseVal */ 565 /** @domName SVGAnimatedNumberList.baseVal */
566 SVGNumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter"; 566 NumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter";
567 567
568 SVGAnimatedNumber operator[](int index) native "SVGAnimatedNumberList_item_Cal lback"; 568 AnimatedNumber operator[](int index) native "SVGAnimatedNumberList_item_Callba ck";
569 569
570 void operator[]=(int index, SVGAnimatedNumber value) { 570 void operator[]=(int index, AnimatedNumber value) {
571 throw new UnsupportedError("Cannot assign element of immutable List."); 571 throw new UnsupportedError("Cannot assign element of immutable List.");
572 } 572 }
573 // -- start List<SVGAnimatedNumber> mixins. 573 // -- start List<AnimatedNumber> mixins.
574 // SVGAnimatedNumber is the element type. 574 // AnimatedNumber is the element type.
575 575
576 // From Iterable<SVGAnimatedNumber>: 576 // From Iterable<AnimatedNumber>:
577 577
578 Iterator<SVGAnimatedNumber> iterator() { 578 Iterator<AnimatedNumber> iterator() {
579 // Note: NodeLists are not fixed size. And most probably length shouldn't 579 // Note: NodeLists are not fixed size. And most probably length shouldn't
580 // be cached in both iterator _and_ forEach method. For now caching it 580 // be cached in both iterator _and_ forEach method. For now caching it
581 // for consistency. 581 // for consistency.
582 return new FixedSizeListIterator<SVGAnimatedNumber>(this); 582 return new FixedSizeListIterator<AnimatedNumber>(this);
583 } 583 }
584 584
585 // From Collection<SVGAnimatedNumber>: 585 // From Collection<AnimatedNumber>:
586 586
587 void add(SVGAnimatedNumber value) { 587 void add(AnimatedNumber value) {
588 throw new UnsupportedError("Cannot add to immutable List."); 588 throw new UnsupportedError("Cannot add to immutable List.");
589 } 589 }
590 590
591 void addLast(SVGAnimatedNumber value) { 591 void addLast(AnimatedNumber value) {
592 throw new UnsupportedError("Cannot add to immutable List."); 592 throw new UnsupportedError("Cannot add to immutable List.");
593 } 593 }
594 594
595 void addAll(Collection<SVGAnimatedNumber> collection) { 595 void addAll(Collection<AnimatedNumber> collection) {
596 throw new UnsupportedError("Cannot add to immutable List."); 596 throw new UnsupportedError("Cannot add to immutable List.");
597 } 597 }
598 598
599 bool contains(SVGAnimatedNumber element) => _Collections.contains(this, elemen t); 599 bool contains(AnimatedNumber element) => _Collections.contains(this, element);
600 600
601 void forEach(void f(SVGAnimatedNumber element)) => _Collections.forEach(this, f); 601 void forEach(void f(AnimatedNumber element)) => _Collections.forEach(this, f);
602 602
603 Collection map(f(SVGAnimatedNumber element)) => _Collections.map(this, [], f); 603 Collection map(f(AnimatedNumber element)) => _Collections.map(this, [], f);
604 604
605 Collection<SVGAnimatedNumber> filter(bool f(SVGAnimatedNumber element)) => 605 Collection<AnimatedNumber> filter(bool f(AnimatedNumber element)) =>
606 _Collections.filter(this, <SVGAnimatedNumber>[], f); 606 _Collections.filter(this, <AnimatedNumber>[], f);
607 607
608 bool every(bool f(SVGAnimatedNumber element)) => _Collections.every(this, f); 608 bool every(bool f(AnimatedNumber element)) => _Collections.every(this, f);
609 609
610 bool some(bool f(SVGAnimatedNumber element)) => _Collections.some(this, f); 610 bool some(bool f(AnimatedNumber element)) => _Collections.some(this, f);
611 611
612 bool get isEmpty => this.length == 0; 612 bool get isEmpty => this.length == 0;
613 613
614 // From List<SVGAnimatedNumber>: 614 // From List<AnimatedNumber>:
615 615
616 void sort([Comparator<SVGAnimatedNumber> compare = Comparable.compare]) { 616 void sort([Comparator<AnimatedNumber> compare = Comparable.compare]) {
617 throw new UnsupportedError("Cannot sort immutable List."); 617 throw new UnsupportedError("Cannot sort immutable List.");
618 } 618 }
619 619
620 int indexOf(SVGAnimatedNumber element, [int start = 0]) => 620 int indexOf(AnimatedNumber element, [int start = 0]) =>
621 _Lists.indexOf(this, element, start, this.length); 621 _Lists.indexOf(this, element, start, this.length);
622 622
623 int lastIndexOf(SVGAnimatedNumber element, [int start]) { 623 int lastIndexOf(AnimatedNumber element, [int start]) {
624 if (start == null) start = length - 1; 624 if (start == null) start = length - 1;
625 return _Lists.lastIndexOf(this, element, start); 625 return _Lists.lastIndexOf(this, element, start);
626 } 626 }
627 627
628 SVGAnimatedNumber get last => this[length - 1]; 628 AnimatedNumber get last => this[length - 1];
629 629
630 SVGAnimatedNumber removeLast() { 630 AnimatedNumber removeLast() {
631 throw new UnsupportedError("Cannot removeLast on immutable List."); 631 throw new UnsupportedError("Cannot removeLast on immutable List.");
632 } 632 }
633 633
634 void setRange(int start, int rangeLength, List<SVGAnimatedNumber> from, [int s tartFrom]) { 634 void setRange(int start, int rangeLength, List<AnimatedNumber> from, [int star tFrom]) {
635 throw new UnsupportedError("Cannot setRange on immutable List."); 635 throw new UnsupportedError("Cannot setRange on immutable List.");
636 } 636 }
637 637
638 void removeRange(int start, int rangeLength) { 638 void removeRange(int start, int rangeLength) {
639 throw new UnsupportedError("Cannot removeRange on immutable List."); 639 throw new UnsupportedError("Cannot removeRange on immutable List.");
640 } 640 }
641 641
642 void insertRange(int start, int rangeLength, [SVGAnimatedNumber initialValue]) { 642 void insertRange(int start, int rangeLength, [AnimatedNumber initialValue]) {
643 throw new UnsupportedError("Cannot insertRange on immutable List."); 643 throw new UnsupportedError("Cannot insertRange on immutable List.");
644 } 644 }
645 645
646 List<SVGAnimatedNumber> getRange(int start, int rangeLength) => 646 List<AnimatedNumber> getRange(int start, int rangeLength) =>
647 _Lists.getRange(this, start, rangeLength, <SVGAnimatedNumber>[]); 647 _Lists.getRange(this, start, rangeLength, <AnimatedNumber>[]);
648 648
649 // -- end List<SVGAnimatedNumber> mixins. 649 // -- end List<AnimatedNumber> mixins.
650 650
651 } 651 }
652 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 652 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
653 // for details. All rights reserved. Use of this source code is governed by a 653 // for details. All rights reserved. Use of this source code is governed by a
654 // BSD-style license that can be found in the LICENSE file. 654 // BSD-style license that can be found in the LICENSE file.
655 655
656 // WARNING: Do not edit - generated code. 656 // WARNING: Do not edit - generated code.
657 657
658 658
659 /// @domName SVGAnimatedPreserveAspectRatio 659 /// @domName SVGAnimatedPreserveAspectRatio
660 class SVGAnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 { 660 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 {
661 SVGAnimatedPreserveAspectRatio.internal(); 661 AnimatedPreserveAspectRatio.internal();
662 662
663 663
664 /** @domName SVGAnimatedPreserveAspectRatio.animVal */ 664 /** @domName SVGAnimatedPreserveAspectRatio.animVal */
665 SVGPreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_anim Val_Getter"; 665 PreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_animVal _Getter";
666 666
667 667
668 /** @domName SVGAnimatedPreserveAspectRatio.baseVal */ 668 /** @domName SVGAnimatedPreserveAspectRatio.baseVal */
669 SVGPreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_base Val_Getter"; 669 PreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_baseVal _Getter";
670 670
671 } 671 }
672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 672 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
673 // for details. All rights reserved. Use of this source code is governed by a 673 // for details. All rights reserved. Use of this source code is governed by a
674 // BSD-style license that can be found in the LICENSE file. 674 // BSD-style license that can be found in the LICENSE file.
675 675
676 // WARNING: Do not edit - generated code. 676 // WARNING: Do not edit - generated code.
677 677
678 678
679 /// @domName SVGAnimatedRect 679 /// @domName SVGAnimatedRect
680 class SVGAnimatedRect extends NativeFieldWrapperClass1 { 680 class AnimatedRect extends NativeFieldWrapperClass1 {
681 SVGAnimatedRect.internal(); 681 AnimatedRect.internal();
682 682
683 683
684 /** @domName SVGAnimatedRect.animVal */ 684 /** @domName SVGAnimatedRect.animVal */
685 SVGRect get animVal native "SVGAnimatedRect_animVal_Getter"; 685 Rect get animVal native "SVGAnimatedRect_animVal_Getter";
686 686
687 687
688 /** @domName SVGAnimatedRect.baseVal */ 688 /** @domName SVGAnimatedRect.baseVal */
689 SVGRect get baseVal native "SVGAnimatedRect_baseVal_Getter"; 689 Rect get baseVal native "SVGAnimatedRect_baseVal_Getter";
690 690
691 } 691 }
692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
693 // for details. All rights reserved. Use of this source code is governed by a 693 // for details. All rights reserved. Use of this source code is governed by a
694 // BSD-style license that can be found in the LICENSE file. 694 // BSD-style license that can be found in the LICENSE file.
695 695
696 // WARNING: Do not edit - generated code. 696 // WARNING: Do not edit - generated code.
697 697
698 698
699 /// @domName SVGAnimatedString 699 /// @domName SVGAnimatedString
700 class SVGAnimatedString extends NativeFieldWrapperClass1 { 700 class AnimatedString extends NativeFieldWrapperClass1 {
701 SVGAnimatedString.internal(); 701 AnimatedString.internal();
702 702
703 703
704 /** @domName SVGAnimatedString.animVal */ 704 /** @domName SVGAnimatedString.animVal */
705 String get animVal native "SVGAnimatedString_animVal_Getter"; 705 String get animVal native "SVGAnimatedString_animVal_Getter";
706 706
707 707
708 /** @domName SVGAnimatedString.baseVal */ 708 /** @domName SVGAnimatedString.baseVal */
709 String get baseVal native "SVGAnimatedString_baseVal_Getter"; 709 String get baseVal native "SVGAnimatedString_baseVal_Getter";
710 710
711 711
712 /** @domName SVGAnimatedString.baseVal */ 712 /** @domName SVGAnimatedString.baseVal */
713 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter"; 713 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter";
714 714
715 } 715 }
716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
717 // for details. All rights reserved. Use of this source code is governed by a 717 // for details. All rights reserved. Use of this source code is governed by a
718 // BSD-style license that can be found in the LICENSE file. 718 // BSD-style license that can be found in the LICENSE file.
719 719
720 // WARNING: Do not edit - generated code. 720 // WARNING: Do not edit - generated code.
721 721
722 722
723 /// @domName SVGAnimatedTransformList 723 /// @domName SVGAnimatedTransformList
724 class SVGAnimatedTransformList extends NativeFieldWrapperClass1 implements List< SVGAnimateTransformElement> { 724 class AnimatedTransformList extends NativeFieldWrapperClass1 implements List<Ani mateTransformElement> {
725 SVGAnimatedTransformList.internal(); 725 AnimatedTransformList.internal();
726 726
727 727
728 /** @domName SVGAnimatedTransformList.animVal */ 728 /** @domName SVGAnimatedTransformList.animVal */
729 SVGTransformList get animVal native "SVGAnimatedTransformList_animVal_Getter"; 729 TransformList get animVal native "SVGAnimatedTransformList_animVal_Getter";
730 730
731 731
732 /** @domName SVGAnimatedTransformList.baseVal */ 732 /** @domName SVGAnimatedTransformList.baseVal */
733 SVGTransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter"; 733 TransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter";
734 734
735 SVGAnimateTransformElement operator[](int index) native "SVGAnimatedTransformL ist_item_Callback"; 735 AnimateTransformElement operator[](int index) native "SVGAnimatedTransformList _item_Callback";
736 736
737 void operator[]=(int index, SVGAnimateTransformElement value) { 737 void operator[]=(int index, AnimateTransformElement value) {
738 throw new UnsupportedError("Cannot assign element of immutable List."); 738 throw new UnsupportedError("Cannot assign element of immutable List.");
739 } 739 }
740 // -- start List<SVGAnimateTransformElement> mixins. 740 // -- start List<AnimateTransformElement> mixins.
741 // SVGAnimateTransformElement is the element type. 741 // AnimateTransformElement is the element type.
742 742
743 // From Iterable<SVGAnimateTransformElement>: 743 // From Iterable<AnimateTransformElement>:
744 744
745 Iterator<SVGAnimateTransformElement> iterator() { 745 Iterator<AnimateTransformElement> iterator() {
746 // Note: NodeLists are not fixed size. And most probably length shouldn't 746 // Note: NodeLists are not fixed size. And most probably length shouldn't
747 // be cached in both iterator _and_ forEach method. For now caching it 747 // be cached in both iterator _and_ forEach method. For now caching it
748 // for consistency. 748 // for consistency.
749 return new FixedSizeListIterator<SVGAnimateTransformElement>(this); 749 return new FixedSizeListIterator<AnimateTransformElement>(this);
750 } 750 }
751 751
752 // From Collection<SVGAnimateTransformElement>: 752 // From Collection<AnimateTransformElement>:
753 753
754 void add(SVGAnimateTransformElement value) { 754 void add(AnimateTransformElement value) {
755 throw new UnsupportedError("Cannot add to immutable List."); 755 throw new UnsupportedError("Cannot add to immutable List.");
756 } 756 }
757 757
758 void addLast(SVGAnimateTransformElement value) { 758 void addLast(AnimateTransformElement value) {
759 throw new UnsupportedError("Cannot add to immutable List."); 759 throw new UnsupportedError("Cannot add to immutable List.");
760 } 760 }
761 761
762 void addAll(Collection<SVGAnimateTransformElement> collection) { 762 void addAll(Collection<AnimateTransformElement> collection) {
763 throw new UnsupportedError("Cannot add to immutable List."); 763 throw new UnsupportedError("Cannot add to immutable List.");
764 } 764 }
765 765
766 bool contains(SVGAnimateTransformElement element) => _Collections.contains(thi s, element); 766 bool contains(AnimateTransformElement element) => _Collections.contains(this, element);
767 767
768 void forEach(void f(SVGAnimateTransformElement element)) => _Collections.forEa ch(this, f); 768 void forEach(void f(AnimateTransformElement element)) => _Collections.forEach( this, f);
769 769
770 Collection map(f(SVGAnimateTransformElement element)) => _Collections.map(this , [], f); 770 Collection map(f(AnimateTransformElement element)) => _Collections.map(this, [ ], f);
771 771
772 Collection<SVGAnimateTransformElement> filter(bool f(SVGAnimateTransformElemen t element)) => 772 Collection<AnimateTransformElement> filter(bool f(AnimateTransformElement elem ent)) =>
773 _Collections.filter(this, <SVGAnimateTransformElement>[], f); 773 _Collections.filter(this, <AnimateTransformElement>[], f);
774 774
775 bool every(bool f(SVGAnimateTransformElement element)) => _Collections.every(t his, f); 775 bool every(bool f(AnimateTransformElement element)) => _Collections.every(this , f);
776 776
777 bool some(bool f(SVGAnimateTransformElement element)) => _Collections.some(thi s, f); 777 bool some(bool f(AnimateTransformElement element)) => _Collections.some(this, f);
778 778
779 bool get isEmpty => this.length == 0; 779 bool get isEmpty => this.length == 0;
780 780
781 // From List<SVGAnimateTransformElement>: 781 // From List<AnimateTransformElement>:
782 782
783 void sort([Comparator<SVGAnimateTransformElement> compare = Comparable.compare ]) { 783 void sort([Comparator<AnimateTransformElement> compare = Comparable.compare]) {
784 throw new UnsupportedError("Cannot sort immutable List."); 784 throw new UnsupportedError("Cannot sort immutable List.");
785 } 785 }
786 786
787 int indexOf(SVGAnimateTransformElement element, [int start = 0]) => 787 int indexOf(AnimateTransformElement element, [int start = 0]) =>
788 _Lists.indexOf(this, element, start, this.length); 788 _Lists.indexOf(this, element, start, this.length);
789 789
790 int lastIndexOf(SVGAnimateTransformElement element, [int start]) { 790 int lastIndexOf(AnimateTransformElement element, [int start]) {
791 if (start == null) start = length - 1; 791 if (start == null) start = length - 1;
792 return _Lists.lastIndexOf(this, element, start); 792 return _Lists.lastIndexOf(this, element, start);
793 } 793 }
794 794
795 SVGAnimateTransformElement get last => this[length - 1]; 795 AnimateTransformElement get last => this[length - 1];
796 796
797 SVGAnimateTransformElement removeLast() { 797 AnimateTransformElement removeLast() {
798 throw new UnsupportedError("Cannot removeLast on immutable List."); 798 throw new UnsupportedError("Cannot removeLast on immutable List.");
799 } 799 }
800 800
801 void setRange(int start, int rangeLength, List<SVGAnimateTransformElement> fro m, [int startFrom]) { 801 void setRange(int start, int rangeLength, List<AnimateTransformElement> from, [int startFrom]) {
802 throw new UnsupportedError("Cannot setRange on immutable List."); 802 throw new UnsupportedError("Cannot setRange on immutable List.");
803 } 803 }
804 804
805 void removeRange(int start, int rangeLength) { 805 void removeRange(int start, int rangeLength) {
806 throw new UnsupportedError("Cannot removeRange on immutable List."); 806 throw new UnsupportedError("Cannot removeRange on immutable List.");
807 } 807 }
808 808
809 void insertRange(int start, int rangeLength, [SVGAnimateTransformElement initi alValue]) { 809 void insertRange(int start, int rangeLength, [AnimateTransformElement initialV alue]) {
810 throw new UnsupportedError("Cannot insertRange on immutable List."); 810 throw new UnsupportedError("Cannot insertRange on immutable List.");
811 } 811 }
812 812
813 List<SVGAnimateTransformElement> getRange(int start, int rangeLength) => 813 List<AnimateTransformElement> getRange(int start, int rangeLength) =>
814 _Lists.getRange(this, start, rangeLength, <SVGAnimateTransformElement>[]); 814 _Lists.getRange(this, start, rangeLength, <AnimateTransformElement>[]);
815 815
816 // -- end List<SVGAnimateTransformElement> mixins. 816 // -- end List<AnimateTransformElement> mixins.
817 817
818 } 818 }
819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 819 // 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 820 // 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. 821 // BSD-style license that can be found in the LICENSE file.
822 822
823 // WARNING: Do not edit - generated code. 823 // WARNING: Do not edit - generated code.
824 824
825 825
826 /// @domName SVGAnimationElement 826 /// @domName SVGAnimationElement
827 class SVGAnimationElement extends SVGElement implements ElementTimeControl, SVGT ests, SVGExternalResourcesRequired { 827 class AnimationElement extends SvgElement implements Tests, ElementTimeControl, ExternalResourcesRequired {
828 SVGAnimationElement.internal(): super.internal(); 828 AnimationElement.internal(): super.internal();
829 829
830 830
831 /** @domName SVGAnimationElement.targetElement */ 831 /** @domName SVGAnimationElement.targetElement */
832 SVGElement get targetElement native "SVGAnimationElement_targetElement_Getter" ; 832 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ;
833 833
834 834
835 /** @domName SVGAnimationElement.getCurrentTime */ 835 /** @domName SVGAnimationElement.getCurrentTime */
836 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback"; 836 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
837 837
838 838
839 /** @domName SVGAnimationElement.getSimpleDuration */ 839 /** @domName SVGAnimationElement.getSimpleDuration */
840 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback "; 840 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback ";
841 841
842 842
(...skipping 11 matching lines...) Expand all
854 854
855 /** @domName SVGAnimationElement.endElement */ 855 /** @domName SVGAnimationElement.endElement */
856 void endElement() native "SVGAnimationElement_endElement_Callback"; 856 void endElement() native "SVGAnimationElement_endElement_Callback";
857 857
858 858
859 /** @domName SVGAnimationElement.endElementAt */ 859 /** @domName SVGAnimationElement.endElementAt */
860 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac k"; 860 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac k";
861 861
862 862
863 /** @domName SVGAnimationElement.externalResourcesRequired */ 863 /** @domName SVGAnimationElement.externalResourcesRequired */
864 SVGAnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_e xternalResourcesRequired_Getter"; 864 AnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_exte rnalResourcesRequired_Getter";
865 865
866 866
867 /** @domName SVGAnimationElement.requiredExtensions */ 867 /** @domName SVGAnimationElement.requiredExtensions */
868 SVGStringList get requiredExtensions native "SVGAnimationElement_requiredExten sions_Getter"; 868 StringList get requiredExtensions native "SVGAnimationElement_requiredExtensio ns_Getter";
869 869
870 870
871 /** @domName SVGAnimationElement.requiredFeatures */ 871 /** @domName SVGAnimationElement.requiredFeatures */
872 SVGStringList get requiredFeatures native "SVGAnimationElement_requiredFeature s_Getter"; 872 StringList get requiredFeatures native "SVGAnimationElement_requiredFeatures_G etter";
873 873
874 874
875 /** @domName SVGAnimationElement.systemLanguage */ 875 /** @domName SVGAnimationElement.systemLanguage */
876 SVGStringList get systemLanguage native "SVGAnimationElement_systemLanguage_Ge tter"; 876 StringList get systemLanguage native "SVGAnimationElement_systemLanguage_Gette r";
877 877
878 878
879 /** @domName SVGAnimationElement.hasExtension */ 879 /** @domName SVGAnimationElement.hasExtension */
880 bool hasExtension(String extension) native "SVGAnimationElement_hasExtension_C allback"; 880 bool hasExtension(String extension) native "SVGAnimationElement_hasExtension_C allback";
881 881
882 } 882 }
883 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 883 // 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 884 // 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. 885 // BSD-style license that can be found in the LICENSE file.
886 886
887 // WARNING: Do not edit - generated code. 887 // WARNING: Do not edit - generated code.
888 888
889 889
890 /// @domName SVGCircleElement 890 /// @domName SVGCircleElement
891 class SVGCircleElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 891 class CircleElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace {
892 SVGCircleElement.internal(): super.internal(); 892 CircleElement.internal(): super.internal();
893 893
894 894
895 /** @domName SVGCircleElement.cx */ 895 /** @domName SVGCircleElement.cx */
896 SVGAnimatedLength get cx native "SVGCircleElement_cx_Getter"; 896 AnimatedLength get cx native "SVGCircleElement_cx_Getter";
897 897
898 898
899 /** @domName SVGCircleElement.cy */ 899 /** @domName SVGCircleElement.cy */
900 SVGAnimatedLength get cy native "SVGCircleElement_cy_Getter"; 900 AnimatedLength get cy native "SVGCircleElement_cy_Getter";
901 901
902 902
903 /** @domName SVGCircleElement.r */ 903 /** @domName SVGCircleElement.r */
904 SVGAnimatedLength get r native "SVGCircleElement_r_Getter"; 904 AnimatedLength get r native "SVGCircleElement_r_Getter";
905 905
906 906
907 /** @domName SVGCircleElement.externalResourcesRequired */ 907 /** @domName SVGCircleElement.externalResourcesRequired */
908 SVGAnimatedBoolean get externalResourcesRequired native "SVGCircleElement_exte rnalResourcesRequired_Getter"; 908 AnimatedBoolean get externalResourcesRequired native "SVGCircleElement_externa lResourcesRequired_Getter";
909 909
910 910
911 /** @domName SVGCircleElement.xmllang */ 911 /** @domName SVGCircleElement.xmllang */
912 String get xmllang native "SVGCircleElement_xmllang_Getter"; 912 String get xmllang native "SVGCircleElement_xmllang_Getter";
913 913
914 914
915 /** @domName SVGCircleElement.xmllang */ 915 /** @domName SVGCircleElement.xmllang */
916 void set xmllang(String value) native "SVGCircleElement_xmllang_Setter"; 916 void set xmllang(String value) native "SVGCircleElement_xmllang_Setter";
917 917
918 918
919 /** @domName SVGCircleElement.xmlspace */ 919 /** @domName SVGCircleElement.xmlspace */
920 String get xmlspace native "SVGCircleElement_xmlspace_Getter"; 920 String get xmlspace native "SVGCircleElement_xmlspace_Getter";
921 921
922 922
923 /** @domName SVGCircleElement.xmlspace */ 923 /** @domName SVGCircleElement.xmlspace */
924 void set xmlspace(String value) native "SVGCircleElement_xmlspace_Setter"; 924 void set xmlspace(String value) native "SVGCircleElement_xmlspace_Setter";
925 925
926 926
927 /** @domName SVGCircleElement.farthestViewportElement */ 927 /** @domName SVGCircleElement.farthestViewportElement */
928 SVGElement get farthestViewportElement native "SVGCircleElement_farthestViewpo rtElement_Getter"; 928 SvgElement get farthestViewportElement native "SVGCircleElement_farthestViewpo rtElement_Getter";
929 929
930 930
931 /** @domName SVGCircleElement.nearestViewportElement */ 931 /** @domName SVGCircleElement.nearestViewportElement */
932 SVGElement get nearestViewportElement native "SVGCircleElement_nearestViewport Element_Getter"; 932 SvgElement get nearestViewportElement native "SVGCircleElement_nearestViewport Element_Getter";
933 933
934 934
935 /** @domName SVGCircleElement.getBBox */ 935 /** @domName SVGCircleElement.getBBox */
936 SVGRect getBBox() native "SVGCircleElement_getBBox_Callback"; 936 Rect getBBox() native "SVGCircleElement_getBBox_Callback";
937 937
938 938
939 /** @domName SVGCircleElement.getCTM */ 939 /** @domName SVGCircleElement.getCTM */
940 SVGMatrix getCTM() native "SVGCircleElement_getCTM_Callback"; 940 Matrix getCTM() native "SVGCircleElement_getCTM_Callback";
941 941
942 942
943 /** @domName SVGCircleElement.getScreenCTM */ 943 /** @domName SVGCircleElement.getScreenCTM */
944 SVGMatrix getScreenCTM() native "SVGCircleElement_getScreenCTM_Callback"; 944 Matrix getScreenCTM() native "SVGCircleElement_getScreenCTM_Callback";
945 945
946 946
947 /** @domName SVGCircleElement.getTransformToElement */ 947 /** @domName SVGCircleElement.getTransformToElement */
948 SVGMatrix getTransformToElement(SVGElement element) native "SVGCircleElement_g etTransformToElement_Callback"; 948 Matrix getTransformToElement(SvgElement element) native "SVGCircleElement_getT ransformToElement_Callback";
949 949
950 950
951 /** @domName SVGCircleElement.className */ 951 /** @domName SVGCircleElement.className */
952 SVGAnimatedString get $dom_svgClassName native "SVGCircleElement_className_Get ter"; 952 AnimatedString get $dom_svgClassName native "SVGCircleElement_className_Getter ";
953 953
954 954
955 /** @domName SVGCircleElement.style */ 955 /** @domName SVGCircleElement.style */
956 CSSStyleDeclaration get style native "SVGCircleElement_style_Getter"; 956 CSSStyleDeclaration get style native "SVGCircleElement_style_Getter";
957 957
958 958
959 /** @domName SVGCircleElement.getPresentationAttribute */ 959 /** @domName SVGCircleElement.getPresentationAttribute */
960 CSSValue getPresentationAttribute(String name) native "SVGCircleElement_getPre sentationAttribute_Callback"; 960 CSSValue getPresentationAttribute(String name) native "SVGCircleElement_getPre sentationAttribute_Callback";
961 961
962 962
963 /** @domName SVGCircleElement.requiredExtensions */ 963 /** @domName SVGCircleElement.requiredExtensions */
964 SVGStringList get requiredExtensions native "SVGCircleElement_requiredExtensio ns_Getter"; 964 StringList get requiredExtensions native "SVGCircleElement_requiredExtensions_ Getter";
965 965
966 966
967 /** @domName SVGCircleElement.requiredFeatures */ 967 /** @domName SVGCircleElement.requiredFeatures */
968 SVGStringList get requiredFeatures native "SVGCircleElement_requiredFeatures_G etter"; 968 StringList get requiredFeatures native "SVGCircleElement_requiredFeatures_Gett er";
969 969
970 970
971 /** @domName SVGCircleElement.systemLanguage */ 971 /** @domName SVGCircleElement.systemLanguage */
972 SVGStringList get systemLanguage native "SVGCircleElement_systemLanguage_Gette r"; 972 StringList get systemLanguage native "SVGCircleElement_systemLanguage_Getter";
973 973
974 974
975 /** @domName SVGCircleElement.hasExtension */ 975 /** @domName SVGCircleElement.hasExtension */
976 bool hasExtension(String extension) native "SVGCircleElement_hasExtension_Call back"; 976 bool hasExtension(String extension) native "SVGCircleElement_hasExtension_Call back";
977 977
978 978
979 /** @domName SVGCircleElement.transform */ 979 /** @domName SVGCircleElement.transform */
980 SVGAnimatedTransformList get transform native "SVGCircleElement_transform_Gett er"; 980 AnimatedTransformList get transform native "SVGCircleElement_transform_Getter" ;
981 981
982 } 982 }
983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 983 // 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 984 // 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. 985 // BSD-style license that can be found in the LICENSE file.
986 986
987 // WARNING: Do not edit - generated code. 987 // WARNING: Do not edit - generated code.
988 988
989 989
990 /// @domName SVGClipPathElement 990 /// @domName SVGClipPathElement
991 class SVGClipPathElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired { 991 class ClipPathElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace {
992 SVGClipPathElement.internal(): super.internal(); 992 ClipPathElement.internal(): super.internal();
993 993
994 994
995 /** @domName SVGClipPathElement.clipPathUnits */ 995 /** @domName SVGClipPathElement.clipPathUnits */
996 SVGAnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUn its_Getter"; 996 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter";
997 997
998 998
999 /** @domName SVGClipPathElement.externalResourcesRequired */ 999 /** @domName SVGClipPathElement.externalResourcesRequired */
1000 SVGAnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_ex ternalResourcesRequired_Getter"; 1000 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter nalResourcesRequired_Getter";
1001 1001
1002 1002
1003 /** @domName SVGClipPathElement.xmllang */ 1003 /** @domName SVGClipPathElement.xmllang */
1004 String get xmllang native "SVGClipPathElement_xmllang_Getter"; 1004 String get xmllang native "SVGClipPathElement_xmllang_Getter";
1005 1005
1006 1006
1007 /** @domName SVGClipPathElement.xmllang */ 1007 /** @domName SVGClipPathElement.xmllang */
1008 void set xmllang(String value) native "SVGClipPathElement_xmllang_Setter"; 1008 void set xmllang(String value) native "SVGClipPathElement_xmllang_Setter";
1009 1009
1010 1010
1011 /** @domName SVGClipPathElement.xmlspace */ 1011 /** @domName SVGClipPathElement.xmlspace */
1012 String get xmlspace native "SVGClipPathElement_xmlspace_Getter"; 1012 String get xmlspace native "SVGClipPathElement_xmlspace_Getter";
1013 1013
1014 1014
1015 /** @domName SVGClipPathElement.xmlspace */ 1015 /** @domName SVGClipPathElement.xmlspace */
1016 void set xmlspace(String value) native "SVGClipPathElement_xmlspace_Setter"; 1016 void set xmlspace(String value) native "SVGClipPathElement_xmlspace_Setter";
1017 1017
1018 1018
1019 /** @domName SVGClipPathElement.farthestViewportElement */ 1019 /** @domName SVGClipPathElement.farthestViewportElement */
1020 SVGElement get farthestViewportElement native "SVGClipPathElement_farthestView portElement_Getter"; 1020 SvgElement get farthestViewportElement native "SVGClipPathElement_farthestView portElement_Getter";
1021 1021
1022 1022
1023 /** @domName SVGClipPathElement.nearestViewportElement */ 1023 /** @domName SVGClipPathElement.nearestViewportElement */
1024 SVGElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo rtElement_Getter"; 1024 SvgElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo rtElement_Getter";
1025 1025
1026 1026
1027 /** @domName SVGClipPathElement.getBBox */ 1027 /** @domName SVGClipPathElement.getBBox */
1028 SVGRect getBBox() native "SVGClipPathElement_getBBox_Callback"; 1028 Rect getBBox() native "SVGClipPathElement_getBBox_Callback";
1029 1029
1030 1030
1031 /** @domName SVGClipPathElement.getCTM */ 1031 /** @domName SVGClipPathElement.getCTM */
1032 SVGMatrix getCTM() native "SVGClipPathElement_getCTM_Callback"; 1032 Matrix getCTM() native "SVGClipPathElement_getCTM_Callback";
1033 1033
1034 1034
1035 /** @domName SVGClipPathElement.getScreenCTM */ 1035 /** @domName SVGClipPathElement.getScreenCTM */
1036 SVGMatrix getScreenCTM() native "SVGClipPathElement_getScreenCTM_Callback"; 1036 Matrix getScreenCTM() native "SVGClipPathElement_getScreenCTM_Callback";
1037 1037
1038 1038
1039 /** @domName SVGClipPathElement.getTransformToElement */ 1039 /** @domName SVGClipPathElement.getTransformToElement */
1040 SVGMatrix getTransformToElement(SVGElement element) native "SVGClipPathElement _getTransformToElement_Callback"; 1040 Matrix getTransformToElement(SvgElement element) native "SVGClipPathElement_ge tTransformToElement_Callback";
1041 1041
1042 1042
1043 /** @domName SVGClipPathElement.className */ 1043 /** @domName SVGClipPathElement.className */
1044 SVGAnimatedString get $dom_svgClassName native "SVGClipPathElement_className_G etter"; 1044 AnimatedString get $dom_svgClassName native "SVGClipPathElement_className_Gett er";
1045 1045
1046 1046
1047 /** @domName SVGClipPathElement.style */ 1047 /** @domName SVGClipPathElement.style */
1048 CSSStyleDeclaration get style native "SVGClipPathElement_style_Getter"; 1048 CSSStyleDeclaration get style native "SVGClipPathElement_style_Getter";
1049 1049
1050 1050
1051 /** @domName SVGClipPathElement.getPresentationAttribute */ 1051 /** @domName SVGClipPathElement.getPresentationAttribute */
1052 CSSValue getPresentationAttribute(String name) native "SVGClipPathElement_getP resentationAttribute_Callback"; 1052 CSSValue getPresentationAttribute(String name) native "SVGClipPathElement_getP resentationAttribute_Callback";
1053 1053
1054 1054
1055 /** @domName SVGClipPathElement.requiredExtensions */ 1055 /** @domName SVGClipPathElement.requiredExtensions */
1056 SVGStringList get requiredExtensions native "SVGClipPathElement_requiredExtens ions_Getter"; 1056 StringList get requiredExtensions native "SVGClipPathElement_requiredExtension s_Getter";
1057 1057
1058 1058
1059 /** @domName SVGClipPathElement.requiredFeatures */ 1059 /** @domName SVGClipPathElement.requiredFeatures */
1060 SVGStringList get requiredFeatures native "SVGClipPathElement_requiredFeatures _Getter"; 1060 StringList get requiredFeatures native "SVGClipPathElement_requiredFeatures_Ge tter";
1061 1061
1062 1062
1063 /** @domName SVGClipPathElement.systemLanguage */ 1063 /** @domName SVGClipPathElement.systemLanguage */
1064 SVGStringList get systemLanguage native "SVGClipPathElement_systemLanguage_Get ter"; 1064 StringList get systemLanguage native "SVGClipPathElement_systemLanguage_Getter ";
1065 1065
1066 1066
1067 /** @domName SVGClipPathElement.hasExtension */ 1067 /** @domName SVGClipPathElement.hasExtension */
1068 bool hasExtension(String extension) native "SVGClipPathElement_hasExtension_Ca llback"; 1068 bool hasExtension(String extension) native "SVGClipPathElement_hasExtension_Ca llback";
1069 1069
1070 1070
1071 /** @domName SVGClipPathElement.transform */ 1071 /** @domName SVGClipPathElement.transform */
1072 SVGAnimatedTransformList get transform native "SVGClipPathElement_transform_Ge tter"; 1072 AnimatedTransformList get transform native "SVGClipPathElement_transform_Gette r";
1073 1073
1074 } 1074 }
1075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1076 // for details. All rights reserved. Use of this source code is governed by a 1076 // for details. All rights reserved. Use of this source code is governed by a
1077 // BSD-style license that can be found in the LICENSE file. 1077 // BSD-style license that can be found in the LICENSE file.
1078 1078
1079 // WARNING: Do not edit - generated code. 1079 // WARNING: Do not edit - generated code.
1080 1080
1081 1081
1082 /// @domName SVGColor 1082 /// @domName SVGColor
1083 class SVGColor extends CSSValue { 1083 class Color extends CSSValue {
1084 SVGColor.internal(): super.internal(); 1084 Color.internal(): super.internal();
1085 1085
1086 static const int SVG_COLORTYPE_CURRENTCOLOR = 3; 1086 static const int SVG_COLORTYPE_CURRENTCOLOR = 3;
1087 1087
1088 static const int SVG_COLORTYPE_RGBCOLOR = 1; 1088 static const int SVG_COLORTYPE_RGBCOLOR = 1;
1089 1089
1090 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; 1090 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2;
1091 1091
1092 static const int SVG_COLORTYPE_UNKNOWN = 0; 1092 static const int SVG_COLORTYPE_UNKNOWN = 0;
1093 1093
1094 1094
(...skipping 18 matching lines...) Expand all
1113 1113
1114 } 1114 }
1115 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1115 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1116 // for details. All rights reserved. Use of this source code is governed by a 1116 // for details. All rights reserved. Use of this source code is governed by a
1117 // BSD-style license that can be found in the LICENSE file. 1117 // BSD-style license that can be found in the LICENSE file.
1118 1118
1119 // WARNING: Do not edit - generated code. 1119 // WARNING: Do not edit - generated code.
1120 1120
1121 1121
1122 /// @domName SVGComponentTransferFunctionElement 1122 /// @domName SVGComponentTransferFunctionElement
1123 class SVGComponentTransferFunctionElement extends SVGElement { 1123 class ComponentTransferFunctionElement extends SvgElement {
1124 SVGComponentTransferFunctionElement.internal(): super.internal(); 1124 ComponentTransferFunctionElement.internal(): super.internal();
1125 1125
1126 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; 1126 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
1127 1127
1128 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; 1128 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
1129 1129
1130 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; 1130 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
1131 1131
1132 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; 1132 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
1133 1133
1134 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; 1134 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
1135 1135
1136 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; 1136 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
1137 1137
1138 1138
1139 /** @domName SVGComponentTransferFunctionElement.amplitude */ 1139 /** @domName SVGComponentTransferFunctionElement.amplitude */
1140 SVGAnimatedNumber get amplitude native "SVGComponentTransferFunctionElement_am plitude_Getter"; 1140 AnimatedNumber get amplitude native "SVGComponentTransferFunctionElement_ampli tude_Getter";
1141 1141
1142 1142
1143 /** @domName SVGComponentTransferFunctionElement.exponent */ 1143 /** @domName SVGComponentTransferFunctionElement.exponent */
1144 SVGAnimatedNumber get exponent native "SVGComponentTransferFunctionElement_exp onent_Getter"; 1144 AnimatedNumber get exponent native "SVGComponentTransferFunctionElement_expone nt_Getter";
1145 1145
1146 1146
1147 /** @domName SVGComponentTransferFunctionElement.intercept */ 1147 /** @domName SVGComponentTransferFunctionElement.intercept */
1148 SVGAnimatedNumber get intercept native "SVGComponentTransferFunctionElement_in tercept_Getter"; 1148 AnimatedNumber get intercept native "SVGComponentTransferFunctionElement_inter cept_Getter";
1149 1149
1150 1150
1151 /** @domName SVGComponentTransferFunctionElement.offset */ 1151 /** @domName SVGComponentTransferFunctionElement.offset */
1152 SVGAnimatedNumber get offset native "SVGComponentTransferFunctionElement_offse t_Getter"; 1152 AnimatedNumber get offset native "SVGComponentTransferFunctionElement_offset_G etter";
1153 1153
1154 1154
1155 /** @domName SVGComponentTransferFunctionElement.slope */ 1155 /** @domName SVGComponentTransferFunctionElement.slope */
1156 SVGAnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_ Getter"; 1156 AnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_Get ter";
1157 1157
1158 1158
1159 /** @domName SVGComponentTransferFunctionElement.tableValues */ 1159 /** @domName SVGComponentTransferFunctionElement.tableValues */
1160 SVGAnimatedNumberList get tableValues native "SVGComponentTransferFunctionElem ent_tableValues_Getter"; 1160 AnimatedNumberList get tableValues native "SVGComponentTransferFunctionElement _tableValues_Getter";
1161 1161
1162 1162
1163 /** @domName SVGComponentTransferFunctionElement.type */ 1163 /** @domName SVGComponentTransferFunctionElement.type */
1164 SVGAnimatedEnumeration get type native "SVGComponentTransferFunctionElement_ty pe_Getter"; 1164 AnimatedEnumeration get type native "SVGComponentTransferFunctionElement_type_ Getter";
1165 1165
1166 } 1166 }
1167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1167 // 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 1168 // 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. 1169 // BSD-style license that can be found in the LICENSE file.
1170 1170
1171 // WARNING: Do not edit - generated code. 1171 // WARNING: Do not edit - generated code.
1172 1172
1173 1173
1174 /// @domName SVGCursorElement 1174 /// @domName SVGCursorElement
1175 class SVGCursorElement extends SVGElement implements SVGURIReference, SVGTests, SVGExternalResourcesRequired { 1175 class CursorElement extends SvgElement implements UriReference, Tests, ExternalR esourcesRequired {
1176 SVGCursorElement.internal(): super.internal(); 1176 CursorElement.internal(): super.internal();
1177 1177
1178 1178
1179 /** @domName SVGCursorElement.x */ 1179 /** @domName SVGCursorElement.x */
1180 SVGAnimatedLength get x native "SVGCursorElement_x_Getter"; 1180 AnimatedLength get x native "SVGCursorElement_x_Getter";
1181 1181
1182 1182
1183 /** @domName SVGCursorElement.y */ 1183 /** @domName SVGCursorElement.y */
1184 SVGAnimatedLength get y native "SVGCursorElement_y_Getter"; 1184 AnimatedLength get y native "SVGCursorElement_y_Getter";
1185 1185
1186 1186
1187 /** @domName SVGCursorElement.externalResourcesRequired */ 1187 /** @domName SVGCursorElement.externalResourcesRequired */
1188 SVGAnimatedBoolean get externalResourcesRequired native "SVGCursorElement_exte rnalResourcesRequired_Getter"; 1188 AnimatedBoolean get externalResourcesRequired native "SVGCursorElement_externa lResourcesRequired_Getter";
1189 1189
1190 1190
1191 /** @domName SVGCursorElement.requiredExtensions */ 1191 /** @domName SVGCursorElement.requiredExtensions */
1192 SVGStringList get requiredExtensions native "SVGCursorElement_requiredExtensio ns_Getter"; 1192 StringList get requiredExtensions native "SVGCursorElement_requiredExtensions_ Getter";
1193 1193
1194 1194
1195 /** @domName SVGCursorElement.requiredFeatures */ 1195 /** @domName SVGCursorElement.requiredFeatures */
1196 SVGStringList get requiredFeatures native "SVGCursorElement_requiredFeatures_G etter"; 1196 StringList get requiredFeatures native "SVGCursorElement_requiredFeatures_Gett er";
1197 1197
1198 1198
1199 /** @domName SVGCursorElement.systemLanguage */ 1199 /** @domName SVGCursorElement.systemLanguage */
1200 SVGStringList get systemLanguage native "SVGCursorElement_systemLanguage_Gette r"; 1200 StringList get systemLanguage native "SVGCursorElement_systemLanguage_Getter";
1201 1201
1202 1202
1203 /** @domName SVGCursorElement.hasExtension */ 1203 /** @domName SVGCursorElement.hasExtension */
1204 bool hasExtension(String extension) native "SVGCursorElement_hasExtension_Call back"; 1204 bool hasExtension(String extension) native "SVGCursorElement_hasExtension_Call back";
1205 1205
1206 1206
1207 /** @domName SVGCursorElement.href */ 1207 /** @domName SVGCursorElement.href */
1208 SVGAnimatedString get href native "SVGCursorElement_href_Getter"; 1208 AnimatedString get href native "SVGCursorElement_href_Getter";
1209 1209
1210 } 1210 }
1211 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1211 // 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 1212 // 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. 1213 // BSD-style license that can be found in the LICENSE file.
1214 1214
1215 // WARNING: Do not edit - generated code. 1215 // WARNING: Do not edit - generated code.
1216 1216
1217 1217
1218 /// @domName SVGDefsElement 1218 /// @domName SVGDefsElement
1219 class SVGDefsElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 1219 class DefsElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace {
1220 SVGDefsElement.internal(): super.internal(); 1220 DefsElement.internal(): super.internal();
1221 1221
1222 1222
1223 /** @domName SVGDefsElement.externalResourcesRequired */ 1223 /** @domName SVGDefsElement.externalResourcesRequired */
1224 SVGAnimatedBoolean get externalResourcesRequired native "SVGDefsElement_extern alResourcesRequired_Getter"; 1224 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter";
1225 1225
1226 1226
1227 /** @domName SVGDefsElement.xmllang */ 1227 /** @domName SVGDefsElement.xmllang */
1228 String get xmllang native "SVGDefsElement_xmllang_Getter"; 1228 String get xmllang native "SVGDefsElement_xmllang_Getter";
1229 1229
1230 1230
1231 /** @domName SVGDefsElement.xmllang */ 1231 /** @domName SVGDefsElement.xmllang */
1232 void set xmllang(String value) native "SVGDefsElement_xmllang_Setter"; 1232 void set xmllang(String value) native "SVGDefsElement_xmllang_Setter";
1233 1233
1234 1234
1235 /** @domName SVGDefsElement.xmlspace */ 1235 /** @domName SVGDefsElement.xmlspace */
1236 String get xmlspace native "SVGDefsElement_xmlspace_Getter"; 1236 String get xmlspace native "SVGDefsElement_xmlspace_Getter";
1237 1237
1238 1238
1239 /** @domName SVGDefsElement.xmlspace */ 1239 /** @domName SVGDefsElement.xmlspace */
1240 void set xmlspace(String value) native "SVGDefsElement_xmlspace_Setter"; 1240 void set xmlspace(String value) native "SVGDefsElement_xmlspace_Setter";
1241 1241
1242 1242
1243 /** @domName SVGDefsElement.farthestViewportElement */ 1243 /** @domName SVGDefsElement.farthestViewportElement */
1244 SVGElement get farthestViewportElement native "SVGDefsElement_farthestViewport Element_Getter"; 1244 SvgElement get farthestViewportElement native "SVGDefsElement_farthestViewport Element_Getter";
1245 1245
1246 1246
1247 /** @domName SVGDefsElement.nearestViewportElement */ 1247 /** @domName SVGDefsElement.nearestViewportElement */
1248 SVGElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl ement_Getter"; 1248 SvgElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl ement_Getter";
1249 1249
1250 1250
1251 /** @domName SVGDefsElement.getBBox */ 1251 /** @domName SVGDefsElement.getBBox */
1252 SVGRect getBBox() native "SVGDefsElement_getBBox_Callback"; 1252 Rect getBBox() native "SVGDefsElement_getBBox_Callback";
1253 1253
1254 1254
1255 /** @domName SVGDefsElement.getCTM */ 1255 /** @domName SVGDefsElement.getCTM */
1256 SVGMatrix getCTM() native "SVGDefsElement_getCTM_Callback"; 1256 Matrix getCTM() native "SVGDefsElement_getCTM_Callback";
1257 1257
1258 1258
1259 /** @domName SVGDefsElement.getScreenCTM */ 1259 /** @domName SVGDefsElement.getScreenCTM */
1260 SVGMatrix getScreenCTM() native "SVGDefsElement_getScreenCTM_Callback"; 1260 Matrix getScreenCTM() native "SVGDefsElement_getScreenCTM_Callback";
1261 1261
1262 1262
1263 /** @domName SVGDefsElement.getTransformToElement */ 1263 /** @domName SVGDefsElement.getTransformToElement */
1264 SVGMatrix getTransformToElement(SVGElement element) native "SVGDefsElement_get TransformToElement_Callback"; 1264 Matrix getTransformToElement(SvgElement element) native "SVGDefsElement_getTra nsformToElement_Callback";
1265 1265
1266 1266
1267 /** @domName SVGDefsElement.className */ 1267 /** @domName SVGDefsElement.className */
1268 SVGAnimatedString get $dom_svgClassName native "SVGDefsElement_className_Gette r"; 1268 AnimatedString get $dom_svgClassName native "SVGDefsElement_className_Getter";
1269 1269
1270 1270
1271 /** @domName SVGDefsElement.style */ 1271 /** @domName SVGDefsElement.style */
1272 CSSStyleDeclaration get style native "SVGDefsElement_style_Getter"; 1272 CSSStyleDeclaration get style native "SVGDefsElement_style_Getter";
1273 1273
1274 1274
1275 /** @domName SVGDefsElement.getPresentationAttribute */ 1275 /** @domName SVGDefsElement.getPresentationAttribute */
1276 CSSValue getPresentationAttribute(String name) native "SVGDefsElement_getPrese ntationAttribute_Callback"; 1276 CSSValue getPresentationAttribute(String name) native "SVGDefsElement_getPrese ntationAttribute_Callback";
1277 1277
1278 1278
1279 /** @domName SVGDefsElement.requiredExtensions */ 1279 /** @domName SVGDefsElement.requiredExtensions */
1280 SVGStringList get requiredExtensions native "SVGDefsElement_requiredExtensions _Getter"; 1280 StringList get requiredExtensions native "SVGDefsElement_requiredExtensions_Ge tter";
1281 1281
1282 1282
1283 /** @domName SVGDefsElement.requiredFeatures */ 1283 /** @domName SVGDefsElement.requiredFeatures */
1284 SVGStringList get requiredFeatures native "SVGDefsElement_requiredFeatures_Get ter"; 1284 StringList get requiredFeatures native "SVGDefsElement_requiredFeatures_Getter ";
1285 1285
1286 1286
1287 /** @domName SVGDefsElement.systemLanguage */ 1287 /** @domName SVGDefsElement.systemLanguage */
1288 SVGStringList get systemLanguage native "SVGDefsElement_systemLanguage_Getter" ; 1288 StringList get systemLanguage native "SVGDefsElement_systemLanguage_Getter";
1289 1289
1290 1290
1291 /** @domName SVGDefsElement.hasExtension */ 1291 /** @domName SVGDefsElement.hasExtension */
1292 bool hasExtension(String extension) native "SVGDefsElement_hasExtension_Callba ck"; 1292 bool hasExtension(String extension) native "SVGDefsElement_hasExtension_Callba ck";
1293 1293
1294 1294
1295 /** @domName SVGDefsElement.transform */ 1295 /** @domName SVGDefsElement.transform */
1296 SVGAnimatedTransformList get transform native "SVGDefsElement_transform_Getter "; 1296 AnimatedTransformList get transform native "SVGDefsElement_transform_Getter";
1297 1297
1298 } 1298 }
1299 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1299 // 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 1300 // 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. 1301 // BSD-style license that can be found in the LICENSE file.
1302 1302
1303 // WARNING: Do not edit - generated code. 1303 // WARNING: Do not edit - generated code.
1304 1304
1305 1305
1306 /// @domName SVGDescElement 1306 /// @domName SVGDescElement
1307 class SVGDescElement extends SVGElement implements SVGLangSpace, SVGStylable { 1307 class DescElement extends SvgElement implements Stylable, LangSpace {
1308 SVGDescElement.internal(): super.internal(); 1308 DescElement.internal(): super.internal();
1309 1309
1310 1310
1311 /** @domName SVGDescElement.xmllang */ 1311 /** @domName SVGDescElement.xmllang */
1312 String get xmllang native "SVGDescElement_xmllang_Getter"; 1312 String get xmllang native "SVGDescElement_xmllang_Getter";
1313 1313
1314 1314
1315 /** @domName SVGDescElement.xmllang */ 1315 /** @domName SVGDescElement.xmllang */
1316 void set xmllang(String value) native "SVGDescElement_xmllang_Setter"; 1316 void set xmllang(String value) native "SVGDescElement_xmllang_Setter";
1317 1317
1318 1318
1319 /** @domName SVGDescElement.xmlspace */ 1319 /** @domName SVGDescElement.xmlspace */
1320 String get xmlspace native "SVGDescElement_xmlspace_Getter"; 1320 String get xmlspace native "SVGDescElement_xmlspace_Getter";
1321 1321
1322 1322
1323 /** @domName SVGDescElement.xmlspace */ 1323 /** @domName SVGDescElement.xmlspace */
1324 void set xmlspace(String value) native "SVGDescElement_xmlspace_Setter"; 1324 void set xmlspace(String value) native "SVGDescElement_xmlspace_Setter";
1325 1325
1326 1326
1327 /** @domName SVGDescElement.className */ 1327 /** @domName SVGDescElement.className */
1328 SVGAnimatedString get $dom_svgClassName native "SVGDescElement_className_Gette r"; 1328 AnimatedString get $dom_svgClassName native "SVGDescElement_className_Getter";
1329 1329
1330 1330
1331 /** @domName SVGDescElement.style */ 1331 /** @domName SVGDescElement.style */
1332 CSSStyleDeclaration get style native "SVGDescElement_style_Getter"; 1332 CSSStyleDeclaration get style native "SVGDescElement_style_Getter";
1333 1333
1334 1334
1335 /** @domName SVGDescElement.getPresentationAttribute */ 1335 /** @domName SVGDescElement.getPresentationAttribute */
1336 CSSValue getPresentationAttribute(String name) native "SVGDescElement_getPrese ntationAttribute_Callback"; 1336 CSSValue getPresentationAttribute(String name) native "SVGDescElement_getPrese ntationAttribute_Callback";
1337 1337
1338 } 1338 }
1339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1340 // for details. All rights reserved. Use of this source code is governed by a 1340 // for details. All rights reserved. Use of this source code is governed by a
1341 // BSD-style license that can be found in the LICENSE file. 1341 // BSD-style license that can be found in the LICENSE file.
1342 1342
1343 // WARNING: Do not edit - generated code. 1343 // WARNING: Do not edit - generated code.
1344 1344
1345 1345
1346 /// @domName SVGDocument
1347 class SVGDocument extends Document {
1348 SVGDocument.internal(): super.internal();
1349
1350
1351 /** @domName SVGDocument.rootElement */
1352 SVGSVGElement get rootElement native "SVGDocument_rootElement_Getter";
1353
1354
1355 /** @domName SVGDocument.createEvent */
1356 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack";
1357
1358 }
1359 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
1360 // for details. All rights reserved. Use of this source code is governed by a
1361 // BSD-style license that can be found in the LICENSE file.
1362
1363
1364 class _AttributeClassSet extends CssClassSet {
1365 final Element _element;
1366
1367 _AttributeClassSet(this._element);
1368
1369 Set<String> readClasses() {
1370 var classname = _element.attributes['class'];
1371
1372 Set<String> s = new Set<String>();
1373 for (String name in classname.split(' ')) {
1374 String trimmed = name.trim();
1375 if (!trimmed.isEmpty) {
1376 s.add(trimmed);
1377 }
1378 }
1379 return s;
1380 }
1381
1382 void writeClasses(Set s) {
1383 _element.attributes['class'] = _formatSet(s);
1384 }
1385 }
1386
1387 class SVGElement extends Element {
1388 factory SVGElement.tag(String tag) =>
1389 _SVGElementFactoryProvider.createSVGElement_tag(tag);
1390 factory SVGElement.svg(String svg) =>
1391 _SVGElementFactoryProvider.createSVGElement_svg(svg);
1392
1393 CssClassSet get classes {
1394 if (_cssClassSet == null) {
1395 _cssClassSet = new _AttributeClassSet(_ptr);
1396 }
1397 return _cssClassSet;
1398 }
1399
1400 List<Element> get elements => new FilteredElementList(this);
1401
1402 void set elements(Collection<Element> value) {
1403 final elements = this.elements;
1404 elements.clear();
1405 elements.addAll(value);
1406 }
1407
1408 String get outerHTML {
1409 final container = new Element.tag("div");
1410 final SVGElement cloned = this.clone(true);
1411 container.elements.add(cloned);
1412 return container.innerHTML;
1413 }
1414
1415 String get innerHTML {
1416 final container = new Element.tag("div");
1417 final SVGElement cloned = this.clone(true);
1418 container.elements.addAll(cloned.elements);
1419 return container.innerHTML;
1420 }
1421
1422 void set innerHTML(String svg) {
1423 final container = new Element.tag("div");
1424 // Wrap the SVG string in <svg> so that SVGElements are created, rather than
1425 // HTMLElements.
1426 container.innerHTML = '<svg version="1.1">$svg</svg>';
1427 this.elements = container.elements[0].elements;
1428 }
1429
1430 SVGElement.internal(): super.internal();
1431
1432
1433 /** @domName SVGElement.id */
1434 String get id native "SVGElement_id_Getter";
1435
1436
1437 /** @domName SVGElement.id */
1438 void set id(String value) native "SVGElement_id_Setter";
1439
1440
1441 /** @domName SVGElement.ownerSVGElement */
1442 SVGSVGElement get ownerSVGElement native "SVGElement_ownerSVGElement_Getter";
1443
1444
1445 /** @domName SVGElement.viewportElement */
1446 SVGElement get viewportElement native "SVGElement_viewportElement_Getter";
1447
1448
1449 /** @domName SVGElement.xmlbase */
1450 String get xmlbase native "SVGElement_xmlbase_Getter";
1451
1452
1453 /** @domName SVGElement.xmlbase */
1454 void set xmlbase(String value) native "SVGElement_xmlbase_Setter";
1455
1456 }
1457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1458 // for details. All rights reserved. Use of this source code is governed by a
1459 // BSD-style license that can be found in the LICENSE file.
1460
1461 // WARNING: Do not edit - generated code.
1462
1463
1464 /// @domName SVGElementInstance 1346 /// @domName SVGElementInstance
1465 class SVGElementInstance extends EventTarget { 1347 class ElementInstance extends EventTarget {
1466 SVGElementInstance.internal(): super.internal(); 1348 ElementInstance.internal(): super.internal();
1467 1349
1468 /** 1350 /**
1469 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent 1351 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
1470 */ 1352 */
1471 SVGElementInstanceEvents get on => 1353 ElementInstanceEvents get on =>
1472 new SVGElementInstanceEvents(this); 1354 new ElementInstanceEvents(this);
1473 1355
1474 1356
1475 /** @domName SVGElementInstance.childNodes */ 1357 /** @domName SVGElementInstance.childNodes */
1476 List<SVGElementInstance> get childNodes native "SVGElementInstance_childNodes_ Getter"; 1358 List<ElementInstance> get childNodes native "SVGElementInstance_childNodes_Get ter";
1477 1359
1478 1360
1479 /** @domName SVGElementInstance.correspondingElement */ 1361 /** @domName SVGElementInstance.correspondingElement */
1480 SVGElement get correspondingElement native "SVGElementInstance_correspondingEl ement_Getter"; 1362 SvgElement get correspondingElement native "SVGElementInstance_correspondingEl ement_Getter";
1481 1363
1482 1364
1483 /** @domName SVGElementInstance.correspondingUseElement */ 1365 /** @domName SVGElementInstance.correspondingUseElement */
1484 SVGUseElement get correspondingUseElement native "SVGElementInstance_correspon dingUseElement_Getter"; 1366 UseElement get correspondingUseElement native "SVGElementInstance_correspondin gUseElement_Getter";
1485 1367
1486 1368
1487 /** @domName SVGElementInstance.firstChild */ 1369 /** @domName SVGElementInstance.firstChild */
1488 SVGElementInstance get firstChild native "SVGElementInstance_firstChild_Getter "; 1370 ElementInstance get firstChild native "SVGElementInstance_firstChild_Getter";
1489 1371
1490 1372
1491 /** @domName SVGElementInstance.lastChild */ 1373 /** @domName SVGElementInstance.lastChild */
1492 SVGElementInstance get lastChild native "SVGElementInstance_lastChild_Getter"; 1374 ElementInstance get lastChild native "SVGElementInstance_lastChild_Getter";
1493 1375
1494 1376
1495 /** @domName SVGElementInstance.nextSibling */ 1377 /** @domName SVGElementInstance.nextSibling */
1496 SVGElementInstance get nextSibling native "SVGElementInstance_nextSibling_Gett er"; 1378 ElementInstance get nextSibling native "SVGElementInstance_nextSibling_Getter" ;
1497 1379
1498 1380
1499 /** @domName SVGElementInstance.parentNode */ 1381 /** @domName SVGElementInstance.parentNode */
1500 SVGElementInstance get parentNode native "SVGElementInstance_parentNode_Getter "; 1382 ElementInstance get parentNode native "SVGElementInstance_parentNode_Getter";
1501 1383
1502 1384
1503 /** @domName SVGElementInstance.previousSibling */ 1385 /** @domName SVGElementInstance.previousSibling */
1504 SVGElementInstance get previousSibling native "SVGElementInstance_previousSibl ing_Getter"; 1386 ElementInstance get previousSibling native "SVGElementInstance_previousSibling _Getter";
1505 1387
1506 } 1388 }
1507 1389
1508 class SVGElementInstanceEvents extends Events { 1390 class ElementInstanceEvents extends Events {
1509 SVGElementInstanceEvents(EventTarget _ptr) : super(_ptr); 1391 ElementInstanceEvents(EventTarget _ptr) : super(_ptr);
1510 1392
1511 EventListenerList get abort => this['abort']; 1393 EventListenerList get abort => this['abort'];
1512 1394
1513 EventListenerList get beforeCopy => this['beforecopy']; 1395 EventListenerList get beforeCopy => this['beforecopy'];
1514 1396
1515 EventListenerList get beforeCut => this['beforecut']; 1397 EventListenerList get beforeCut => this['beforecut'];
1516 1398
1517 EventListenerList get beforePaste => this['beforepaste']; 1399 EventListenerList get beforePaste => this['beforepaste'];
1518 1400
1519 EventListenerList get blur => this['blur']; 1401 EventListenerList get blur => this['blur'];
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1589 EventListenerList get unload => this['unload']; 1471 EventListenerList get unload => this['unload'];
1590 } 1472 }
1591 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1473 // 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 1474 // 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. 1475 // BSD-style license that can be found in the LICENSE file.
1594 1476
1595 // WARNING: Do not edit - generated code. 1477 // WARNING: Do not edit - generated code.
1596 1478
1597 1479
1598 /// @domName SVGEllipseElement 1480 /// @domName SVGEllipseElement
1599 class SVGEllipseElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 1481 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace {
1600 SVGEllipseElement.internal(): super.internal(); 1482 EllipseElement.internal(): super.internal();
1601 1483
1602 1484
1603 /** @domName SVGEllipseElement.cx */ 1485 /** @domName SVGEllipseElement.cx */
1604 SVGAnimatedLength get cx native "SVGEllipseElement_cx_Getter"; 1486 AnimatedLength get cx native "SVGEllipseElement_cx_Getter";
1605 1487
1606 1488
1607 /** @domName SVGEllipseElement.cy */ 1489 /** @domName SVGEllipseElement.cy */
1608 SVGAnimatedLength get cy native "SVGEllipseElement_cy_Getter"; 1490 AnimatedLength get cy native "SVGEllipseElement_cy_Getter";
1609 1491
1610 1492
1611 /** @domName SVGEllipseElement.rx */ 1493 /** @domName SVGEllipseElement.rx */
1612 SVGAnimatedLength get rx native "SVGEllipseElement_rx_Getter"; 1494 AnimatedLength get rx native "SVGEllipseElement_rx_Getter";
1613 1495
1614 1496
1615 /** @domName SVGEllipseElement.ry */ 1497 /** @domName SVGEllipseElement.ry */
1616 SVGAnimatedLength get ry native "SVGEllipseElement_ry_Getter"; 1498 AnimatedLength get ry native "SVGEllipseElement_ry_Getter";
1617 1499
1618 1500
1619 /** @domName SVGEllipseElement.externalResourcesRequired */ 1501 /** @domName SVGEllipseElement.externalResourcesRequired */
1620 SVGAnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_ext ernalResourcesRequired_Getter"; 1502 AnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_extern alResourcesRequired_Getter";
1621 1503
1622 1504
1623 /** @domName SVGEllipseElement.xmllang */ 1505 /** @domName SVGEllipseElement.xmllang */
1624 String get xmllang native "SVGEllipseElement_xmllang_Getter"; 1506 String get xmllang native "SVGEllipseElement_xmllang_Getter";
1625 1507
1626 1508
1627 /** @domName SVGEllipseElement.xmllang */ 1509 /** @domName SVGEllipseElement.xmllang */
1628 void set xmllang(String value) native "SVGEllipseElement_xmllang_Setter"; 1510 void set xmllang(String value) native "SVGEllipseElement_xmllang_Setter";
1629 1511
1630 1512
1631 /** @domName SVGEllipseElement.xmlspace */ 1513 /** @domName SVGEllipseElement.xmlspace */
1632 String get xmlspace native "SVGEllipseElement_xmlspace_Getter"; 1514 String get xmlspace native "SVGEllipseElement_xmlspace_Getter";
1633 1515
1634 1516
1635 /** @domName SVGEllipseElement.xmlspace */ 1517 /** @domName SVGEllipseElement.xmlspace */
1636 void set xmlspace(String value) native "SVGEllipseElement_xmlspace_Setter"; 1518 void set xmlspace(String value) native "SVGEllipseElement_xmlspace_Setter";
1637 1519
1638 1520
1639 /** @domName SVGEllipseElement.farthestViewportElement */ 1521 /** @domName SVGEllipseElement.farthestViewportElement */
1640 SVGElement get farthestViewportElement native "SVGEllipseElement_farthestViewp ortElement_Getter"; 1522 SvgElement get farthestViewportElement native "SVGEllipseElement_farthestViewp ortElement_Getter";
1641 1523
1642 1524
1643 /** @domName SVGEllipseElement.nearestViewportElement */ 1525 /** @domName SVGEllipseElement.nearestViewportElement */
1644 SVGElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor tElement_Getter"; 1526 SvgElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor tElement_Getter";
1645 1527
1646 1528
1647 /** @domName SVGEllipseElement.getBBox */ 1529 /** @domName SVGEllipseElement.getBBox */
1648 SVGRect getBBox() native "SVGEllipseElement_getBBox_Callback"; 1530 Rect getBBox() native "SVGEllipseElement_getBBox_Callback";
1649 1531
1650 1532
1651 /** @domName SVGEllipseElement.getCTM */ 1533 /** @domName SVGEllipseElement.getCTM */
1652 SVGMatrix getCTM() native "SVGEllipseElement_getCTM_Callback"; 1534 Matrix getCTM() native "SVGEllipseElement_getCTM_Callback";
1653 1535
1654 1536
1655 /** @domName SVGEllipseElement.getScreenCTM */ 1537 /** @domName SVGEllipseElement.getScreenCTM */
1656 SVGMatrix getScreenCTM() native "SVGEllipseElement_getScreenCTM_Callback"; 1538 Matrix getScreenCTM() native "SVGEllipseElement_getScreenCTM_Callback";
1657 1539
1658 1540
1659 /** @domName SVGEllipseElement.getTransformToElement */ 1541 /** @domName SVGEllipseElement.getTransformToElement */
1660 SVGMatrix getTransformToElement(SVGElement element) native "SVGEllipseElement_ getTransformToElement_Callback"; 1542 Matrix getTransformToElement(SvgElement element) native "SVGEllipseElement_get TransformToElement_Callback";
1661 1543
1662 1544
1663 /** @domName SVGEllipseElement.className */ 1545 /** @domName SVGEllipseElement.className */
1664 SVGAnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Ge tter"; 1546 AnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Gette r";
1665 1547
1666 1548
1667 /** @domName SVGEllipseElement.style */ 1549 /** @domName SVGEllipseElement.style */
1668 CSSStyleDeclaration get style native "SVGEllipseElement_style_Getter"; 1550 CSSStyleDeclaration get style native "SVGEllipseElement_style_Getter";
1669 1551
1670 1552
1671 /** @domName SVGEllipseElement.getPresentationAttribute */ 1553 /** @domName SVGEllipseElement.getPresentationAttribute */
1672 CSSValue getPresentationAttribute(String name) native "SVGEllipseElement_getPr esentationAttribute_Callback"; 1554 CSSValue getPresentationAttribute(String name) native "SVGEllipseElement_getPr esentationAttribute_Callback";
1673 1555
1674 1556
1675 /** @domName SVGEllipseElement.requiredExtensions */ 1557 /** @domName SVGEllipseElement.requiredExtensions */
1676 SVGStringList get requiredExtensions native "SVGEllipseElement_requiredExtensi ons_Getter"; 1558 StringList get requiredExtensions native "SVGEllipseElement_requiredExtensions _Getter";
1677 1559
1678 1560
1679 /** @domName SVGEllipseElement.requiredFeatures */ 1561 /** @domName SVGEllipseElement.requiredFeatures */
1680 SVGStringList get requiredFeatures native "SVGEllipseElement_requiredFeatures_ Getter"; 1562 StringList get requiredFeatures native "SVGEllipseElement_requiredFeatures_Get ter";
1681 1563
1682 1564
1683 /** @domName SVGEllipseElement.systemLanguage */ 1565 /** @domName SVGEllipseElement.systemLanguage */
1684 SVGStringList get systemLanguage native "SVGEllipseElement_systemLanguage_Gett er"; 1566 StringList get systemLanguage native "SVGEllipseElement_systemLanguage_Getter" ;
1685 1567
1686 1568
1687 /** @domName SVGEllipseElement.hasExtension */ 1569 /** @domName SVGEllipseElement.hasExtension */
1688 bool hasExtension(String extension) native "SVGEllipseElement_hasExtension_Cal lback"; 1570 bool hasExtension(String extension) native "SVGEllipseElement_hasExtension_Cal lback";
1689 1571
1690 1572
1691 /** @domName SVGEllipseElement.transform */ 1573 /** @domName SVGEllipseElement.transform */
1692 SVGAnimatedTransformList get transform native "SVGEllipseElement_transform_Get ter"; 1574 AnimatedTransformList get transform native "SVGEllipseElement_transform_Getter ";
1693 1575
1694 } 1576 }
1695 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1696 // for details. All rights reserved. Use of this source code is governed by a 1578 // for details. All rights reserved. Use of this source code is governed by a
1697 // BSD-style license that can be found in the LICENSE file. 1579 // BSD-style license that can be found in the LICENSE file.
1698 1580
1699 // WARNING: Do not edit - generated code. 1581 // WARNING: Do not edit - generated code.
1700 1582
1701 1583
1702 /// @domName SVGException 1584 /// @domName SVGException
1703 class SVGException extends NativeFieldWrapperClass1 { 1585 class Exception extends NativeFieldWrapperClass1 {
1704 SVGException.internal(); 1586 Exception.internal();
1705 1587
1706 static const int SVG_INVALID_VALUE_ERR = 1; 1588 static const int SVG_INVALID_VALUE_ERR = 1;
1707 1589
1708 static const int SVG_MATRIX_NOT_INVERTABLE = 2; 1590 static const int SVG_MATRIX_NOT_INVERTABLE = 2;
1709 1591
1710 static const int SVG_WRONG_TYPE_ERR = 0; 1592 static const int SVG_WRONG_TYPE_ERR = 0;
1711 1593
1712 1594
1713 /** @domName SVGException.code */ 1595 /** @domName SVGException.code */
1714 int get code native "SVGException_code_Getter"; 1596 int get code native "SVGException_code_Getter";
(...skipping 12 matching lines...) Expand all
1727 1609
1728 } 1610 }
1729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1611 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1730 // for details. All rights reserved. Use of this source code is governed by a 1612 // for details. All rights reserved. Use of this source code is governed by a
1731 // BSD-style license that can be found in the LICENSE file. 1613 // BSD-style license that can be found in the LICENSE file.
1732 1614
1733 // WARNING: Do not edit - generated code. 1615 // WARNING: Do not edit - generated code.
1734 1616
1735 1617
1736 /// @domName SVGExternalResourcesRequired 1618 /// @domName SVGExternalResourcesRequired
1737 class SVGExternalResourcesRequired extends NativeFieldWrapperClass1 { 1619 class ExternalResourcesRequired extends NativeFieldWrapperClass1 {
1738 SVGExternalResourcesRequired.internal(); 1620 ExternalResourcesRequired.internal();
1739 1621
1740 1622
1741 /** @domName SVGExternalResourcesRequired.externalResourcesRequired */ 1623 /** @domName SVGExternalResourcesRequired.externalResourcesRequired */
1742 SVGAnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesR equired_externalResourcesRequired_Getter"; 1624 AnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesRequ ired_externalResourcesRequired_Getter";
1743 1625
1744 } 1626 }
1745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1627 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1746 // for details. All rights reserved. Use of this source code is governed by a 1628 // for details. All rights reserved. Use of this source code is governed by a
1747 // BSD-style license that can be found in the LICENSE file. 1629 // BSD-style license that can be found in the LICENSE file.
1748 1630
1749 // WARNING: Do not edit - generated code. 1631 // WARNING: Do not edit - generated code.
1750 1632
1751 1633
1752 /// @domName SVGFEBlendElement 1634 /// @domName SVGFEBlendElement
1753 class SVGFEBlendElement extends SVGElement implements SVGFilterPrimitiveStandard Attributes { 1635 class FeBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
1754 SVGFEBlendElement.internal(): super.internal(); 1636 FeBlendElement.internal(): super.internal();
1755 1637
1756 static const int SVG_FEBLEND_MODE_DARKEN = 4; 1638 static const int SVG_FEBLEND_MODE_DARKEN = 4;
1757 1639
1758 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; 1640 static const int SVG_FEBLEND_MODE_LIGHTEN = 5;
1759 1641
1760 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; 1642 static const int SVG_FEBLEND_MODE_MULTIPLY = 2;
1761 1643
1762 static const int SVG_FEBLEND_MODE_NORMAL = 1; 1644 static const int SVG_FEBLEND_MODE_NORMAL = 1;
1763 1645
1764 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1646 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1765 1647
1766 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1648 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1767 1649
1768 1650
1769 /** @domName SVGFEBlendElement.in1 */ 1651 /** @domName SVGFEBlendElement.in1 */
1770 SVGAnimatedString get in1 native "SVGFEBlendElement_in1_Getter"; 1652 AnimatedString get in1 native "SVGFEBlendElement_in1_Getter";
1771 1653
1772 1654
1773 /** @domName SVGFEBlendElement.in2 */ 1655 /** @domName SVGFEBlendElement.in2 */
1774 SVGAnimatedString get in2 native "SVGFEBlendElement_in2_Getter"; 1656 AnimatedString get in2 native "SVGFEBlendElement_in2_Getter";
1775 1657
1776 1658
1777 /** @domName SVGFEBlendElement.mode */ 1659 /** @domName SVGFEBlendElement.mode */
1778 SVGAnimatedEnumeration get mode native "SVGFEBlendElement_mode_Getter"; 1660 AnimatedEnumeration get mode native "SVGFEBlendElement_mode_Getter";
1779 1661
1780 1662
1781 /** @domName SVGFEBlendElement.height */ 1663 /** @domName SVGFEBlendElement.height */
1782 SVGAnimatedLength get height native "SVGFEBlendElement_height_Getter"; 1664 AnimatedLength get height native "SVGFEBlendElement_height_Getter";
1783 1665
1784 1666
1785 /** @domName SVGFEBlendElement.result */ 1667 /** @domName SVGFEBlendElement.result */
1786 SVGAnimatedString get result native "SVGFEBlendElement_result_Getter"; 1668 AnimatedString get result native "SVGFEBlendElement_result_Getter";
1787 1669
1788 1670
1789 /** @domName SVGFEBlendElement.width */ 1671 /** @domName SVGFEBlendElement.width */
1790 SVGAnimatedLength get width native "SVGFEBlendElement_width_Getter"; 1672 AnimatedLength get width native "SVGFEBlendElement_width_Getter";
1791 1673
1792 1674
1793 /** @domName SVGFEBlendElement.x */ 1675 /** @domName SVGFEBlendElement.x */
1794 SVGAnimatedLength get x native "SVGFEBlendElement_x_Getter"; 1676 AnimatedLength get x native "SVGFEBlendElement_x_Getter";
1795 1677
1796 1678
1797 /** @domName SVGFEBlendElement.y */ 1679 /** @domName SVGFEBlendElement.y */
1798 SVGAnimatedLength get y native "SVGFEBlendElement_y_Getter"; 1680 AnimatedLength get y native "SVGFEBlendElement_y_Getter";
1799 1681
1800 1682
1801 /** @domName SVGFEBlendElement.className */ 1683 /** @domName SVGFEBlendElement.className */
1802 SVGAnimatedString get $dom_svgClassName native "SVGFEBlendElement_className_Ge tter"; 1684 AnimatedString get $dom_svgClassName native "SVGFEBlendElement_className_Gette r";
1803 1685
1804 1686
1805 /** @domName SVGFEBlendElement.style */ 1687 /** @domName SVGFEBlendElement.style */
1806 CSSStyleDeclaration get style native "SVGFEBlendElement_style_Getter"; 1688 CSSStyleDeclaration get style native "SVGFEBlendElement_style_Getter";
1807 1689
1808 1690
1809 /** @domName SVGFEBlendElement.getPresentationAttribute */ 1691 /** @domName SVGFEBlendElement.getPresentationAttribute */
1810 CSSValue getPresentationAttribute(String name) native "SVGFEBlendElement_getPr esentationAttribute_Callback"; 1692 CSSValue getPresentationAttribute(String name) native "SVGFEBlendElement_getPr esentationAttribute_Callback";
1811 1693
1812 } 1694 }
1813 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1695 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1814 // for details. All rights reserved. Use of this source code is governed by a 1696 // for details. All rights reserved. Use of this source code is governed by a
1815 // BSD-style license that can be found in the LICENSE file. 1697 // BSD-style license that can be found in the LICENSE file.
1816 1698
1817 // WARNING: Do not edit - generated code. 1699 // WARNING: Do not edit - generated code.
1818 1700
1819 1701
1820 /// @domName SVGFEColorMatrixElement 1702 /// @domName SVGFEColorMatrixElement
1821 class SVGFEColorMatrixElement extends SVGElement implements SVGFilterPrimitiveSt andardAttributes { 1703 class FeColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes {
1822 SVGFEColorMatrixElement.internal(): super.internal(); 1704 FeColorMatrixElement.internal(): super.internal();
1823 1705
1824 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 1706 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
1825 1707
1826 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; 1708 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
1827 1709
1828 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; 1710 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
1829 1711
1830 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1712 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1831 1713
1832 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1714 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1833 1715
1834 1716
1835 /** @domName SVGFEColorMatrixElement.in1 */ 1717 /** @domName SVGFEColorMatrixElement.in1 */
1836 SVGAnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter"; 1718 AnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter";
1837 1719
1838 1720
1839 /** @domName SVGFEColorMatrixElement.type */ 1721 /** @domName SVGFEColorMatrixElement.type */
1840 SVGAnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter"; 1722 AnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter";
1841 1723
1842 1724
1843 /** @domName SVGFEColorMatrixElement.values */ 1725 /** @domName SVGFEColorMatrixElement.values */
1844 SVGAnimatedNumberList get values native "SVGFEColorMatrixElement_values_Getter "; 1726 AnimatedNumberList get values native "SVGFEColorMatrixElement_values_Getter";
1845 1727
1846 1728
1847 /** @domName SVGFEColorMatrixElement.height */ 1729 /** @domName SVGFEColorMatrixElement.height */
1848 SVGAnimatedLength get height native "SVGFEColorMatrixElement_height_Getter"; 1730 AnimatedLength get height native "SVGFEColorMatrixElement_height_Getter";
1849 1731
1850 1732
1851 /** @domName SVGFEColorMatrixElement.result */ 1733 /** @domName SVGFEColorMatrixElement.result */
1852 SVGAnimatedString get result native "SVGFEColorMatrixElement_result_Getter"; 1734 AnimatedString get result native "SVGFEColorMatrixElement_result_Getter";
1853 1735
1854 1736
1855 /** @domName SVGFEColorMatrixElement.width */ 1737 /** @domName SVGFEColorMatrixElement.width */
1856 SVGAnimatedLength get width native "SVGFEColorMatrixElement_width_Getter"; 1738 AnimatedLength get width native "SVGFEColorMatrixElement_width_Getter";
1857 1739
1858 1740
1859 /** @domName SVGFEColorMatrixElement.x */ 1741 /** @domName SVGFEColorMatrixElement.x */
1860 SVGAnimatedLength get x native "SVGFEColorMatrixElement_x_Getter"; 1742 AnimatedLength get x native "SVGFEColorMatrixElement_x_Getter";
1861 1743
1862 1744
1863 /** @domName SVGFEColorMatrixElement.y */ 1745 /** @domName SVGFEColorMatrixElement.y */
1864 SVGAnimatedLength get y native "SVGFEColorMatrixElement_y_Getter"; 1746 AnimatedLength get y native "SVGFEColorMatrixElement_y_Getter";
1865 1747
1866 1748
1867 /** @domName SVGFEColorMatrixElement.className */ 1749 /** @domName SVGFEColorMatrixElement.className */
1868 SVGAnimatedString get $dom_svgClassName native "SVGFEColorMatrixElement_classN ame_Getter"; 1750 AnimatedString get $dom_svgClassName native "SVGFEColorMatrixElement_className _Getter";
1869 1751
1870 1752
1871 /** @domName SVGFEColorMatrixElement.style */ 1753 /** @domName SVGFEColorMatrixElement.style */
1872 CSSStyleDeclaration get style native "SVGFEColorMatrixElement_style_Getter"; 1754 CSSStyleDeclaration get style native "SVGFEColorMatrixElement_style_Getter";
1873 1755
1874 1756
1875 /** @domName SVGFEColorMatrixElement.getPresentationAttribute */ 1757 /** @domName SVGFEColorMatrixElement.getPresentationAttribute */
1876 CSSValue getPresentationAttribute(String name) native "SVGFEColorMatrixElement _getPresentationAttribute_Callback"; 1758 CSSValue getPresentationAttribute(String name) native "SVGFEColorMatrixElement _getPresentationAttribute_Callback";
1877 1759
1878 } 1760 }
1879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1761 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1880 // for details. All rights reserved. Use of this source code is governed by a 1762 // for details. All rights reserved. Use of this source code is governed by a
1881 // BSD-style license that can be found in the LICENSE file. 1763 // BSD-style license that can be found in the LICENSE file.
1882 1764
1883 // WARNING: Do not edit - generated code. 1765 // WARNING: Do not edit - generated code.
1884 1766
1885 1767
1886 /// @domName SVGFEComponentTransferElement 1768 /// @domName SVGFEComponentTransferElement
1887 class SVGFEComponentTransferElement extends SVGElement implements SVGFilterPrimi tiveStandardAttributes { 1769 class FeComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes {
1888 SVGFEComponentTransferElement.internal(): super.internal(); 1770 FeComponentTransferElement.internal(): super.internal();
1889 1771
1890 1772
1891 /** @domName SVGFEComponentTransferElement.in1 */ 1773 /** @domName SVGFEComponentTransferElement.in1 */
1892 SVGAnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter"; 1774 AnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter";
1893 1775
1894 1776
1895 /** @domName SVGFEComponentTransferElement.height */ 1777 /** @domName SVGFEComponentTransferElement.height */
1896 SVGAnimatedLength get height native "SVGFEComponentTransferElement_height_Gett er"; 1778 AnimatedLength get height native "SVGFEComponentTransferElement_height_Getter" ;
1897 1779
1898 1780
1899 /** @domName SVGFEComponentTransferElement.result */ 1781 /** @domName SVGFEComponentTransferElement.result */
1900 SVGAnimatedString get result native "SVGFEComponentTransferElement_result_Gett er"; 1782 AnimatedString get result native "SVGFEComponentTransferElement_result_Getter" ;
1901 1783
1902 1784
1903 /** @domName SVGFEComponentTransferElement.width */ 1785 /** @domName SVGFEComponentTransferElement.width */
1904 SVGAnimatedLength get width native "SVGFEComponentTransferElement_width_Getter "; 1786 AnimatedLength get width native "SVGFEComponentTransferElement_width_Getter";
1905 1787
1906 1788
1907 /** @domName SVGFEComponentTransferElement.x */ 1789 /** @domName SVGFEComponentTransferElement.x */
1908 SVGAnimatedLength get x native "SVGFEComponentTransferElement_x_Getter"; 1790 AnimatedLength get x native "SVGFEComponentTransferElement_x_Getter";
1909 1791
1910 1792
1911 /** @domName SVGFEComponentTransferElement.y */ 1793 /** @domName SVGFEComponentTransferElement.y */
1912 SVGAnimatedLength get y native "SVGFEComponentTransferElement_y_Getter"; 1794 AnimatedLength get y native "SVGFEComponentTransferElement_y_Getter";
1913 1795
1914 1796
1915 /** @domName SVGFEComponentTransferElement.className */ 1797 /** @domName SVGFEComponentTransferElement.className */
1916 SVGAnimatedString get $dom_svgClassName native "SVGFEComponentTransferElement_ className_Getter"; 1798 AnimatedString get $dom_svgClassName native "SVGFEComponentTransferElement_cla ssName_Getter";
1917 1799
1918 1800
1919 /** @domName SVGFEComponentTransferElement.style */ 1801 /** @domName SVGFEComponentTransferElement.style */
1920 CSSStyleDeclaration get style native "SVGFEComponentTransferElement_style_Gett er"; 1802 CSSStyleDeclaration get style native "SVGFEComponentTransferElement_style_Gett er";
1921 1803
1922 1804
1923 /** @domName SVGFEComponentTransferElement.getPresentationAttribute */ 1805 /** @domName SVGFEComponentTransferElement.getPresentationAttribute */
1924 CSSValue getPresentationAttribute(String name) native "SVGFEComponentTransferE lement_getPresentationAttribute_Callback"; 1806 CSSValue getPresentationAttribute(String name) native "SVGFEComponentTransferE lement_getPresentationAttribute_Callback";
1925 1807
1926 } 1808 }
1927 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1809 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1928 // for details. All rights reserved. Use of this source code is governed by a 1810 // for details. All rights reserved. Use of this source code is governed by a
1929 // BSD-style license that can be found in the LICENSE file. 1811 // BSD-style license that can be found in the LICENSE file.
1930 1812
1931 // WARNING: Do not edit - generated code. 1813 // WARNING: Do not edit - generated code.
1932 1814
1933 1815
1934 /// @domName SVGFECompositeElement 1816 /// @domName SVGFECompositeElement
1935 class SVGFECompositeElement extends SVGElement implements SVGFilterPrimitiveStan dardAttributes { 1817 class FeCompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes {
1936 SVGFECompositeElement.internal(): super.internal(); 1818 FeCompositeElement.internal(): super.internal();
1937 1819
1938 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1820 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1939 1821
1940 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1822 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1941 1823
1942 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; 1824 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2;
1943 1825
1944 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 1826 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
1945 1827
1946 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 1828 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
1947 1829
1948 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1830 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1949 1831
1950 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1832 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1951 1833
1952 1834
1953 /** @domName SVGFECompositeElement.in1 */ 1835 /** @domName SVGFECompositeElement.in1 */
1954 SVGAnimatedString get in1 native "SVGFECompositeElement_in1_Getter"; 1836 AnimatedString get in1 native "SVGFECompositeElement_in1_Getter";
1955 1837
1956 1838
1957 /** @domName SVGFECompositeElement.in2 */ 1839 /** @domName SVGFECompositeElement.in2 */
1958 SVGAnimatedString get in2 native "SVGFECompositeElement_in2_Getter"; 1840 AnimatedString get in2 native "SVGFECompositeElement_in2_Getter";
1959 1841
1960 1842
1961 /** @domName SVGFECompositeElement.k1 */ 1843 /** @domName SVGFECompositeElement.k1 */
1962 SVGAnimatedNumber get k1 native "SVGFECompositeElement_k1_Getter"; 1844 AnimatedNumber get k1 native "SVGFECompositeElement_k1_Getter";
1963 1845
1964 1846
1965 /** @domName SVGFECompositeElement.k2 */ 1847 /** @domName SVGFECompositeElement.k2 */
1966 SVGAnimatedNumber get k2 native "SVGFECompositeElement_k2_Getter"; 1848 AnimatedNumber get k2 native "SVGFECompositeElement_k2_Getter";
1967 1849
1968 1850
1969 /** @domName SVGFECompositeElement.k3 */ 1851 /** @domName SVGFECompositeElement.k3 */
1970 SVGAnimatedNumber get k3 native "SVGFECompositeElement_k3_Getter"; 1852 AnimatedNumber get k3 native "SVGFECompositeElement_k3_Getter";
1971 1853
1972 1854
1973 /** @domName SVGFECompositeElement.k4 */ 1855 /** @domName SVGFECompositeElement.k4 */
1974 SVGAnimatedNumber get k4 native "SVGFECompositeElement_k4_Getter"; 1856 AnimatedNumber get k4 native "SVGFECompositeElement_k4_Getter";
1975 1857
1976 1858
1977 /** @domName SVGFECompositeElement.operator */ 1859 /** @domName SVGFECompositeElement.operator */
1978 SVGAnimatedEnumeration get operator native "SVGFECompositeElement_operator_Get ter"; 1860 AnimatedEnumeration get operator native "SVGFECompositeElement_operator_Getter ";
1979 1861
1980 1862
1981 /** @domName SVGFECompositeElement.height */ 1863 /** @domName SVGFECompositeElement.height */
1982 SVGAnimatedLength get height native "SVGFECompositeElement_height_Getter"; 1864 AnimatedLength get height native "SVGFECompositeElement_height_Getter";
1983 1865
1984 1866
1985 /** @domName SVGFECompositeElement.result */ 1867 /** @domName SVGFECompositeElement.result */
1986 SVGAnimatedString get result native "SVGFECompositeElement_result_Getter"; 1868 AnimatedString get result native "SVGFECompositeElement_result_Getter";
1987 1869
1988 1870
1989 /** @domName SVGFECompositeElement.width */ 1871 /** @domName SVGFECompositeElement.width */
1990 SVGAnimatedLength get width native "SVGFECompositeElement_width_Getter"; 1872 AnimatedLength get width native "SVGFECompositeElement_width_Getter";
1991 1873
1992 1874
1993 /** @domName SVGFECompositeElement.x */ 1875 /** @domName SVGFECompositeElement.x */
1994 SVGAnimatedLength get x native "SVGFECompositeElement_x_Getter"; 1876 AnimatedLength get x native "SVGFECompositeElement_x_Getter";
1995 1877
1996 1878
1997 /** @domName SVGFECompositeElement.y */ 1879 /** @domName SVGFECompositeElement.y */
1998 SVGAnimatedLength get y native "SVGFECompositeElement_y_Getter"; 1880 AnimatedLength get y native "SVGFECompositeElement_y_Getter";
1999 1881
2000 1882
2001 /** @domName SVGFECompositeElement.className */ 1883 /** @domName SVGFECompositeElement.className */
2002 SVGAnimatedString get $dom_svgClassName native "SVGFECompositeElement_classNam e_Getter"; 1884 AnimatedString get $dom_svgClassName native "SVGFECompositeElement_className_G etter";
2003 1885
2004 1886
2005 /** @domName SVGFECompositeElement.style */ 1887 /** @domName SVGFECompositeElement.style */
2006 CSSStyleDeclaration get style native "SVGFECompositeElement_style_Getter"; 1888 CSSStyleDeclaration get style native "SVGFECompositeElement_style_Getter";
2007 1889
2008 1890
2009 /** @domName SVGFECompositeElement.getPresentationAttribute */ 1891 /** @domName SVGFECompositeElement.getPresentationAttribute */
2010 CSSValue getPresentationAttribute(String name) native "SVGFECompositeElement_g etPresentationAttribute_Callback"; 1892 CSSValue getPresentationAttribute(String name) native "SVGFECompositeElement_g etPresentationAttribute_Callback";
2011 1893
2012 } 1894 }
2013 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1895 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2014 // for details. All rights reserved. Use of this source code is governed by a 1896 // for details. All rights reserved. Use of this source code is governed by a
2015 // BSD-style license that can be found in the LICENSE file. 1897 // BSD-style license that can be found in the LICENSE file.
2016 1898
2017 // WARNING: Do not edit - generated code. 1899 // WARNING: Do not edit - generated code.
2018 1900
2019 1901
2020 /// @domName SVGFEConvolveMatrixElement 1902 /// @domName SVGFEConvolveMatrixElement
2021 class SVGFEConvolveMatrixElement extends SVGElement implements SVGFilterPrimitiv eStandardAttributes { 1903 class FeConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes {
2022 SVGFEConvolveMatrixElement.internal(): super.internal(); 1904 FeConvolveMatrixElement.internal(): super.internal();
2023 1905
2024 static const int SVG_EDGEMODE_DUPLICATE = 1; 1906 static const int SVG_EDGEMODE_DUPLICATE = 1;
2025 1907
2026 static const int SVG_EDGEMODE_NONE = 3; 1908 static const int SVG_EDGEMODE_NONE = 3;
2027 1909
2028 static const int SVG_EDGEMODE_UNKNOWN = 0; 1910 static const int SVG_EDGEMODE_UNKNOWN = 0;
2029 1911
2030 static const int SVG_EDGEMODE_WRAP = 2; 1912 static const int SVG_EDGEMODE_WRAP = 2;
2031 1913
2032 1914
2033 /** @domName SVGFEConvolveMatrixElement.bias */ 1915 /** @domName SVGFEConvolveMatrixElement.bias */
2034 SVGAnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter"; 1916 AnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter";
2035 1917
2036 1918
2037 /** @domName SVGFEConvolveMatrixElement.divisor */ 1919 /** @domName SVGFEConvolveMatrixElement.divisor */
2038 SVGAnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Gette r"; 1920 AnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Getter";
2039 1921
2040 1922
2041 /** @domName SVGFEConvolveMatrixElement.edgeMode */ 1923 /** @domName SVGFEConvolveMatrixElement.edgeMode */
2042 SVGAnimatedEnumeration get edgeMode native "SVGFEConvolveMatrixElement_edgeMod e_Getter"; 1924 AnimatedEnumeration get edgeMode native "SVGFEConvolveMatrixElement_edgeMode_G etter";
2043 1925
2044 1926
2045 /** @domName SVGFEConvolveMatrixElement.in1 */ 1927 /** @domName SVGFEConvolveMatrixElement.in1 */
2046 SVGAnimatedString get in1 native "SVGFEConvolveMatrixElement_in1_Getter"; 1928 AnimatedString get in1 native "SVGFEConvolveMatrixElement_in1_Getter";
2047 1929
2048 1930
2049 /** @domName SVGFEConvolveMatrixElement.kernelMatrix */ 1931 /** @domName SVGFEConvolveMatrixElement.kernelMatrix */
2050 SVGAnimatedNumberList get kernelMatrix native "SVGFEConvolveMatrixElement_kern elMatrix_Getter"; 1932 AnimatedNumberList get kernelMatrix native "SVGFEConvolveMatrixElement_kernelM atrix_Getter";
2051 1933
2052 1934
2053 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthX */ 1935 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthX */
2054 SVGAnimatedNumber get kernelUnitLengthX native "SVGFEConvolveMatrixElement_ker nelUnitLengthX_Getter"; 1936 AnimatedNumber get kernelUnitLengthX native "SVGFEConvolveMatrixElement_kernel UnitLengthX_Getter";
2055 1937
2056 1938
2057 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthY */ 1939 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthY */
2058 SVGAnimatedNumber get kernelUnitLengthY native "SVGFEConvolveMatrixElement_ker nelUnitLengthY_Getter"; 1940 AnimatedNumber get kernelUnitLengthY native "SVGFEConvolveMatrixElement_kernel UnitLengthY_Getter";
2059 1941
2060 1942
2061 /** @domName SVGFEConvolveMatrixElement.orderX */ 1943 /** @domName SVGFEConvolveMatrixElement.orderX */
2062 SVGAnimatedInteger get orderX native "SVGFEConvolveMatrixElement_orderX_Getter "; 1944 AnimatedInteger get orderX native "SVGFEConvolveMatrixElement_orderX_Getter";
2063 1945
2064 1946
2065 /** @domName SVGFEConvolveMatrixElement.orderY */ 1947 /** @domName SVGFEConvolveMatrixElement.orderY */
2066 SVGAnimatedInteger get orderY native "SVGFEConvolveMatrixElement_orderY_Getter "; 1948 AnimatedInteger get orderY native "SVGFEConvolveMatrixElement_orderY_Getter";
2067 1949
2068 1950
2069 /** @domName SVGFEConvolveMatrixElement.preserveAlpha */ 1951 /** @domName SVGFEConvolveMatrixElement.preserveAlpha */
2070 SVGAnimatedBoolean get preserveAlpha native "SVGFEConvolveMatrixElement_preser veAlpha_Getter"; 1952 AnimatedBoolean get preserveAlpha native "SVGFEConvolveMatrixElement_preserveA lpha_Getter";
2071 1953
2072 1954
2073 /** @domName SVGFEConvolveMatrixElement.targetX */ 1955 /** @domName SVGFEConvolveMatrixElement.targetX */
2074 SVGAnimatedInteger get targetX native "SVGFEConvolveMatrixElement_targetX_Gett er"; 1956 AnimatedInteger get targetX native "SVGFEConvolveMatrixElement_targetX_Getter" ;
2075 1957
2076 1958
2077 /** @domName SVGFEConvolveMatrixElement.targetY */ 1959 /** @domName SVGFEConvolveMatrixElement.targetY */
2078 SVGAnimatedInteger get targetY native "SVGFEConvolveMatrixElement_targetY_Gett er"; 1960 AnimatedInteger get targetY native "SVGFEConvolveMatrixElement_targetY_Getter" ;
2079 1961
2080 1962
2081 /** @domName SVGFEConvolveMatrixElement.height */ 1963 /** @domName SVGFEConvolveMatrixElement.height */
2082 SVGAnimatedLength get height native "SVGFEConvolveMatrixElement_height_Getter" ; 1964 AnimatedLength get height native "SVGFEConvolveMatrixElement_height_Getter";
2083 1965
2084 1966
2085 /** @domName SVGFEConvolveMatrixElement.result */ 1967 /** @domName SVGFEConvolveMatrixElement.result */
2086 SVGAnimatedString get result native "SVGFEConvolveMatrixElement_result_Getter" ; 1968 AnimatedString get result native "SVGFEConvolveMatrixElement_result_Getter";
2087 1969
2088 1970
2089 /** @domName SVGFEConvolveMatrixElement.width */ 1971 /** @domName SVGFEConvolveMatrixElement.width */
2090 SVGAnimatedLength get width native "SVGFEConvolveMatrixElement_width_Getter"; 1972 AnimatedLength get width native "SVGFEConvolveMatrixElement_width_Getter";
2091 1973
2092 1974
2093 /** @domName SVGFEConvolveMatrixElement.x */ 1975 /** @domName SVGFEConvolveMatrixElement.x */
2094 SVGAnimatedLength get x native "SVGFEConvolveMatrixElement_x_Getter"; 1976 AnimatedLength get x native "SVGFEConvolveMatrixElement_x_Getter";
2095 1977
2096 1978
2097 /** @domName SVGFEConvolveMatrixElement.y */ 1979 /** @domName SVGFEConvolveMatrixElement.y */
2098 SVGAnimatedLength get y native "SVGFEConvolveMatrixElement_y_Getter"; 1980 AnimatedLength get y native "SVGFEConvolveMatrixElement_y_Getter";
2099 1981
2100 1982
2101 /** @domName SVGFEConvolveMatrixElement.className */ 1983 /** @domName SVGFEConvolveMatrixElement.className */
2102 SVGAnimatedString get $dom_svgClassName native "SVGFEConvolveMatrixElement_cla ssName_Getter"; 1984 AnimatedString get $dom_svgClassName native "SVGFEConvolveMatrixElement_classN ame_Getter";
2103 1985
2104 1986
2105 /** @domName SVGFEConvolveMatrixElement.style */ 1987 /** @domName SVGFEConvolveMatrixElement.style */
2106 CSSStyleDeclaration get style native "SVGFEConvolveMatrixElement_style_Getter" ; 1988 CSSStyleDeclaration get style native "SVGFEConvolveMatrixElement_style_Getter" ;
2107 1989
2108 1990
2109 /** @domName SVGFEConvolveMatrixElement.getPresentationAttribute */ 1991 /** @domName SVGFEConvolveMatrixElement.getPresentationAttribute */
2110 CSSValue getPresentationAttribute(String name) native "SVGFEConvolveMatrixElem ent_getPresentationAttribute_Callback"; 1992 CSSValue getPresentationAttribute(String name) native "SVGFEConvolveMatrixElem ent_getPresentationAttribute_Callback";
2111 1993
2112 } 1994 }
2113 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1995 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2114 // for details. All rights reserved. Use of this source code is governed by a 1996 // for details. All rights reserved. Use of this source code is governed by a
2115 // BSD-style license that can be found in the LICENSE file. 1997 // BSD-style license that can be found in the LICENSE file.
2116 1998
2117 // WARNING: Do not edit - generated code. 1999 // WARNING: Do not edit - generated code.
2118 2000
2119 2001
2120 /// @domName SVGFEDiffuseLightingElement 2002 /// @domName SVGFEDiffuseLightingElement
2121 class SVGFEDiffuseLightingElement extends SVGElement implements SVGFilterPrimiti veStandardAttributes { 2003 class FeDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes {
2122 SVGFEDiffuseLightingElement.internal(): super.internal(); 2004 FeDiffuseLightingElement.internal(): super.internal();
2123 2005
2124 2006
2125 /** @domName SVGFEDiffuseLightingElement.diffuseConstant */ 2007 /** @domName SVGFEDiffuseLightingElement.diffuseConstant */
2126 SVGAnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diff useConstant_Getter"; 2008 AnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diffuse Constant_Getter";
2127 2009
2128 2010
2129 /** @domName SVGFEDiffuseLightingElement.in1 */ 2011 /** @domName SVGFEDiffuseLightingElement.in1 */
2130 SVGAnimatedString get in1 native "SVGFEDiffuseLightingElement_in1_Getter"; 2012 AnimatedString get in1 native "SVGFEDiffuseLightingElement_in1_Getter";
2131 2013
2132 2014
2133 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthX */ 2015 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthX */
2134 SVGAnimatedNumber get kernelUnitLengthX native "SVGFEDiffuseLightingElement_ke rnelUnitLengthX_Getter"; 2016 AnimatedNumber get kernelUnitLengthX native "SVGFEDiffuseLightingElement_kerne lUnitLengthX_Getter";
2135 2017
2136 2018
2137 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthY */ 2019 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthY */
2138 SVGAnimatedNumber get kernelUnitLengthY native "SVGFEDiffuseLightingElement_ke rnelUnitLengthY_Getter"; 2020 AnimatedNumber get kernelUnitLengthY native "SVGFEDiffuseLightingElement_kerne lUnitLengthY_Getter";
2139 2021
2140 2022
2141 /** @domName SVGFEDiffuseLightingElement.surfaceScale */ 2023 /** @domName SVGFEDiffuseLightingElement.surfaceScale */
2142 SVGAnimatedNumber get surfaceScale native "SVGFEDiffuseLightingElement_surface Scale_Getter"; 2024 AnimatedNumber get surfaceScale native "SVGFEDiffuseLightingElement_surfaceSca le_Getter";
2143 2025
2144 2026
2145 /** @domName SVGFEDiffuseLightingElement.height */ 2027 /** @domName SVGFEDiffuseLightingElement.height */
2146 SVGAnimatedLength get height native "SVGFEDiffuseLightingElement_height_Getter "; 2028 AnimatedLength get height native "SVGFEDiffuseLightingElement_height_Getter";
2147 2029
2148 2030
2149 /** @domName SVGFEDiffuseLightingElement.result */ 2031 /** @domName SVGFEDiffuseLightingElement.result */
2150 SVGAnimatedString get result native "SVGFEDiffuseLightingElement_result_Getter "; 2032 AnimatedString get result native "SVGFEDiffuseLightingElement_result_Getter";
2151 2033
2152 2034
2153 /** @domName SVGFEDiffuseLightingElement.width */ 2035 /** @domName SVGFEDiffuseLightingElement.width */
2154 SVGAnimatedLength get width native "SVGFEDiffuseLightingElement_width_Getter"; 2036 AnimatedLength get width native "SVGFEDiffuseLightingElement_width_Getter";
2155 2037
2156 2038
2157 /** @domName SVGFEDiffuseLightingElement.x */ 2039 /** @domName SVGFEDiffuseLightingElement.x */
2158 SVGAnimatedLength get x native "SVGFEDiffuseLightingElement_x_Getter"; 2040 AnimatedLength get x native "SVGFEDiffuseLightingElement_x_Getter";
2159 2041
2160 2042
2161 /** @domName SVGFEDiffuseLightingElement.y */ 2043 /** @domName SVGFEDiffuseLightingElement.y */
2162 SVGAnimatedLength get y native "SVGFEDiffuseLightingElement_y_Getter"; 2044 AnimatedLength get y native "SVGFEDiffuseLightingElement_y_Getter";
2163 2045
2164 2046
2165 /** @domName SVGFEDiffuseLightingElement.className */ 2047 /** @domName SVGFEDiffuseLightingElement.className */
2166 SVGAnimatedString get $dom_svgClassName native "SVGFEDiffuseLightingElement_cl assName_Getter"; 2048 AnimatedString get $dom_svgClassName native "SVGFEDiffuseLightingElement_class Name_Getter";
2167 2049
2168 2050
2169 /** @domName SVGFEDiffuseLightingElement.style */ 2051 /** @domName SVGFEDiffuseLightingElement.style */
2170 CSSStyleDeclaration get style native "SVGFEDiffuseLightingElement_style_Getter "; 2052 CSSStyleDeclaration get style native "SVGFEDiffuseLightingElement_style_Getter ";
2171 2053
2172 2054
2173 /** @domName SVGFEDiffuseLightingElement.getPresentationAttribute */ 2055 /** @domName SVGFEDiffuseLightingElement.getPresentationAttribute */
2174 CSSValue getPresentationAttribute(String name) native "SVGFEDiffuseLightingEle ment_getPresentationAttribute_Callback"; 2056 CSSValue getPresentationAttribute(String name) native "SVGFEDiffuseLightingEle ment_getPresentationAttribute_Callback";
2175 2057
2176 } 2058 }
2177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2178 // for details. All rights reserved. Use of this source code is governed by a 2060 // for details. All rights reserved. Use of this source code is governed by a
2179 // BSD-style license that can be found in the LICENSE file. 2061 // BSD-style license that can be found in the LICENSE file.
2180 2062
2181 // WARNING: Do not edit - generated code. 2063 // WARNING: Do not edit - generated code.
2182 2064
2183 2065
2184 /// @domName SVGFEDisplacementMapElement 2066 /// @domName SVGFEDisplacementMapElement
2185 class SVGFEDisplacementMapElement extends SVGElement implements SVGFilterPrimiti veStandardAttributes { 2067 class FeDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes {
2186 SVGFEDisplacementMapElement.internal(): super.internal(); 2068 FeDisplacementMapElement.internal(): super.internal();
2187 2069
2188 static const int SVG_CHANNEL_A = 4; 2070 static const int SVG_CHANNEL_A = 4;
2189 2071
2190 static const int SVG_CHANNEL_B = 3; 2072 static const int SVG_CHANNEL_B = 3;
2191 2073
2192 static const int SVG_CHANNEL_G = 2; 2074 static const int SVG_CHANNEL_G = 2;
2193 2075
2194 static const int SVG_CHANNEL_R = 1; 2076 static const int SVG_CHANNEL_R = 1;
2195 2077
2196 static const int SVG_CHANNEL_UNKNOWN = 0; 2078 static const int SVG_CHANNEL_UNKNOWN = 0;
2197 2079
2198 2080
2199 /** @domName SVGFEDisplacementMapElement.in1 */ 2081 /** @domName SVGFEDisplacementMapElement.in1 */
2200 SVGAnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter"; 2082 AnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter";
2201 2083
2202 2084
2203 /** @domName SVGFEDisplacementMapElement.in2 */ 2085 /** @domName SVGFEDisplacementMapElement.in2 */
2204 SVGAnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter"; 2086 AnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter";
2205 2087
2206 2088
2207 /** @domName SVGFEDisplacementMapElement.scale */ 2089 /** @domName SVGFEDisplacementMapElement.scale */
2208 SVGAnimatedNumber get scale native "SVGFEDisplacementMapElement_scale_Getter"; 2090 AnimatedNumber get scale native "SVGFEDisplacementMapElement_scale_Getter";
2209 2091
2210 2092
2211 /** @domName SVGFEDisplacementMapElement.xChannelSelector */ 2093 /** @domName SVGFEDisplacementMapElement.xChannelSelector */
2212 SVGAnimatedEnumeration get xChannelSelector native "SVGFEDisplacementMapElemen t_xChannelSelector_Getter"; 2094 AnimatedEnumeration get xChannelSelector native "SVGFEDisplacementMapElement_x ChannelSelector_Getter";
2213 2095
2214 2096
2215 /** @domName SVGFEDisplacementMapElement.yChannelSelector */ 2097 /** @domName SVGFEDisplacementMapElement.yChannelSelector */
2216 SVGAnimatedEnumeration get yChannelSelector native "SVGFEDisplacementMapElemen t_yChannelSelector_Getter"; 2098 AnimatedEnumeration get yChannelSelector native "SVGFEDisplacementMapElement_y ChannelSelector_Getter";
2217 2099
2218 2100
2219 /** @domName SVGFEDisplacementMapElement.height */ 2101 /** @domName SVGFEDisplacementMapElement.height */
2220 SVGAnimatedLength get height native "SVGFEDisplacementMapElement_height_Getter "; 2102 AnimatedLength get height native "SVGFEDisplacementMapElement_height_Getter";
2221 2103
2222 2104
2223 /** @domName SVGFEDisplacementMapElement.result */ 2105 /** @domName SVGFEDisplacementMapElement.result */
2224 SVGAnimatedString get result native "SVGFEDisplacementMapElement_result_Getter "; 2106 AnimatedString get result native "SVGFEDisplacementMapElement_result_Getter";
2225 2107
2226 2108
2227 /** @domName SVGFEDisplacementMapElement.width */ 2109 /** @domName SVGFEDisplacementMapElement.width */
2228 SVGAnimatedLength get width native "SVGFEDisplacementMapElement_width_Getter"; 2110 AnimatedLength get width native "SVGFEDisplacementMapElement_width_Getter";
2229 2111
2230 2112
2231 /** @domName SVGFEDisplacementMapElement.x */ 2113 /** @domName SVGFEDisplacementMapElement.x */
2232 SVGAnimatedLength get x native "SVGFEDisplacementMapElement_x_Getter"; 2114 AnimatedLength get x native "SVGFEDisplacementMapElement_x_Getter";
2233 2115
2234 2116
2235 /** @domName SVGFEDisplacementMapElement.y */ 2117 /** @domName SVGFEDisplacementMapElement.y */
2236 SVGAnimatedLength get y native "SVGFEDisplacementMapElement_y_Getter"; 2118 AnimatedLength get y native "SVGFEDisplacementMapElement_y_Getter";
2237 2119
2238 2120
2239 /** @domName SVGFEDisplacementMapElement.className */ 2121 /** @domName SVGFEDisplacementMapElement.className */
2240 SVGAnimatedString get $dom_svgClassName native "SVGFEDisplacementMapElement_cl assName_Getter"; 2122 AnimatedString get $dom_svgClassName native "SVGFEDisplacementMapElement_class Name_Getter";
2241 2123
2242 2124
2243 /** @domName SVGFEDisplacementMapElement.style */ 2125 /** @domName SVGFEDisplacementMapElement.style */
2244 CSSStyleDeclaration get style native "SVGFEDisplacementMapElement_style_Getter "; 2126 CSSStyleDeclaration get style native "SVGFEDisplacementMapElement_style_Getter ";
2245 2127
2246 2128
2247 /** @domName SVGFEDisplacementMapElement.getPresentationAttribute */ 2129 /** @domName SVGFEDisplacementMapElement.getPresentationAttribute */
2248 CSSValue getPresentationAttribute(String name) native "SVGFEDisplacementMapEle ment_getPresentationAttribute_Callback"; 2130 CSSValue getPresentationAttribute(String name) native "SVGFEDisplacementMapEle ment_getPresentationAttribute_Callback";
2249 2131
2250 } 2132 }
2251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2133 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2252 // for details. All rights reserved. Use of this source code is governed by a 2134 // for details. All rights reserved. Use of this source code is governed by a
2253 // BSD-style license that can be found in the LICENSE file. 2135 // BSD-style license that can be found in the LICENSE file.
2254 2136
2255 // WARNING: Do not edit - generated code. 2137 // WARNING: Do not edit - generated code.
2256 2138
2257 2139
2258 /// @domName SVGFEDistantLightElement 2140 /// @domName SVGFEDistantLightElement
2259 class SVGFEDistantLightElement extends SVGElement { 2141 class FeDistantLightElement extends SvgElement {
2260 SVGFEDistantLightElement.internal(): super.internal(); 2142 FeDistantLightElement.internal(): super.internal();
2261 2143
2262 2144
2263 /** @domName SVGFEDistantLightElement.azimuth */ 2145 /** @domName SVGFEDistantLightElement.azimuth */
2264 SVGAnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter" ; 2146 AnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter";
2265 2147
2266 2148
2267 /** @domName SVGFEDistantLightElement.elevation */ 2149 /** @domName SVGFEDistantLightElement.elevation */
2268 SVGAnimatedNumber get elevation native "SVGFEDistantLightElement_elevation_Get ter"; 2150 AnimatedNumber get elevation native "SVGFEDistantLightElement_elevation_Getter ";
2269 2151
2270 } 2152 }
2271 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2153 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2272 // for details. All rights reserved. Use of this source code is governed by a 2154 // for details. All rights reserved. Use of this source code is governed by a
2273 // BSD-style license that can be found in the LICENSE file. 2155 // BSD-style license that can be found in the LICENSE file.
2274 2156
2275 // WARNING: Do not edit - generated code. 2157 // WARNING: Do not edit - generated code.
2276 2158
2277 2159
2278 /// @domName SVGFEDropShadowElement 2160 /// @domName SVGFEDropShadowElement
2279 class SVGFEDropShadowElement extends SVGElement implements SVGFilterPrimitiveSta ndardAttributes { 2161 class FeDropShadowElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2280 SVGFEDropShadowElement.internal(): super.internal(); 2162 FeDropShadowElement.internal(): super.internal();
2281 2163
2282 2164
2283 /** @domName SVGFEDropShadowElement.dx */ 2165 /** @domName SVGFEDropShadowElement.dx */
2284 SVGAnimatedNumber get dx native "SVGFEDropShadowElement_dx_Getter"; 2166 AnimatedNumber get dx native "SVGFEDropShadowElement_dx_Getter";
2285 2167
2286 2168
2287 /** @domName SVGFEDropShadowElement.dy */ 2169 /** @domName SVGFEDropShadowElement.dy */
2288 SVGAnimatedNumber get dy native "SVGFEDropShadowElement_dy_Getter"; 2170 AnimatedNumber get dy native "SVGFEDropShadowElement_dy_Getter";
2289 2171
2290 2172
2291 /** @domName SVGFEDropShadowElement.in1 */ 2173 /** @domName SVGFEDropShadowElement.in1 */
2292 SVGAnimatedString get in1 native "SVGFEDropShadowElement_in1_Getter"; 2174 AnimatedString get in1 native "SVGFEDropShadowElement_in1_Getter";
2293 2175
2294 2176
2295 /** @domName SVGFEDropShadowElement.stdDeviationX */ 2177 /** @domName SVGFEDropShadowElement.stdDeviationX */
2296 SVGAnimatedNumber get stdDeviationX native "SVGFEDropShadowElement_stdDeviatio nX_Getter"; 2178 AnimatedNumber get stdDeviationX native "SVGFEDropShadowElement_stdDeviationX_ Getter";
2297 2179
2298 2180
2299 /** @domName SVGFEDropShadowElement.stdDeviationY */ 2181 /** @domName SVGFEDropShadowElement.stdDeviationY */
2300 SVGAnimatedNumber get stdDeviationY native "SVGFEDropShadowElement_stdDeviatio nY_Getter"; 2182 AnimatedNumber get stdDeviationY native "SVGFEDropShadowElement_stdDeviationY_ Getter";
2301 2183
2302 2184
2303 /** @domName SVGFEDropShadowElement.setStdDeviation */ 2185 /** @domName SVGFEDropShadowElement.setStdDeviation */
2304 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEDropSh adowElement_setStdDeviation_Callback"; 2186 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEDropSh adowElement_setStdDeviation_Callback";
2305 2187
2306 2188
2307 /** @domName SVGFEDropShadowElement.height */ 2189 /** @domName SVGFEDropShadowElement.height */
2308 SVGAnimatedLength get height native "SVGFEDropShadowElement_height_Getter"; 2190 AnimatedLength get height native "SVGFEDropShadowElement_height_Getter";
2309 2191
2310 2192
2311 /** @domName SVGFEDropShadowElement.result */ 2193 /** @domName SVGFEDropShadowElement.result */
2312 SVGAnimatedString get result native "SVGFEDropShadowElement_result_Getter"; 2194 AnimatedString get result native "SVGFEDropShadowElement_result_Getter";
2313 2195
2314 2196
2315 /** @domName SVGFEDropShadowElement.width */ 2197 /** @domName SVGFEDropShadowElement.width */
2316 SVGAnimatedLength get width native "SVGFEDropShadowElement_width_Getter"; 2198 AnimatedLength get width native "SVGFEDropShadowElement_width_Getter";
2317 2199
2318 2200
2319 /** @domName SVGFEDropShadowElement.x */ 2201 /** @domName SVGFEDropShadowElement.x */
2320 SVGAnimatedLength get x native "SVGFEDropShadowElement_x_Getter"; 2202 AnimatedLength get x native "SVGFEDropShadowElement_x_Getter";
2321 2203
2322 2204
2323 /** @domName SVGFEDropShadowElement.y */ 2205 /** @domName SVGFEDropShadowElement.y */
2324 SVGAnimatedLength get y native "SVGFEDropShadowElement_y_Getter"; 2206 AnimatedLength get y native "SVGFEDropShadowElement_y_Getter";
2325 2207
2326 2208
2327 /** @domName SVGFEDropShadowElement.className */ 2209 /** @domName SVGFEDropShadowElement.className */
2328 SVGAnimatedString get $dom_svgClassName native "SVGFEDropShadowElement_classNa me_Getter"; 2210 AnimatedString get $dom_svgClassName native "SVGFEDropShadowElement_className_ Getter";
2329 2211
2330 2212
2331 /** @domName SVGFEDropShadowElement.style */ 2213 /** @domName SVGFEDropShadowElement.style */
2332 CSSStyleDeclaration get style native "SVGFEDropShadowElement_style_Getter"; 2214 CSSStyleDeclaration get style native "SVGFEDropShadowElement_style_Getter";
2333 2215
2334 2216
2335 /** @domName SVGFEDropShadowElement.getPresentationAttribute */ 2217 /** @domName SVGFEDropShadowElement.getPresentationAttribute */
2336 CSSValue getPresentationAttribute(String name) native "SVGFEDropShadowElement_ getPresentationAttribute_Callback"; 2218 CSSValue getPresentationAttribute(String name) native "SVGFEDropShadowElement_ getPresentationAttribute_Callback";
2337 2219
2338 } 2220 }
2339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2221 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2340 // for details. All rights reserved. Use of this source code is governed by a 2222 // for details. All rights reserved. Use of this source code is governed by a
2341 // BSD-style license that can be found in the LICENSE file. 2223 // BSD-style license that can be found in the LICENSE file.
2342 2224
2343 // WARNING: Do not edit - generated code. 2225 // WARNING: Do not edit - generated code.
2344 2226
2345 2227
2346 /// @domName SVGFEFloodElement 2228 /// @domName SVGFEFloodElement
2347 class SVGFEFloodElement extends SVGElement implements SVGFilterPrimitiveStandard Attributes { 2229 class FeFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
2348 SVGFEFloodElement.internal(): super.internal(); 2230 FeFloodElement.internal(): super.internal();
2349 2231
2350 2232
2351 /** @domName SVGFEFloodElement.height */ 2233 /** @domName SVGFEFloodElement.height */
2352 SVGAnimatedLength get height native "SVGFEFloodElement_height_Getter"; 2234 AnimatedLength get height native "SVGFEFloodElement_height_Getter";
2353 2235
2354 2236
2355 /** @domName SVGFEFloodElement.result */ 2237 /** @domName SVGFEFloodElement.result */
2356 SVGAnimatedString get result native "SVGFEFloodElement_result_Getter"; 2238 AnimatedString get result native "SVGFEFloodElement_result_Getter";
2357 2239
2358 2240
2359 /** @domName SVGFEFloodElement.width */ 2241 /** @domName SVGFEFloodElement.width */
2360 SVGAnimatedLength get width native "SVGFEFloodElement_width_Getter"; 2242 AnimatedLength get width native "SVGFEFloodElement_width_Getter";
2361 2243
2362 2244
2363 /** @domName SVGFEFloodElement.x */ 2245 /** @domName SVGFEFloodElement.x */
2364 SVGAnimatedLength get x native "SVGFEFloodElement_x_Getter"; 2246 AnimatedLength get x native "SVGFEFloodElement_x_Getter";
2365 2247
2366 2248
2367 /** @domName SVGFEFloodElement.y */ 2249 /** @domName SVGFEFloodElement.y */
2368 SVGAnimatedLength get y native "SVGFEFloodElement_y_Getter"; 2250 AnimatedLength get y native "SVGFEFloodElement_y_Getter";
2369 2251
2370 2252
2371 /** @domName SVGFEFloodElement.className */ 2253 /** @domName SVGFEFloodElement.className */
2372 SVGAnimatedString get $dom_svgClassName native "SVGFEFloodElement_className_Ge tter"; 2254 AnimatedString get $dom_svgClassName native "SVGFEFloodElement_className_Gette r";
2373 2255
2374 2256
2375 /** @domName SVGFEFloodElement.style */ 2257 /** @domName SVGFEFloodElement.style */
2376 CSSStyleDeclaration get style native "SVGFEFloodElement_style_Getter"; 2258 CSSStyleDeclaration get style native "SVGFEFloodElement_style_Getter";
2377 2259
2378 2260
2379 /** @domName SVGFEFloodElement.getPresentationAttribute */ 2261 /** @domName SVGFEFloodElement.getPresentationAttribute */
2380 CSSValue getPresentationAttribute(String name) native "SVGFEFloodElement_getPr esentationAttribute_Callback"; 2262 CSSValue getPresentationAttribute(String name) native "SVGFEFloodElement_getPr esentationAttribute_Callback";
2381 2263
2382 } 2264 }
2383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2265 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2384 // for details. All rights reserved. Use of this source code is governed by a 2266 // for details. All rights reserved. Use of this source code is governed by a
2385 // BSD-style license that can be found in the LICENSE file. 2267 // BSD-style license that can be found in the LICENSE file.
2386 2268
2387 // WARNING: Do not edit - generated code. 2269 // WARNING: Do not edit - generated code.
2388 2270
2389 2271
2390 /// @domName SVGFEFuncAElement 2272 /// @domName SVGFEFuncAElement
2391 class SVGFEFuncAElement extends SVGComponentTransferFunctionElement { 2273 class FeFuncAElement extends ComponentTransferFunctionElement {
2392 SVGFEFuncAElement.internal(): super.internal(); 2274 FeFuncAElement.internal(): super.internal();
2393 2275
2394 } 2276 }
2395 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2277 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2396 // for details. All rights reserved. Use of this source code is governed by a 2278 // for details. All rights reserved. Use of this source code is governed by a
2397 // BSD-style license that can be found in the LICENSE file. 2279 // BSD-style license that can be found in the LICENSE file.
2398 2280
2399 // WARNING: Do not edit - generated code. 2281 // WARNING: Do not edit - generated code.
2400 2282
2401 2283
2402 /// @domName SVGFEFuncBElement 2284 /// @domName SVGFEFuncBElement
2403 class SVGFEFuncBElement extends SVGComponentTransferFunctionElement { 2285 class FeFuncBElement extends ComponentTransferFunctionElement {
2404 SVGFEFuncBElement.internal(): super.internal(); 2286 FeFuncBElement.internal(): super.internal();
2405 2287
2406 } 2288 }
2407 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2408 // for details. All rights reserved. Use of this source code is governed by a 2290 // for details. All rights reserved. Use of this source code is governed by a
2409 // BSD-style license that can be found in the LICENSE file. 2291 // BSD-style license that can be found in the LICENSE file.
2410 2292
2411 // WARNING: Do not edit - generated code. 2293 // WARNING: Do not edit - generated code.
2412 2294
2413 2295
2414 /// @domName SVGFEFuncGElement 2296 /// @domName SVGFEFuncGElement
2415 class SVGFEFuncGElement extends SVGComponentTransferFunctionElement { 2297 class FeFuncGElement extends ComponentTransferFunctionElement {
2416 SVGFEFuncGElement.internal(): super.internal(); 2298 FeFuncGElement.internal(): super.internal();
2417 2299
2418 } 2300 }
2419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2301 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2420 // for details. All rights reserved. Use of this source code is governed by a 2302 // for details. All rights reserved. Use of this source code is governed by a
2421 // BSD-style license that can be found in the LICENSE file. 2303 // BSD-style license that can be found in the LICENSE file.
2422 2304
2423 // WARNING: Do not edit - generated code. 2305 // WARNING: Do not edit - generated code.
2424 2306
2425 2307
2426 /// @domName SVGFEFuncRElement 2308 /// @domName SVGFEFuncRElement
2427 class SVGFEFuncRElement extends SVGComponentTransferFunctionElement { 2309 class FeFuncRElement extends ComponentTransferFunctionElement {
2428 SVGFEFuncRElement.internal(): super.internal(); 2310 FeFuncRElement.internal(): super.internal();
2429 2311
2430 } 2312 }
2431 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2432 // for details. All rights reserved. Use of this source code is governed by a 2314 // for details. All rights reserved. Use of this source code is governed by a
2433 // BSD-style license that can be found in the LICENSE file. 2315 // BSD-style license that can be found in the LICENSE file.
2434 2316
2435 // WARNING: Do not edit - generated code. 2317 // WARNING: Do not edit - generated code.
2436 2318
2437 2319
2438 /// @domName SVGFEGaussianBlurElement 2320 /// @domName SVGFEGaussianBlurElement
2439 class SVGFEGaussianBlurElement extends SVGElement implements SVGFilterPrimitiveS tandardAttributes { 2321 class FeGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes {
2440 SVGFEGaussianBlurElement.internal(): super.internal(); 2322 FeGaussianBlurElement.internal(): super.internal();
2441 2323
2442 2324
2443 /** @domName SVGFEGaussianBlurElement.in1 */ 2325 /** @domName SVGFEGaussianBlurElement.in1 */
2444 SVGAnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter"; 2326 AnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter";
2445 2327
2446 2328
2447 /** @domName SVGFEGaussianBlurElement.stdDeviationX */ 2329 /** @domName SVGFEGaussianBlurElement.stdDeviationX */
2448 SVGAnimatedNumber get stdDeviationX native "SVGFEGaussianBlurElement_stdDeviat ionX_Getter"; 2330 AnimatedNumber get stdDeviationX native "SVGFEGaussianBlurElement_stdDeviation X_Getter";
2449 2331
2450 2332
2451 /** @domName SVGFEGaussianBlurElement.stdDeviationY */ 2333 /** @domName SVGFEGaussianBlurElement.stdDeviationY */
2452 SVGAnimatedNumber get stdDeviationY native "SVGFEGaussianBlurElement_stdDeviat ionY_Getter"; 2334 AnimatedNumber get stdDeviationY native "SVGFEGaussianBlurElement_stdDeviation Y_Getter";
2453 2335
2454 2336
2455 /** @domName SVGFEGaussianBlurElement.setStdDeviation */ 2337 /** @domName SVGFEGaussianBlurElement.setStdDeviation */
2456 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussi anBlurElement_setStdDeviation_Callback"; 2338 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussi anBlurElement_setStdDeviation_Callback";
2457 2339
2458 2340
2459 /** @domName SVGFEGaussianBlurElement.height */ 2341 /** @domName SVGFEGaussianBlurElement.height */
2460 SVGAnimatedLength get height native "SVGFEGaussianBlurElement_height_Getter"; 2342 AnimatedLength get height native "SVGFEGaussianBlurElement_height_Getter";
2461 2343
2462 2344
2463 /** @domName SVGFEGaussianBlurElement.result */ 2345 /** @domName SVGFEGaussianBlurElement.result */
2464 SVGAnimatedString get result native "SVGFEGaussianBlurElement_result_Getter"; 2346 AnimatedString get result native "SVGFEGaussianBlurElement_result_Getter";
2465 2347
2466 2348
2467 /** @domName SVGFEGaussianBlurElement.width */ 2349 /** @domName SVGFEGaussianBlurElement.width */
2468 SVGAnimatedLength get width native "SVGFEGaussianBlurElement_width_Getter"; 2350 AnimatedLength get width native "SVGFEGaussianBlurElement_width_Getter";
2469 2351
2470 2352
2471 /** @domName SVGFEGaussianBlurElement.x */ 2353 /** @domName SVGFEGaussianBlurElement.x */
2472 SVGAnimatedLength get x native "SVGFEGaussianBlurElement_x_Getter"; 2354 AnimatedLength get x native "SVGFEGaussianBlurElement_x_Getter";
2473 2355
2474 2356
2475 /** @domName SVGFEGaussianBlurElement.y */ 2357 /** @domName SVGFEGaussianBlurElement.y */
2476 SVGAnimatedLength get y native "SVGFEGaussianBlurElement_y_Getter"; 2358 AnimatedLength get y native "SVGFEGaussianBlurElement_y_Getter";
2477 2359
2478 2360
2479 /** @domName SVGFEGaussianBlurElement.className */ 2361 /** @domName SVGFEGaussianBlurElement.className */
2480 SVGAnimatedString get $dom_svgClassName native "SVGFEGaussianBlurElement_class Name_Getter"; 2362 AnimatedString get $dom_svgClassName native "SVGFEGaussianBlurElement_classNam e_Getter";
2481 2363
2482 2364
2483 /** @domName SVGFEGaussianBlurElement.style */ 2365 /** @domName SVGFEGaussianBlurElement.style */
2484 CSSStyleDeclaration get style native "SVGFEGaussianBlurElement_style_Getter"; 2366 CSSStyleDeclaration get style native "SVGFEGaussianBlurElement_style_Getter";
2485 2367
2486 2368
2487 /** @domName SVGFEGaussianBlurElement.getPresentationAttribute */ 2369 /** @domName SVGFEGaussianBlurElement.getPresentationAttribute */
2488 CSSValue getPresentationAttribute(String name) native "SVGFEGaussianBlurElemen t_getPresentationAttribute_Callback"; 2370 CSSValue getPresentationAttribute(String name) native "SVGFEGaussianBlurElemen t_getPresentationAttribute_Callback";
2489 2371
2490 } 2372 }
2491 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2373 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2492 // for details. All rights reserved. Use of this source code is governed by a 2374 // for details. All rights reserved. Use of this source code is governed by a
2493 // BSD-style license that can be found in the LICENSE file. 2375 // BSD-style license that can be found in the LICENSE file.
2494 2376
2495 // WARNING: Do not edit - generated code. 2377 // WARNING: Do not edit - generated code.
2496 2378
2497 2379
2498 /// @domName SVGFEImageElement 2380 /// @domName SVGFEImageElement
2499 class SVGFEImageElement extends SVGElement implements SVGURIReference, SVGLangSp ace, SVGFilterPrimitiveStandardAttributes, SVGExternalResourcesRequired { 2381 class FeImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired, LangSpace {
2500 SVGFEImageElement.internal(): super.internal(); 2382 FeImageElement.internal(): super.internal();
2501 2383
2502 2384
2503 /** @domName SVGFEImageElement.preserveAspectRatio */ 2385 /** @domName SVGFEImageElement.preserveAspectRatio */
2504 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageEleme nt_preserveAspectRatio_Getter"; 2386 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageElement_ preserveAspectRatio_Getter";
2505 2387
2506 2388
2507 /** @domName SVGFEImageElement.externalResourcesRequired */ 2389 /** @domName SVGFEImageElement.externalResourcesRequired */
2508 SVGAnimatedBoolean get externalResourcesRequired native "SVGFEImageElement_ext ernalResourcesRequired_Getter"; 2390 AnimatedBoolean get externalResourcesRequired native "SVGFEImageElement_extern alResourcesRequired_Getter";
2509 2391
2510 2392
2511 /** @domName SVGFEImageElement.height */ 2393 /** @domName SVGFEImageElement.height */
2512 SVGAnimatedLength get height native "SVGFEImageElement_height_Getter"; 2394 AnimatedLength get height native "SVGFEImageElement_height_Getter";
2513 2395
2514 2396
2515 /** @domName SVGFEImageElement.result */ 2397 /** @domName SVGFEImageElement.result */
2516 SVGAnimatedString get result native "SVGFEImageElement_result_Getter"; 2398 AnimatedString get result native "SVGFEImageElement_result_Getter";
2517 2399
2518 2400
2519 /** @domName SVGFEImageElement.width */ 2401 /** @domName SVGFEImageElement.width */
2520 SVGAnimatedLength get width native "SVGFEImageElement_width_Getter"; 2402 AnimatedLength get width native "SVGFEImageElement_width_Getter";
2521 2403
2522 2404
2523 /** @domName SVGFEImageElement.x */ 2405 /** @domName SVGFEImageElement.x */
2524 SVGAnimatedLength get x native "SVGFEImageElement_x_Getter"; 2406 AnimatedLength get x native "SVGFEImageElement_x_Getter";
2525 2407
2526 2408
2527 /** @domName SVGFEImageElement.y */ 2409 /** @domName SVGFEImageElement.y */
2528 SVGAnimatedLength get y native "SVGFEImageElement_y_Getter"; 2410 AnimatedLength get y native "SVGFEImageElement_y_Getter";
2529 2411
2530 2412
2531 /** @domName SVGFEImageElement.xmllang */ 2413 /** @domName SVGFEImageElement.xmllang */
2532 String get xmllang native "SVGFEImageElement_xmllang_Getter"; 2414 String get xmllang native "SVGFEImageElement_xmllang_Getter";
2533 2415
2534 2416
2535 /** @domName SVGFEImageElement.xmllang */ 2417 /** @domName SVGFEImageElement.xmllang */
2536 void set xmllang(String value) native "SVGFEImageElement_xmllang_Setter"; 2418 void set xmllang(String value) native "SVGFEImageElement_xmllang_Setter";
2537 2419
2538 2420
2539 /** @domName SVGFEImageElement.xmlspace */ 2421 /** @domName SVGFEImageElement.xmlspace */
2540 String get xmlspace native "SVGFEImageElement_xmlspace_Getter"; 2422 String get xmlspace native "SVGFEImageElement_xmlspace_Getter";
2541 2423
2542 2424
2543 /** @domName SVGFEImageElement.xmlspace */ 2425 /** @domName SVGFEImageElement.xmlspace */
2544 void set xmlspace(String value) native "SVGFEImageElement_xmlspace_Setter"; 2426 void set xmlspace(String value) native "SVGFEImageElement_xmlspace_Setter";
2545 2427
2546 2428
2547 /** @domName SVGFEImageElement.className */ 2429 /** @domName SVGFEImageElement.className */
2548 SVGAnimatedString get $dom_svgClassName native "SVGFEImageElement_className_Ge tter"; 2430 AnimatedString get $dom_svgClassName native "SVGFEImageElement_className_Gette r";
2549 2431
2550 2432
2551 /** @domName SVGFEImageElement.style */ 2433 /** @domName SVGFEImageElement.style */
2552 CSSStyleDeclaration get style native "SVGFEImageElement_style_Getter"; 2434 CSSStyleDeclaration get style native "SVGFEImageElement_style_Getter";
2553 2435
2554 2436
2555 /** @domName SVGFEImageElement.getPresentationAttribute */ 2437 /** @domName SVGFEImageElement.getPresentationAttribute */
2556 CSSValue getPresentationAttribute(String name) native "SVGFEImageElement_getPr esentationAttribute_Callback"; 2438 CSSValue getPresentationAttribute(String name) native "SVGFEImageElement_getPr esentationAttribute_Callback";
2557 2439
2558 2440
2559 /** @domName SVGFEImageElement.href */ 2441 /** @domName SVGFEImageElement.href */
2560 SVGAnimatedString get href native "SVGFEImageElement_href_Getter"; 2442 AnimatedString get href native "SVGFEImageElement_href_Getter";
2561 2443
2562 } 2444 }
2563 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2564 // for details. All rights reserved. Use of this source code is governed by a 2446 // for details. All rights reserved. Use of this source code is governed by a
2565 // BSD-style license that can be found in the LICENSE file. 2447 // BSD-style license that can be found in the LICENSE file.
2566 2448
2567 // WARNING: Do not edit - generated code. 2449 // WARNING: Do not edit - generated code.
2568 2450
2569 2451
2570 /// @domName SVGFEMergeElement 2452 /// @domName SVGFEMergeElement
2571 class SVGFEMergeElement extends SVGElement implements SVGFilterPrimitiveStandard Attributes { 2453 class FeMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes {
2572 SVGFEMergeElement.internal(): super.internal(); 2454 FeMergeElement.internal(): super.internal();
2573 2455
2574 2456
2575 /** @domName SVGFEMergeElement.height */ 2457 /** @domName SVGFEMergeElement.height */
2576 SVGAnimatedLength get height native "SVGFEMergeElement_height_Getter"; 2458 AnimatedLength get height native "SVGFEMergeElement_height_Getter";
2577 2459
2578 2460
2579 /** @domName SVGFEMergeElement.result */ 2461 /** @domName SVGFEMergeElement.result */
2580 SVGAnimatedString get result native "SVGFEMergeElement_result_Getter"; 2462 AnimatedString get result native "SVGFEMergeElement_result_Getter";
2581 2463
2582 2464
2583 /** @domName SVGFEMergeElement.width */ 2465 /** @domName SVGFEMergeElement.width */
2584 SVGAnimatedLength get width native "SVGFEMergeElement_width_Getter"; 2466 AnimatedLength get width native "SVGFEMergeElement_width_Getter";
2585 2467
2586 2468
2587 /** @domName SVGFEMergeElement.x */ 2469 /** @domName SVGFEMergeElement.x */
2588 SVGAnimatedLength get x native "SVGFEMergeElement_x_Getter"; 2470 AnimatedLength get x native "SVGFEMergeElement_x_Getter";
2589 2471
2590 2472
2591 /** @domName SVGFEMergeElement.y */ 2473 /** @domName SVGFEMergeElement.y */
2592 SVGAnimatedLength get y native "SVGFEMergeElement_y_Getter"; 2474 AnimatedLength get y native "SVGFEMergeElement_y_Getter";
2593 2475
2594 2476
2595 /** @domName SVGFEMergeElement.className */ 2477 /** @domName SVGFEMergeElement.className */
2596 SVGAnimatedString get $dom_svgClassName native "SVGFEMergeElement_className_Ge tter"; 2478 AnimatedString get $dom_svgClassName native "SVGFEMergeElement_className_Gette r";
2597 2479
2598 2480
2599 /** @domName SVGFEMergeElement.style */ 2481 /** @domName SVGFEMergeElement.style */
2600 CSSStyleDeclaration get style native "SVGFEMergeElement_style_Getter"; 2482 CSSStyleDeclaration get style native "SVGFEMergeElement_style_Getter";
2601 2483
2602 2484
2603 /** @domName SVGFEMergeElement.getPresentationAttribute */ 2485 /** @domName SVGFEMergeElement.getPresentationAttribute */
2604 CSSValue getPresentationAttribute(String name) native "SVGFEMergeElement_getPr esentationAttribute_Callback"; 2486 CSSValue getPresentationAttribute(String name) native "SVGFEMergeElement_getPr esentationAttribute_Callback";
2605 2487
2606 } 2488 }
2607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2489 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2608 // for details. All rights reserved. Use of this source code is governed by a 2490 // for details. All rights reserved. Use of this source code is governed by a
2609 // BSD-style license that can be found in the LICENSE file. 2491 // BSD-style license that can be found in the LICENSE file.
2610 2492
2611 // WARNING: Do not edit - generated code. 2493 // WARNING: Do not edit - generated code.
2612 2494
2613 2495
2614 /// @domName SVGFEMergeNodeElement 2496 /// @domName SVGFEMergeNodeElement
2615 class SVGFEMergeNodeElement extends SVGElement { 2497 class FeMergeNodeElement extends SvgElement {
2616 SVGFEMergeNodeElement.internal(): super.internal(); 2498 FeMergeNodeElement.internal(): super.internal();
2617 2499
2618 2500
2619 /** @domName SVGFEMergeNodeElement.in1 */ 2501 /** @domName SVGFEMergeNodeElement.in1 */
2620 SVGAnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter"; 2502 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter";
2621 2503
2622 } 2504 }
2623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2624 // for details. All rights reserved. Use of this source code is governed by a 2506 // for details. All rights reserved. Use of this source code is governed by a
2625 // BSD-style license that can be found in the LICENSE file. 2507 // BSD-style license that can be found in the LICENSE file.
2626 2508
2627 // WARNING: Do not edit - generated code. 2509 // WARNING: Do not edit - generated code.
2628 2510
2629 2511
2630 /// @domName SVGFEMorphologyElement 2512 /// @domName SVGFEMorphologyElement
2631 class SVGFEMorphologyElement extends SVGElement implements SVGFilterPrimitiveSta ndardAttributes { 2513 class FeMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2632 SVGFEMorphologyElement.internal(): super.internal(); 2514 FeMorphologyElement.internal(): super.internal();
2633 2515
2634 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2516 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2635 2517
2636 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2518 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2637 2519
2638 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2520 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2639 2521
2640 2522
2641 /** @domName SVGFEMorphologyElement.in1 */ 2523 /** @domName SVGFEMorphologyElement.in1 */
2642 SVGAnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter"; 2524 AnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter";
2643 2525
2644 2526
2645 /** @domName SVGFEMorphologyElement.operator */ 2527 /** @domName SVGFEMorphologyElement.operator */
2646 SVGAnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Ge tter"; 2528 AnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Gette r";
2647 2529
2648 2530
2649 /** @domName SVGFEMorphologyElement.radiusX */ 2531 /** @domName SVGFEMorphologyElement.radiusX */
2650 SVGAnimatedNumber get radiusX native "SVGFEMorphologyElement_radiusX_Getter"; 2532 AnimatedNumber get radiusX native "SVGFEMorphologyElement_radiusX_Getter";
2651 2533
2652 2534
2653 /** @domName SVGFEMorphologyElement.radiusY */ 2535 /** @domName SVGFEMorphologyElement.radiusY */
2654 SVGAnimatedNumber get radiusY native "SVGFEMorphologyElement_radiusY_Getter"; 2536 AnimatedNumber get radiusY native "SVGFEMorphologyElement_radiusY_Getter";
2655 2537
2656 2538
2657 /** @domName SVGFEMorphologyElement.setRadius */ 2539 /** @domName SVGFEMorphologyElement.setRadius */
2658 void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRad ius_Callback"; 2540 void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRad ius_Callback";
2659 2541
2660 2542
2661 /** @domName SVGFEMorphologyElement.height */ 2543 /** @domName SVGFEMorphologyElement.height */
2662 SVGAnimatedLength get height native "SVGFEMorphologyElement_height_Getter"; 2544 AnimatedLength get height native "SVGFEMorphologyElement_height_Getter";
2663 2545
2664 2546
2665 /** @domName SVGFEMorphologyElement.result */ 2547 /** @domName SVGFEMorphologyElement.result */
2666 SVGAnimatedString get result native "SVGFEMorphologyElement_result_Getter"; 2548 AnimatedString get result native "SVGFEMorphologyElement_result_Getter";
2667 2549
2668 2550
2669 /** @domName SVGFEMorphologyElement.width */ 2551 /** @domName SVGFEMorphologyElement.width */
2670 SVGAnimatedLength get width native "SVGFEMorphologyElement_width_Getter"; 2552 AnimatedLength get width native "SVGFEMorphologyElement_width_Getter";
2671 2553
2672 2554
2673 /** @domName SVGFEMorphologyElement.x */ 2555 /** @domName SVGFEMorphologyElement.x */
2674 SVGAnimatedLength get x native "SVGFEMorphologyElement_x_Getter"; 2556 AnimatedLength get x native "SVGFEMorphologyElement_x_Getter";
2675 2557
2676 2558
2677 /** @domName SVGFEMorphologyElement.y */ 2559 /** @domName SVGFEMorphologyElement.y */
2678 SVGAnimatedLength get y native "SVGFEMorphologyElement_y_Getter"; 2560 AnimatedLength get y native "SVGFEMorphologyElement_y_Getter";
2679 2561
2680 2562
2681 /** @domName SVGFEMorphologyElement.className */ 2563 /** @domName SVGFEMorphologyElement.className */
2682 SVGAnimatedString get $dom_svgClassName native "SVGFEMorphologyElement_classNa me_Getter"; 2564 AnimatedString get $dom_svgClassName native "SVGFEMorphologyElement_className_ Getter";
2683 2565
2684 2566
2685 /** @domName SVGFEMorphologyElement.style */ 2567 /** @domName SVGFEMorphologyElement.style */
2686 CSSStyleDeclaration get style native "SVGFEMorphologyElement_style_Getter"; 2568 CSSStyleDeclaration get style native "SVGFEMorphologyElement_style_Getter";
2687 2569
2688 2570
2689 /** @domName SVGFEMorphologyElement.getPresentationAttribute */ 2571 /** @domName SVGFEMorphologyElement.getPresentationAttribute */
2690 CSSValue getPresentationAttribute(String name) native "SVGFEMorphologyElement_ getPresentationAttribute_Callback"; 2572 CSSValue getPresentationAttribute(String name) native "SVGFEMorphologyElement_ getPresentationAttribute_Callback";
2691 2573
2692 } 2574 }
2693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2694 // for details. All rights reserved. Use of this source code is governed by a 2576 // for details. All rights reserved. Use of this source code is governed by a
2695 // BSD-style license that can be found in the LICENSE file. 2577 // BSD-style license that can be found in the LICENSE file.
2696 2578
2697 // WARNING: Do not edit - generated code. 2579 // WARNING: Do not edit - generated code.
2698 2580
2699 2581
2700 /// @domName SVGFEOffsetElement 2582 /// @domName SVGFEOffsetElement
2701 class SVGFEOffsetElement extends SVGElement implements SVGFilterPrimitiveStandar dAttributes { 2583 class FeOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes {
2702 SVGFEOffsetElement.internal(): super.internal(); 2584 FeOffsetElement.internal(): super.internal();
2703 2585
2704 2586
2705 /** @domName SVGFEOffsetElement.dx */ 2587 /** @domName SVGFEOffsetElement.dx */
2706 SVGAnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter"; 2588 AnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter";
2707 2589
2708 2590
2709 /** @domName SVGFEOffsetElement.dy */ 2591 /** @domName SVGFEOffsetElement.dy */
2710 SVGAnimatedNumber get dy native "SVGFEOffsetElement_dy_Getter"; 2592 AnimatedNumber get dy native "SVGFEOffsetElement_dy_Getter";
2711 2593
2712 2594
2713 /** @domName SVGFEOffsetElement.in1 */ 2595 /** @domName SVGFEOffsetElement.in1 */
2714 SVGAnimatedString get in1 native "SVGFEOffsetElement_in1_Getter"; 2596 AnimatedString get in1 native "SVGFEOffsetElement_in1_Getter";
2715 2597
2716 2598
2717 /** @domName SVGFEOffsetElement.height */ 2599 /** @domName SVGFEOffsetElement.height */
2718 SVGAnimatedLength get height native "SVGFEOffsetElement_height_Getter"; 2600 AnimatedLength get height native "SVGFEOffsetElement_height_Getter";
2719 2601
2720 2602
2721 /** @domName SVGFEOffsetElement.result */ 2603 /** @domName SVGFEOffsetElement.result */
2722 SVGAnimatedString get result native "SVGFEOffsetElement_result_Getter"; 2604 AnimatedString get result native "SVGFEOffsetElement_result_Getter";
2723 2605
2724 2606
2725 /** @domName SVGFEOffsetElement.width */ 2607 /** @domName SVGFEOffsetElement.width */
2726 SVGAnimatedLength get width native "SVGFEOffsetElement_width_Getter"; 2608 AnimatedLength get width native "SVGFEOffsetElement_width_Getter";
2727 2609
2728 2610
2729 /** @domName SVGFEOffsetElement.x */ 2611 /** @domName SVGFEOffsetElement.x */
2730 SVGAnimatedLength get x native "SVGFEOffsetElement_x_Getter"; 2612 AnimatedLength get x native "SVGFEOffsetElement_x_Getter";
2731 2613
2732 2614
2733 /** @domName SVGFEOffsetElement.y */ 2615 /** @domName SVGFEOffsetElement.y */
2734 SVGAnimatedLength get y native "SVGFEOffsetElement_y_Getter"; 2616 AnimatedLength get y native "SVGFEOffsetElement_y_Getter";
2735 2617
2736 2618
2737 /** @domName SVGFEOffsetElement.className */ 2619 /** @domName SVGFEOffsetElement.className */
2738 SVGAnimatedString get $dom_svgClassName native "SVGFEOffsetElement_className_G etter"; 2620 AnimatedString get $dom_svgClassName native "SVGFEOffsetElement_className_Gett er";
2739 2621
2740 2622
2741 /** @domName SVGFEOffsetElement.style */ 2623 /** @domName SVGFEOffsetElement.style */
2742 CSSStyleDeclaration get style native "SVGFEOffsetElement_style_Getter"; 2624 CSSStyleDeclaration get style native "SVGFEOffsetElement_style_Getter";
2743 2625
2744 2626
2745 /** @domName SVGFEOffsetElement.getPresentationAttribute */ 2627 /** @domName SVGFEOffsetElement.getPresentationAttribute */
2746 CSSValue getPresentationAttribute(String name) native "SVGFEOffsetElement_getP resentationAttribute_Callback"; 2628 CSSValue getPresentationAttribute(String name) native "SVGFEOffsetElement_getP resentationAttribute_Callback";
2747 2629
2748 } 2630 }
2749 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2631 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2750 // for details. All rights reserved. Use of this source code is governed by a 2632 // for details. All rights reserved. Use of this source code is governed by a
2751 // BSD-style license that can be found in the LICENSE file. 2633 // BSD-style license that can be found in the LICENSE file.
2752 2634
2753 // WARNING: Do not edit - generated code. 2635 // WARNING: Do not edit - generated code.
2754 2636
2755 2637
2756 /// @domName SVGFEPointLightElement 2638 /// @domName SVGFEPointLightElement
2757 class SVGFEPointLightElement extends SVGElement { 2639 class FePointLightElement extends SvgElement {
2758 SVGFEPointLightElement.internal(): super.internal(); 2640 FePointLightElement.internal(): super.internal();
2759 2641
2760 2642
2761 /** @domName SVGFEPointLightElement.x */ 2643 /** @domName SVGFEPointLightElement.x */
2762 SVGAnimatedNumber get x native "SVGFEPointLightElement_x_Getter"; 2644 AnimatedNumber get x native "SVGFEPointLightElement_x_Getter";
2763 2645
2764 2646
2765 /** @domName SVGFEPointLightElement.y */ 2647 /** @domName SVGFEPointLightElement.y */
2766 SVGAnimatedNumber get y native "SVGFEPointLightElement_y_Getter"; 2648 AnimatedNumber get y native "SVGFEPointLightElement_y_Getter";
2767 2649
2768 2650
2769 /** @domName SVGFEPointLightElement.z */ 2651 /** @domName SVGFEPointLightElement.z */
2770 SVGAnimatedNumber get z native "SVGFEPointLightElement_z_Getter"; 2652 AnimatedNumber get z native "SVGFEPointLightElement_z_Getter";
2771 2653
2772 } 2654 }
2773 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2655 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2774 // for details. All rights reserved. Use of this source code is governed by a 2656 // for details. All rights reserved. Use of this source code is governed by a
2775 // BSD-style license that can be found in the LICENSE file. 2657 // BSD-style license that can be found in the LICENSE file.
2776 2658
2777 // WARNING: Do not edit - generated code. 2659 // WARNING: Do not edit - generated code.
2778 2660
2779 2661
2780 /// @domName SVGFESpecularLightingElement 2662 /// @domName SVGFESpecularLightingElement
2781 class SVGFESpecularLightingElement extends SVGElement implements SVGFilterPrimit iveStandardAttributes { 2663 class FeSpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes {
2782 SVGFESpecularLightingElement.internal(): super.internal(); 2664 FeSpecularLightingElement.internal(): super.internal();
2783 2665
2784 2666
2785 /** @domName SVGFESpecularLightingElement.in1 */ 2667 /** @domName SVGFESpecularLightingElement.in1 */
2786 SVGAnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter"; 2668 AnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter";
2787 2669
2788 2670
2789 /** @domName SVGFESpecularLightingElement.specularConstant */ 2671 /** @domName SVGFESpecularLightingElement.specularConstant */
2790 SVGAnimatedNumber get specularConstant native "SVGFESpecularLightingElement_sp ecularConstant_Getter"; 2672 AnimatedNumber get specularConstant native "SVGFESpecularLightingElement_specu larConstant_Getter";
2791 2673
2792 2674
2793 /** @domName SVGFESpecularLightingElement.specularExponent */ 2675 /** @domName SVGFESpecularLightingElement.specularExponent */
2794 SVGAnimatedNumber get specularExponent native "SVGFESpecularLightingElement_sp ecularExponent_Getter"; 2676 AnimatedNumber get specularExponent native "SVGFESpecularLightingElement_specu larExponent_Getter";
2795 2677
2796 2678
2797 /** @domName SVGFESpecularLightingElement.surfaceScale */ 2679 /** @domName SVGFESpecularLightingElement.surfaceScale */
2798 SVGAnimatedNumber get surfaceScale native "SVGFESpecularLightingElement_surfac eScale_Getter"; 2680 AnimatedNumber get surfaceScale native "SVGFESpecularLightingElement_surfaceSc ale_Getter";
2799 2681
2800 2682
2801 /** @domName SVGFESpecularLightingElement.height */ 2683 /** @domName SVGFESpecularLightingElement.height */
2802 SVGAnimatedLength get height native "SVGFESpecularLightingElement_height_Gette r"; 2684 AnimatedLength get height native "SVGFESpecularLightingElement_height_Getter";
2803 2685
2804 2686
2805 /** @domName SVGFESpecularLightingElement.result */ 2687 /** @domName SVGFESpecularLightingElement.result */
2806 SVGAnimatedString get result native "SVGFESpecularLightingElement_result_Gette r"; 2688 AnimatedString get result native "SVGFESpecularLightingElement_result_Getter";
2807 2689
2808 2690
2809 /** @domName SVGFESpecularLightingElement.width */ 2691 /** @domName SVGFESpecularLightingElement.width */
2810 SVGAnimatedLength get width native "SVGFESpecularLightingElement_width_Getter" ; 2692 AnimatedLength get width native "SVGFESpecularLightingElement_width_Getter";
2811 2693
2812 2694
2813 /** @domName SVGFESpecularLightingElement.x */ 2695 /** @domName SVGFESpecularLightingElement.x */
2814 SVGAnimatedLength get x native "SVGFESpecularLightingElement_x_Getter"; 2696 AnimatedLength get x native "SVGFESpecularLightingElement_x_Getter";
2815 2697
2816 2698
2817 /** @domName SVGFESpecularLightingElement.y */ 2699 /** @domName SVGFESpecularLightingElement.y */
2818 SVGAnimatedLength get y native "SVGFESpecularLightingElement_y_Getter"; 2700 AnimatedLength get y native "SVGFESpecularLightingElement_y_Getter";
2819 2701
2820 2702
2821 /** @domName SVGFESpecularLightingElement.className */ 2703 /** @domName SVGFESpecularLightingElement.className */
2822 SVGAnimatedString get $dom_svgClassName native "SVGFESpecularLightingElement_c lassName_Getter"; 2704 AnimatedString get $dom_svgClassName native "SVGFESpecularLightingElement_clas sName_Getter";
2823 2705
2824 2706
2825 /** @domName SVGFESpecularLightingElement.style */ 2707 /** @domName SVGFESpecularLightingElement.style */
2826 CSSStyleDeclaration get style native "SVGFESpecularLightingElement_style_Gette r"; 2708 CSSStyleDeclaration get style native "SVGFESpecularLightingElement_style_Gette r";
2827 2709
2828 2710
2829 /** @domName SVGFESpecularLightingElement.getPresentationAttribute */ 2711 /** @domName SVGFESpecularLightingElement.getPresentationAttribute */
2830 CSSValue getPresentationAttribute(String name) native "SVGFESpecularLightingEl ement_getPresentationAttribute_Callback"; 2712 CSSValue getPresentationAttribute(String name) native "SVGFESpecularLightingEl ement_getPresentationAttribute_Callback";
2831 2713
2832 } 2714 }
2833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2834 // for details. All rights reserved. Use of this source code is governed by a 2716 // for details. All rights reserved. Use of this source code is governed by a
2835 // BSD-style license that can be found in the LICENSE file. 2717 // BSD-style license that can be found in the LICENSE file.
2836 2718
2837 // WARNING: Do not edit - generated code. 2719 // WARNING: Do not edit - generated code.
2838 2720
2839 2721
2840 /// @domName SVGFESpotLightElement 2722 /// @domName SVGFESpotLightElement
2841 class SVGFESpotLightElement extends SVGElement { 2723 class FeSpotLightElement extends SvgElement {
2842 SVGFESpotLightElement.internal(): super.internal(); 2724 FeSpotLightElement.internal(): super.internal();
2843 2725
2844 2726
2845 /** @domName SVGFESpotLightElement.limitingConeAngle */ 2727 /** @domName SVGFESpotLightElement.limitingConeAngle */
2846 SVGAnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limiting ConeAngle_Getter"; 2728 AnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limitingCon eAngle_Getter";
2847 2729
2848 2730
2849 /** @domName SVGFESpotLightElement.pointsAtX */ 2731 /** @domName SVGFESpotLightElement.pointsAtX */
2850 SVGAnimatedNumber get pointsAtX native "SVGFESpotLightElement_pointsAtX_Getter "; 2732 AnimatedNumber get pointsAtX native "SVGFESpotLightElement_pointsAtX_Getter";
2851 2733
2852 2734
2853 /** @domName SVGFESpotLightElement.pointsAtY */ 2735 /** @domName SVGFESpotLightElement.pointsAtY */
2854 SVGAnimatedNumber get pointsAtY native "SVGFESpotLightElement_pointsAtY_Getter "; 2736 AnimatedNumber get pointsAtY native "SVGFESpotLightElement_pointsAtY_Getter";
2855 2737
2856 2738
2857 /** @domName SVGFESpotLightElement.pointsAtZ */ 2739 /** @domName SVGFESpotLightElement.pointsAtZ */
2858 SVGAnimatedNumber get pointsAtZ native "SVGFESpotLightElement_pointsAtZ_Getter "; 2740 AnimatedNumber get pointsAtZ native "SVGFESpotLightElement_pointsAtZ_Getter";
2859 2741
2860 2742
2861 /** @domName SVGFESpotLightElement.specularExponent */ 2743 /** @domName SVGFESpotLightElement.specularExponent */
2862 SVGAnimatedNumber get specularExponent native "SVGFESpotLightElement_specularE xponent_Getter"; 2744 AnimatedNumber get specularExponent native "SVGFESpotLightElement_specularExpo nent_Getter";
2863 2745
2864 2746
2865 /** @domName SVGFESpotLightElement.x */ 2747 /** @domName SVGFESpotLightElement.x */
2866 SVGAnimatedNumber get x native "SVGFESpotLightElement_x_Getter"; 2748 AnimatedNumber get x native "SVGFESpotLightElement_x_Getter";
2867 2749
2868 2750
2869 /** @domName SVGFESpotLightElement.y */ 2751 /** @domName SVGFESpotLightElement.y */
2870 SVGAnimatedNumber get y native "SVGFESpotLightElement_y_Getter"; 2752 AnimatedNumber get y native "SVGFESpotLightElement_y_Getter";
2871 2753
2872 2754
2873 /** @domName SVGFESpotLightElement.z */ 2755 /** @domName SVGFESpotLightElement.z */
2874 SVGAnimatedNumber get z native "SVGFESpotLightElement_z_Getter"; 2756 AnimatedNumber get z native "SVGFESpotLightElement_z_Getter";
2875 2757
2876 } 2758 }
2877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2759 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2878 // for details. All rights reserved. Use of this source code is governed by a 2760 // for details. All rights reserved. Use of this source code is governed by a
2879 // BSD-style license that can be found in the LICENSE file. 2761 // BSD-style license that can be found in the LICENSE file.
2880 2762
2881 // WARNING: Do not edit - generated code. 2763 // WARNING: Do not edit - generated code.
2882 2764
2883 2765
2884 /// @domName SVGFETileElement 2766 /// @domName SVGFETileElement
2885 class SVGFETileElement extends SVGElement implements SVGFilterPrimitiveStandardA ttributes { 2767 class FeTileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes {
2886 SVGFETileElement.internal(): super.internal(); 2768 FeTileElement.internal(): super.internal();
2887 2769
2888 2770
2889 /** @domName SVGFETileElement.in1 */ 2771 /** @domName SVGFETileElement.in1 */
2890 SVGAnimatedString get in1 native "SVGFETileElement_in1_Getter"; 2772 AnimatedString get in1 native "SVGFETileElement_in1_Getter";
2891 2773
2892 2774
2893 /** @domName SVGFETileElement.height */ 2775 /** @domName SVGFETileElement.height */
2894 SVGAnimatedLength get height native "SVGFETileElement_height_Getter"; 2776 AnimatedLength get height native "SVGFETileElement_height_Getter";
2895 2777
2896 2778
2897 /** @domName SVGFETileElement.result */ 2779 /** @domName SVGFETileElement.result */
2898 SVGAnimatedString get result native "SVGFETileElement_result_Getter"; 2780 AnimatedString get result native "SVGFETileElement_result_Getter";
2899 2781
2900 2782
2901 /** @domName SVGFETileElement.width */ 2783 /** @domName SVGFETileElement.width */
2902 SVGAnimatedLength get width native "SVGFETileElement_width_Getter"; 2784 AnimatedLength get width native "SVGFETileElement_width_Getter";
2903 2785
2904 2786
2905 /** @domName SVGFETileElement.x */ 2787 /** @domName SVGFETileElement.x */
2906 SVGAnimatedLength get x native "SVGFETileElement_x_Getter"; 2788 AnimatedLength get x native "SVGFETileElement_x_Getter";
2907 2789
2908 2790
2909 /** @domName SVGFETileElement.y */ 2791 /** @domName SVGFETileElement.y */
2910 SVGAnimatedLength get y native "SVGFETileElement_y_Getter"; 2792 AnimatedLength get y native "SVGFETileElement_y_Getter";
2911 2793
2912 2794
2913 /** @domName SVGFETileElement.className */ 2795 /** @domName SVGFETileElement.className */
2914 SVGAnimatedString get $dom_svgClassName native "SVGFETileElement_className_Get ter"; 2796 AnimatedString get $dom_svgClassName native "SVGFETileElement_className_Getter ";
2915 2797
2916 2798
2917 /** @domName SVGFETileElement.style */ 2799 /** @domName SVGFETileElement.style */
2918 CSSStyleDeclaration get style native "SVGFETileElement_style_Getter"; 2800 CSSStyleDeclaration get style native "SVGFETileElement_style_Getter";
2919 2801
2920 2802
2921 /** @domName SVGFETileElement.getPresentationAttribute */ 2803 /** @domName SVGFETileElement.getPresentationAttribute */
2922 CSSValue getPresentationAttribute(String name) native "SVGFETileElement_getPre sentationAttribute_Callback"; 2804 CSSValue getPresentationAttribute(String name) native "SVGFETileElement_getPre sentationAttribute_Callback";
2923 2805
2924 } 2806 }
2925 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2807 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2926 // for details. All rights reserved. Use of this source code is governed by a 2808 // for details. All rights reserved. Use of this source code is governed by a
2927 // BSD-style license that can be found in the LICENSE file. 2809 // BSD-style license that can be found in the LICENSE file.
2928 2810
2929 // WARNING: Do not edit - generated code. 2811 // WARNING: Do not edit - generated code.
2930 2812
2931 2813
2932 /// @domName SVGFETurbulenceElement 2814 /// @domName SVGFETurbulenceElement
2933 class SVGFETurbulenceElement extends SVGElement implements SVGFilterPrimitiveSta ndardAttributes { 2815 class FeTurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2934 SVGFETurbulenceElement.internal(): super.internal(); 2816 FeTurbulenceElement.internal(): super.internal();
2935 2817
2936 static const int SVG_STITCHTYPE_NOSTITCH = 2; 2818 static const int SVG_STITCHTYPE_NOSTITCH = 2;
2937 2819
2938 static const int SVG_STITCHTYPE_STITCH = 1; 2820 static const int SVG_STITCHTYPE_STITCH = 1;
2939 2821
2940 static const int SVG_STITCHTYPE_UNKNOWN = 0; 2822 static const int SVG_STITCHTYPE_UNKNOWN = 0;
2941 2823
2942 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 2824 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
2943 2825
2944 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 2826 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
2945 2827
2946 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 2828 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
2947 2829
2948 2830
2949 /** @domName SVGFETurbulenceElement.baseFrequencyX */ 2831 /** @domName SVGFETurbulenceElement.baseFrequencyX */
2950 SVGAnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFreque ncyX_Getter"; 2832 AnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFrequency X_Getter";
2951 2833
2952 2834
2953 /** @domName SVGFETurbulenceElement.baseFrequencyY */ 2835 /** @domName SVGFETurbulenceElement.baseFrequencyY */
2954 SVGAnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFreque ncyY_Getter"; 2836 AnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFrequency Y_Getter";
2955 2837
2956 2838
2957 /** @domName SVGFETurbulenceElement.numOctaves */ 2839 /** @domName SVGFETurbulenceElement.numOctaves */
2958 SVGAnimatedInteger get numOctaves native "SVGFETurbulenceElement_numOctaves_Ge tter"; 2840 AnimatedInteger get numOctaves native "SVGFETurbulenceElement_numOctaves_Gette r";
2959 2841
2960 2842
2961 /** @domName SVGFETurbulenceElement.seed */ 2843 /** @domName SVGFETurbulenceElement.seed */
2962 SVGAnimatedNumber get seed native "SVGFETurbulenceElement_seed_Getter"; 2844 AnimatedNumber get seed native "SVGFETurbulenceElement_seed_Getter";
2963 2845
2964 2846
2965 /** @domName SVGFETurbulenceElement.stitchTiles */ 2847 /** @domName SVGFETurbulenceElement.stitchTiles */
2966 SVGAnimatedEnumeration get stitchTiles native "SVGFETurbulenceElement_stitchTi les_Getter"; 2848 AnimatedEnumeration get stitchTiles native "SVGFETurbulenceElement_stitchTiles _Getter";
2967 2849
2968 2850
2969 /** @domName SVGFETurbulenceElement.type */ 2851 /** @domName SVGFETurbulenceElement.type */
2970 SVGAnimatedEnumeration get type native "SVGFETurbulenceElement_type_Getter"; 2852 AnimatedEnumeration get type native "SVGFETurbulenceElement_type_Getter";
2971 2853
2972 2854
2973 /** @domName SVGFETurbulenceElement.height */ 2855 /** @domName SVGFETurbulenceElement.height */
2974 SVGAnimatedLength get height native "SVGFETurbulenceElement_height_Getter"; 2856 AnimatedLength get height native "SVGFETurbulenceElement_height_Getter";
2975 2857
2976 2858
2977 /** @domName SVGFETurbulenceElement.result */ 2859 /** @domName SVGFETurbulenceElement.result */
2978 SVGAnimatedString get result native "SVGFETurbulenceElement_result_Getter"; 2860 AnimatedString get result native "SVGFETurbulenceElement_result_Getter";
2979 2861
2980 2862
2981 /** @domName SVGFETurbulenceElement.width */ 2863 /** @domName SVGFETurbulenceElement.width */
2982 SVGAnimatedLength get width native "SVGFETurbulenceElement_width_Getter"; 2864 AnimatedLength get width native "SVGFETurbulenceElement_width_Getter";
2983 2865
2984 2866
2985 /** @domName SVGFETurbulenceElement.x */ 2867 /** @domName SVGFETurbulenceElement.x */
2986 SVGAnimatedLength get x native "SVGFETurbulenceElement_x_Getter"; 2868 AnimatedLength get x native "SVGFETurbulenceElement_x_Getter";
2987 2869
2988 2870
2989 /** @domName SVGFETurbulenceElement.y */ 2871 /** @domName SVGFETurbulenceElement.y */
2990 SVGAnimatedLength get y native "SVGFETurbulenceElement_y_Getter"; 2872 AnimatedLength get y native "SVGFETurbulenceElement_y_Getter";
2991 2873
2992 2874
2993 /** @domName SVGFETurbulenceElement.className */ 2875 /** @domName SVGFETurbulenceElement.className */
2994 SVGAnimatedString get $dom_svgClassName native "SVGFETurbulenceElement_classNa me_Getter"; 2876 AnimatedString get $dom_svgClassName native "SVGFETurbulenceElement_className_ Getter";
2995 2877
2996 2878
2997 /** @domName SVGFETurbulenceElement.style */ 2879 /** @domName SVGFETurbulenceElement.style */
2998 CSSStyleDeclaration get style native "SVGFETurbulenceElement_style_Getter"; 2880 CSSStyleDeclaration get style native "SVGFETurbulenceElement_style_Getter";
2999 2881
3000 2882
3001 /** @domName SVGFETurbulenceElement.getPresentationAttribute */ 2883 /** @domName SVGFETurbulenceElement.getPresentationAttribute */
3002 CSSValue getPresentationAttribute(String name) native "SVGFETurbulenceElement_ getPresentationAttribute_Callback"; 2884 CSSValue getPresentationAttribute(String name) native "SVGFETurbulenceElement_ getPresentationAttribute_Callback";
3003 2885
3004 } 2886 }
3005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2887 // 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 2888 // 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. 2889 // BSD-style license that can be found in the LICENSE file.
3008 2890
3009 // WARNING: Do not edit - generated code. 2891 // WARNING: Do not edit - generated code.
3010 2892
3011 2893
3012 /// @domName SVGFilterElement 2894 /// @domName SVGFilterElement
3013 class SVGFilterElement extends SVGElement implements SVGURIReference, SVGLangSpa ce, SVGExternalResourcesRequired, SVGStylable { 2895 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired, Stylable, LangSpace {
3014 SVGFilterElement.internal(): super.internal(); 2896 FilterElement.internal(): super.internal();
3015 2897
3016 2898
3017 /** @domName SVGFilterElement.filterResX */ 2899 /** @domName SVGFilterElement.filterResX */
3018 SVGAnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter"; 2900 AnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter";
3019 2901
3020 2902
3021 /** @domName SVGFilterElement.filterResY */ 2903 /** @domName SVGFilterElement.filterResY */
3022 SVGAnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter"; 2904 AnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter";
3023 2905
3024 2906
3025 /** @domName SVGFilterElement.filterUnits */ 2907 /** @domName SVGFilterElement.filterUnits */
3026 SVGAnimatedEnumeration get filterUnits native "SVGFilterElement_filterUnits_Ge tter"; 2908 AnimatedEnumeration get filterUnits native "SVGFilterElement_filterUnits_Gette r";
3027 2909
3028 2910
3029 /** @domName SVGFilterElement.height */ 2911 /** @domName SVGFilterElement.height */
3030 SVGAnimatedLength get height native "SVGFilterElement_height_Getter"; 2912 AnimatedLength get height native "SVGFilterElement_height_Getter";
3031 2913
3032 2914
3033 /** @domName SVGFilterElement.primitiveUnits */ 2915 /** @domName SVGFilterElement.primitiveUnits */
3034 SVGAnimatedEnumeration get primitiveUnits native "SVGFilterElement_primitiveUn its_Getter"; 2916 AnimatedEnumeration get primitiveUnits native "SVGFilterElement_primitiveUnits _Getter";
3035 2917
3036 2918
3037 /** @domName SVGFilterElement.width */ 2919 /** @domName SVGFilterElement.width */
3038 SVGAnimatedLength get width native "SVGFilterElement_width_Getter"; 2920 AnimatedLength get width native "SVGFilterElement_width_Getter";
3039 2921
3040 2922
3041 /** @domName SVGFilterElement.x */ 2923 /** @domName SVGFilterElement.x */
3042 SVGAnimatedLength get x native "SVGFilterElement_x_Getter"; 2924 AnimatedLength get x native "SVGFilterElement_x_Getter";
3043 2925
3044 2926
3045 /** @domName SVGFilterElement.y */ 2927 /** @domName SVGFilterElement.y */
3046 SVGAnimatedLength get y native "SVGFilterElement_y_Getter"; 2928 AnimatedLength get y native "SVGFilterElement_y_Getter";
3047 2929
3048 2930
3049 /** @domName SVGFilterElement.setFilterRes */ 2931 /** @domName SVGFilterElement.setFilterRes */
3050 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set FilterRes_Callback"; 2932 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set FilterRes_Callback";
3051 2933
3052 2934
3053 /** @domName SVGFilterElement.externalResourcesRequired */ 2935 /** @domName SVGFilterElement.externalResourcesRequired */
3054 SVGAnimatedBoolean get externalResourcesRequired native "SVGFilterElement_exte rnalResourcesRequired_Getter"; 2936 AnimatedBoolean get externalResourcesRequired native "SVGFilterElement_externa lResourcesRequired_Getter";
3055 2937
3056 2938
3057 /** @domName SVGFilterElement.xmllang */ 2939 /** @domName SVGFilterElement.xmllang */
3058 String get xmllang native "SVGFilterElement_xmllang_Getter"; 2940 String get xmllang native "SVGFilterElement_xmllang_Getter";
3059 2941
3060 2942
3061 /** @domName SVGFilterElement.xmllang */ 2943 /** @domName SVGFilterElement.xmllang */
3062 void set xmllang(String value) native "SVGFilterElement_xmllang_Setter"; 2944 void set xmllang(String value) native "SVGFilterElement_xmllang_Setter";
3063 2945
3064 2946
3065 /** @domName SVGFilterElement.xmlspace */ 2947 /** @domName SVGFilterElement.xmlspace */
3066 String get xmlspace native "SVGFilterElement_xmlspace_Getter"; 2948 String get xmlspace native "SVGFilterElement_xmlspace_Getter";
3067 2949
3068 2950
3069 /** @domName SVGFilterElement.xmlspace */ 2951 /** @domName SVGFilterElement.xmlspace */
3070 void set xmlspace(String value) native "SVGFilterElement_xmlspace_Setter"; 2952 void set xmlspace(String value) native "SVGFilterElement_xmlspace_Setter";
3071 2953
3072 2954
3073 /** @domName SVGFilterElement.className */ 2955 /** @domName SVGFilterElement.className */
3074 SVGAnimatedString get $dom_svgClassName native "SVGFilterElement_className_Get ter"; 2956 AnimatedString get $dom_svgClassName native "SVGFilterElement_className_Getter ";
3075 2957
3076 2958
3077 /** @domName SVGFilterElement.style */ 2959 /** @domName SVGFilterElement.style */
3078 CSSStyleDeclaration get style native "SVGFilterElement_style_Getter"; 2960 CSSStyleDeclaration get style native "SVGFilterElement_style_Getter";
3079 2961
3080 2962
3081 /** @domName SVGFilterElement.getPresentationAttribute */ 2963 /** @domName SVGFilterElement.getPresentationAttribute */
3082 CSSValue getPresentationAttribute(String name) native "SVGFilterElement_getPre sentationAttribute_Callback"; 2964 CSSValue getPresentationAttribute(String name) native "SVGFilterElement_getPre sentationAttribute_Callback";
3083 2965
3084 2966
3085 /** @domName SVGFilterElement.href */ 2967 /** @domName SVGFilterElement.href */
3086 SVGAnimatedString get href native "SVGFilterElement_href_Getter"; 2968 AnimatedString get href native "SVGFilterElement_href_Getter";
3087 2969
3088 } 2970 }
3089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2971 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3090 // for details. All rights reserved. Use of this source code is governed by a 2972 // for details. All rights reserved. Use of this source code is governed by a
3091 // BSD-style license that can be found in the LICENSE file. 2973 // BSD-style license that can be found in the LICENSE file.
3092 2974
3093 // WARNING: Do not edit - generated code. 2975 // WARNING: Do not edit - generated code.
3094 2976
3095 2977
3096 /// @domName SVGFilterPrimitiveStandardAttributes 2978 /// @domName SVGFilterPrimitiveStandardAttributes
3097 class SVGFilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 impl ements SVGStylable { 2979 class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 impleme nts Stylable {
3098 SVGFilterPrimitiveStandardAttributes.internal(); 2980 FilterPrimitiveStandardAttributes.internal();
3099 2981
3100 2982
3101 /** @domName SVGFilterPrimitiveStandardAttributes.height */ 2983 /** @domName SVGFilterPrimitiveStandardAttributes.height */
3102 SVGAnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_heig ht_Getter"; 2984 AnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_height_ Getter";
3103 2985
3104 2986
3105 /** @domName SVGFilterPrimitiveStandardAttributes.result */ 2987 /** @domName SVGFilterPrimitiveStandardAttributes.result */
3106 SVGAnimatedString get result native "SVGFilterPrimitiveStandardAttributes_resu lt_Getter"; 2988 AnimatedString get result native "SVGFilterPrimitiveStandardAttributes_result_ Getter";
3107 2989
3108 2990
3109 /** @domName SVGFilterPrimitiveStandardAttributes.width */ 2991 /** @domName SVGFilterPrimitiveStandardAttributes.width */
3110 SVGAnimatedLength get width native "SVGFilterPrimitiveStandardAttributes_width _Getter"; 2992 AnimatedLength get width native "SVGFilterPrimitiveStandardAttributes_width_Ge tter";
3111 2993
3112 2994
3113 /** @domName SVGFilterPrimitiveStandardAttributes.x */ 2995 /** @domName SVGFilterPrimitiveStandardAttributes.x */
3114 SVGAnimatedLength get x native "SVGFilterPrimitiveStandardAttributes_x_Getter" ; 2996 AnimatedLength get x native "SVGFilterPrimitiveStandardAttributes_x_Getter";
3115 2997
3116 2998
3117 /** @domName SVGFilterPrimitiveStandardAttributes.y */ 2999 /** @domName SVGFilterPrimitiveStandardAttributes.y */
3118 SVGAnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter" ; 3000 AnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter";
3119 3001
3120 3002
3121 /** @domName SVGFilterPrimitiveStandardAttributes.className */ 3003 /** @domName SVGFilterPrimitiveStandardAttributes.className */
3122 SVGAnimatedString get $dom_svgClassName native "SVGFilterPrimitiveStandardAttr ibutes_className_Getter"; 3004 AnimatedString get $dom_svgClassName native "SVGFilterPrimitiveStandardAttribu tes_className_Getter";
3123 3005
3124 3006
3125 /** @domName SVGFilterPrimitiveStandardAttributes.style */ 3007 /** @domName SVGFilterPrimitiveStandardAttributes.style */
3126 CSSStyleDeclaration get style native "SVGFilterPrimitiveStandardAttributes_sty le_Getter"; 3008 CSSStyleDeclaration get style native "SVGFilterPrimitiveStandardAttributes_sty le_Getter";
3127 3009
3128 3010
3129 /** @domName SVGFilterPrimitiveStandardAttributes.getPresentationAttribute */ 3011 /** @domName SVGFilterPrimitiveStandardAttributes.getPresentationAttribute */
3130 CSSValue getPresentationAttribute(String name) native "SVGFilterPrimitiveStand ardAttributes_getPresentationAttribute_Callback"; 3012 CSSValue getPresentationAttribute(String name) native "SVGFilterPrimitiveStand ardAttributes_getPresentationAttribute_Callback";
3131 3013
3132 } 3014 }
3133 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3015 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3134 // for details. All rights reserved. Use of this source code is governed by a 3016 // for details. All rights reserved. Use of this source code is governed by a
3135 // BSD-style license that can be found in the LICENSE file. 3017 // BSD-style license that can be found in the LICENSE file.
3136 3018
3137 // WARNING: Do not edit - generated code. 3019 // WARNING: Do not edit - generated code.
3138 3020
3139 3021
3140 /// @domName SVGFitToViewBox 3022 /// @domName SVGFitToViewBox
3141 class SVGFitToViewBox extends NativeFieldWrapperClass1 { 3023 class FitToViewBox extends NativeFieldWrapperClass1 {
3142 SVGFitToViewBox.internal(); 3024 FitToViewBox.internal();
3143 3025
3144 3026
3145 /** @domName SVGFitToViewBox.preserveAspectRatio */ 3027 /** @domName SVGFitToViewBox.preserveAspectRatio */
3146 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox _preserveAspectRatio_Getter"; 3028 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox_pr eserveAspectRatio_Getter";
3147 3029
3148 3030
3149 /** @domName SVGFitToViewBox.viewBox */ 3031 /** @domName SVGFitToViewBox.viewBox */
3150 SVGAnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter"; 3032 AnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter";
3151 3033
3152 } 3034 }
3153 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3154 // for details. All rights reserved. Use of this source code is governed by a 3036 // for details. All rights reserved. Use of this source code is governed by a
3155 // BSD-style license that can be found in the LICENSE file. 3037 // BSD-style license that can be found in the LICENSE file.
3156 3038
3157 // WARNING: Do not edit - generated code. 3039 // WARNING: Do not edit - generated code.
3158 3040
3159 3041
3160 /// @domName SVGFontElement 3042 /// @domName SVGFontElement
3161 class SVGFontElement extends SVGElement { 3043 class FontElement extends SvgElement {
3162 SVGFontElement.internal(): super.internal(); 3044 FontElement.internal(): super.internal();
3163 3045
3164 } 3046 }
3165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3047 // 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 3048 // 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. 3049 // BSD-style license that can be found in the LICENSE file.
3168 3050
3169 // WARNING: Do not edit - generated code. 3051 // WARNING: Do not edit - generated code.
3170 3052
3171 3053
3172 /// @domName SVGFontFaceElement 3054 /// @domName SVGFontFaceElement
3173 class SVGFontFaceElement extends SVGElement { 3055 class FontFaceElement extends SvgElement {
3174 SVGFontFaceElement.internal(): super.internal(); 3056 FontFaceElement.internal(): super.internal();
3175 3057
3176 } 3058 }
3177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3059 // 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 3060 // 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. 3061 // BSD-style license that can be found in the LICENSE file.
3180 3062
3181 // WARNING: Do not edit - generated code. 3063 // WARNING: Do not edit - generated code.
3182 3064
3183 3065
3184 /// @domName SVGFontFaceFormatElement 3066 /// @domName SVGFontFaceFormatElement
3185 class SVGFontFaceFormatElement extends SVGElement { 3067 class FontFaceFormatElement extends SvgElement {
3186 SVGFontFaceFormatElement.internal(): super.internal(); 3068 FontFaceFormatElement.internal(): super.internal();
3187 3069
3188 } 3070 }
3189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3071 // 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 3072 // 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. 3073 // BSD-style license that can be found in the LICENSE file.
3192 3074
3193 // WARNING: Do not edit - generated code. 3075 // WARNING: Do not edit - generated code.
3194 3076
3195 3077
3196 /// @domName SVGFontFaceNameElement 3078 /// @domName SVGFontFaceNameElement
3197 class SVGFontFaceNameElement extends SVGElement { 3079 class FontFaceNameElement extends SvgElement {
3198 SVGFontFaceNameElement.internal(): super.internal(); 3080 FontFaceNameElement.internal(): super.internal();
3199 3081
3200 } 3082 }
3201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3083 // 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 3084 // 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. 3085 // BSD-style license that can be found in the LICENSE file.
3204 3086
3205 // WARNING: Do not edit - generated code. 3087 // WARNING: Do not edit - generated code.
3206 3088
3207 3089
3208 /// @domName SVGFontFaceSrcElement 3090 /// @domName SVGFontFaceSrcElement
3209 class SVGFontFaceSrcElement extends SVGElement { 3091 class FontFaceSrcElement extends SvgElement {
3210 SVGFontFaceSrcElement.internal(): super.internal(); 3092 FontFaceSrcElement.internal(): super.internal();
3211 3093
3212 } 3094 }
3213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3095 // 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 3096 // 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. 3097 // BSD-style license that can be found in the LICENSE file.
3216 3098
3217 // WARNING: Do not edit - generated code. 3099 // WARNING: Do not edit - generated code.
3218 3100
3219 3101
3220 /// @domName SVGFontFaceUriElement 3102 /// @domName SVGFontFaceUriElement
3221 class SVGFontFaceUriElement extends SVGElement { 3103 class FontFaceUriElement extends SvgElement {
3222 SVGFontFaceUriElement.internal(): super.internal(); 3104 FontFaceUriElement.internal(): super.internal();
3223 3105
3224 } 3106 }
3225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3107 // 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 3108 // 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. 3109 // BSD-style license that can be found in the LICENSE file.
3228 3110
3229 // WARNING: Do not edit - generated code. 3111 // WARNING: Do not edit - generated code.
3230 3112
3231 3113
3232 /// @domName SVGForeignObjectElement 3114 /// @domName SVGForeignObjectElement
3233 class SVGForeignObjectElement extends SVGElement implements SVGLangSpace, SVGSty lable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 3115 class ForeignObjectElement extends SvgElement implements Transformable, Tests, S tylable, ExternalResourcesRequired, LangSpace {
3234 SVGForeignObjectElement.internal(): super.internal(); 3116 ForeignObjectElement.internal(): super.internal();
3235 3117
3236 3118
3237 /** @domName SVGForeignObjectElement.height */ 3119 /** @domName SVGForeignObjectElement.height */
3238 SVGAnimatedLength get height native "SVGForeignObjectElement_height_Getter"; 3120 AnimatedLength get height native "SVGForeignObjectElement_height_Getter";
3239 3121
3240 3122
3241 /** @domName SVGForeignObjectElement.width */ 3123 /** @domName SVGForeignObjectElement.width */
3242 SVGAnimatedLength get width native "SVGForeignObjectElement_width_Getter"; 3124 AnimatedLength get width native "SVGForeignObjectElement_width_Getter";
3243 3125
3244 3126
3245 /** @domName SVGForeignObjectElement.x */ 3127 /** @domName SVGForeignObjectElement.x */
3246 SVGAnimatedLength get x native "SVGForeignObjectElement_x_Getter"; 3128 AnimatedLength get x native "SVGForeignObjectElement_x_Getter";
3247 3129
3248 3130
3249 /** @domName SVGForeignObjectElement.y */ 3131 /** @domName SVGForeignObjectElement.y */
3250 SVGAnimatedLength get y native "SVGForeignObjectElement_y_Getter"; 3132 AnimatedLength get y native "SVGForeignObjectElement_y_Getter";
3251 3133
3252 3134
3253 /** @domName SVGForeignObjectElement.externalResourcesRequired */ 3135 /** @domName SVGForeignObjectElement.externalResourcesRequired */
3254 SVGAnimatedBoolean get externalResourcesRequired native "SVGForeignObjectEleme nt_externalResourcesRequired_Getter"; 3136 AnimatedBoolean get externalResourcesRequired native "SVGForeignObjectElement_ externalResourcesRequired_Getter";
3255 3137
3256 3138
3257 /** @domName SVGForeignObjectElement.xmllang */ 3139 /** @domName SVGForeignObjectElement.xmllang */
3258 String get xmllang native "SVGForeignObjectElement_xmllang_Getter"; 3140 String get xmllang native "SVGForeignObjectElement_xmllang_Getter";
3259 3141
3260 3142
3261 /** @domName SVGForeignObjectElement.xmllang */ 3143 /** @domName SVGForeignObjectElement.xmllang */
3262 void set xmllang(String value) native "SVGForeignObjectElement_xmllang_Setter" ; 3144 void set xmllang(String value) native "SVGForeignObjectElement_xmllang_Setter" ;
3263 3145
3264 3146
3265 /** @domName SVGForeignObjectElement.xmlspace */ 3147 /** @domName SVGForeignObjectElement.xmlspace */
3266 String get xmlspace native "SVGForeignObjectElement_xmlspace_Getter"; 3148 String get xmlspace native "SVGForeignObjectElement_xmlspace_Getter";
3267 3149
3268 3150
3269 /** @domName SVGForeignObjectElement.xmlspace */ 3151 /** @domName SVGForeignObjectElement.xmlspace */
3270 void set xmlspace(String value) native "SVGForeignObjectElement_xmlspace_Sette r"; 3152 void set xmlspace(String value) native "SVGForeignObjectElement_xmlspace_Sette r";
3271 3153
3272 3154
3273 /** @domName SVGForeignObjectElement.farthestViewportElement */ 3155 /** @domName SVGForeignObjectElement.farthestViewportElement */
3274 SVGElement get farthestViewportElement native "SVGForeignObjectElement_farthes tViewportElement_Getter"; 3156 SvgElement get farthestViewportElement native "SVGForeignObjectElement_farthes tViewportElement_Getter";
3275 3157
3276 3158
3277 /** @domName SVGForeignObjectElement.nearestViewportElement */ 3159 /** @domName SVGForeignObjectElement.nearestViewportElement */
3278 SVGElement get nearestViewportElement native "SVGForeignObjectElement_nearestV iewportElement_Getter"; 3160 SvgElement get nearestViewportElement native "SVGForeignObjectElement_nearestV iewportElement_Getter";
3279 3161
3280 3162
3281 /** @domName SVGForeignObjectElement.getBBox */ 3163 /** @domName SVGForeignObjectElement.getBBox */
3282 SVGRect getBBox() native "SVGForeignObjectElement_getBBox_Callback"; 3164 Rect getBBox() native "SVGForeignObjectElement_getBBox_Callback";
3283 3165
3284 3166
3285 /** @domName SVGForeignObjectElement.getCTM */ 3167 /** @domName SVGForeignObjectElement.getCTM */
3286 SVGMatrix getCTM() native "SVGForeignObjectElement_getCTM_Callback"; 3168 Matrix getCTM() native "SVGForeignObjectElement_getCTM_Callback";
3287 3169
3288 3170
3289 /** @domName SVGForeignObjectElement.getScreenCTM */ 3171 /** @domName SVGForeignObjectElement.getScreenCTM */
3290 SVGMatrix getScreenCTM() native "SVGForeignObjectElement_getScreenCTM_Callback "; 3172 Matrix getScreenCTM() native "SVGForeignObjectElement_getScreenCTM_Callback";
3291 3173
3292 3174
3293 /** @domName SVGForeignObjectElement.getTransformToElement */ 3175 /** @domName SVGForeignObjectElement.getTransformToElement */
3294 SVGMatrix getTransformToElement(SVGElement element) native "SVGForeignObjectEl ement_getTransformToElement_Callback"; 3176 Matrix getTransformToElement(SvgElement element) native "SVGForeignObjectEleme nt_getTransformToElement_Callback";
3295 3177
3296 3178
3297 /** @domName SVGForeignObjectElement.className */ 3179 /** @domName SVGForeignObjectElement.className */
3298 SVGAnimatedString get $dom_svgClassName native "SVGForeignObjectElement_classN ame_Getter"; 3180 AnimatedString get $dom_svgClassName native "SVGForeignObjectElement_className _Getter";
3299 3181
3300 3182
3301 /** @domName SVGForeignObjectElement.style */ 3183 /** @domName SVGForeignObjectElement.style */
3302 CSSStyleDeclaration get style native "SVGForeignObjectElement_style_Getter"; 3184 CSSStyleDeclaration get style native "SVGForeignObjectElement_style_Getter";
3303 3185
3304 3186
3305 /** @domName SVGForeignObjectElement.getPresentationAttribute */ 3187 /** @domName SVGForeignObjectElement.getPresentationAttribute */
3306 CSSValue getPresentationAttribute(String name) native "SVGForeignObjectElement _getPresentationAttribute_Callback"; 3188 CSSValue getPresentationAttribute(String name) native "SVGForeignObjectElement _getPresentationAttribute_Callback";
3307 3189
3308 3190
3309 /** @domName SVGForeignObjectElement.requiredExtensions */ 3191 /** @domName SVGForeignObjectElement.requiredExtensions */
3310 SVGStringList get requiredExtensions native "SVGForeignObjectElement_requiredE xtensions_Getter"; 3192 StringList get requiredExtensions native "SVGForeignObjectElement_requiredExte nsions_Getter";
3311 3193
3312 3194
3313 /** @domName SVGForeignObjectElement.requiredFeatures */ 3195 /** @domName SVGForeignObjectElement.requiredFeatures */
3314 SVGStringList get requiredFeatures native "SVGForeignObjectElement_requiredFea tures_Getter"; 3196 StringList get requiredFeatures native "SVGForeignObjectElement_requiredFeatur es_Getter";
3315 3197
3316 3198
3317 /** @domName SVGForeignObjectElement.systemLanguage */ 3199 /** @domName SVGForeignObjectElement.systemLanguage */
3318 SVGStringList get systemLanguage native "SVGForeignObjectElement_systemLanguag e_Getter"; 3200 StringList get systemLanguage native "SVGForeignObjectElement_systemLanguage_G etter";
3319 3201
3320 3202
3321 /** @domName SVGForeignObjectElement.hasExtension */ 3203 /** @domName SVGForeignObjectElement.hasExtension */
3322 bool hasExtension(String extension) native "SVGForeignObjectElement_hasExtensi on_Callback"; 3204 bool hasExtension(String extension) native "SVGForeignObjectElement_hasExtensi on_Callback";
3323 3205
3324 3206
3325 /** @domName SVGForeignObjectElement.transform */ 3207 /** @domName SVGForeignObjectElement.transform */
3326 SVGAnimatedTransformList get transform native "SVGForeignObjectElement_transfo rm_Getter"; 3208 AnimatedTransformList get transform native "SVGForeignObjectElement_transform_ Getter";
3327 3209
3328 } 3210 }
3329 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3211 // 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 3212 // 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. 3213 // BSD-style license that can be found in the LICENSE file.
3332 3214
3333 // WARNING: Do not edit - generated code. 3215 // WARNING: Do not edit - generated code.
3334 3216
3335 3217
3336 /// @domName SVGGElement 3218 /// @domName SVGGElement
3337 class SVGGElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTe sts, SVGTransformable, SVGExternalResourcesRequired { 3219 class GElement extends SvgElement implements Transformable, Tests, Stylable, Ext ernalResourcesRequired, LangSpace {
3338 SVGGElement.internal(): super.internal(); 3220 GElement.internal(): super.internal();
3339 3221
3340 3222
3341 /** @domName SVGGElement.externalResourcesRequired */ 3223 /** @domName SVGGElement.externalResourcesRequired */
3342 SVGAnimatedBoolean get externalResourcesRequired native "SVGGElement_externalR esourcesRequired_Getter"; 3224 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter";
3343 3225
3344 3226
3345 /** @domName SVGGElement.xmllang */ 3227 /** @domName SVGGElement.xmllang */
3346 String get xmllang native "SVGGElement_xmllang_Getter"; 3228 String get xmllang native "SVGGElement_xmllang_Getter";
3347 3229
3348 3230
3349 /** @domName SVGGElement.xmllang */ 3231 /** @domName SVGGElement.xmllang */
3350 void set xmllang(String value) native "SVGGElement_xmllang_Setter"; 3232 void set xmllang(String value) native "SVGGElement_xmllang_Setter";
3351 3233
3352 3234
3353 /** @domName SVGGElement.xmlspace */ 3235 /** @domName SVGGElement.xmlspace */
3354 String get xmlspace native "SVGGElement_xmlspace_Getter"; 3236 String get xmlspace native "SVGGElement_xmlspace_Getter";
3355 3237
3356 3238
3357 /** @domName SVGGElement.xmlspace */ 3239 /** @domName SVGGElement.xmlspace */
3358 void set xmlspace(String value) native "SVGGElement_xmlspace_Setter"; 3240 void set xmlspace(String value) native "SVGGElement_xmlspace_Setter";
3359 3241
3360 3242
3361 /** @domName SVGGElement.farthestViewportElement */ 3243 /** @domName SVGGElement.farthestViewportElement */
3362 SVGElement get farthestViewportElement native "SVGGElement_farthestViewportEle ment_Getter"; 3244 SvgElement get farthestViewportElement native "SVGGElement_farthestViewportEle ment_Getter";
3363 3245
3364 3246
3365 /** @domName SVGGElement.nearestViewportElement */ 3247 /** @domName SVGGElement.nearestViewportElement */
3366 SVGElement get nearestViewportElement native "SVGGElement_nearestViewportEleme nt_Getter"; 3248 SvgElement get nearestViewportElement native "SVGGElement_nearestViewportEleme nt_Getter";
3367 3249
3368 3250
3369 /** @domName SVGGElement.getBBox */ 3251 /** @domName SVGGElement.getBBox */
3370 SVGRect getBBox() native "SVGGElement_getBBox_Callback"; 3252 Rect getBBox() native "SVGGElement_getBBox_Callback";
3371 3253
3372 3254
3373 /** @domName SVGGElement.getCTM */ 3255 /** @domName SVGGElement.getCTM */
3374 SVGMatrix getCTM() native "SVGGElement_getCTM_Callback"; 3256 Matrix getCTM() native "SVGGElement_getCTM_Callback";
3375 3257
3376 3258
3377 /** @domName SVGGElement.getScreenCTM */ 3259 /** @domName SVGGElement.getScreenCTM */
3378 SVGMatrix getScreenCTM() native "SVGGElement_getScreenCTM_Callback"; 3260 Matrix getScreenCTM() native "SVGGElement_getScreenCTM_Callback";
3379 3261
3380 3262
3381 /** @domName SVGGElement.getTransformToElement */ 3263 /** @domName SVGGElement.getTransformToElement */
3382 SVGMatrix getTransformToElement(SVGElement element) native "SVGGElement_getTra nsformToElement_Callback"; 3264 Matrix getTransformToElement(SvgElement element) native "SVGGElement_getTransf ormToElement_Callback";
3383 3265
3384 3266
3385 /** @domName SVGGElement.className */ 3267 /** @domName SVGGElement.className */
3386 SVGAnimatedString get $dom_svgClassName native "SVGGElement_className_Getter"; 3268 AnimatedString get $dom_svgClassName native "SVGGElement_className_Getter";
3387 3269
3388 3270
3389 /** @domName SVGGElement.style */ 3271 /** @domName SVGGElement.style */
3390 CSSStyleDeclaration get style native "SVGGElement_style_Getter"; 3272 CSSStyleDeclaration get style native "SVGGElement_style_Getter";
3391 3273
3392 3274
3393 /** @domName SVGGElement.getPresentationAttribute */ 3275 /** @domName SVGGElement.getPresentationAttribute */
3394 CSSValue getPresentationAttribute(String name) native "SVGGElement_getPresenta tionAttribute_Callback"; 3276 CSSValue getPresentationAttribute(String name) native "SVGGElement_getPresenta tionAttribute_Callback";
3395 3277
3396 3278
3397 /** @domName SVGGElement.requiredExtensions */ 3279 /** @domName SVGGElement.requiredExtensions */
3398 SVGStringList get requiredExtensions native "SVGGElement_requiredExtensions_Ge tter"; 3280 StringList get requiredExtensions native "SVGGElement_requiredExtensions_Gette r";
3399 3281
3400 3282
3401 /** @domName SVGGElement.requiredFeatures */ 3283 /** @domName SVGGElement.requiredFeatures */
3402 SVGStringList get requiredFeatures native "SVGGElement_requiredFeatures_Getter "; 3284 StringList get requiredFeatures native "SVGGElement_requiredFeatures_Getter";
3403 3285
3404 3286
3405 /** @domName SVGGElement.systemLanguage */ 3287 /** @domName SVGGElement.systemLanguage */
3406 SVGStringList get systemLanguage native "SVGGElement_systemLanguage_Getter"; 3288 StringList get systemLanguage native "SVGGElement_systemLanguage_Getter";
3407 3289
3408 3290
3409 /** @domName SVGGElement.hasExtension */ 3291 /** @domName SVGGElement.hasExtension */
3410 bool hasExtension(String extension) native "SVGGElement_hasExtension_Callback" ; 3292 bool hasExtension(String extension) native "SVGGElement_hasExtension_Callback" ;
3411 3293
3412 3294
3413 /** @domName SVGGElement.transform */ 3295 /** @domName SVGGElement.transform */
3414 SVGAnimatedTransformList get transform native "SVGGElement_transform_Getter"; 3296 AnimatedTransformList get transform native "SVGGElement_transform_Getter";
3415 3297
3416 } 3298 }
3417 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3299 // 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 3300 // 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. 3301 // BSD-style license that can be found in the LICENSE file.
3420 3302
3421 // WARNING: Do not edit - generated code. 3303 // WARNING: Do not edit - generated code.
3422 3304
3423 3305
3424 /// @domName SVGGlyphElement 3306 /// @domName SVGGlyphElement
3425 class SVGGlyphElement extends SVGElement { 3307 class GlyphElement extends SvgElement {
3426 SVGGlyphElement.internal(): super.internal(); 3308 GlyphElement.internal(): super.internal();
3427 3309
3428 } 3310 }
3429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3311 // 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 3312 // 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. 3313 // BSD-style license that can be found in the LICENSE file.
3432 3314
3433 // WARNING: Do not edit - generated code. 3315 // WARNING: Do not edit - generated code.
3434 3316
3435 3317
3436 /// @domName SVGGlyphRefElement 3318 /// @domName SVGGlyphRefElement
3437 class SVGGlyphRefElement extends SVGElement implements SVGURIReference, SVGStyla ble { 3319 class GlyphRefElement extends SvgElement implements UriReference, Stylable {
3438 SVGGlyphRefElement.internal(): super.internal(); 3320 GlyphRefElement.internal(): super.internal();
3439 3321
3440 3322
3441 /** @domName SVGGlyphRefElement.dx */ 3323 /** @domName SVGGlyphRefElement.dx */
3442 num get dx native "SVGGlyphRefElement_dx_Getter"; 3324 num get dx native "SVGGlyphRefElement_dx_Getter";
3443 3325
3444 3326
3445 /** @domName SVGGlyphRefElement.dx */ 3327 /** @domName SVGGlyphRefElement.dx */
3446 void set dx(num value) native "SVGGlyphRefElement_dx_Setter"; 3328 void set dx(num value) native "SVGGlyphRefElement_dx_Setter";
3447 3329
3448 3330
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
3480 3362
3481 /** @domName SVGGlyphRefElement.y */ 3363 /** @domName SVGGlyphRefElement.y */
3482 num get y native "SVGGlyphRefElement_y_Getter"; 3364 num get y native "SVGGlyphRefElement_y_Getter";
3483 3365
3484 3366
3485 /** @domName SVGGlyphRefElement.y */ 3367 /** @domName SVGGlyphRefElement.y */
3486 void set y(num value) native "SVGGlyphRefElement_y_Setter"; 3368 void set y(num value) native "SVGGlyphRefElement_y_Setter";
3487 3369
3488 3370
3489 /** @domName SVGGlyphRefElement.className */ 3371 /** @domName SVGGlyphRefElement.className */
3490 SVGAnimatedString get $dom_svgClassName native "SVGGlyphRefElement_className_G etter"; 3372 AnimatedString get $dom_svgClassName native "SVGGlyphRefElement_className_Gett er";
3491 3373
3492 3374
3493 /** @domName SVGGlyphRefElement.style */ 3375 /** @domName SVGGlyphRefElement.style */
3494 CSSStyleDeclaration get style native "SVGGlyphRefElement_style_Getter"; 3376 CSSStyleDeclaration get style native "SVGGlyphRefElement_style_Getter";
3495 3377
3496 3378
3497 /** @domName SVGGlyphRefElement.getPresentationAttribute */ 3379 /** @domName SVGGlyphRefElement.getPresentationAttribute */
3498 CSSValue getPresentationAttribute(String name) native "SVGGlyphRefElement_getP resentationAttribute_Callback"; 3380 CSSValue getPresentationAttribute(String name) native "SVGGlyphRefElement_getP resentationAttribute_Callback";
3499 3381
3500 3382
3501 /** @domName SVGGlyphRefElement.href */ 3383 /** @domName SVGGlyphRefElement.href */
3502 SVGAnimatedString get href native "SVGGlyphRefElement_href_Getter"; 3384 AnimatedString get href native "SVGGlyphRefElement_href_Getter";
3503 3385
3504 } 3386 }
3505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3387 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3506 // for details. All rights reserved. Use of this source code is governed by a 3388 // for details. All rights reserved. Use of this source code is governed by a
3507 // BSD-style license that can be found in the LICENSE file. 3389 // BSD-style license that can be found in the LICENSE file.
3508 3390
3509 // WARNING: Do not edit - generated code. 3391 // WARNING: Do not edit - generated code.
3510 3392
3511 3393
3512 /// @domName SVGGradientElement 3394 /// @domName SVGGradientElement
3513 class SVGGradientElement extends SVGElement implements SVGURIReference, SVGExter nalResourcesRequired, SVGStylable { 3395 class GradientElement extends SvgElement implements UriReference, ExternalResour cesRequired, Stylable {
3514 SVGGradientElement.internal(): super.internal(); 3396 GradientElement.internal(): super.internal();
3515 3397
3516 static const int SVG_SPREADMETHOD_PAD = 1; 3398 static const int SVG_SPREADMETHOD_PAD = 1;
3517 3399
3518 static const int SVG_SPREADMETHOD_REFLECT = 2; 3400 static const int SVG_SPREADMETHOD_REFLECT = 2;
3519 3401
3520 static const int SVG_SPREADMETHOD_REPEAT = 3; 3402 static const int SVG_SPREADMETHOD_REPEAT = 3;
3521 3403
3522 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 3404 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
3523 3405
3524 3406
3525 /** @domName SVGGradientElement.gradientTransform */ 3407 /** @domName SVGGradientElement.gradientTransform */
3526 SVGAnimatedTransformList get gradientTransform native "SVGGradientElement_grad ientTransform_Getter"; 3408 AnimatedTransformList get gradientTransform native "SVGGradientElement_gradien tTransform_Getter";
3527 3409
3528 3410
3529 /** @domName SVGGradientElement.gradientUnits */ 3411 /** @domName SVGGradientElement.gradientUnits */
3530 SVGAnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUn its_Getter"; 3412 AnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUnits _Getter";
3531 3413
3532 3414
3533 /** @domName SVGGradientElement.spreadMethod */ 3415 /** @domName SVGGradientElement.spreadMethod */
3534 SVGAnimatedEnumeration get spreadMethod native "SVGGradientElement_spreadMetho d_Getter"; 3416 AnimatedEnumeration get spreadMethod native "SVGGradientElement_spreadMethod_G etter";
3535 3417
3536 3418
3537 /** @domName SVGGradientElement.externalResourcesRequired */ 3419 /** @domName SVGGradientElement.externalResourcesRequired */
3538 SVGAnimatedBoolean get externalResourcesRequired native "SVGGradientElement_ex ternalResourcesRequired_Getter"; 3420 AnimatedBoolean get externalResourcesRequired native "SVGGradientElement_exter nalResourcesRequired_Getter";
3539 3421
3540 3422
3541 /** @domName SVGGradientElement.className */ 3423 /** @domName SVGGradientElement.className */
3542 SVGAnimatedString get $dom_svgClassName native "SVGGradientElement_className_G etter"; 3424 AnimatedString get $dom_svgClassName native "SVGGradientElement_className_Gett er";
3543 3425
3544 3426
3545 /** @domName SVGGradientElement.style */ 3427 /** @domName SVGGradientElement.style */
3546 CSSStyleDeclaration get style native "SVGGradientElement_style_Getter"; 3428 CSSStyleDeclaration get style native "SVGGradientElement_style_Getter";
3547 3429
3548 3430
3549 /** @domName SVGGradientElement.getPresentationAttribute */ 3431 /** @domName SVGGradientElement.getPresentationAttribute */
3550 CSSValue getPresentationAttribute(String name) native "SVGGradientElement_getP resentationAttribute_Callback"; 3432 CSSValue getPresentationAttribute(String name) native "SVGGradientElement_getP resentationAttribute_Callback";
3551 3433
3552 3434
3553 /** @domName SVGGradientElement.href */ 3435 /** @domName SVGGradientElement.href */
3554 SVGAnimatedString get href native "SVGGradientElement_href_Getter"; 3436 AnimatedString get href native "SVGGradientElement_href_Getter";
3555 3437
3556 } 3438 }
3557 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3439 // 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 3440 // 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. 3441 // BSD-style license that can be found in the LICENSE file.
3560 3442
3561 // WARNING: Do not edit - generated code. 3443 // WARNING: Do not edit - generated code.
3562 3444
3563 3445
3564 /// @domName SVGHKernElement 3446 /// @domName SVGHKernElement
3565 class SVGHKernElement extends SVGElement { 3447 class HKernElement extends SvgElement {
3566 SVGHKernElement.internal(): super.internal(); 3448 HKernElement.internal(): super.internal();
3567 3449
3568 } 3450 }
3569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3451 // 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 3452 // 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. 3453 // BSD-style license that can be found in the LICENSE file.
3572 3454
3573 // WARNING: Do not edit - generated code. 3455 // WARNING: Do not edit - generated code.
3574 3456
3575 3457
3576 /// @domName SVGImageElement 3458 /// @domName SVGImageElement
3577 class SVGImageElement extends SVGElement implements SVGLangSpace, SVGTests, SVGS tylable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { 3459 class ImageElement extends SvgElement implements Transformable, Tests, UriRefere nce, Stylable, ExternalResourcesRequired, LangSpace {
3578 SVGImageElement.internal(): super.internal(); 3460
3461 factory ImageElement({String src, int width, int height}) {
3462 if (!?src) {
3463 return _Elements.createImageElement();
3464 }
3465 if (!?width) {
3466 return _Elements.createImageElement(src);
3467 }
3468 if (!?height) {
3469 return _Elements.createImageElement(src, width);
3470 }
3471 return _Elements.createImageElement(src, width, height);
3472 }
3473 ImageElement.internal(): super.internal();
3579 3474
3580 3475
3581 /** @domName SVGImageElement.height */ 3476 /** @domName SVGImageElement.height */
3582 SVGAnimatedLength get height native "SVGImageElement_height_Getter"; 3477 AnimatedLength get height native "SVGImageElement_height_Getter";
3583 3478
3584 3479
3585 /** @domName SVGImageElement.preserveAspectRatio */ 3480 /** @domName SVGImageElement.preserveAspectRatio */
3586 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement _preserveAspectRatio_Getter"; 3481 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement_pr eserveAspectRatio_Getter";
3587 3482
3588 3483
3589 /** @domName SVGImageElement.width */ 3484 /** @domName SVGImageElement.width */
3590 SVGAnimatedLength get width native "SVGImageElement_width_Getter"; 3485 AnimatedLength get width native "SVGImageElement_width_Getter";
3591 3486
3592 3487
3593 /** @domName SVGImageElement.x */ 3488 /** @domName SVGImageElement.x */
3594 SVGAnimatedLength get x native "SVGImageElement_x_Getter"; 3489 AnimatedLength get x native "SVGImageElement_x_Getter";
3595 3490
3596 3491
3597 /** @domName SVGImageElement.y */ 3492 /** @domName SVGImageElement.y */
3598 SVGAnimatedLength get y native "SVGImageElement_y_Getter"; 3493 AnimatedLength get y native "SVGImageElement_y_Getter";
3599 3494
3600 3495
3601 /** @domName SVGImageElement.externalResourcesRequired */ 3496 /** @domName SVGImageElement.externalResourcesRequired */
3602 SVGAnimatedBoolean get externalResourcesRequired native "SVGImageElement_exter nalResourcesRequired_Getter"; 3497 AnimatedBoolean get externalResourcesRequired native "SVGImageElement_external ResourcesRequired_Getter";
3603 3498
3604 3499
3605 /** @domName SVGImageElement.xmllang */ 3500 /** @domName SVGImageElement.xmllang */
3606 String get xmllang native "SVGImageElement_xmllang_Getter"; 3501 String get xmllang native "SVGImageElement_xmllang_Getter";
3607 3502
3608 3503
3609 /** @domName SVGImageElement.xmllang */ 3504 /** @domName SVGImageElement.xmllang */
3610 void set xmllang(String value) native "SVGImageElement_xmllang_Setter"; 3505 void set xmllang(String value) native "SVGImageElement_xmllang_Setter";
3611 3506
3612 3507
3613 /** @domName SVGImageElement.xmlspace */ 3508 /** @domName SVGImageElement.xmlspace */
3614 String get xmlspace native "SVGImageElement_xmlspace_Getter"; 3509 String get xmlspace native "SVGImageElement_xmlspace_Getter";
3615 3510
3616 3511
3617 /** @domName SVGImageElement.xmlspace */ 3512 /** @domName SVGImageElement.xmlspace */
3618 void set xmlspace(String value) native "SVGImageElement_xmlspace_Setter"; 3513 void set xmlspace(String value) native "SVGImageElement_xmlspace_Setter";
3619 3514
3620 3515
3621 /** @domName SVGImageElement.farthestViewportElement */ 3516 /** @domName SVGImageElement.farthestViewportElement */
3622 SVGElement get farthestViewportElement native "SVGImageElement_farthestViewpor tElement_Getter"; 3517 SvgElement get farthestViewportElement native "SVGImageElement_farthestViewpor tElement_Getter";
3623 3518
3624 3519
3625 /** @domName SVGImageElement.nearestViewportElement */ 3520 /** @domName SVGImageElement.nearestViewportElement */
3626 SVGElement get nearestViewportElement native "SVGImageElement_nearestViewportE lement_Getter"; 3521 SvgElement get nearestViewportElement native "SVGImageElement_nearestViewportE lement_Getter";
3627 3522
3628 3523
3629 /** @domName SVGImageElement.getBBox */ 3524 /** @domName SVGImageElement.getBBox */
3630 SVGRect getBBox() native "SVGImageElement_getBBox_Callback"; 3525 Rect getBBox() native "SVGImageElement_getBBox_Callback";
3631 3526
3632 3527
3633 /** @domName SVGImageElement.getCTM */ 3528 /** @domName SVGImageElement.getCTM */
3634 SVGMatrix getCTM() native "SVGImageElement_getCTM_Callback"; 3529 Matrix getCTM() native "SVGImageElement_getCTM_Callback";
3635 3530
3636 3531
3637 /** @domName SVGImageElement.getScreenCTM */ 3532 /** @domName SVGImageElement.getScreenCTM */
3638 SVGMatrix getScreenCTM() native "SVGImageElement_getScreenCTM_Callback"; 3533 Matrix getScreenCTM() native "SVGImageElement_getScreenCTM_Callback";
3639 3534
3640 3535
3641 /** @domName SVGImageElement.getTransformToElement */ 3536 /** @domName SVGImageElement.getTransformToElement */
3642 SVGMatrix getTransformToElement(SVGElement element) native "SVGImageElement_ge tTransformToElement_Callback"; 3537 Matrix getTransformToElement(SvgElement element) native "SVGImageElement_getTr ansformToElement_Callback";
3643 3538
3644 3539
3645 /** @domName SVGImageElement.className */ 3540 /** @domName SVGImageElement.className */
3646 SVGAnimatedString get $dom_svgClassName native "SVGImageElement_className_Gett er"; 3541 AnimatedString get $dom_svgClassName native "SVGImageElement_className_Getter" ;
3647 3542
3648 3543
3649 /** @domName SVGImageElement.style */ 3544 /** @domName SVGImageElement.style */
3650 CSSStyleDeclaration get style native "SVGImageElement_style_Getter"; 3545 CSSStyleDeclaration get style native "SVGImageElement_style_Getter";
3651 3546
3652 3547
3653 /** @domName SVGImageElement.getPresentationAttribute */ 3548 /** @domName SVGImageElement.getPresentationAttribute */
3654 CSSValue getPresentationAttribute(String name) native "SVGImageElement_getPres entationAttribute_Callback"; 3549 CSSValue getPresentationAttribute(String name) native "SVGImageElement_getPres entationAttribute_Callback";
3655 3550
3656 3551
3657 /** @domName SVGImageElement.requiredExtensions */ 3552 /** @domName SVGImageElement.requiredExtensions */
3658 SVGStringList get requiredExtensions native "SVGImageElement_requiredExtension s_Getter"; 3553 StringList get requiredExtensions native "SVGImageElement_requiredExtensions_G etter";
3659 3554
3660 3555
3661 /** @domName SVGImageElement.requiredFeatures */ 3556 /** @domName SVGImageElement.requiredFeatures */
3662 SVGStringList get requiredFeatures native "SVGImageElement_requiredFeatures_Ge tter"; 3557 StringList get requiredFeatures native "SVGImageElement_requiredFeatures_Gette r";
3663 3558
3664 3559
3665 /** @domName SVGImageElement.systemLanguage */ 3560 /** @domName SVGImageElement.systemLanguage */
3666 SVGStringList get systemLanguage native "SVGImageElement_systemLanguage_Getter "; 3561 StringList get systemLanguage native "SVGImageElement_systemLanguage_Getter";
3667 3562
3668 3563
3669 /** @domName SVGImageElement.hasExtension */ 3564 /** @domName SVGImageElement.hasExtension */
3670 bool hasExtension(String extension) native "SVGImageElement_hasExtension_Callb ack"; 3565 bool hasExtension(String extension) native "SVGImageElement_hasExtension_Callb ack";
3671 3566
3672 3567
3673 /** @domName SVGImageElement.transform */ 3568 /** @domName SVGImageElement.transform */
3674 SVGAnimatedTransformList get transform native "SVGImageElement_transform_Gette r"; 3569 AnimatedTransformList get transform native "SVGImageElement_transform_Getter";
3675 3570
3676 3571
3677 /** @domName SVGImageElement.href */ 3572 /** @domName SVGImageElement.href */
3678 SVGAnimatedString get href native "SVGImageElement_href_Getter"; 3573 AnimatedString get href native "SVGImageElement_href_Getter";
3679 3574
3680 } 3575 }
3681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3576 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3682 // for details. All rights reserved. Use of this source code is governed by a 3577 // for details. All rights reserved. Use of this source code is governed by a
3683 // BSD-style license that can be found in the LICENSE file. 3578 // BSD-style license that can be found in the LICENSE file.
3684 3579
3685 // WARNING: Do not edit - generated code. 3580 // WARNING: Do not edit - generated code.
3686 3581
3687 3582
3688 /// @domName SVGLangSpace 3583 /// @domName SVGLangSpace
3689 class SVGLangSpace extends NativeFieldWrapperClass1 { 3584 class LangSpace extends NativeFieldWrapperClass1 {
3690 SVGLangSpace.internal(); 3585 LangSpace.internal();
3691 3586
3692 3587
3693 /** @domName SVGLangSpace.xmllang */ 3588 /** @domName SVGLangSpace.xmllang */
3694 String get xmllang native "SVGLangSpace_xmllang_Getter"; 3589 String get xmllang native "SVGLangSpace_xmllang_Getter";
3695 3590
3696 3591
3697 /** @domName SVGLangSpace.xmllang */ 3592 /** @domName SVGLangSpace.xmllang */
3698 void set xmllang(String value) native "SVGLangSpace_xmllang_Setter"; 3593 void set xmllang(String value) native "SVGLangSpace_xmllang_Setter";
3699 3594
3700 3595
3701 /** @domName SVGLangSpace.xmlspace */ 3596 /** @domName SVGLangSpace.xmlspace */
3702 String get xmlspace native "SVGLangSpace_xmlspace_Getter"; 3597 String get xmlspace native "SVGLangSpace_xmlspace_Getter";
3703 3598
3704 3599
3705 /** @domName SVGLangSpace.xmlspace */ 3600 /** @domName SVGLangSpace.xmlspace */
3706 void set xmlspace(String value) native "SVGLangSpace_xmlspace_Setter"; 3601 void set xmlspace(String value) native "SVGLangSpace_xmlspace_Setter";
3707 3602
3708 } 3603 }
3709 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3604 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3710 // for details. All rights reserved. Use of this source code is governed by a 3605 // for details. All rights reserved. Use of this source code is governed by a
3711 // BSD-style license that can be found in the LICENSE file. 3606 // BSD-style license that can be found in the LICENSE file.
3712 3607
3713 // WARNING: Do not edit - generated code. 3608 // WARNING: Do not edit - generated code.
3714 3609
3715 3610
3716 /// @domName SVGLength 3611 /// @domName SVGLength
3717 class SVGLength extends NativeFieldWrapperClass1 { 3612 class Length extends NativeFieldWrapperClass1 {
3718 SVGLength.internal(); 3613 Length.internal();
3719 3614
3720 static const int SVG_LENGTHTYPE_CM = 6; 3615 static const int SVG_LENGTHTYPE_CM = 6;
3721 3616
3722 static const int SVG_LENGTHTYPE_EMS = 3; 3617 static const int SVG_LENGTHTYPE_EMS = 3;
3723 3618
3724 static const int SVG_LENGTHTYPE_EXS = 4; 3619 static const int SVG_LENGTHTYPE_EXS = 4;
3725 3620
3726 static const int SVG_LENGTHTYPE_IN = 8; 3621 static const int SVG_LENGTHTYPE_IN = 8;
3727 3622
3728 static const int SVG_LENGTHTYPE_MM = 7; 3623 static const int SVG_LENGTHTYPE_MM = 7;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
3777 3672
3778 } 3673 }
3779 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3674 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3780 // for details. All rights reserved. Use of this source code is governed by a 3675 // for details. All rights reserved. Use of this source code is governed by a
3781 // BSD-style license that can be found in the LICENSE file. 3676 // BSD-style license that can be found in the LICENSE file.
3782 3677
3783 // WARNING: Do not edit - generated code. 3678 // WARNING: Do not edit - generated code.
3784 3679
3785 3680
3786 /// @domName SVGLengthList 3681 /// @domName SVGLengthList
3787 class SVGLengthList extends NativeFieldWrapperClass1 implements List<SVGLength> { 3682 class LengthList extends NativeFieldWrapperClass1 implements List<Length> {
3788 SVGLengthList.internal(); 3683 LengthList.internal();
3789 3684
3790 3685
3791 /** @domName SVGLengthList.numberOfItems */ 3686 /** @domName SVGLengthList.numberOfItems */
3792 int get numberOfItems native "SVGLengthList_numberOfItems_Getter"; 3687 int get numberOfItems native "SVGLengthList_numberOfItems_Getter";
3793 3688
3794 SVGLength operator[](int index) native "SVGLengthList_item_Callback"; 3689 Length operator[](int index) native "SVGLengthList_item_Callback";
3795 3690
3796 void operator[]=(int index, SVGLength value) { 3691 void operator[]=(int index, Length value) {
3797 throw new UnsupportedError("Cannot assign element of immutable List."); 3692 throw new UnsupportedError("Cannot assign element of immutable List.");
3798 } 3693 }
3799 // -- start List<SVGLength> mixins. 3694 // -- start List<Length> mixins.
3800 // SVGLength is the element type. 3695 // Length is the element type.
3801 3696
3802 // From Iterable<SVGLength>: 3697 // From Iterable<Length>:
3803 3698
3804 Iterator<SVGLength> iterator() { 3699 Iterator<Length> iterator() {
3805 // Note: NodeLists are not fixed size. And most probably length shouldn't 3700 // Note: NodeLists are not fixed size. And most probably length shouldn't
3806 // be cached in both iterator _and_ forEach method. For now caching it 3701 // be cached in both iterator _and_ forEach method. For now caching it
3807 // for consistency. 3702 // for consistency.
3808 return new FixedSizeListIterator<SVGLength>(this); 3703 return new FixedSizeListIterator<Length>(this);
3809 } 3704 }
3810 3705
3811 // From Collection<SVGLength>: 3706 // From Collection<Length>:
3812 3707
3813 void add(SVGLength value) { 3708 void add(Length value) {
3814 throw new UnsupportedError("Cannot add to immutable List."); 3709 throw new UnsupportedError("Cannot add to immutable List.");
3815 } 3710 }
3816 3711
3817 void addLast(SVGLength value) { 3712 void addLast(Length value) {
3818 throw new UnsupportedError("Cannot add to immutable List."); 3713 throw new UnsupportedError("Cannot add to immutable List.");
3819 } 3714 }
3820 3715
3821 void addAll(Collection<SVGLength> collection) { 3716 void addAll(Collection<Length> collection) {
3822 throw new UnsupportedError("Cannot add to immutable List."); 3717 throw new UnsupportedError("Cannot add to immutable List.");
3823 } 3718 }
3824 3719
3825 bool contains(SVGLength element) => _Collections.contains(this, element); 3720 bool contains(Length element) => _Collections.contains(this, element);
3826 3721
3827 void forEach(void f(SVGLength element)) => _Collections.forEach(this, f); 3722 void forEach(void f(Length element)) => _Collections.forEach(this, f);
3828 3723
3829 Collection map(f(SVGLength element)) => _Collections.map(this, [], f); 3724 Collection map(f(Length element)) => _Collections.map(this, [], f);
3830 3725
3831 Collection<SVGLength> filter(bool f(SVGLength element)) => 3726 Collection<Length> filter(bool f(Length element)) =>
3832 _Collections.filter(this, <SVGLength>[], f); 3727 _Collections.filter(this, <Length>[], f);
3833 3728
3834 bool every(bool f(SVGLength element)) => _Collections.every(this, f); 3729 bool every(bool f(Length element)) => _Collections.every(this, f);
3835 3730
3836 bool some(bool f(SVGLength element)) => _Collections.some(this, f); 3731 bool some(bool f(Length element)) => _Collections.some(this, f);
3837 3732
3838 bool get isEmpty => this.length == 0; 3733 bool get isEmpty => this.length == 0;
3839 3734
3840 // From List<SVGLength>: 3735 // From List<Length>:
3841 3736
3842 void sort([Comparator<SVGLength> compare = Comparable.compare]) { 3737 void sort([Comparator<Length> compare = Comparable.compare]) {
3843 throw new UnsupportedError("Cannot sort immutable List."); 3738 throw new UnsupportedError("Cannot sort immutable List.");
3844 } 3739 }
3845 3740
3846 int indexOf(SVGLength element, [int start = 0]) => 3741 int indexOf(Length element, [int start = 0]) =>
3847 _Lists.indexOf(this, element, start, this.length); 3742 _Lists.indexOf(this, element, start, this.length);
3848 3743
3849 int lastIndexOf(SVGLength element, [int start]) { 3744 int lastIndexOf(Length element, [int start]) {
3850 if (start == null) start = length - 1; 3745 if (start == null) start = length - 1;
3851 return _Lists.lastIndexOf(this, element, start); 3746 return _Lists.lastIndexOf(this, element, start);
3852 } 3747 }
3853 3748
3854 SVGLength get last => this[length - 1]; 3749 Length get last => this[length - 1];
3855 3750
3856 SVGLength removeLast() { 3751 Length removeLast() {
3857 throw new UnsupportedError("Cannot removeLast on immutable List."); 3752 throw new UnsupportedError("Cannot removeLast on immutable List.");
3858 } 3753 }
3859 3754
3860 void setRange(int start, int rangeLength, List<SVGLength> from, [int startFrom ]) { 3755 void setRange(int start, int rangeLength, List<Length> from, [int startFrom]) {
3861 throw new UnsupportedError("Cannot setRange on immutable List."); 3756 throw new UnsupportedError("Cannot setRange on immutable List.");
3862 } 3757 }
3863 3758
3864 void removeRange(int start, int rangeLength) { 3759 void removeRange(int start, int rangeLength) {
3865 throw new UnsupportedError("Cannot removeRange on immutable List."); 3760 throw new UnsupportedError("Cannot removeRange on immutable List.");
3866 } 3761 }
3867 3762
3868 void insertRange(int start, int rangeLength, [SVGLength initialValue]) { 3763 void insertRange(int start, int rangeLength, [Length initialValue]) {
3869 throw new UnsupportedError("Cannot insertRange on immutable List."); 3764 throw new UnsupportedError("Cannot insertRange on immutable List.");
3870 } 3765 }
3871 3766
3872 List<SVGLength> getRange(int start, int rangeLength) => 3767 List<Length> getRange(int start, int rangeLength) =>
3873 _Lists.getRange(this, start, rangeLength, <SVGLength>[]); 3768 _Lists.getRange(this, start, rangeLength, <Length>[]);
3874 3769
3875 // -- end List<SVGLength> mixins. 3770 // -- end List<Length> mixins.
3876 3771
3877 3772
3878 /** @domName SVGLengthList.appendItem */ 3773 /** @domName SVGLengthList.appendItem */
3879 SVGLength appendItem(SVGLength item) native "SVGLengthList_appendItem_Callback "; 3774 Length appendItem(Length item) native "SVGLengthList_appendItem_Callback";
3880 3775
3881 3776
3882 /** @domName SVGLengthList.clear */ 3777 /** @domName SVGLengthList.clear */
3883 void clear() native "SVGLengthList_clear_Callback"; 3778 void clear() native "SVGLengthList_clear_Callback";
3884 3779
3885 3780
3886 /** @domName SVGLengthList.getItem */ 3781 /** @domName SVGLengthList.getItem */
3887 SVGLength getItem(int index) native "SVGLengthList_getItem_Callback"; 3782 Length getItem(int index) native "SVGLengthList_getItem_Callback";
3888 3783
3889 3784
3890 /** @domName SVGLengthList.initialize */ 3785 /** @domName SVGLengthList.initialize */
3891 SVGLength initialize(SVGLength item) native "SVGLengthList_initialize_Callback "; 3786 Length initialize(Length item) native "SVGLengthList_initialize_Callback";
3892 3787
3893 3788
3894 /** @domName SVGLengthList.insertItemBefore */ 3789 /** @domName SVGLengthList.insertItemBefore */
3895 SVGLength insertItemBefore(SVGLength item, int index) native "SVGLengthList_in sertItemBefore_Callback"; 3790 Length insertItemBefore(Length item, int index) native "SVGLengthList_insertIt emBefore_Callback";
3896 3791
3897 3792
3898 /** @domName SVGLengthList.removeItem */ 3793 /** @domName SVGLengthList.removeItem */
3899 SVGLength removeItem(int index) native "SVGLengthList_removeItem_Callback"; 3794 Length removeItem(int index) native "SVGLengthList_removeItem_Callback";
3900 3795
3901 3796
3902 /** @domName SVGLengthList.replaceItem */ 3797 /** @domName SVGLengthList.replaceItem */
3903 SVGLength replaceItem(SVGLength item, int index) native "SVGLengthList_replace Item_Callback"; 3798 Length replaceItem(Length item, int index) native "SVGLengthList_replaceItem_C allback";
3904 3799
3905 } 3800 }
3906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3801 // 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 3802 // 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. 3803 // BSD-style license that can be found in the LICENSE file.
3909 3804
3910 // WARNING: Do not edit - generated code. 3805 // WARNING: Do not edit - generated code.
3911 3806
3912 3807
3913 /// @domName SVGLineElement 3808 /// @domName SVGLineElement
3914 class SVGLineElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 3809 class LineElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace {
3915 SVGLineElement.internal(): super.internal(); 3810 LineElement.internal(): super.internal();
3916 3811
3917 3812
3918 /** @domName SVGLineElement.x1 */ 3813 /** @domName SVGLineElement.x1 */
3919 SVGAnimatedLength get x1 native "SVGLineElement_x1_Getter"; 3814 AnimatedLength get x1 native "SVGLineElement_x1_Getter";
3920 3815
3921 3816
3922 /** @domName SVGLineElement.x2 */ 3817 /** @domName SVGLineElement.x2 */
3923 SVGAnimatedLength get x2 native "SVGLineElement_x2_Getter"; 3818 AnimatedLength get x2 native "SVGLineElement_x2_Getter";
3924 3819
3925 3820
3926 /** @domName SVGLineElement.y1 */ 3821 /** @domName SVGLineElement.y1 */
3927 SVGAnimatedLength get y1 native "SVGLineElement_y1_Getter"; 3822 AnimatedLength get y1 native "SVGLineElement_y1_Getter";
3928 3823
3929 3824
3930 /** @domName SVGLineElement.y2 */ 3825 /** @domName SVGLineElement.y2 */
3931 SVGAnimatedLength get y2 native "SVGLineElement_y2_Getter"; 3826 AnimatedLength get y2 native "SVGLineElement_y2_Getter";
3932 3827
3933 3828
3934 /** @domName SVGLineElement.externalResourcesRequired */ 3829 /** @domName SVGLineElement.externalResourcesRequired */
3935 SVGAnimatedBoolean get externalResourcesRequired native "SVGLineElement_extern alResourcesRequired_Getter"; 3830 AnimatedBoolean get externalResourcesRequired native "SVGLineElement_externalR esourcesRequired_Getter";
3936 3831
3937 3832
3938 /** @domName SVGLineElement.xmllang */ 3833 /** @domName SVGLineElement.xmllang */
3939 String get xmllang native "SVGLineElement_xmllang_Getter"; 3834 String get xmllang native "SVGLineElement_xmllang_Getter";
3940 3835
3941 3836
3942 /** @domName SVGLineElement.xmllang */ 3837 /** @domName SVGLineElement.xmllang */
3943 void set xmllang(String value) native "SVGLineElement_xmllang_Setter"; 3838 void set xmllang(String value) native "SVGLineElement_xmllang_Setter";
3944 3839
3945 3840
3946 /** @domName SVGLineElement.xmlspace */ 3841 /** @domName SVGLineElement.xmlspace */
3947 String get xmlspace native "SVGLineElement_xmlspace_Getter"; 3842 String get xmlspace native "SVGLineElement_xmlspace_Getter";
3948 3843
3949 3844
3950 /** @domName SVGLineElement.xmlspace */ 3845 /** @domName SVGLineElement.xmlspace */
3951 void set xmlspace(String value) native "SVGLineElement_xmlspace_Setter"; 3846 void set xmlspace(String value) native "SVGLineElement_xmlspace_Setter";
3952 3847
3953 3848
3954 /** @domName SVGLineElement.farthestViewportElement */ 3849 /** @domName SVGLineElement.farthestViewportElement */
3955 SVGElement get farthestViewportElement native "SVGLineElement_farthestViewport Element_Getter"; 3850 SvgElement get farthestViewportElement native "SVGLineElement_farthestViewport Element_Getter";
3956 3851
3957 3852
3958 /** @domName SVGLineElement.nearestViewportElement */ 3853 /** @domName SVGLineElement.nearestViewportElement */
3959 SVGElement get nearestViewportElement native "SVGLineElement_nearestViewportEl ement_Getter"; 3854 SvgElement get nearestViewportElement native "SVGLineElement_nearestViewportEl ement_Getter";
3960 3855
3961 3856
3962 /** @domName SVGLineElement.getBBox */ 3857 /** @domName SVGLineElement.getBBox */
3963 SVGRect getBBox() native "SVGLineElement_getBBox_Callback"; 3858 Rect getBBox() native "SVGLineElement_getBBox_Callback";
3964 3859
3965 3860
3966 /** @domName SVGLineElement.getCTM */ 3861 /** @domName SVGLineElement.getCTM */
3967 SVGMatrix getCTM() native "SVGLineElement_getCTM_Callback"; 3862 Matrix getCTM() native "SVGLineElement_getCTM_Callback";
3968 3863
3969 3864
3970 /** @domName SVGLineElement.getScreenCTM */ 3865 /** @domName SVGLineElement.getScreenCTM */
3971 SVGMatrix getScreenCTM() native "SVGLineElement_getScreenCTM_Callback"; 3866 Matrix getScreenCTM() native "SVGLineElement_getScreenCTM_Callback";
3972 3867
3973 3868
3974 /** @domName SVGLineElement.getTransformToElement */ 3869 /** @domName SVGLineElement.getTransformToElement */
3975 SVGMatrix getTransformToElement(SVGElement element) native "SVGLineElement_get TransformToElement_Callback"; 3870 Matrix getTransformToElement(SvgElement element) native "SVGLineElement_getTra nsformToElement_Callback";
3976 3871
3977 3872
3978 /** @domName SVGLineElement.className */ 3873 /** @domName SVGLineElement.className */
3979 SVGAnimatedString get $dom_svgClassName native "SVGLineElement_className_Gette r"; 3874 AnimatedString get $dom_svgClassName native "SVGLineElement_className_Getter";
3980 3875
3981 3876
3982 /** @domName SVGLineElement.style */ 3877 /** @domName SVGLineElement.style */
3983 CSSStyleDeclaration get style native "SVGLineElement_style_Getter"; 3878 CSSStyleDeclaration get style native "SVGLineElement_style_Getter";
3984 3879
3985 3880
3986 /** @domName SVGLineElement.getPresentationAttribute */ 3881 /** @domName SVGLineElement.getPresentationAttribute */
3987 CSSValue getPresentationAttribute(String name) native "SVGLineElement_getPrese ntationAttribute_Callback"; 3882 CSSValue getPresentationAttribute(String name) native "SVGLineElement_getPrese ntationAttribute_Callback";
3988 3883
3989 3884
3990 /** @domName SVGLineElement.requiredExtensions */ 3885 /** @domName SVGLineElement.requiredExtensions */
3991 SVGStringList get requiredExtensions native "SVGLineElement_requiredExtensions _Getter"; 3886 StringList get requiredExtensions native "SVGLineElement_requiredExtensions_Ge tter";
3992 3887
3993 3888
3994 /** @domName SVGLineElement.requiredFeatures */ 3889 /** @domName SVGLineElement.requiredFeatures */
3995 SVGStringList get requiredFeatures native "SVGLineElement_requiredFeatures_Get ter"; 3890 StringList get requiredFeatures native "SVGLineElement_requiredFeatures_Getter ";
3996 3891
3997 3892
3998 /** @domName SVGLineElement.systemLanguage */ 3893 /** @domName SVGLineElement.systemLanguage */
3999 SVGStringList get systemLanguage native "SVGLineElement_systemLanguage_Getter" ; 3894 StringList get systemLanguage native "SVGLineElement_systemLanguage_Getter";
4000 3895
4001 3896
4002 /** @domName SVGLineElement.hasExtension */ 3897 /** @domName SVGLineElement.hasExtension */
4003 bool hasExtension(String extension) native "SVGLineElement_hasExtension_Callba ck"; 3898 bool hasExtension(String extension) native "SVGLineElement_hasExtension_Callba ck";
4004 3899
4005 3900
4006 /** @domName SVGLineElement.transform */ 3901 /** @domName SVGLineElement.transform */
4007 SVGAnimatedTransformList get transform native "SVGLineElement_transform_Getter "; 3902 AnimatedTransformList get transform native "SVGLineElement_transform_Getter";
4008 3903
4009 } 3904 }
4010 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3905 // 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 3906 // 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. 3907 // BSD-style license that can be found in the LICENSE file.
4013 3908
4014 // WARNING: Do not edit - generated code. 3909 // WARNING: Do not edit - generated code.
4015 3910
4016 3911
4017 /// @domName SVGLinearGradientElement 3912 /// @domName SVGLinearGradientElement
4018 class SVGLinearGradientElement extends SVGGradientElement { 3913 class LinearGradientElement extends GradientElement {
4019 SVGLinearGradientElement.internal(): super.internal(); 3914 LinearGradientElement.internal(): super.internal();
4020 3915
4021 3916
4022 /** @domName SVGLinearGradientElement.x1 */ 3917 /** @domName SVGLinearGradientElement.x1 */
4023 SVGAnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; 3918 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter";
4024 3919
4025 3920
4026 /** @domName SVGLinearGradientElement.x2 */ 3921 /** @domName SVGLinearGradientElement.x2 */
4027 SVGAnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter"; 3922 AnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter";
4028 3923
4029 3924
4030 /** @domName SVGLinearGradientElement.y1 */ 3925 /** @domName SVGLinearGradientElement.y1 */
4031 SVGAnimatedLength get y1 native "SVGLinearGradientElement_y1_Getter"; 3926 AnimatedLength get y1 native "SVGLinearGradientElement_y1_Getter";
4032 3927
4033 3928
4034 /** @domName SVGLinearGradientElement.y2 */ 3929 /** @domName SVGLinearGradientElement.y2 */
4035 SVGAnimatedLength get y2 native "SVGLinearGradientElement_y2_Getter"; 3930 AnimatedLength get y2 native "SVGLinearGradientElement_y2_Getter";
4036 3931
4037 } 3932 }
4038 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4039 // for details. All rights reserved. Use of this source code is governed by a 3934 // for details. All rights reserved. Use of this source code is governed by a
4040 // BSD-style license that can be found in the LICENSE file. 3935 // BSD-style license that can be found in the LICENSE file.
4041 3936
4042 // WARNING: Do not edit - generated code. 3937 // WARNING: Do not edit - generated code.
4043 3938
4044 3939
4045 /// @domName SVGLocatable 3940 /// @domName SVGLocatable
4046 class SVGLocatable extends NativeFieldWrapperClass1 { 3941 class Locatable extends NativeFieldWrapperClass1 {
4047 SVGLocatable.internal(); 3942 Locatable.internal();
4048 3943
4049 3944
4050 /** @domName SVGLocatable.farthestViewportElement */ 3945 /** @domName SVGLocatable.farthestViewportElement */
4051 SVGElement get farthestViewportElement native "SVGLocatable_farthestViewportEl ement_Getter"; 3946 SvgElement get farthestViewportElement native "SVGLocatable_farthestViewportEl ement_Getter";
4052 3947
4053 3948
4054 /** @domName SVGLocatable.nearestViewportElement */ 3949 /** @domName SVGLocatable.nearestViewportElement */
4055 SVGElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter"; 3950 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter";
4056 3951
4057 3952
4058 /** @domName SVGLocatable.getBBox */ 3953 /** @domName SVGLocatable.getBBox */
4059 SVGRect getBBox() native "SVGLocatable_getBBox_Callback"; 3954 Rect getBBox() native "SVGLocatable_getBBox_Callback";
4060 3955
4061 3956
4062 /** @domName SVGLocatable.getCTM */ 3957 /** @domName SVGLocatable.getCTM */
4063 SVGMatrix getCTM() native "SVGLocatable_getCTM_Callback"; 3958 Matrix getCTM() native "SVGLocatable_getCTM_Callback";
4064 3959
4065 3960
4066 /** @domName SVGLocatable.getScreenCTM */ 3961 /** @domName SVGLocatable.getScreenCTM */
4067 SVGMatrix getScreenCTM() native "SVGLocatable_getScreenCTM_Callback"; 3962 Matrix getScreenCTM() native "SVGLocatable_getScreenCTM_Callback";
4068 3963
4069 3964
4070 /** @domName SVGLocatable.getTransformToElement */ 3965 /** @domName SVGLocatable.getTransformToElement */
4071 SVGMatrix getTransformToElement(SVGElement element) native "SVGLocatable_getTr ansformToElement_Callback"; 3966 Matrix getTransformToElement(SvgElement element) native "SVGLocatable_getTrans formToElement_Callback";
4072 3967
4073 } 3968 }
4074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3969 // 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 3970 // 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. 3971 // BSD-style license that can be found in the LICENSE file.
4077 3972
4078 // WARNING: Do not edit - generated code. 3973 // WARNING: Do not edit - generated code.
4079 3974
4080 3975
4081 /// @domName SVGMPathElement 3976 /// @domName SVGMPathElement
4082 class SVGMPathElement extends SVGElement implements SVGURIReference, SVGExternal ResourcesRequired { 3977 class MPathElement extends SvgElement implements UriReference, ExternalResources Required {
4083 SVGMPathElement.internal(): super.internal(); 3978 MPathElement.internal(): super.internal();
4084 3979
4085 3980
4086 /** @domName SVGMPathElement.externalResourcesRequired */ 3981 /** @domName SVGMPathElement.externalResourcesRequired */
4087 SVGAnimatedBoolean get externalResourcesRequired native "SVGMPathElement_exter nalResourcesRequired_Getter"; 3982 AnimatedBoolean get externalResourcesRequired native "SVGMPathElement_external ResourcesRequired_Getter";
4088 3983
4089 3984
4090 /** @domName SVGMPathElement.href */ 3985 /** @domName SVGMPathElement.href */
4091 SVGAnimatedString get href native "SVGMPathElement_href_Getter"; 3986 AnimatedString get href native "SVGMPathElement_href_Getter";
4092 3987
4093 } 3988 }
4094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3989 // 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 3990 // 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. 3991 // BSD-style license that can be found in the LICENSE file.
4097 3992
4098 // WARNING: Do not edit - generated code. 3993 // WARNING: Do not edit - generated code.
4099 3994
4100 3995
4101 /// @domName SVGMarkerElement 3996 /// @domName SVGMarkerElement
4102 class SVGMarkerElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable { 3997 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace {
4103 SVGMarkerElement.internal(): super.internal(); 3998 MarkerElement.internal(): super.internal();
4104 3999
4105 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 4000 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
4106 4001
4107 static const int SVG_MARKERUNITS_UNKNOWN = 0; 4002 static const int SVG_MARKERUNITS_UNKNOWN = 0;
4108 4003
4109 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; 4004 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
4110 4005
4111 static const int SVG_MARKER_ORIENT_ANGLE = 2; 4006 static const int SVG_MARKER_ORIENT_ANGLE = 2;
4112 4007
4113 static const int SVG_MARKER_ORIENT_AUTO = 1; 4008 static const int SVG_MARKER_ORIENT_AUTO = 1;
4114 4009
4115 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 4010 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
4116 4011
4117 4012
4118 /** @domName SVGMarkerElement.markerHeight */ 4013 /** @domName SVGMarkerElement.markerHeight */
4119 SVGAnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Gette r"; 4014 AnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Getter";
4120 4015
4121 4016
4122 /** @domName SVGMarkerElement.markerUnits */ 4017 /** @domName SVGMarkerElement.markerUnits */
4123 SVGAnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Ge tter"; 4018 AnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Gette r";
4124 4019
4125 4020
4126 /** @domName SVGMarkerElement.markerWidth */ 4021 /** @domName SVGMarkerElement.markerWidth */
4127 SVGAnimatedLength get markerWidth native "SVGMarkerElement_markerWidth_Getter" ; 4022 AnimatedLength get markerWidth native "SVGMarkerElement_markerWidth_Getter";
4128 4023
4129 4024
4130 /** @domName SVGMarkerElement.orientAngle */ 4025 /** @domName SVGMarkerElement.orientAngle */
4131 SVGAnimatedAngle get orientAngle native "SVGMarkerElement_orientAngle_Getter"; 4026 AnimatedAngle get orientAngle native "SVGMarkerElement_orientAngle_Getter";
4132 4027
4133 4028
4134 /** @domName SVGMarkerElement.orientType */ 4029 /** @domName SVGMarkerElement.orientType */
4135 SVGAnimatedEnumeration get orientType native "SVGMarkerElement_orientType_Gett er"; 4030 AnimatedEnumeration get orientType native "SVGMarkerElement_orientType_Getter" ;
4136 4031
4137 4032
4138 /** @domName SVGMarkerElement.refX */ 4033 /** @domName SVGMarkerElement.refX */
4139 SVGAnimatedLength get refX native "SVGMarkerElement_refX_Getter"; 4034 AnimatedLength get refX native "SVGMarkerElement_refX_Getter";
4140 4035
4141 4036
4142 /** @domName SVGMarkerElement.refY */ 4037 /** @domName SVGMarkerElement.refY */
4143 SVGAnimatedLength get refY native "SVGMarkerElement_refY_Getter"; 4038 AnimatedLength get refY native "SVGMarkerElement_refY_Getter";
4144 4039
4145 4040
4146 /** @domName SVGMarkerElement.setOrientToAngle */ 4041 /** @domName SVGMarkerElement.setOrientToAngle */
4147 void setOrientToAngle(SVGAngle angle) native "SVGMarkerElement_setOrientToAngl e_Callback"; 4042 void setOrientToAngle(Angle angle) native "SVGMarkerElement_setOrientToAngle_C allback";
4148 4043
4149 4044
4150 /** @domName SVGMarkerElement.setOrientToAuto */ 4045 /** @domName SVGMarkerElement.setOrientToAuto */
4151 void setOrientToAuto() native "SVGMarkerElement_setOrientToAuto_Callback"; 4046 void setOrientToAuto() native "SVGMarkerElement_setOrientToAuto_Callback";
4152 4047
4153 4048
4154 /** @domName SVGMarkerElement.externalResourcesRequired */ 4049 /** @domName SVGMarkerElement.externalResourcesRequired */
4155 SVGAnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_exte rnalResourcesRequired_Getter"; 4050 AnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_externa lResourcesRequired_Getter";
4156 4051
4157 4052
4158 /** @domName SVGMarkerElement.preserveAspectRatio */ 4053 /** @domName SVGMarkerElement.preserveAspectRatio */
4159 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElemen t_preserveAspectRatio_Getter"; 4054 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElement_p reserveAspectRatio_Getter";
4160 4055
4161 4056
4162 /** @domName SVGMarkerElement.viewBox */ 4057 /** @domName SVGMarkerElement.viewBox */
4163 SVGAnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter"; 4058 AnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter";
4164 4059
4165 4060
4166 /** @domName SVGMarkerElement.xmllang */ 4061 /** @domName SVGMarkerElement.xmllang */
4167 String get xmllang native "SVGMarkerElement_xmllang_Getter"; 4062 String get xmllang native "SVGMarkerElement_xmllang_Getter";
4168 4063
4169 4064
4170 /** @domName SVGMarkerElement.xmllang */ 4065 /** @domName SVGMarkerElement.xmllang */
4171 void set xmllang(String value) native "SVGMarkerElement_xmllang_Setter"; 4066 void set xmllang(String value) native "SVGMarkerElement_xmllang_Setter";
4172 4067
4173 4068
4174 /** @domName SVGMarkerElement.xmlspace */ 4069 /** @domName SVGMarkerElement.xmlspace */
4175 String get xmlspace native "SVGMarkerElement_xmlspace_Getter"; 4070 String get xmlspace native "SVGMarkerElement_xmlspace_Getter";
4176 4071
4177 4072
4178 /** @domName SVGMarkerElement.xmlspace */ 4073 /** @domName SVGMarkerElement.xmlspace */
4179 void set xmlspace(String value) native "SVGMarkerElement_xmlspace_Setter"; 4074 void set xmlspace(String value) native "SVGMarkerElement_xmlspace_Setter";
4180 4075
4181 4076
4182 /** @domName SVGMarkerElement.className */ 4077 /** @domName SVGMarkerElement.className */
4183 SVGAnimatedString get $dom_svgClassName native "SVGMarkerElement_className_Get ter"; 4078 AnimatedString get $dom_svgClassName native "SVGMarkerElement_className_Getter ";
4184 4079
4185 4080
4186 /** @domName SVGMarkerElement.style */ 4081 /** @domName SVGMarkerElement.style */
4187 CSSStyleDeclaration get style native "SVGMarkerElement_style_Getter"; 4082 CSSStyleDeclaration get style native "SVGMarkerElement_style_Getter";
4188 4083
4189 4084
4190 /** @domName SVGMarkerElement.getPresentationAttribute */ 4085 /** @domName SVGMarkerElement.getPresentationAttribute */
4191 CSSValue getPresentationAttribute(String name) native "SVGMarkerElement_getPre sentationAttribute_Callback"; 4086 CSSValue getPresentationAttribute(String name) native "SVGMarkerElement_getPre sentationAttribute_Callback";
4192 4087
4193 } 4088 }
4194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4089 // 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 4090 // 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. 4091 // BSD-style license that can be found in the LICENSE file.
4197 4092
4198 // WARNING: Do not edit - generated code. 4093 // WARNING: Do not edit - generated code.
4199 4094
4200 4095
4201 /// @domName SVGMaskElement 4096 /// @domName SVGMaskElement
4202 class SVGMaskElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGExternalResourcesRequired { 4097 class MaskElement extends SvgElement implements Tests, Stylable, ExternalResourc esRequired, LangSpace {
4203 SVGMaskElement.internal(): super.internal(); 4098 MaskElement.internal(): super.internal();
4204 4099
4205 4100
4206 /** @domName SVGMaskElement.height */ 4101 /** @domName SVGMaskElement.height */
4207 SVGAnimatedLength get height native "SVGMaskElement_height_Getter"; 4102 AnimatedLength get height native "SVGMaskElement_height_Getter";
4208 4103
4209 4104
4210 /** @domName SVGMaskElement.maskContentUnits */ 4105 /** @domName SVGMaskElement.maskContentUnits */
4211 SVGAnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContent Units_Getter"; 4106 AnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContentUni ts_Getter";
4212 4107
4213 4108
4214 /** @domName SVGMaskElement.maskUnits */ 4109 /** @domName SVGMaskElement.maskUnits */
4215 SVGAnimatedEnumeration get maskUnits native "SVGMaskElement_maskUnits_Getter"; 4110 AnimatedEnumeration get maskUnits native "SVGMaskElement_maskUnits_Getter";
4216 4111
4217 4112
4218 /** @domName SVGMaskElement.width */ 4113 /** @domName SVGMaskElement.width */
4219 SVGAnimatedLength get width native "SVGMaskElement_width_Getter"; 4114 AnimatedLength get width native "SVGMaskElement_width_Getter";
4220 4115
4221 4116
4222 /** @domName SVGMaskElement.x */ 4117 /** @domName SVGMaskElement.x */
4223 SVGAnimatedLength get x native "SVGMaskElement_x_Getter"; 4118 AnimatedLength get x native "SVGMaskElement_x_Getter";
4224 4119
4225 4120
4226 /** @domName SVGMaskElement.y */ 4121 /** @domName SVGMaskElement.y */
4227 SVGAnimatedLength get y native "SVGMaskElement_y_Getter"; 4122 AnimatedLength get y native "SVGMaskElement_y_Getter";
4228 4123
4229 4124
4230 /** @domName SVGMaskElement.externalResourcesRequired */ 4125 /** @domName SVGMaskElement.externalResourcesRequired */
4231 SVGAnimatedBoolean get externalResourcesRequired native "SVGMaskElement_extern alResourcesRequired_Getter"; 4126 AnimatedBoolean get externalResourcesRequired native "SVGMaskElement_externalR esourcesRequired_Getter";
4232 4127
4233 4128
4234 /** @domName SVGMaskElement.xmllang */ 4129 /** @domName SVGMaskElement.xmllang */
4235 String get xmllang native "SVGMaskElement_xmllang_Getter"; 4130 String get xmllang native "SVGMaskElement_xmllang_Getter";
4236 4131
4237 4132
4238 /** @domName SVGMaskElement.xmllang */ 4133 /** @domName SVGMaskElement.xmllang */
4239 void set xmllang(String value) native "SVGMaskElement_xmllang_Setter"; 4134 void set xmllang(String value) native "SVGMaskElement_xmllang_Setter";
4240 4135
4241 4136
4242 /** @domName SVGMaskElement.xmlspace */ 4137 /** @domName SVGMaskElement.xmlspace */
4243 String get xmlspace native "SVGMaskElement_xmlspace_Getter"; 4138 String get xmlspace native "SVGMaskElement_xmlspace_Getter";
4244 4139
4245 4140
4246 /** @domName SVGMaskElement.xmlspace */ 4141 /** @domName SVGMaskElement.xmlspace */
4247 void set xmlspace(String value) native "SVGMaskElement_xmlspace_Setter"; 4142 void set xmlspace(String value) native "SVGMaskElement_xmlspace_Setter";
4248 4143
4249 4144
4250 /** @domName SVGMaskElement.className */ 4145 /** @domName SVGMaskElement.className */
4251 SVGAnimatedString get $dom_svgClassName native "SVGMaskElement_className_Gette r"; 4146 AnimatedString get $dom_svgClassName native "SVGMaskElement_className_Getter";
4252 4147
4253 4148
4254 /** @domName SVGMaskElement.style */ 4149 /** @domName SVGMaskElement.style */
4255 CSSStyleDeclaration get style native "SVGMaskElement_style_Getter"; 4150 CSSStyleDeclaration get style native "SVGMaskElement_style_Getter";
4256 4151
4257 4152
4258 /** @domName SVGMaskElement.getPresentationAttribute */ 4153 /** @domName SVGMaskElement.getPresentationAttribute */
4259 CSSValue getPresentationAttribute(String name) native "SVGMaskElement_getPrese ntationAttribute_Callback"; 4154 CSSValue getPresentationAttribute(String name) native "SVGMaskElement_getPrese ntationAttribute_Callback";
4260 4155
4261 4156
4262 /** @domName SVGMaskElement.requiredExtensions */ 4157 /** @domName SVGMaskElement.requiredExtensions */
4263 SVGStringList get requiredExtensions native "SVGMaskElement_requiredExtensions _Getter"; 4158 StringList get requiredExtensions native "SVGMaskElement_requiredExtensions_Ge tter";
4264 4159
4265 4160
4266 /** @domName SVGMaskElement.requiredFeatures */ 4161 /** @domName SVGMaskElement.requiredFeatures */
4267 SVGStringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Get ter"; 4162 StringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Getter ";
4268 4163
4269 4164
4270 /** @domName SVGMaskElement.systemLanguage */ 4165 /** @domName SVGMaskElement.systemLanguage */
4271 SVGStringList get systemLanguage native "SVGMaskElement_systemLanguage_Getter" ; 4166 StringList get systemLanguage native "SVGMaskElement_systemLanguage_Getter";
4272 4167
4273 4168
4274 /** @domName SVGMaskElement.hasExtension */ 4169 /** @domName SVGMaskElement.hasExtension */
4275 bool hasExtension(String extension) native "SVGMaskElement_hasExtension_Callba ck"; 4170 bool hasExtension(String extension) native "SVGMaskElement_hasExtension_Callba ck";
4276 4171
4277 } 4172 }
4278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4173 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4279 // for details. All rights reserved. Use of this source code is governed by a 4174 // for details. All rights reserved. Use of this source code is governed by a
4280 // BSD-style license that can be found in the LICENSE file. 4175 // BSD-style license that can be found in the LICENSE file.
4281 4176
4282 // WARNING: Do not edit - generated code. 4177 // WARNING: Do not edit - generated code.
4283 4178
4284 4179
4285 /// @domName SVGMatrix 4180 /// @domName SVGMatrix
4286 class SVGMatrix extends NativeFieldWrapperClass1 { 4181 class Matrix extends NativeFieldWrapperClass1 {
4287 SVGMatrix.internal(); 4182 Matrix.internal();
4288 4183
4289 4184
4290 /** @domName SVGMatrix.a */ 4185 /** @domName SVGMatrix.a */
4291 num get a native "SVGMatrix_a_Getter"; 4186 num get a native "SVGMatrix_a_Getter";
4292 4187
4293 4188
4294 /** @domName SVGMatrix.a */ 4189 /** @domName SVGMatrix.a */
4295 void set a(num value) native "SVGMatrix_a_Setter"; 4190 void set a(num value) native "SVGMatrix_a_Setter";
4296 4191
4297 4192
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
4329 4224
4330 /** @domName SVGMatrix.f */ 4225 /** @domName SVGMatrix.f */
4331 num get f native "SVGMatrix_f_Getter"; 4226 num get f native "SVGMatrix_f_Getter";
4332 4227
4333 4228
4334 /** @domName SVGMatrix.f */ 4229 /** @domName SVGMatrix.f */
4335 void set f(num value) native "SVGMatrix_f_Setter"; 4230 void set f(num value) native "SVGMatrix_f_Setter";
4336 4231
4337 4232
4338 /** @domName SVGMatrix.flipX */ 4233 /** @domName SVGMatrix.flipX */
4339 SVGMatrix flipX() native "SVGMatrix_flipX_Callback"; 4234 Matrix flipX() native "SVGMatrix_flipX_Callback";
4340 4235
4341 4236
4342 /** @domName SVGMatrix.flipY */ 4237 /** @domName SVGMatrix.flipY */
4343 SVGMatrix flipY() native "SVGMatrix_flipY_Callback"; 4238 Matrix flipY() native "SVGMatrix_flipY_Callback";
4344 4239
4345 4240
4346 /** @domName SVGMatrix.inverse */ 4241 /** @domName SVGMatrix.inverse */
4347 SVGMatrix inverse() native "SVGMatrix_inverse_Callback"; 4242 Matrix inverse() native "SVGMatrix_inverse_Callback";
4348 4243
4349 4244
4350 /** @domName SVGMatrix.multiply */ 4245 /** @domName SVGMatrix.multiply */
4351 SVGMatrix multiply(SVGMatrix secondMatrix) native "SVGMatrix_multiply_Callback "; 4246 Matrix multiply(Matrix secondMatrix) native "SVGMatrix_multiply_Callback";
4352 4247
4353 4248
4354 /** @domName SVGMatrix.rotate */ 4249 /** @domName SVGMatrix.rotate */
4355 SVGMatrix rotate(num angle) native "SVGMatrix_rotate_Callback"; 4250 Matrix rotate(num angle) native "SVGMatrix_rotate_Callback";
4356 4251
4357 4252
4358 /** @domName SVGMatrix.rotateFromVector */ 4253 /** @domName SVGMatrix.rotateFromVector */
4359 SVGMatrix rotateFromVector(num x, num y) native "SVGMatrix_rotateFromVector_Ca llback"; 4254 Matrix rotateFromVector(num x, num y) native "SVGMatrix_rotateFromVector_Callb ack";
4360 4255
4361 4256
4362 /** @domName SVGMatrix.scale */ 4257 /** @domName SVGMatrix.scale */
4363 SVGMatrix scale(num scaleFactor) native "SVGMatrix_scale_Callback"; 4258 Matrix scale(num scaleFactor) native "SVGMatrix_scale_Callback";
4364 4259
4365 4260
4366 /** @domName SVGMatrix.scaleNonUniform */ 4261 /** @domName SVGMatrix.scaleNonUniform */
4367 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native "SVGMatri x_scaleNonUniform_Callback"; 4262 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native "SVGMatrix_s caleNonUniform_Callback";
4368 4263
4369 4264
4370 /** @domName SVGMatrix.skewX */ 4265 /** @domName SVGMatrix.skewX */
4371 SVGMatrix skewX(num angle) native "SVGMatrix_skewX_Callback"; 4266 Matrix skewX(num angle) native "SVGMatrix_skewX_Callback";
4372 4267
4373 4268
4374 /** @domName SVGMatrix.skewY */ 4269 /** @domName SVGMatrix.skewY */
4375 SVGMatrix skewY(num angle) native "SVGMatrix_skewY_Callback"; 4270 Matrix skewY(num angle) native "SVGMatrix_skewY_Callback";
4376 4271
4377 4272
4378 /** @domName SVGMatrix.translate */ 4273 /** @domName SVGMatrix.translate */
4379 SVGMatrix translate(num x, num y) native "SVGMatrix_translate_Callback"; 4274 Matrix translate(num x, num y) native "SVGMatrix_translate_Callback";
4380 4275
4381 } 4276 }
4382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4277 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4383 // for details. All rights reserved. Use of this source code is governed by a 4278 // for details. All rights reserved. Use of this source code is governed by a
4384 // BSD-style license that can be found in the LICENSE file. 4279 // BSD-style license that can be found in the LICENSE file.
4385 4280
4386 // WARNING: Do not edit - generated code. 4281 // WARNING: Do not edit - generated code.
4387 4282
4388 4283
4389 /// @domName SVGMetadataElement 4284 /// @domName SVGMetadataElement
4390 class SVGMetadataElement extends SVGElement { 4285 class MetadataElement extends SvgElement {
4391 SVGMetadataElement.internal(): super.internal(); 4286 MetadataElement.internal(): super.internal();
4392 4287
4393 } 4288 }
4394 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4395 // for details. All rights reserved. Use of this source code is governed by a 4290 // for details. All rights reserved. Use of this source code is governed by a
4396 // BSD-style license that can be found in the LICENSE file. 4291 // BSD-style license that can be found in the LICENSE file.
4397 4292
4398 // WARNING: Do not edit - generated code. 4293 // WARNING: Do not edit - generated code.
4399 4294
4400 4295
4401 /// @domName SVGMissingGlyphElement 4296 /// @domName SVGMissingGlyphElement
4402 class SVGMissingGlyphElement extends SVGElement { 4297 class MissingGlyphElement extends SvgElement {
4403 SVGMissingGlyphElement.internal(): super.internal(); 4298 MissingGlyphElement.internal(): super.internal();
4404 4299
4405 } 4300 }
4406 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4301 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4407 // for details. All rights reserved. Use of this source code is governed by a 4302 // for details. All rights reserved. Use of this source code is governed by a
4408 // BSD-style license that can be found in the LICENSE file. 4303 // BSD-style license that can be found in the LICENSE file.
4409 4304
4410 // WARNING: Do not edit - generated code. 4305 // WARNING: Do not edit - generated code.
4411 4306
4412 4307
4413 /// @domName SVGNumber 4308 /// @domName SVGNumber
4414 class SVGNumber extends NativeFieldWrapperClass1 { 4309 class Number extends NativeFieldWrapperClass1 {
4415 SVGNumber.internal(); 4310 Number.internal();
4416 4311
4417 4312
4418 /** @domName SVGNumber.value */ 4313 /** @domName SVGNumber.value */
4419 num get value native "SVGNumber_value_Getter"; 4314 num get value native "SVGNumber_value_Getter";
4420 4315
4421 4316
4422 /** @domName SVGNumber.value */ 4317 /** @domName SVGNumber.value */
4423 void set value(num value) native "SVGNumber_value_Setter"; 4318 void set value(num value) native "SVGNumber_value_Setter";
4424 4319
4425 } 4320 }
4426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4321 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4427 // for details. All rights reserved. Use of this source code is governed by a 4322 // for details. All rights reserved. Use of this source code is governed by a
4428 // BSD-style license that can be found in the LICENSE file. 4323 // BSD-style license that can be found in the LICENSE file.
4429 4324
4430 // WARNING: Do not edit - generated code. 4325 // WARNING: Do not edit - generated code.
4431 4326
4432 4327
4433 /// @domName SVGNumberList 4328 /// @domName SVGNumberList
4434 class SVGNumberList extends NativeFieldWrapperClass1 implements List<SVGNumber> { 4329 class NumberList extends NativeFieldWrapperClass1 implements List<Number> {
4435 SVGNumberList.internal(); 4330 NumberList.internal();
4436 4331
4437 4332
4438 /** @domName SVGNumberList.numberOfItems */ 4333 /** @domName SVGNumberList.numberOfItems */
4439 int get numberOfItems native "SVGNumberList_numberOfItems_Getter"; 4334 int get numberOfItems native "SVGNumberList_numberOfItems_Getter";
4440 4335
4441 SVGNumber operator[](int index) native "SVGNumberList_item_Callback"; 4336 Number operator[](int index) native "SVGNumberList_item_Callback";
4442 4337
4443 void operator[]=(int index, SVGNumber value) { 4338 void operator[]=(int index, Number value) {
4444 throw new UnsupportedError("Cannot assign element of immutable List."); 4339 throw new UnsupportedError("Cannot assign element of immutable List.");
4445 } 4340 }
4446 // -- start List<SVGNumber> mixins. 4341 // -- start List<Number> mixins.
4447 // SVGNumber is the element type. 4342 // Number is the element type.
4448 4343
4449 // From Iterable<SVGNumber>: 4344 // From Iterable<Number>:
4450 4345
4451 Iterator<SVGNumber> iterator() { 4346 Iterator<Number> iterator() {
4452 // Note: NodeLists are not fixed size. And most probably length shouldn't 4347 // Note: NodeLists are not fixed size. And most probably length shouldn't
4453 // be cached in both iterator _and_ forEach method. For now caching it 4348 // be cached in both iterator _and_ forEach method. For now caching it
4454 // for consistency. 4349 // for consistency.
4455 return new FixedSizeListIterator<SVGNumber>(this); 4350 return new FixedSizeListIterator<Number>(this);
4456 } 4351 }
4457 4352
4458 // From Collection<SVGNumber>: 4353 // From Collection<Number>:
4459 4354
4460 void add(SVGNumber value) { 4355 void add(Number value) {
4461 throw new UnsupportedError("Cannot add to immutable List."); 4356 throw new UnsupportedError("Cannot add to immutable List.");
4462 } 4357 }
4463 4358
4464 void addLast(SVGNumber value) { 4359 void addLast(Number value) {
4465 throw new UnsupportedError("Cannot add to immutable List."); 4360 throw new UnsupportedError("Cannot add to immutable List.");
4466 } 4361 }
4467 4362
4468 void addAll(Collection<SVGNumber> collection) { 4363 void addAll(Collection<Number> collection) {
4469 throw new UnsupportedError("Cannot add to immutable List."); 4364 throw new UnsupportedError("Cannot add to immutable List.");
4470 } 4365 }
4471 4366
4472 bool contains(SVGNumber element) => _Collections.contains(this, element); 4367 bool contains(Number element) => _Collections.contains(this, element);
4473 4368
4474 void forEach(void f(SVGNumber element)) => _Collections.forEach(this, f); 4369 void forEach(void f(Number element)) => _Collections.forEach(this, f);
4475 4370
4476 Collection map(f(SVGNumber element)) => _Collections.map(this, [], f); 4371 Collection map(f(Number element)) => _Collections.map(this, [], f);
4477 4372
4478 Collection<SVGNumber> filter(bool f(SVGNumber element)) => 4373 Collection<Number> filter(bool f(Number element)) =>
4479 _Collections.filter(this, <SVGNumber>[], f); 4374 _Collections.filter(this, <Number>[], f);
4480 4375
4481 bool every(bool f(SVGNumber element)) => _Collections.every(this, f); 4376 bool every(bool f(Number element)) => _Collections.every(this, f);
4482 4377
4483 bool some(bool f(SVGNumber element)) => _Collections.some(this, f); 4378 bool some(bool f(Number element)) => _Collections.some(this, f);
4484 4379
4485 bool get isEmpty => this.length == 0; 4380 bool get isEmpty => this.length == 0;
4486 4381
4487 // From List<SVGNumber>: 4382 // From List<Number>:
4488 4383
4489 void sort([Comparator<SVGNumber> compare = Comparable.compare]) { 4384 void sort([Comparator<Number> compare = Comparable.compare]) {
4490 throw new UnsupportedError("Cannot sort immutable List."); 4385 throw new UnsupportedError("Cannot sort immutable List.");
4491 } 4386 }
4492 4387
4493 int indexOf(SVGNumber element, [int start = 0]) => 4388 int indexOf(Number element, [int start = 0]) =>
4494 _Lists.indexOf(this, element, start, this.length); 4389 _Lists.indexOf(this, element, start, this.length);
4495 4390
4496 int lastIndexOf(SVGNumber element, [int start]) { 4391 int lastIndexOf(Number element, [int start]) {
4497 if (start == null) start = length - 1; 4392 if (start == null) start = length - 1;
4498 return _Lists.lastIndexOf(this, element, start); 4393 return _Lists.lastIndexOf(this, element, start);
4499 } 4394 }
4500 4395
4501 SVGNumber get last => this[length - 1]; 4396 Number get last => this[length - 1];
4502 4397
4503 SVGNumber removeLast() { 4398 Number removeLast() {
4504 throw new UnsupportedError("Cannot removeLast on immutable List."); 4399 throw new UnsupportedError("Cannot removeLast on immutable List.");
4505 } 4400 }
4506 4401
4507 void setRange(int start, int rangeLength, List<SVGNumber> from, [int startFrom ]) { 4402 void setRange(int start, int rangeLength, List<Number> from, [int startFrom]) {
4508 throw new UnsupportedError("Cannot setRange on immutable List."); 4403 throw new UnsupportedError("Cannot setRange on immutable List.");
4509 } 4404 }
4510 4405
4511 void removeRange(int start, int rangeLength) { 4406 void removeRange(int start, int rangeLength) {
4512 throw new UnsupportedError("Cannot removeRange on immutable List."); 4407 throw new UnsupportedError("Cannot removeRange on immutable List.");
4513 } 4408 }
4514 4409
4515 void insertRange(int start, int rangeLength, [SVGNumber initialValue]) { 4410 void insertRange(int start, int rangeLength, [Number initialValue]) {
4516 throw new UnsupportedError("Cannot insertRange on immutable List."); 4411 throw new UnsupportedError("Cannot insertRange on immutable List.");
4517 } 4412 }
4518 4413
4519 List<SVGNumber> getRange(int start, int rangeLength) => 4414 List<Number> getRange(int start, int rangeLength) =>
4520 _Lists.getRange(this, start, rangeLength, <SVGNumber>[]); 4415 _Lists.getRange(this, start, rangeLength, <Number>[]);
4521 4416
4522 // -- end List<SVGNumber> mixins. 4417 // -- end List<Number> mixins.
4523 4418
4524 4419
4525 /** @domName SVGNumberList.appendItem */ 4420 /** @domName SVGNumberList.appendItem */
4526 SVGNumber appendItem(SVGNumber item) native "SVGNumberList_appendItem_Callback "; 4421 Number appendItem(Number item) native "SVGNumberList_appendItem_Callback";
4527 4422
4528 4423
4529 /** @domName SVGNumberList.clear */ 4424 /** @domName SVGNumberList.clear */
4530 void clear() native "SVGNumberList_clear_Callback"; 4425 void clear() native "SVGNumberList_clear_Callback";
4531 4426
4532 4427
4533 /** @domName SVGNumberList.getItem */ 4428 /** @domName SVGNumberList.getItem */
4534 SVGNumber getItem(int index) native "SVGNumberList_getItem_Callback"; 4429 Number getItem(int index) native "SVGNumberList_getItem_Callback";
4535 4430
4536 4431
4537 /** @domName SVGNumberList.initialize */ 4432 /** @domName SVGNumberList.initialize */
4538 SVGNumber initialize(SVGNumber item) native "SVGNumberList_initialize_Callback "; 4433 Number initialize(Number item) native "SVGNumberList_initialize_Callback";
4539 4434
4540 4435
4541 /** @domName SVGNumberList.insertItemBefore */ 4436 /** @domName SVGNumberList.insertItemBefore */
4542 SVGNumber insertItemBefore(SVGNumber item, int index) native "SVGNumberList_in sertItemBefore_Callback"; 4437 Number insertItemBefore(Number item, int index) native "SVGNumberList_insertIt emBefore_Callback";
4543 4438
4544 4439
4545 /** @domName SVGNumberList.removeItem */ 4440 /** @domName SVGNumberList.removeItem */
4546 SVGNumber removeItem(int index) native "SVGNumberList_removeItem_Callback"; 4441 Number removeItem(int index) native "SVGNumberList_removeItem_Callback";
4547 4442
4548 4443
4549 /** @domName SVGNumberList.replaceItem */ 4444 /** @domName SVGNumberList.replaceItem */
4550 SVGNumber replaceItem(SVGNumber item, int index) native "SVGNumberList_replace Item_Callback"; 4445 Number replaceItem(Number item, int index) native "SVGNumberList_replaceItem_C allback";
4551 4446
4552 } 4447 }
4553 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4448 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4554 // for details. All rights reserved. Use of this source code is governed by a 4449 // for details. All rights reserved. Use of this source code is governed by a
4555 // BSD-style license that can be found in the LICENSE file. 4450 // BSD-style license that can be found in the LICENSE file.
4556 4451
4557 // WARNING: Do not edit - generated code. 4452 // WARNING: Do not edit - generated code.
4558 4453
4559 4454
4560 /// @domName SVGPaint 4455 /// @domName SVGPaint
4561 class SVGPaint extends SVGColor { 4456 class Paint extends Color {
4562 SVGPaint.internal(): super.internal(); 4457 Paint.internal(): super.internal();
4563 4458
4564 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102; 4459 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102;
4565 4460
4566 static const int SVG_PAINTTYPE_NONE = 101; 4461 static const int SVG_PAINTTYPE_NONE = 101;
4567 4462
4568 static const int SVG_PAINTTYPE_RGBCOLOR = 1; 4463 static const int SVG_PAINTTYPE_RGBCOLOR = 1;
4569 4464
4570 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; 4465 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2;
4571 4466
4572 static const int SVG_PAINTTYPE_UNKNOWN = 0; 4467 static const int SVG_PAINTTYPE_UNKNOWN = 0;
(...skipping 26 matching lines...) Expand all
4599 4494
4600 } 4495 }
4601 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4496 // 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 4497 // 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. 4498 // BSD-style license that can be found in the LICENSE file.
4604 4499
4605 // WARNING: Do not edit - generated code. 4500 // WARNING: Do not edit - generated code.
4606 4501
4607 4502
4608 /// @domName SVGPathElement 4503 /// @domName SVGPathElement
4609 class SVGPathElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 4504 class PathElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace {
4610 SVGPathElement.internal(): super.internal(); 4505 PathElement.internal(): super.internal();
4611 4506
4612 4507
4613 /** @domName SVGPathElement.animatedNormalizedPathSegList */ 4508 /** @domName SVGPathElement.animatedNormalizedPathSegList */
4614 SVGPathSegList get animatedNormalizedPathSegList native "SVGPathElement_animat edNormalizedPathSegList_Getter"; 4509 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter";
4615 4510
4616 4511
4617 /** @domName SVGPathElement.animatedPathSegList */ 4512 /** @domName SVGPathElement.animatedPathSegList */
4618 SVGPathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegL ist_Getter"; 4513 PathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegList _Getter";
4619 4514
4620 4515
4621 /** @domName SVGPathElement.normalizedPathSegList */ 4516 /** @domName SVGPathElement.normalizedPathSegList */
4622 SVGPathSegList get normalizedPathSegList native "SVGPathElement_normalizedPath SegList_Getter"; 4517 PathSegList get normalizedPathSegList native "SVGPathElement_normalizedPathSeg List_Getter";
4623 4518
4624 4519
4625 /** @domName SVGPathElement.pathLength */ 4520 /** @domName SVGPathElement.pathLength */
4626 SVGAnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter"; 4521 AnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter";
4627 4522
4628 4523
4629 /** @domName SVGPathElement.pathSegList */ 4524 /** @domName SVGPathElement.pathSegList */
4630 SVGPathSegList get pathSegList native "SVGPathElement_pathSegList_Getter"; 4525 PathSegList get pathSegList native "SVGPathElement_pathSegList_Getter";
4631 4526
4632 4527
4633 /** @domName SVGPathElement.createSVGPathSegArcAbs */ 4528 /** @domName SVGPathElement.createSVGPathSegArcAbs */
4634 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArc Abs_Callback"; 4529 PathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs _Callback";
4635 4530
4636 4531
4637 /** @domName SVGPathElement.createSVGPathSegArcRel */ 4532 /** @domName SVGPathElement.createSVGPathSegArcRel */
4638 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArc Rel_Callback"; 4533 PathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel _Callback";
4639 4534
4640 4535
4641 /** @domName SVGPathElement.createSVGPathSegClosePath */ 4536 /** @domName SVGPathElement.createSVGPathSegClosePath */
4642 SVGPathSegClosePath createSVGPathSegClosePath() native "SVGPathElement_createS VGPathSegClosePath_Callback"; 4537 PathSegClosePath createSVGPathSegClosePath() native "SVGPathElement_createSVGP athSegClosePath_Callback";
4643 4538
4644 4539
4645 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */ 4540 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */
4646 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1 , num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs _Callback"; 4541 PathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Ca llback";
4647 4542
4648 4543
4649 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */ 4544 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */
4650 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1 , num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel _Callback"; 4545 PathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Ca llback";
4651 4546
4652 4547
4653 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */ 4548 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */
4654 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n um y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothA bs_Callback"; 4549 PathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_ Callback";
4655 4550
4656 4551
4657 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */ 4552 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */
4658 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n um y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothR el_Callback"; 4553 PathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_ Callback";
4659 4554
4660 4555
4661 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */ 4556 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */
4662 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y , num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Cal lback"; 4557 PathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callba ck";
4663 4558
4664 4559
4665 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */ 4560 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */
4666 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y , num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Cal lback"; 4561 PathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callba ck";
4667 4562
4668 4563
4669 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */ 4564 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */
4670 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs( num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_C allback"; 4565 PathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Call back";
4671 4566
4672 4567
4673 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */ 4568 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */
4674 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel( num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_C allback"; 4569 PathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Call back";
4675 4570
4676 4571
4677 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */ 4572 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */
4678 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native "SVGPathEle ment_createSVGPathSegLinetoAbs_Callback"; 4573 PathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoAbs_Callback";
4679 4574
4680 4575
4681 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */ 4576 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */
4682 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) nativ e "SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback"; 4577 PathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback";
4683 4578
4684 4579
4685 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */ 4580 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */
4686 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) nativ e "SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback"; 4581 PathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) native " SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback";
4687 4582
4688 4583
4689 /** @domName SVGPathElement.createSVGPathSegLinetoRel */ 4584 /** @domName SVGPathElement.createSVGPathSegLinetoRel */
4690 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native "SVGPathEle ment_createSVGPathSegLinetoRel_Callback"; 4585 PathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegLinetoRel_Callback";
4691 4586
4692 4587
4693 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */ 4588 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */
4694 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native "S VGPathElement_createSVGPathSegLinetoVerticalAbs_Callback"; 4589 PathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalAbs_Callback";
4695 4590
4696 4591
4697 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */ 4592 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */
4698 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native "S VGPathElement_createSVGPathSegLinetoVerticalRel_Callback"; 4593 PathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native "SVGP athElement_createSVGPathSegLinetoVerticalRel_Callback";
4699 4594
4700 4595
4701 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */ 4596 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */
4702 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native "SVGPathEle ment_createSVGPathSegMovetoAbs_Callback"; 4597 PathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoAbs_Callback";
4703 4598
4704 4599
4705 /** @domName SVGPathElement.createSVGPathSegMovetoRel */ 4600 /** @domName SVGPathElement.createSVGPathSegMovetoRel */
4706 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native "SVGPathEle ment_createSVGPathSegMovetoRel_Callback"; 4601 PathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native "SVGPathElemen t_createSVGPathSegMovetoRel_Callback";
4707 4602
4708 4603
4709 /** @domName SVGPathElement.getPathSegAtLength */ 4604 /** @domName SVGPathElement.getPathSegAtLength */
4710 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength _Callback"; 4605 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength _Callback";
4711 4606
4712 4607
4713 /** @domName SVGPathElement.getPointAtLength */ 4608 /** @domName SVGPathElement.getPointAtLength */
4714 SVGPoint getPointAtLength(num distance) native "SVGPathElement_getPointAtLengt h_Callback"; 4609 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C allback";
4715 4610
4716 4611
4717 /** @domName SVGPathElement.getTotalLength */ 4612 /** @domName SVGPathElement.getTotalLength */
4718 num getTotalLength() native "SVGPathElement_getTotalLength_Callback"; 4613 num getTotalLength() native "SVGPathElement_getTotalLength_Callback";
4719 4614
4720 4615
4721 /** @domName SVGPathElement.externalResourcesRequired */ 4616 /** @domName SVGPathElement.externalResourcesRequired */
4722 SVGAnimatedBoolean get externalResourcesRequired native "SVGPathElement_extern alResourcesRequired_Getter"; 4617 AnimatedBoolean get externalResourcesRequired native "SVGPathElement_externalR esourcesRequired_Getter";
4723 4618
4724 4619
4725 /** @domName SVGPathElement.xmllang */ 4620 /** @domName SVGPathElement.xmllang */
4726 String get xmllang native "SVGPathElement_xmllang_Getter"; 4621 String get xmllang native "SVGPathElement_xmllang_Getter";
4727 4622
4728 4623
4729 /** @domName SVGPathElement.xmllang */ 4624 /** @domName SVGPathElement.xmllang */
4730 void set xmllang(String value) native "SVGPathElement_xmllang_Setter"; 4625 void set xmllang(String value) native "SVGPathElement_xmllang_Setter";
4731 4626
4732 4627
4733 /** @domName SVGPathElement.xmlspace */ 4628 /** @domName SVGPathElement.xmlspace */
4734 String get xmlspace native "SVGPathElement_xmlspace_Getter"; 4629 String get xmlspace native "SVGPathElement_xmlspace_Getter";
4735 4630
4736 4631
4737 /** @domName SVGPathElement.xmlspace */ 4632 /** @domName SVGPathElement.xmlspace */
4738 void set xmlspace(String value) native "SVGPathElement_xmlspace_Setter"; 4633 void set xmlspace(String value) native "SVGPathElement_xmlspace_Setter";
4739 4634
4740 4635
4741 /** @domName SVGPathElement.farthestViewportElement */ 4636 /** @domName SVGPathElement.farthestViewportElement */
4742 SVGElement get farthestViewportElement native "SVGPathElement_farthestViewport Element_Getter"; 4637 SvgElement get farthestViewportElement native "SVGPathElement_farthestViewport Element_Getter";
4743 4638
4744 4639
4745 /** @domName SVGPathElement.nearestViewportElement */ 4640 /** @domName SVGPathElement.nearestViewportElement */
4746 SVGElement get nearestViewportElement native "SVGPathElement_nearestViewportEl ement_Getter"; 4641 SvgElement get nearestViewportElement native "SVGPathElement_nearestViewportEl ement_Getter";
4747 4642
4748 4643
4749 /** @domName SVGPathElement.getBBox */ 4644 /** @domName SVGPathElement.getBBox */
4750 SVGRect getBBox() native "SVGPathElement_getBBox_Callback"; 4645 Rect getBBox() native "SVGPathElement_getBBox_Callback";
4751 4646
4752 4647
4753 /** @domName SVGPathElement.getCTM */ 4648 /** @domName SVGPathElement.getCTM */
4754 SVGMatrix getCTM() native "SVGPathElement_getCTM_Callback"; 4649 Matrix getCTM() native "SVGPathElement_getCTM_Callback";
4755 4650
4756 4651
4757 /** @domName SVGPathElement.getScreenCTM */ 4652 /** @domName SVGPathElement.getScreenCTM */
4758 SVGMatrix getScreenCTM() native "SVGPathElement_getScreenCTM_Callback"; 4653 Matrix getScreenCTM() native "SVGPathElement_getScreenCTM_Callback";
4759 4654
4760 4655
4761 /** @domName SVGPathElement.getTransformToElement */ 4656 /** @domName SVGPathElement.getTransformToElement */
4762 SVGMatrix getTransformToElement(SVGElement element) native "SVGPathElement_get TransformToElement_Callback"; 4657 Matrix getTransformToElement(SvgElement element) native "SVGPathElement_getTra nsformToElement_Callback";
4763 4658
4764 4659
4765 /** @domName SVGPathElement.className */ 4660 /** @domName SVGPathElement.className */
4766 SVGAnimatedString get $dom_svgClassName native "SVGPathElement_className_Gette r"; 4661 AnimatedString get $dom_svgClassName native "SVGPathElement_className_Getter";
4767 4662
4768 4663
4769 /** @domName SVGPathElement.style */ 4664 /** @domName SVGPathElement.style */
4770 CSSStyleDeclaration get style native "SVGPathElement_style_Getter"; 4665 CSSStyleDeclaration get style native "SVGPathElement_style_Getter";
4771 4666
4772 4667
4773 /** @domName SVGPathElement.getPresentationAttribute */ 4668 /** @domName SVGPathElement.getPresentationAttribute */
4774 CSSValue getPresentationAttribute(String name) native "SVGPathElement_getPrese ntationAttribute_Callback"; 4669 CSSValue getPresentationAttribute(String name) native "SVGPathElement_getPrese ntationAttribute_Callback";
4775 4670
4776 4671
4777 /** @domName SVGPathElement.requiredExtensions */ 4672 /** @domName SVGPathElement.requiredExtensions */
4778 SVGStringList get requiredExtensions native "SVGPathElement_requiredExtensions _Getter"; 4673 StringList get requiredExtensions native "SVGPathElement_requiredExtensions_Ge tter";
4779 4674
4780 4675
4781 /** @domName SVGPathElement.requiredFeatures */ 4676 /** @domName SVGPathElement.requiredFeatures */
4782 SVGStringList get requiredFeatures native "SVGPathElement_requiredFeatures_Get ter"; 4677 StringList get requiredFeatures native "SVGPathElement_requiredFeatures_Getter ";
4783 4678
4784 4679
4785 /** @domName SVGPathElement.systemLanguage */ 4680 /** @domName SVGPathElement.systemLanguage */
4786 SVGStringList get systemLanguage native "SVGPathElement_systemLanguage_Getter" ; 4681 StringList get systemLanguage native "SVGPathElement_systemLanguage_Getter";
4787 4682
4788 4683
4789 /** @domName SVGPathElement.hasExtension */ 4684 /** @domName SVGPathElement.hasExtension */
4790 bool hasExtension(String extension) native "SVGPathElement_hasExtension_Callba ck"; 4685 bool hasExtension(String extension) native "SVGPathElement_hasExtension_Callba ck";
4791 4686
4792 4687
4793 /** @domName SVGPathElement.transform */ 4688 /** @domName SVGPathElement.transform */
4794 SVGAnimatedTransformList get transform native "SVGPathElement_transform_Getter "; 4689 AnimatedTransformList get transform native "SVGPathElement_transform_Getter";
4795 4690
4796 } 4691 }
4797 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4798 // for details. All rights reserved. Use of this source code is governed by a 4693 // for details. All rights reserved. Use of this source code is governed by a
4799 // BSD-style license that can be found in the LICENSE file. 4694 // BSD-style license that can be found in the LICENSE file.
4800 4695
4801 // WARNING: Do not edit - generated code. 4696 // WARNING: Do not edit - generated code.
4802 4697
4803 4698
4804 /// @domName SVGPathSeg 4699 /// @domName SVGPathSeg
4805 class SVGPathSeg extends NativeFieldWrapperClass1 { 4700 class PathSeg extends NativeFieldWrapperClass1 {
4806 SVGPathSeg.internal(); 4701 PathSeg.internal();
4807 4702
4808 static const int PATHSEG_ARC_ABS = 10; 4703 static const int PATHSEG_ARC_ABS = 10;
4809 4704
4810 static const int PATHSEG_ARC_REL = 11; 4705 static const int PATHSEG_ARC_REL = 11;
4811 4706
4812 static const int PATHSEG_CLOSEPATH = 1; 4707 static const int PATHSEG_CLOSEPATH = 1;
4813 4708
4814 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; 4709 static const int PATHSEG_CURVETO_CUBIC_ABS = 6;
4815 4710
4816 static const int PATHSEG_CURVETO_CUBIC_REL = 7; 4711 static const int PATHSEG_CURVETO_CUBIC_REL = 7;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
4855 4750
4856 } 4751 }
4857 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4752 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4858 // for details. All rights reserved. Use of this source code is governed by a 4753 // for details. All rights reserved. Use of this source code is governed by a
4859 // BSD-style license that can be found in the LICENSE file. 4754 // BSD-style license that can be found in the LICENSE file.
4860 4755
4861 // WARNING: Do not edit - generated code. 4756 // WARNING: Do not edit - generated code.
4862 4757
4863 4758
4864 /// @domName SVGPathSegArcAbs 4759 /// @domName SVGPathSegArcAbs
4865 class SVGPathSegArcAbs extends SVGPathSeg { 4760 class PathSegArcAbs extends PathSeg {
4866 SVGPathSegArcAbs.internal(): super.internal(); 4761 PathSegArcAbs.internal(): super.internal();
4867 4762
4868 4763
4869 /** @domName SVGPathSegArcAbs.angle */ 4764 /** @domName SVGPathSegArcAbs.angle */
4870 num get angle native "SVGPathSegArcAbs_angle_Getter"; 4765 num get angle native "SVGPathSegArcAbs_angle_Getter";
4871 4766
4872 4767
4873 /** @domName SVGPathSegArcAbs.angle */ 4768 /** @domName SVGPathSegArcAbs.angle */
4874 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter"; 4769 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter";
4875 4770
4876 4771
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
4923 4818
4924 } 4819 }
4925 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4820 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4926 // for details. All rights reserved. Use of this source code is governed by a 4821 // for details. All rights reserved. Use of this source code is governed by a
4927 // BSD-style license that can be found in the LICENSE file. 4822 // BSD-style license that can be found in the LICENSE file.
4928 4823
4929 // WARNING: Do not edit - generated code. 4824 // WARNING: Do not edit - generated code.
4930 4825
4931 4826
4932 /// @domName SVGPathSegArcRel 4827 /// @domName SVGPathSegArcRel
4933 class SVGPathSegArcRel extends SVGPathSeg { 4828 class PathSegArcRel extends PathSeg {
4934 SVGPathSegArcRel.internal(): super.internal(); 4829 PathSegArcRel.internal(): super.internal();
4935 4830
4936 4831
4937 /** @domName SVGPathSegArcRel.angle */ 4832 /** @domName SVGPathSegArcRel.angle */
4938 num get angle native "SVGPathSegArcRel_angle_Getter"; 4833 num get angle native "SVGPathSegArcRel_angle_Getter";
4939 4834
4940 4835
4941 /** @domName SVGPathSegArcRel.angle */ 4836 /** @domName SVGPathSegArcRel.angle */
4942 void set angle(num value) native "SVGPathSegArcRel_angle_Setter"; 4837 void set angle(num value) native "SVGPathSegArcRel_angle_Setter";
4943 4838
4944 4839
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
4991 4886
4992 } 4887 }
4993 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4994 // for details. All rights reserved. Use of this source code is governed by a 4889 // for details. All rights reserved. Use of this source code is governed by a
4995 // BSD-style license that can be found in the LICENSE file. 4890 // BSD-style license that can be found in the LICENSE file.
4996 4891
4997 // WARNING: Do not edit - generated code. 4892 // WARNING: Do not edit - generated code.
4998 4893
4999 4894
5000 /// @domName SVGPathSegClosePath 4895 /// @domName SVGPathSegClosePath
5001 class SVGPathSegClosePath extends SVGPathSeg { 4896 class PathSegClosePath extends PathSeg {
5002 SVGPathSegClosePath.internal(): super.internal(); 4897 PathSegClosePath.internal(): super.internal();
5003 4898
5004 } 4899 }
5005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4900 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5006 // for details. All rights reserved. Use of this source code is governed by a 4901 // for details. All rights reserved. Use of this source code is governed by a
5007 // BSD-style license that can be found in the LICENSE file. 4902 // BSD-style license that can be found in the LICENSE file.
5008 4903
5009 // WARNING: Do not edit - generated code. 4904 // WARNING: Do not edit - generated code.
5010 4905
5011 4906
5012 /// @domName SVGPathSegCurvetoCubicAbs 4907 /// @domName SVGPathSegCurvetoCubicAbs
5013 class SVGPathSegCurvetoCubicAbs extends SVGPathSeg { 4908 class PathSegCurvetoCubicAbs extends PathSeg {
5014 SVGPathSegCurvetoCubicAbs.internal(): super.internal(); 4909 PathSegCurvetoCubicAbs.internal(): super.internal();
5015 4910
5016 4911
5017 /** @domName SVGPathSegCurvetoCubicAbs.x */ 4912 /** @domName SVGPathSegCurvetoCubicAbs.x */
5018 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter"; 4913 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter";
5019 4914
5020 4915
5021 /** @domName SVGPathSegCurvetoCubicAbs.x */ 4916 /** @domName SVGPathSegCurvetoCubicAbs.x */
5022 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter"; 4917 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter";
5023 4918
5024 4919
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5063 4958
5064 } 4959 }
5065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5066 // for details. All rights reserved. Use of this source code is governed by a 4961 // for details. All rights reserved. Use of this source code is governed by a
5067 // BSD-style license that can be found in the LICENSE file. 4962 // BSD-style license that can be found in the LICENSE file.
5068 4963
5069 // WARNING: Do not edit - generated code. 4964 // WARNING: Do not edit - generated code.
5070 4965
5071 4966
5072 /// @domName SVGPathSegCurvetoCubicRel 4967 /// @domName SVGPathSegCurvetoCubicRel
5073 class SVGPathSegCurvetoCubicRel extends SVGPathSeg { 4968 class PathSegCurvetoCubicRel extends PathSeg {
5074 SVGPathSegCurvetoCubicRel.internal(): super.internal(); 4969 PathSegCurvetoCubicRel.internal(): super.internal();
5075 4970
5076 4971
5077 /** @domName SVGPathSegCurvetoCubicRel.x */ 4972 /** @domName SVGPathSegCurvetoCubicRel.x */
5078 num get x native "SVGPathSegCurvetoCubicRel_x_Getter"; 4973 num get x native "SVGPathSegCurvetoCubicRel_x_Getter";
5079 4974
5080 4975
5081 /** @domName SVGPathSegCurvetoCubicRel.x */ 4976 /** @domName SVGPathSegCurvetoCubicRel.x */
5082 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter"; 4977 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter";
5083 4978
5084 4979
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5123 5018
5124 } 5019 }
5125 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5020 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5126 // for details. All rights reserved. Use of this source code is governed by a 5021 // for details. All rights reserved. Use of this source code is governed by a
5127 // BSD-style license that can be found in the LICENSE file. 5022 // BSD-style license that can be found in the LICENSE file.
5128 5023
5129 // WARNING: Do not edit - generated code. 5024 // WARNING: Do not edit - generated code.
5130 5025
5131 5026
5132 /// @domName SVGPathSegCurvetoCubicSmoothAbs 5027 /// @domName SVGPathSegCurvetoCubicSmoothAbs
5133 class SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg { 5028 class PathSegCurvetoCubicSmoothAbs extends PathSeg {
5134 SVGPathSegCurvetoCubicSmoothAbs.internal(): super.internal(); 5029 PathSegCurvetoCubicSmoothAbs.internal(): super.internal();
5135 5030
5136 5031
5137 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ 5032 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */
5138 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter"; 5033 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter";
5139 5034
5140 5035
5141 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ 5036 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */
5142 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter"; 5037 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter";
5143 5038
5144 5039
(...skipping 22 matching lines...) Expand all
5167 5062
5168 } 5063 }
5169 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5064 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5170 // for details. All rights reserved. Use of this source code is governed by a 5065 // for details. All rights reserved. Use of this source code is governed by a
5171 // BSD-style license that can be found in the LICENSE file. 5066 // BSD-style license that can be found in the LICENSE file.
5172 5067
5173 // WARNING: Do not edit - generated code. 5068 // WARNING: Do not edit - generated code.
5174 5069
5175 5070
5176 /// @domName SVGPathSegCurvetoCubicSmoothRel 5071 /// @domName SVGPathSegCurvetoCubicSmoothRel
5177 class SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg { 5072 class PathSegCurvetoCubicSmoothRel extends PathSeg {
5178 SVGPathSegCurvetoCubicSmoothRel.internal(): super.internal(); 5073 PathSegCurvetoCubicSmoothRel.internal(): super.internal();
5179 5074
5180 5075
5181 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ 5076 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */
5182 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter"; 5077 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter";
5183 5078
5184 5079
5185 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ 5080 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */
5186 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter"; 5081 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter";
5187 5082
5188 5083
(...skipping 22 matching lines...) Expand all
5211 5106
5212 } 5107 }
5213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5108 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5214 // for details. All rights reserved. Use of this source code is governed by a 5109 // for details. All rights reserved. Use of this source code is governed by a
5215 // BSD-style license that can be found in the LICENSE file. 5110 // BSD-style license that can be found in the LICENSE file.
5216 5111
5217 // WARNING: Do not edit - generated code. 5112 // WARNING: Do not edit - generated code.
5218 5113
5219 5114
5220 /// @domName SVGPathSegCurvetoQuadraticAbs 5115 /// @domName SVGPathSegCurvetoQuadraticAbs
5221 class SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg { 5116 class PathSegCurvetoQuadraticAbs extends PathSeg {
5222 SVGPathSegCurvetoQuadraticAbs.internal(): super.internal(); 5117 PathSegCurvetoQuadraticAbs.internal(): super.internal();
5223 5118
5224 5119
5225 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ 5120 /** @domName SVGPathSegCurvetoQuadraticAbs.x */
5226 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter"; 5121 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter";
5227 5122
5228 5123
5229 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ 5124 /** @domName SVGPathSegCurvetoQuadraticAbs.x */
5230 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter"; 5125 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter";
5231 5126
5232 5127
(...skipping 22 matching lines...) Expand all
5255 5150
5256 } 5151 }
5257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5152 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5258 // for details. All rights reserved. Use of this source code is governed by a 5153 // for details. All rights reserved. Use of this source code is governed by a
5259 // BSD-style license that can be found in the LICENSE file. 5154 // BSD-style license that can be found in the LICENSE file.
5260 5155
5261 // WARNING: Do not edit - generated code. 5156 // WARNING: Do not edit - generated code.
5262 5157
5263 5158
5264 /// @domName SVGPathSegCurvetoQuadraticRel 5159 /// @domName SVGPathSegCurvetoQuadraticRel
5265 class SVGPathSegCurvetoQuadraticRel extends SVGPathSeg { 5160 class PathSegCurvetoQuadraticRel extends PathSeg {
5266 SVGPathSegCurvetoQuadraticRel.internal(): super.internal(); 5161 PathSegCurvetoQuadraticRel.internal(): super.internal();
5267 5162
5268 5163
5269 /** @domName SVGPathSegCurvetoQuadraticRel.x */ 5164 /** @domName SVGPathSegCurvetoQuadraticRel.x */
5270 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter"; 5165 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter";
5271 5166
5272 5167
5273 /** @domName SVGPathSegCurvetoQuadraticRel.x */ 5168 /** @domName SVGPathSegCurvetoQuadraticRel.x */
5274 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter"; 5169 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter";
5275 5170
5276 5171
(...skipping 22 matching lines...) Expand all
5299 5194
5300 } 5195 }
5301 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5196 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5302 // for details. All rights reserved. Use of this source code is governed by a 5197 // for details. All rights reserved. Use of this source code is governed by a
5303 // BSD-style license that can be found in the LICENSE file. 5198 // BSD-style license that can be found in the LICENSE file.
5304 5199
5305 // WARNING: Do not edit - generated code. 5200 // WARNING: Do not edit - generated code.
5306 5201
5307 5202
5308 /// @domName SVGPathSegCurvetoQuadraticSmoothAbs 5203 /// @domName SVGPathSegCurvetoQuadraticSmoothAbs
5309 class SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg { 5204 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
5310 SVGPathSegCurvetoQuadraticSmoothAbs.internal(): super.internal(); 5205 PathSegCurvetoQuadraticSmoothAbs.internal(): super.internal();
5311 5206
5312 5207
5313 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ 5208 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */
5314 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter"; 5209 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter";
5315 5210
5316 5211
5317 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ 5212 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */
5318 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter"; 5213 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter";
5319 5214
5320 5215
5321 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ 5216 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */
5322 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter"; 5217 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter";
5323 5218
5324 5219
5325 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ 5220 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */
5326 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter"; 5221 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter";
5327 5222
5328 } 5223 }
5329 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5224 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5330 // for details. All rights reserved. Use of this source code is governed by a 5225 // for details. All rights reserved. Use of this source code is governed by a
5331 // BSD-style license that can be found in the LICENSE file. 5226 // BSD-style license that can be found in the LICENSE file.
5332 5227
5333 // WARNING: Do not edit - generated code. 5228 // WARNING: Do not edit - generated code.
5334 5229
5335 5230
5336 /// @domName SVGPathSegCurvetoQuadraticSmoothRel 5231 /// @domName SVGPathSegCurvetoQuadraticSmoothRel
5337 class SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg { 5232 class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
5338 SVGPathSegCurvetoQuadraticSmoothRel.internal(): super.internal(); 5233 PathSegCurvetoQuadraticSmoothRel.internal(): super.internal();
5339 5234
5340 5235
5341 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ 5236 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */
5342 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter"; 5237 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter";
5343 5238
5344 5239
5345 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ 5240 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */
5346 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter"; 5241 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter";
5347 5242
5348 5243
5349 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ 5244 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */
5350 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter"; 5245 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter";
5351 5246
5352 5247
5353 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ 5248 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */
5354 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter"; 5249 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter";
5355 5250
5356 } 5251 }
5357 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5358 // for details. All rights reserved. Use of this source code is governed by a 5253 // for details. All rights reserved. Use of this source code is governed by a
5359 // BSD-style license that can be found in the LICENSE file. 5254 // BSD-style license that can be found in the LICENSE file.
5360 5255
5361 // WARNING: Do not edit - generated code. 5256 // WARNING: Do not edit - generated code.
5362 5257
5363 5258
5364 /// @domName SVGPathSegLinetoAbs 5259 /// @domName SVGPathSegLinetoAbs
5365 class SVGPathSegLinetoAbs extends SVGPathSeg { 5260 class PathSegLinetoAbs extends PathSeg {
5366 SVGPathSegLinetoAbs.internal(): super.internal(); 5261 PathSegLinetoAbs.internal(): super.internal();
5367 5262
5368 5263
5369 /** @domName SVGPathSegLinetoAbs.x */ 5264 /** @domName SVGPathSegLinetoAbs.x */
5370 num get x native "SVGPathSegLinetoAbs_x_Getter"; 5265 num get x native "SVGPathSegLinetoAbs_x_Getter";
5371 5266
5372 5267
5373 /** @domName SVGPathSegLinetoAbs.x */ 5268 /** @domName SVGPathSegLinetoAbs.x */
5374 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter"; 5269 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter";
5375 5270
5376 5271
5377 /** @domName SVGPathSegLinetoAbs.y */ 5272 /** @domName SVGPathSegLinetoAbs.y */
5378 num get y native "SVGPathSegLinetoAbs_y_Getter"; 5273 num get y native "SVGPathSegLinetoAbs_y_Getter";
5379 5274
5380 5275
5381 /** @domName SVGPathSegLinetoAbs.y */ 5276 /** @domName SVGPathSegLinetoAbs.y */
5382 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter"; 5277 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter";
5383 5278
5384 } 5279 }
5385 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5280 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5386 // for details. All rights reserved. Use of this source code is governed by a 5281 // for details. All rights reserved. Use of this source code is governed by a
5387 // BSD-style license that can be found in the LICENSE file. 5282 // BSD-style license that can be found in the LICENSE file.
5388 5283
5389 // WARNING: Do not edit - generated code. 5284 // WARNING: Do not edit - generated code.
5390 5285
5391 5286
5392 /// @domName SVGPathSegLinetoHorizontalAbs 5287 /// @domName SVGPathSegLinetoHorizontalAbs
5393 class SVGPathSegLinetoHorizontalAbs extends SVGPathSeg { 5288 class PathSegLinetoHorizontalAbs extends PathSeg {
5394 SVGPathSegLinetoHorizontalAbs.internal(): super.internal(); 5289 PathSegLinetoHorizontalAbs.internal(): super.internal();
5395 5290
5396 5291
5397 /** @domName SVGPathSegLinetoHorizontalAbs.x */ 5292 /** @domName SVGPathSegLinetoHorizontalAbs.x */
5398 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter"; 5293 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter";
5399 5294
5400 5295
5401 /** @domName SVGPathSegLinetoHorizontalAbs.x */ 5296 /** @domName SVGPathSegLinetoHorizontalAbs.x */
5402 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter"; 5297 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter";
5403 5298
5404 } 5299 }
5405 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5300 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5406 // for details. All rights reserved. Use of this source code is governed by a 5301 // for details. All rights reserved. Use of this source code is governed by a
5407 // BSD-style license that can be found in the LICENSE file. 5302 // BSD-style license that can be found in the LICENSE file.
5408 5303
5409 // WARNING: Do not edit - generated code. 5304 // WARNING: Do not edit - generated code.
5410 5305
5411 5306
5412 /// @domName SVGPathSegLinetoHorizontalRel 5307 /// @domName SVGPathSegLinetoHorizontalRel
5413 class SVGPathSegLinetoHorizontalRel extends SVGPathSeg { 5308 class PathSegLinetoHorizontalRel extends PathSeg {
5414 SVGPathSegLinetoHorizontalRel.internal(): super.internal(); 5309 PathSegLinetoHorizontalRel.internal(): super.internal();
5415 5310
5416 5311
5417 /** @domName SVGPathSegLinetoHorizontalRel.x */ 5312 /** @domName SVGPathSegLinetoHorizontalRel.x */
5418 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter"; 5313 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter";
5419 5314
5420 5315
5421 /** @domName SVGPathSegLinetoHorizontalRel.x */ 5316 /** @domName SVGPathSegLinetoHorizontalRel.x */
5422 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter"; 5317 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter";
5423 5318
5424 } 5319 }
5425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5426 // for details. All rights reserved. Use of this source code is governed by a 5321 // for details. All rights reserved. Use of this source code is governed by a
5427 // BSD-style license that can be found in the LICENSE file. 5322 // BSD-style license that can be found in the LICENSE file.
5428 5323
5429 // WARNING: Do not edit - generated code. 5324 // WARNING: Do not edit - generated code.
5430 5325
5431 5326
5432 /// @domName SVGPathSegLinetoRel 5327 /// @domName SVGPathSegLinetoRel
5433 class SVGPathSegLinetoRel extends SVGPathSeg { 5328 class PathSegLinetoRel extends PathSeg {
5434 SVGPathSegLinetoRel.internal(): super.internal(); 5329 PathSegLinetoRel.internal(): super.internal();
5435 5330
5436 5331
5437 /** @domName SVGPathSegLinetoRel.x */ 5332 /** @domName SVGPathSegLinetoRel.x */
5438 num get x native "SVGPathSegLinetoRel_x_Getter"; 5333 num get x native "SVGPathSegLinetoRel_x_Getter";
5439 5334
5440 5335
5441 /** @domName SVGPathSegLinetoRel.x */ 5336 /** @domName SVGPathSegLinetoRel.x */
5442 void set x(num value) native "SVGPathSegLinetoRel_x_Setter"; 5337 void set x(num value) native "SVGPathSegLinetoRel_x_Setter";
5443 5338
5444 5339
5445 /** @domName SVGPathSegLinetoRel.y */ 5340 /** @domName SVGPathSegLinetoRel.y */
5446 num get y native "SVGPathSegLinetoRel_y_Getter"; 5341 num get y native "SVGPathSegLinetoRel_y_Getter";
5447 5342
5448 5343
5449 /** @domName SVGPathSegLinetoRel.y */ 5344 /** @domName SVGPathSegLinetoRel.y */
5450 void set y(num value) native "SVGPathSegLinetoRel_y_Setter"; 5345 void set y(num value) native "SVGPathSegLinetoRel_y_Setter";
5451 5346
5452 } 5347 }
5453 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5348 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5454 // for details. All rights reserved. Use of this source code is governed by a 5349 // for details. All rights reserved. Use of this source code is governed by a
5455 // BSD-style license that can be found in the LICENSE file. 5350 // BSD-style license that can be found in the LICENSE file.
5456 5351
5457 // WARNING: Do not edit - generated code. 5352 // WARNING: Do not edit - generated code.
5458 5353
5459 5354
5460 /// @domName SVGPathSegLinetoVerticalAbs 5355 /// @domName SVGPathSegLinetoVerticalAbs
5461 class SVGPathSegLinetoVerticalAbs extends SVGPathSeg { 5356 class PathSegLinetoVerticalAbs extends PathSeg {
5462 SVGPathSegLinetoVerticalAbs.internal(): super.internal(); 5357 PathSegLinetoVerticalAbs.internal(): super.internal();
5463 5358
5464 5359
5465 /** @domName SVGPathSegLinetoVerticalAbs.y */ 5360 /** @domName SVGPathSegLinetoVerticalAbs.y */
5466 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter"; 5361 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter";
5467 5362
5468 5363
5469 /** @domName SVGPathSegLinetoVerticalAbs.y */ 5364 /** @domName SVGPathSegLinetoVerticalAbs.y */
5470 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter"; 5365 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter";
5471 5366
5472 } 5367 }
5473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5368 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5474 // for details. All rights reserved. Use of this source code is governed by a 5369 // for details. All rights reserved. Use of this source code is governed by a
5475 // BSD-style license that can be found in the LICENSE file. 5370 // BSD-style license that can be found in the LICENSE file.
5476 5371
5477 // WARNING: Do not edit - generated code. 5372 // WARNING: Do not edit - generated code.
5478 5373
5479 5374
5480 /// @domName SVGPathSegLinetoVerticalRel 5375 /// @domName SVGPathSegLinetoVerticalRel
5481 class SVGPathSegLinetoVerticalRel extends SVGPathSeg { 5376 class PathSegLinetoVerticalRel extends PathSeg {
5482 SVGPathSegLinetoVerticalRel.internal(): super.internal(); 5377 PathSegLinetoVerticalRel.internal(): super.internal();
5483 5378
5484 5379
5485 /** @domName SVGPathSegLinetoVerticalRel.y */ 5380 /** @domName SVGPathSegLinetoVerticalRel.y */
5486 num get y native "SVGPathSegLinetoVerticalRel_y_Getter"; 5381 num get y native "SVGPathSegLinetoVerticalRel_y_Getter";
5487 5382
5488 5383
5489 /** @domName SVGPathSegLinetoVerticalRel.y */ 5384 /** @domName SVGPathSegLinetoVerticalRel.y */
5490 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter"; 5385 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter";
5491 5386
5492 } 5387 }
5493 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5494 // for details. All rights reserved. Use of this source code is governed by a 5389 // for details. All rights reserved. Use of this source code is governed by a
5495 // BSD-style license that can be found in the LICENSE file. 5390 // BSD-style license that can be found in the LICENSE file.
5496 5391
5497 // WARNING: Do not edit - generated code. 5392 // WARNING: Do not edit - generated code.
5498 5393
5499 5394
5500 /// @domName SVGPathSegList 5395 /// @domName SVGPathSegList
5501 class SVGPathSegList extends NativeFieldWrapperClass1 implements List<SVGPathSeg > { 5396 class PathSegList extends NativeFieldWrapperClass1 implements List<PathSeg> {
5502 SVGPathSegList.internal(); 5397 PathSegList.internal();
5503 5398
5504 5399
5505 /** @domName SVGPathSegList.numberOfItems */ 5400 /** @domName SVGPathSegList.numberOfItems */
5506 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter"; 5401 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter";
5507 5402
5508 SVGPathSeg operator[](int index) native "SVGPathSegList_item_Callback"; 5403 PathSeg operator[](int index) native "SVGPathSegList_item_Callback";
5509 5404
5510 void operator[]=(int index, SVGPathSeg value) { 5405 void operator[]=(int index, PathSeg value) {
5511 throw new UnsupportedError("Cannot assign element of immutable List."); 5406 throw new UnsupportedError("Cannot assign element of immutable List.");
5512 } 5407 }
5513 // -- start List<SVGPathSeg> mixins. 5408 // -- start List<PathSeg> mixins.
5514 // SVGPathSeg is the element type. 5409 // PathSeg is the element type.
5515 5410
5516 // From Iterable<SVGPathSeg>: 5411 // From Iterable<PathSeg>:
5517 5412
5518 Iterator<SVGPathSeg> iterator() { 5413 Iterator<PathSeg> iterator() {
5519 // Note: NodeLists are not fixed size. And most probably length shouldn't 5414 // Note: NodeLists are not fixed size. And most probably length shouldn't
5520 // be cached in both iterator _and_ forEach method. For now caching it 5415 // be cached in both iterator _and_ forEach method. For now caching it
5521 // for consistency. 5416 // for consistency.
5522 return new FixedSizeListIterator<SVGPathSeg>(this); 5417 return new FixedSizeListIterator<PathSeg>(this);
5523 } 5418 }
5524 5419
5525 // From Collection<SVGPathSeg>: 5420 // From Collection<PathSeg>:
5526 5421
5527 void add(SVGPathSeg value) { 5422 void add(PathSeg value) {
5528 throw new UnsupportedError("Cannot add to immutable List."); 5423 throw new UnsupportedError("Cannot add to immutable List.");
5529 } 5424 }
5530 5425
5531 void addLast(SVGPathSeg value) { 5426 void addLast(PathSeg value) {
5532 throw new UnsupportedError("Cannot add to immutable List."); 5427 throw new UnsupportedError("Cannot add to immutable List.");
5533 } 5428 }
5534 5429
5535 void addAll(Collection<SVGPathSeg> collection) { 5430 void addAll(Collection<PathSeg> collection) {
5536 throw new UnsupportedError("Cannot add to immutable List."); 5431 throw new UnsupportedError("Cannot add to immutable List.");
5537 } 5432 }
5538 5433
5539 bool contains(SVGPathSeg element) => _Collections.contains(this, element); 5434 bool contains(PathSeg element) => _Collections.contains(this, element);
5540 5435
5541 void forEach(void f(SVGPathSeg element)) => _Collections.forEach(this, f); 5436 void forEach(void f(PathSeg element)) => _Collections.forEach(this, f);
5542 5437
5543 Collection map(f(SVGPathSeg element)) => _Collections.map(this, [], f); 5438 Collection map(f(PathSeg element)) => _Collections.map(this, [], f);
5544 5439
5545 Collection<SVGPathSeg> filter(bool f(SVGPathSeg element)) => 5440 Collection<PathSeg> filter(bool f(PathSeg element)) =>
5546 _Collections.filter(this, <SVGPathSeg>[], f); 5441 _Collections.filter(this, <PathSeg>[], f);
5547 5442
5548 bool every(bool f(SVGPathSeg element)) => _Collections.every(this, f); 5443 bool every(bool f(PathSeg element)) => _Collections.every(this, f);
5549 5444
5550 bool some(bool f(SVGPathSeg element)) => _Collections.some(this, f); 5445 bool some(bool f(PathSeg element)) => _Collections.some(this, f);
5551 5446
5552 bool get isEmpty => this.length == 0; 5447 bool get isEmpty => this.length == 0;
5553 5448
5554 // From List<SVGPathSeg>: 5449 // From List<PathSeg>:
5555 5450
5556 void sort([Comparator<SVGPathSeg> compare = Comparable.compare]) { 5451 void sort([Comparator<PathSeg> compare = Comparable.compare]) {
5557 throw new UnsupportedError("Cannot sort immutable List."); 5452 throw new UnsupportedError("Cannot sort immutable List.");
5558 } 5453 }
5559 5454
5560 int indexOf(SVGPathSeg element, [int start = 0]) => 5455 int indexOf(PathSeg element, [int start = 0]) =>
5561 _Lists.indexOf(this, element, start, this.length); 5456 _Lists.indexOf(this, element, start, this.length);
5562 5457
5563 int lastIndexOf(SVGPathSeg element, [int start]) { 5458 int lastIndexOf(PathSeg element, [int start]) {
5564 if (start == null) start = length - 1; 5459 if (start == null) start = length - 1;
5565 return _Lists.lastIndexOf(this, element, start); 5460 return _Lists.lastIndexOf(this, element, start);
5566 } 5461 }
5567 5462
5568 SVGPathSeg get last => this[length - 1]; 5463 PathSeg get last => this[length - 1];
5569 5464
5570 SVGPathSeg removeLast() { 5465 PathSeg removeLast() {
5571 throw new UnsupportedError("Cannot removeLast on immutable List."); 5466 throw new UnsupportedError("Cannot removeLast on immutable List.");
5572 } 5467 }
5573 5468
5574 void setRange(int start, int rangeLength, List<SVGPathSeg> from, [int startFro m]) { 5469 void setRange(int start, int rangeLength, List<PathSeg> from, [int startFrom]) {
5575 throw new UnsupportedError("Cannot setRange on immutable List."); 5470 throw new UnsupportedError("Cannot setRange on immutable List.");
5576 } 5471 }
5577 5472
5578 void removeRange(int start, int rangeLength) { 5473 void removeRange(int start, int rangeLength) {
5579 throw new UnsupportedError("Cannot removeRange on immutable List."); 5474 throw new UnsupportedError("Cannot removeRange on immutable List.");
5580 } 5475 }
5581 5476
5582 void insertRange(int start, int rangeLength, [SVGPathSeg initialValue]) { 5477 void insertRange(int start, int rangeLength, [PathSeg initialValue]) {
5583 throw new UnsupportedError("Cannot insertRange on immutable List."); 5478 throw new UnsupportedError("Cannot insertRange on immutable List.");
5584 } 5479 }
5585 5480
5586 List<SVGPathSeg> getRange(int start, int rangeLength) => 5481 List<PathSeg> getRange(int start, int rangeLength) =>
5587 _Lists.getRange(this, start, rangeLength, <SVGPathSeg>[]); 5482 _Lists.getRange(this, start, rangeLength, <PathSeg>[]);
5588 5483
5589 // -- end List<SVGPathSeg> mixins. 5484 // -- end List<PathSeg> mixins.
5590 5485
5591 5486
5592 /** @domName SVGPathSegList.appendItem */ 5487 /** @domName SVGPathSegList.appendItem */
5593 SVGPathSeg appendItem(SVGPathSeg newItem) native "SVGPathSegList_appendItem_Ca llback"; 5488 PathSeg appendItem(PathSeg newItem) native "SVGPathSegList_appendItem_Callback ";
5594 5489
5595 5490
5596 /** @domName SVGPathSegList.clear */ 5491 /** @domName SVGPathSegList.clear */
5597 void clear() native "SVGPathSegList_clear_Callback"; 5492 void clear() native "SVGPathSegList_clear_Callback";
5598 5493
5599 5494
5600 /** @domName SVGPathSegList.getItem */ 5495 /** @domName SVGPathSegList.getItem */
5601 SVGPathSeg getItem(int index) native "SVGPathSegList_getItem_Callback"; 5496 PathSeg getItem(int index) native "SVGPathSegList_getItem_Callback";
5602 5497
5603 5498
5604 /** @domName SVGPathSegList.initialize */ 5499 /** @domName SVGPathSegList.initialize */
5605 SVGPathSeg initialize(SVGPathSeg newItem) native "SVGPathSegList_initialize_Ca llback"; 5500 PathSeg initialize(PathSeg newItem) native "SVGPathSegList_initialize_Callback ";
5606 5501
5607 5502
5608 /** @domName SVGPathSegList.insertItemBefore */ 5503 /** @domName SVGPathSegList.insertItemBefore */
5609 SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native "SVGPathSegL ist_insertItemBefore_Callback"; 5504 PathSeg insertItemBefore(PathSeg newItem, int index) native "SVGPathSegList_in sertItemBefore_Callback";
5610 5505
5611 5506
5612 /** @domName SVGPathSegList.removeItem */ 5507 /** @domName SVGPathSegList.removeItem */
5613 SVGPathSeg removeItem(int index) native "SVGPathSegList_removeItem_Callback"; 5508 PathSeg removeItem(int index) native "SVGPathSegList_removeItem_Callback";
5614 5509
5615 5510
5616 /** @domName SVGPathSegList.replaceItem */ 5511 /** @domName SVGPathSegList.replaceItem */
5617 SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native "SVGPathSegList_r eplaceItem_Callback"; 5512 PathSeg replaceItem(PathSeg newItem, int index) native "SVGPathSegList_replace Item_Callback";
5618 5513
5619 } 5514 }
5620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5621 // for details. All rights reserved. Use of this source code is governed by a 5516 // for details. All rights reserved. Use of this source code is governed by a
5622 // BSD-style license that can be found in the LICENSE file. 5517 // BSD-style license that can be found in the LICENSE file.
5623 5518
5624 // WARNING: Do not edit - generated code. 5519 // WARNING: Do not edit - generated code.
5625 5520
5626 5521
5627 /// @domName SVGPathSegMovetoAbs 5522 /// @domName SVGPathSegMovetoAbs
5628 class SVGPathSegMovetoAbs extends SVGPathSeg { 5523 class PathSegMovetoAbs extends PathSeg {
5629 SVGPathSegMovetoAbs.internal(): super.internal(); 5524 PathSegMovetoAbs.internal(): super.internal();
5630 5525
5631 5526
5632 /** @domName SVGPathSegMovetoAbs.x */ 5527 /** @domName SVGPathSegMovetoAbs.x */
5633 num get x native "SVGPathSegMovetoAbs_x_Getter"; 5528 num get x native "SVGPathSegMovetoAbs_x_Getter";
5634 5529
5635 5530
5636 /** @domName SVGPathSegMovetoAbs.x */ 5531 /** @domName SVGPathSegMovetoAbs.x */
5637 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter"; 5532 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter";
5638 5533
5639 5534
5640 /** @domName SVGPathSegMovetoAbs.y */ 5535 /** @domName SVGPathSegMovetoAbs.y */
5641 num get y native "SVGPathSegMovetoAbs_y_Getter"; 5536 num get y native "SVGPathSegMovetoAbs_y_Getter";
5642 5537
5643 5538
5644 /** @domName SVGPathSegMovetoAbs.y */ 5539 /** @domName SVGPathSegMovetoAbs.y */
5645 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter"; 5540 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter";
5646 5541
5647 } 5542 }
5648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5543 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5649 // for details. All rights reserved. Use of this source code is governed by a 5544 // for details. All rights reserved. Use of this source code is governed by a
5650 // BSD-style license that can be found in the LICENSE file. 5545 // BSD-style license that can be found in the LICENSE file.
5651 5546
5652 // WARNING: Do not edit - generated code. 5547 // WARNING: Do not edit - generated code.
5653 5548
5654 5549
5655 /// @domName SVGPathSegMovetoRel 5550 /// @domName SVGPathSegMovetoRel
5656 class SVGPathSegMovetoRel extends SVGPathSeg { 5551 class PathSegMovetoRel extends PathSeg {
5657 SVGPathSegMovetoRel.internal(): super.internal(); 5552 PathSegMovetoRel.internal(): super.internal();
5658 5553
5659 5554
5660 /** @domName SVGPathSegMovetoRel.x */ 5555 /** @domName SVGPathSegMovetoRel.x */
5661 num get x native "SVGPathSegMovetoRel_x_Getter"; 5556 num get x native "SVGPathSegMovetoRel_x_Getter";
5662 5557
5663 5558
5664 /** @domName SVGPathSegMovetoRel.x */ 5559 /** @domName SVGPathSegMovetoRel.x */
5665 void set x(num value) native "SVGPathSegMovetoRel_x_Setter"; 5560 void set x(num value) native "SVGPathSegMovetoRel_x_Setter";
5666 5561
5667 5562
5668 /** @domName SVGPathSegMovetoRel.y */ 5563 /** @domName SVGPathSegMovetoRel.y */
5669 num get y native "SVGPathSegMovetoRel_y_Getter"; 5564 num get y native "SVGPathSegMovetoRel_y_Getter";
5670 5565
5671 5566
5672 /** @domName SVGPathSegMovetoRel.y */ 5567 /** @domName SVGPathSegMovetoRel.y */
5673 void set y(num value) native "SVGPathSegMovetoRel_y_Setter"; 5568 void set y(num value) native "SVGPathSegMovetoRel_y_Setter";
5674 5569
5675 } 5570 }
5676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5571 // 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 5572 // 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. 5573 // BSD-style license that can be found in the LICENSE file.
5679 5574
5680 // WARNING: Do not edit - generated code. 5575 // WARNING: Do not edit - generated code.
5681 5576
5682 5577
5683 /// @domName SVGPatternElement 5578 /// @domName SVGPatternElement
5684 class SVGPatternElement extends SVGElement implements SVGLangSpace, SVGTests, SV GStylable, SVGURIReference, SVGFitToViewBox, SVGExternalResourcesRequired { 5579 class PatternElement extends SvgElement implements FitToViewBox, Tests, UriRefer ence, Stylable, ExternalResourcesRequired, LangSpace {
5685 SVGPatternElement.internal(): super.internal(); 5580 PatternElement.internal(): super.internal();
5686 5581
5687 5582
5688 /** @domName SVGPatternElement.height */ 5583 /** @domName SVGPatternElement.height */
5689 SVGAnimatedLength get height native "SVGPatternElement_height_Getter"; 5584 AnimatedLength get height native "SVGPatternElement_height_Getter";
5690 5585
5691 5586
5692 /** @domName SVGPatternElement.patternContentUnits */ 5587 /** @domName SVGPatternElement.patternContentUnits */
5693 SVGAnimatedEnumeration get patternContentUnits native "SVGPatternElement_patte rnContentUnits_Getter"; 5588 AnimatedEnumeration get patternContentUnits native "SVGPatternElement_patternC ontentUnits_Getter";
5694 5589
5695 5590
5696 /** @domName SVGPatternElement.patternTransform */ 5591 /** @domName SVGPatternElement.patternTransform */
5697 SVGAnimatedTransformList get patternTransform native "SVGPatternElement_patter nTransform_Getter"; 5592 AnimatedTransformList get patternTransform native "SVGPatternElement_patternTr ansform_Getter";
5698 5593
5699 5594
5700 /** @domName SVGPatternElement.patternUnits */ 5595 /** @domName SVGPatternElement.patternUnits */
5701 SVGAnimatedEnumeration get patternUnits native "SVGPatternElement_patternUnits _Getter"; 5596 AnimatedEnumeration get patternUnits native "SVGPatternElement_patternUnits_Ge tter";
5702 5597
5703 5598
5704 /** @domName SVGPatternElement.width */ 5599 /** @domName SVGPatternElement.width */
5705 SVGAnimatedLength get width native "SVGPatternElement_width_Getter"; 5600 AnimatedLength get width native "SVGPatternElement_width_Getter";
5706 5601
5707 5602
5708 /** @domName SVGPatternElement.x */ 5603 /** @domName SVGPatternElement.x */
5709 SVGAnimatedLength get x native "SVGPatternElement_x_Getter"; 5604 AnimatedLength get x native "SVGPatternElement_x_Getter";
5710 5605
5711 5606
5712 /** @domName SVGPatternElement.y */ 5607 /** @domName SVGPatternElement.y */
5713 SVGAnimatedLength get y native "SVGPatternElement_y_Getter"; 5608 AnimatedLength get y native "SVGPatternElement_y_Getter";
5714 5609
5715 5610
5716 /** @domName SVGPatternElement.externalResourcesRequired */ 5611 /** @domName SVGPatternElement.externalResourcesRequired */
5717 SVGAnimatedBoolean get externalResourcesRequired native "SVGPatternElement_ext ernalResourcesRequired_Getter"; 5612 AnimatedBoolean get externalResourcesRequired native "SVGPatternElement_extern alResourcesRequired_Getter";
5718 5613
5719 5614
5720 /** @domName SVGPatternElement.preserveAspectRatio */ 5615 /** @domName SVGPatternElement.preserveAspectRatio */
5721 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternEleme nt_preserveAspectRatio_Getter"; 5616 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternElement_ preserveAspectRatio_Getter";
5722 5617
5723 5618
5724 /** @domName SVGPatternElement.viewBox */ 5619 /** @domName SVGPatternElement.viewBox */
5725 SVGAnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter"; 5620 AnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter";
5726 5621
5727 5622
5728 /** @domName SVGPatternElement.xmllang */ 5623 /** @domName SVGPatternElement.xmllang */
5729 String get xmllang native "SVGPatternElement_xmllang_Getter"; 5624 String get xmllang native "SVGPatternElement_xmllang_Getter";
5730 5625
5731 5626
5732 /** @domName SVGPatternElement.xmllang */ 5627 /** @domName SVGPatternElement.xmllang */
5733 void set xmllang(String value) native "SVGPatternElement_xmllang_Setter"; 5628 void set xmllang(String value) native "SVGPatternElement_xmllang_Setter";
5734 5629
5735 5630
5736 /** @domName SVGPatternElement.xmlspace */ 5631 /** @domName SVGPatternElement.xmlspace */
5737 String get xmlspace native "SVGPatternElement_xmlspace_Getter"; 5632 String get xmlspace native "SVGPatternElement_xmlspace_Getter";
5738 5633
5739 5634
5740 /** @domName SVGPatternElement.xmlspace */ 5635 /** @domName SVGPatternElement.xmlspace */
5741 void set xmlspace(String value) native "SVGPatternElement_xmlspace_Setter"; 5636 void set xmlspace(String value) native "SVGPatternElement_xmlspace_Setter";
5742 5637
5743 5638
5744 /** @domName SVGPatternElement.className */ 5639 /** @domName SVGPatternElement.className */
5745 SVGAnimatedString get $dom_svgClassName native "SVGPatternElement_className_Ge tter"; 5640 AnimatedString get $dom_svgClassName native "SVGPatternElement_className_Gette r";
5746 5641
5747 5642
5748 /** @domName SVGPatternElement.style */ 5643 /** @domName SVGPatternElement.style */
5749 CSSStyleDeclaration get style native "SVGPatternElement_style_Getter"; 5644 CSSStyleDeclaration get style native "SVGPatternElement_style_Getter";
5750 5645
5751 5646
5752 /** @domName SVGPatternElement.getPresentationAttribute */ 5647 /** @domName SVGPatternElement.getPresentationAttribute */
5753 CSSValue getPresentationAttribute(String name) native "SVGPatternElement_getPr esentationAttribute_Callback"; 5648 CSSValue getPresentationAttribute(String name) native "SVGPatternElement_getPr esentationAttribute_Callback";
5754 5649
5755 5650
5756 /** @domName SVGPatternElement.requiredExtensions */ 5651 /** @domName SVGPatternElement.requiredExtensions */
5757 SVGStringList get requiredExtensions native "SVGPatternElement_requiredExtensi ons_Getter"; 5652 StringList get requiredExtensions native "SVGPatternElement_requiredExtensions _Getter";
5758 5653
5759 5654
5760 /** @domName SVGPatternElement.requiredFeatures */ 5655 /** @domName SVGPatternElement.requiredFeatures */
5761 SVGStringList get requiredFeatures native "SVGPatternElement_requiredFeatures_ Getter"; 5656 StringList get requiredFeatures native "SVGPatternElement_requiredFeatures_Get ter";
5762 5657
5763 5658
5764 /** @domName SVGPatternElement.systemLanguage */ 5659 /** @domName SVGPatternElement.systemLanguage */
5765 SVGStringList get systemLanguage native "SVGPatternElement_systemLanguage_Gett er"; 5660 StringList get systemLanguage native "SVGPatternElement_systemLanguage_Getter" ;
5766 5661
5767 5662
5768 /** @domName SVGPatternElement.hasExtension */ 5663 /** @domName SVGPatternElement.hasExtension */
5769 bool hasExtension(String extension) native "SVGPatternElement_hasExtension_Cal lback"; 5664 bool hasExtension(String extension) native "SVGPatternElement_hasExtension_Cal lback";
5770 5665
5771 5666
5772 /** @domName SVGPatternElement.href */ 5667 /** @domName SVGPatternElement.href */
5773 SVGAnimatedString get href native "SVGPatternElement_href_Getter"; 5668 AnimatedString get href native "SVGPatternElement_href_Getter";
5774 5669
5775 } 5670 }
5776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5777 // for details. All rights reserved. Use of this source code is governed by a 5672 // for details. All rights reserved. Use of this source code is governed by a
5778 // BSD-style license that can be found in the LICENSE file. 5673 // BSD-style license that can be found in the LICENSE file.
5779 5674
5780 // WARNING: Do not edit - generated code. 5675 // WARNING: Do not edit - generated code.
5781 5676
5782 5677
5783 /// @domName SVGPoint 5678 class Point extends NativeFieldWrapperClass1 {
5784 class SVGPoint extends NativeFieldWrapperClass1 { 5679 factory Point(num x, num y) => _PointFactoryProvider.createPoint(x, y);
5785 SVGPoint.internal(); 5680 Point.internal();
5786 5681
5787 5682
5788 /** @domName SVGPoint.x */ 5683 /** @domName SVGPoint.x */
5789 num get x native "SVGPoint_x_Getter"; 5684 num get x native "SVGPoint_x_Getter";
5790 5685
5791 5686
5792 /** @domName SVGPoint.x */ 5687 /** @domName SVGPoint.x */
5793 void set x(num value) native "SVGPoint_x_Setter"; 5688 void set x(num value) native "SVGPoint_x_Setter";
5794 5689
5795 5690
5796 /** @domName SVGPoint.y */ 5691 /** @domName SVGPoint.y */
5797 num get y native "SVGPoint_y_Getter"; 5692 num get y native "SVGPoint_y_Getter";
5798 5693
5799 5694
5800 /** @domName SVGPoint.y */ 5695 /** @domName SVGPoint.y */
5801 void set y(num value) native "SVGPoint_y_Setter"; 5696 void set y(num value) native "SVGPoint_y_Setter";
5802 5697
5803 5698
5804 /** @domName SVGPoint.matrixTransform */ 5699 /** @domName SVGPoint.matrixTransform */
5805 SVGPoint matrixTransform(SVGMatrix matrix) native "SVGPoint_matrixTransform_Ca llback"; 5700 Point matrixTransform(Matrix matrix) native "SVGPoint_matrixTransform_Callback ";
5806 5701
5807 } 5702 }
5808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5809 // for details. All rights reserved. Use of this source code is governed by a 5704 // for details. All rights reserved. Use of this source code is governed by a
5810 // BSD-style license that can be found in the LICENSE file. 5705 // BSD-style license that can be found in the LICENSE file.
5811 5706
5812 // WARNING: Do not edit - generated code. 5707 // WARNING: Do not edit - generated code.
5813 5708
5814 5709
5815 /// @domName SVGPointList 5710 /// @domName SVGPointList
5816 class SVGPointList extends NativeFieldWrapperClass1 { 5711 class PointList extends NativeFieldWrapperClass1 {
5817 SVGPointList.internal(); 5712 PointList.internal();
5818 5713
5819 5714
5820 /** @domName SVGPointList.numberOfItems */ 5715 /** @domName SVGPointList.numberOfItems */
5821 int get numberOfItems native "SVGPointList_numberOfItems_Getter"; 5716 int get numberOfItems native "SVGPointList_numberOfItems_Getter";
5822 5717
5823 5718
5824 /** @domName SVGPointList.appendItem */ 5719 /** @domName SVGPointList.appendItem */
5825 SVGPoint appendItem(SVGPoint item) native "SVGPointList_appendItem_Callback"; 5720 Point appendItem(Point item) native "SVGPointList_appendItem_Callback";
5826 5721
5827 5722
5828 /** @domName SVGPointList.clear */ 5723 /** @domName SVGPointList.clear */
5829 void clear() native "SVGPointList_clear_Callback"; 5724 void clear() native "SVGPointList_clear_Callback";
5830 5725
5831 5726
5832 /** @domName SVGPointList.getItem */ 5727 /** @domName SVGPointList.getItem */
5833 SVGPoint getItem(int index) native "SVGPointList_getItem_Callback"; 5728 Point getItem(int index) native "SVGPointList_getItem_Callback";
5834 5729
5835 5730
5836 /** @domName SVGPointList.initialize */ 5731 /** @domName SVGPointList.initialize */
5837 SVGPoint initialize(SVGPoint item) native "SVGPointList_initialize_Callback"; 5732 Point initialize(Point item) native "SVGPointList_initialize_Callback";
5838 5733
5839 5734
5840 /** @domName SVGPointList.insertItemBefore */ 5735 /** @domName SVGPointList.insertItemBefore */
5841 SVGPoint insertItemBefore(SVGPoint item, int index) native "SVGPointList_inser tItemBefore_Callback"; 5736 Point insertItemBefore(Point item, int index) native "SVGPointList_insertItemB efore_Callback";
5842 5737
5843 5738
5844 /** @domName SVGPointList.removeItem */ 5739 /** @domName SVGPointList.removeItem */
5845 SVGPoint removeItem(int index) native "SVGPointList_removeItem_Callback"; 5740 Point removeItem(int index) native "SVGPointList_removeItem_Callback";
5846 5741
5847 5742
5848 /** @domName SVGPointList.replaceItem */ 5743 /** @domName SVGPointList.replaceItem */
5849 SVGPoint replaceItem(SVGPoint item, int index) native "SVGPointList_replaceIte m_Callback"; 5744 Point replaceItem(Point item, int index) native "SVGPointList_replaceItem_Call back";
5850 5745
5851 } 5746 }
5852 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5747 // 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 5748 // 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. 5749 // BSD-style license that can be found in the LICENSE file.
5855 5750
5856 // WARNING: Do not edit - generated code. 5751 // WARNING: Do not edit - generated code.
5857 5752
5858 5753
5859 /// @domName SVGPolygonElement 5754 /// @domName SVGPolygonElement
5860 class SVGPolygonElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 5755 class PolygonElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace {
5861 SVGPolygonElement.internal(): super.internal(); 5756 PolygonElement.internal(): super.internal();
5862 5757
5863 5758
5864 /** @domName SVGPolygonElement.animatedPoints */ 5759 /** @domName SVGPolygonElement.animatedPoints */
5865 SVGPointList get animatedPoints native "SVGPolygonElement_animatedPoints_Gette r"; 5760 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter";
5866 5761
5867 5762
5868 /** @domName SVGPolygonElement.points */ 5763 /** @domName SVGPolygonElement.points */
5869 SVGPointList get points native "SVGPolygonElement_points_Getter"; 5764 PointList get points native "SVGPolygonElement_points_Getter";
5870 5765
5871 5766
5872 /** @domName SVGPolygonElement.externalResourcesRequired */ 5767 /** @domName SVGPolygonElement.externalResourcesRequired */
5873 SVGAnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_ext ernalResourcesRequired_Getter"; 5768 AnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_extern alResourcesRequired_Getter";
5874 5769
5875 5770
5876 /** @domName SVGPolygonElement.xmllang */ 5771 /** @domName SVGPolygonElement.xmllang */
5877 String get xmllang native "SVGPolygonElement_xmllang_Getter"; 5772 String get xmllang native "SVGPolygonElement_xmllang_Getter";
5878 5773
5879 5774
5880 /** @domName SVGPolygonElement.xmllang */ 5775 /** @domName SVGPolygonElement.xmllang */
5881 void set xmllang(String value) native "SVGPolygonElement_xmllang_Setter"; 5776 void set xmllang(String value) native "SVGPolygonElement_xmllang_Setter";
5882 5777
5883 5778
5884 /** @domName SVGPolygonElement.xmlspace */ 5779 /** @domName SVGPolygonElement.xmlspace */
5885 String get xmlspace native "SVGPolygonElement_xmlspace_Getter"; 5780 String get xmlspace native "SVGPolygonElement_xmlspace_Getter";
5886 5781
5887 5782
5888 /** @domName SVGPolygonElement.xmlspace */ 5783 /** @domName SVGPolygonElement.xmlspace */
5889 void set xmlspace(String value) native "SVGPolygonElement_xmlspace_Setter"; 5784 void set xmlspace(String value) native "SVGPolygonElement_xmlspace_Setter";
5890 5785
5891 5786
5892 /** @domName SVGPolygonElement.farthestViewportElement */ 5787 /** @domName SVGPolygonElement.farthestViewportElement */
5893 SVGElement get farthestViewportElement native "SVGPolygonElement_farthestViewp ortElement_Getter"; 5788 SvgElement get farthestViewportElement native "SVGPolygonElement_farthestViewp ortElement_Getter";
5894 5789
5895 5790
5896 /** @domName SVGPolygonElement.nearestViewportElement */ 5791 /** @domName SVGPolygonElement.nearestViewportElement */
5897 SVGElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor tElement_Getter"; 5792 SvgElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor tElement_Getter";
5898 5793
5899 5794
5900 /** @domName SVGPolygonElement.getBBox */ 5795 /** @domName SVGPolygonElement.getBBox */
5901 SVGRect getBBox() native "SVGPolygonElement_getBBox_Callback"; 5796 Rect getBBox() native "SVGPolygonElement_getBBox_Callback";
5902 5797
5903 5798
5904 /** @domName SVGPolygonElement.getCTM */ 5799 /** @domName SVGPolygonElement.getCTM */
5905 SVGMatrix getCTM() native "SVGPolygonElement_getCTM_Callback"; 5800 Matrix getCTM() native "SVGPolygonElement_getCTM_Callback";
5906 5801
5907 5802
5908 /** @domName SVGPolygonElement.getScreenCTM */ 5803 /** @domName SVGPolygonElement.getScreenCTM */
5909 SVGMatrix getScreenCTM() native "SVGPolygonElement_getScreenCTM_Callback"; 5804 Matrix getScreenCTM() native "SVGPolygonElement_getScreenCTM_Callback";
5910 5805
5911 5806
5912 /** @domName SVGPolygonElement.getTransformToElement */ 5807 /** @domName SVGPolygonElement.getTransformToElement */
5913 SVGMatrix getTransformToElement(SVGElement element) native "SVGPolygonElement_ getTransformToElement_Callback"; 5808 Matrix getTransformToElement(SvgElement element) native "SVGPolygonElement_get TransformToElement_Callback";
5914 5809
5915 5810
5916 /** @domName SVGPolygonElement.className */ 5811 /** @domName SVGPolygonElement.className */
5917 SVGAnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Ge tter"; 5812 AnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Gette r";
5918 5813
5919 5814
5920 /** @domName SVGPolygonElement.style */ 5815 /** @domName SVGPolygonElement.style */
5921 CSSStyleDeclaration get style native "SVGPolygonElement_style_Getter"; 5816 CSSStyleDeclaration get style native "SVGPolygonElement_style_Getter";
5922 5817
5923 5818
5924 /** @domName SVGPolygonElement.getPresentationAttribute */ 5819 /** @domName SVGPolygonElement.getPresentationAttribute */
5925 CSSValue getPresentationAttribute(String name) native "SVGPolygonElement_getPr esentationAttribute_Callback"; 5820 CSSValue getPresentationAttribute(String name) native "SVGPolygonElement_getPr esentationAttribute_Callback";
5926 5821
5927 5822
5928 /** @domName SVGPolygonElement.requiredExtensions */ 5823 /** @domName SVGPolygonElement.requiredExtensions */
5929 SVGStringList get requiredExtensions native "SVGPolygonElement_requiredExtensi ons_Getter"; 5824 StringList get requiredExtensions native "SVGPolygonElement_requiredExtensions _Getter";
5930 5825
5931 5826
5932 /** @domName SVGPolygonElement.requiredFeatures */ 5827 /** @domName SVGPolygonElement.requiredFeatures */
5933 SVGStringList get requiredFeatures native "SVGPolygonElement_requiredFeatures_ Getter"; 5828 StringList get requiredFeatures native "SVGPolygonElement_requiredFeatures_Get ter";
5934 5829
5935 5830
5936 /** @domName SVGPolygonElement.systemLanguage */ 5831 /** @domName SVGPolygonElement.systemLanguage */
5937 SVGStringList get systemLanguage native "SVGPolygonElement_systemLanguage_Gett er"; 5832 StringList get systemLanguage native "SVGPolygonElement_systemLanguage_Getter" ;
5938 5833
5939 5834
5940 /** @domName SVGPolygonElement.hasExtension */ 5835 /** @domName SVGPolygonElement.hasExtension */
5941 bool hasExtension(String extension) native "SVGPolygonElement_hasExtension_Cal lback"; 5836 bool hasExtension(String extension) native "SVGPolygonElement_hasExtension_Cal lback";
5942 5837
5943 5838
5944 /** @domName SVGPolygonElement.transform */ 5839 /** @domName SVGPolygonElement.transform */
5945 SVGAnimatedTransformList get transform native "SVGPolygonElement_transform_Get ter"; 5840 AnimatedTransformList get transform native "SVGPolygonElement_transform_Getter ";
5946 5841
5947 } 5842 }
5948 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5843 // 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 5844 // 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. 5845 // BSD-style license that can be found in the LICENSE file.
5951 5846
5952 // WARNING: Do not edit - generated code. 5847 // WARNING: Do not edit - generated code.
5953 5848
5954 5849
5955 /// @domName SVGPolylineElement 5850 /// @domName SVGPolylineElement
5956 class SVGPolylineElement extends SVGElement implements SVGLangSpace, SVGStylable , SVGTests, SVGTransformable, SVGExternalResourcesRequired { 5851 class PolylineElement extends SvgElement implements Transformable, Tests, Stylab le, ExternalResourcesRequired, LangSpace {
5957 SVGPolylineElement.internal(): super.internal(); 5852 PolylineElement.internal(): super.internal();
5958 5853
5959 5854
5960 /** @domName SVGPolylineElement.animatedPoints */ 5855 /** @domName SVGPolylineElement.animatedPoints */
5961 SVGPointList get animatedPoints native "SVGPolylineElement_animatedPoints_Gett er"; 5856 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ;
5962 5857
5963 5858
5964 /** @domName SVGPolylineElement.points */ 5859 /** @domName SVGPolylineElement.points */
5965 SVGPointList get points native "SVGPolylineElement_points_Getter"; 5860 PointList get points native "SVGPolylineElement_points_Getter";
5966 5861
5967 5862
5968 /** @domName SVGPolylineElement.externalResourcesRequired */ 5863 /** @domName SVGPolylineElement.externalResourcesRequired */
5969 SVGAnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_ex ternalResourcesRequired_Getter"; 5864 AnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_exter nalResourcesRequired_Getter";
5970 5865
5971 5866
5972 /** @domName SVGPolylineElement.xmllang */ 5867 /** @domName SVGPolylineElement.xmllang */
5973 String get xmllang native "SVGPolylineElement_xmllang_Getter"; 5868 String get xmllang native "SVGPolylineElement_xmllang_Getter";
5974 5869
5975 5870
5976 /** @domName SVGPolylineElement.xmllang */ 5871 /** @domName SVGPolylineElement.xmllang */
5977 void set xmllang(String value) native "SVGPolylineElement_xmllang_Setter"; 5872 void set xmllang(String value) native "SVGPolylineElement_xmllang_Setter";
5978 5873
5979 5874
5980 /** @domName SVGPolylineElement.xmlspace */ 5875 /** @domName SVGPolylineElement.xmlspace */
5981 String get xmlspace native "SVGPolylineElement_xmlspace_Getter"; 5876 String get xmlspace native "SVGPolylineElement_xmlspace_Getter";
5982 5877
5983 5878
5984 /** @domName SVGPolylineElement.xmlspace */ 5879 /** @domName SVGPolylineElement.xmlspace */
5985 void set xmlspace(String value) native "SVGPolylineElement_xmlspace_Setter"; 5880 void set xmlspace(String value) native "SVGPolylineElement_xmlspace_Setter";
5986 5881
5987 5882
5988 /** @domName SVGPolylineElement.farthestViewportElement */ 5883 /** @domName SVGPolylineElement.farthestViewportElement */
5989 SVGElement get farthestViewportElement native "SVGPolylineElement_farthestView portElement_Getter"; 5884 SvgElement get farthestViewportElement native "SVGPolylineElement_farthestView portElement_Getter";
5990 5885
5991 5886
5992 /** @domName SVGPolylineElement.nearestViewportElement */ 5887 /** @domName SVGPolylineElement.nearestViewportElement */
5993 SVGElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo rtElement_Getter"; 5888 SvgElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo rtElement_Getter";
5994 5889
5995 5890
5996 /** @domName SVGPolylineElement.getBBox */ 5891 /** @domName SVGPolylineElement.getBBox */
5997 SVGRect getBBox() native "SVGPolylineElement_getBBox_Callback"; 5892 Rect getBBox() native "SVGPolylineElement_getBBox_Callback";
5998 5893
5999 5894
6000 /** @domName SVGPolylineElement.getCTM */ 5895 /** @domName SVGPolylineElement.getCTM */
6001 SVGMatrix getCTM() native "SVGPolylineElement_getCTM_Callback"; 5896 Matrix getCTM() native "SVGPolylineElement_getCTM_Callback";
6002 5897
6003 5898
6004 /** @domName SVGPolylineElement.getScreenCTM */ 5899 /** @domName SVGPolylineElement.getScreenCTM */
6005 SVGMatrix getScreenCTM() native "SVGPolylineElement_getScreenCTM_Callback"; 5900 Matrix getScreenCTM() native "SVGPolylineElement_getScreenCTM_Callback";
6006 5901
6007 5902
6008 /** @domName SVGPolylineElement.getTransformToElement */ 5903 /** @domName SVGPolylineElement.getTransformToElement */
6009 SVGMatrix getTransformToElement(SVGElement element) native "SVGPolylineElement _getTransformToElement_Callback"; 5904 Matrix getTransformToElement(SvgElement element) native "SVGPolylineElement_ge tTransformToElement_Callback";
6010 5905
6011 5906
6012 /** @domName SVGPolylineElement.className */ 5907 /** @domName SVGPolylineElement.className */
6013 SVGAnimatedString get $dom_svgClassName native "SVGPolylineElement_className_G etter"; 5908 AnimatedString get $dom_svgClassName native "SVGPolylineElement_className_Gett er";
6014 5909
6015 5910
6016 /** @domName SVGPolylineElement.style */ 5911 /** @domName SVGPolylineElement.style */
6017 CSSStyleDeclaration get style native "SVGPolylineElement_style_Getter"; 5912 CSSStyleDeclaration get style native "SVGPolylineElement_style_Getter";
6018 5913
6019 5914
6020 /** @domName SVGPolylineElement.getPresentationAttribute */ 5915 /** @domName SVGPolylineElement.getPresentationAttribute */
6021 CSSValue getPresentationAttribute(String name) native "SVGPolylineElement_getP resentationAttribute_Callback"; 5916 CSSValue getPresentationAttribute(String name) native "SVGPolylineElement_getP resentationAttribute_Callback";
6022 5917
6023 5918
6024 /** @domName SVGPolylineElement.requiredExtensions */ 5919 /** @domName SVGPolylineElement.requiredExtensions */
6025 SVGStringList get requiredExtensions native "SVGPolylineElement_requiredExtens ions_Getter"; 5920 StringList get requiredExtensions native "SVGPolylineElement_requiredExtension s_Getter";
6026 5921
6027 5922
6028 /** @domName SVGPolylineElement.requiredFeatures */ 5923 /** @domName SVGPolylineElement.requiredFeatures */
6029 SVGStringList get requiredFeatures native "SVGPolylineElement_requiredFeatures _Getter"; 5924 StringList get requiredFeatures native "SVGPolylineElement_requiredFeatures_Ge tter";
6030 5925
6031 5926
6032 /** @domName SVGPolylineElement.systemLanguage */ 5927 /** @domName SVGPolylineElement.systemLanguage */
6033 SVGStringList get systemLanguage native "SVGPolylineElement_systemLanguage_Get ter"; 5928 StringList get systemLanguage native "SVGPolylineElement_systemLanguage_Getter ";
6034 5929
6035 5930
6036 /** @domName SVGPolylineElement.hasExtension */ 5931 /** @domName SVGPolylineElement.hasExtension */
6037 bool hasExtension(String extension) native "SVGPolylineElement_hasExtension_Ca llback"; 5932 bool hasExtension(String extension) native "SVGPolylineElement_hasExtension_Ca llback";
6038 5933
6039 5934
6040 /** @domName SVGPolylineElement.transform */ 5935 /** @domName SVGPolylineElement.transform */
6041 SVGAnimatedTransformList get transform native "SVGPolylineElement_transform_Ge tter"; 5936 AnimatedTransformList get transform native "SVGPolylineElement_transform_Gette r";
6042 5937
6043 } 5938 }
6044 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6045 // for details. All rights reserved. Use of this source code is governed by a 5940 // for details. All rights reserved. Use of this source code is governed by a
6046 // BSD-style license that can be found in the LICENSE file. 5941 // BSD-style license that can be found in the LICENSE file.
6047 5942
6048 // WARNING: Do not edit - generated code. 5943 // WARNING: Do not edit - generated code.
6049 5944
6050 5945
6051 /// @domName SVGPreserveAspectRatio 5946 /// @domName SVGPreserveAspectRatio
6052 class SVGPreserveAspectRatio extends NativeFieldWrapperClass1 { 5947 class PreserveAspectRatio extends NativeFieldWrapperClass1 {
6053 SVGPreserveAspectRatio.internal(); 5948 PreserveAspectRatio.internal();
6054 5949
6055 static const int SVG_MEETORSLICE_MEET = 1; 5950 static const int SVG_MEETORSLICE_MEET = 1;
6056 5951
6057 static const int SVG_MEETORSLICE_SLICE = 2; 5952 static const int SVG_MEETORSLICE_SLICE = 2;
6058 5953
6059 static const int SVG_MEETORSLICE_UNKNOWN = 0; 5954 static const int SVG_MEETORSLICE_UNKNOWN = 0;
6060 5955
6061 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; 5956 static const int SVG_PRESERVEASPECTRATIO_NONE = 1;
6062 5957
6063 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; 5958 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
6098 5993
6099 } 5994 }
6100 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5995 // 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 5996 // 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. 5997 // BSD-style license that can be found in the LICENSE file.
6103 5998
6104 // WARNING: Do not edit - generated code. 5999 // WARNING: Do not edit - generated code.
6105 6000
6106 6001
6107 /// @domName SVGRadialGradientElement 6002 /// @domName SVGRadialGradientElement
6108 class SVGRadialGradientElement extends SVGGradientElement { 6003 class RadialGradientElement extends GradientElement {
6109 SVGRadialGradientElement.internal(): super.internal(); 6004 RadialGradientElement.internal(): super.internal();
6110 6005
6111 6006
6112 /** @domName SVGRadialGradientElement.cx */ 6007 /** @domName SVGRadialGradientElement.cx */
6113 SVGAnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; 6008 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter";
6114 6009
6115 6010
6116 /** @domName SVGRadialGradientElement.cy */ 6011 /** @domName SVGRadialGradientElement.cy */
6117 SVGAnimatedLength get cy native "SVGRadialGradientElement_cy_Getter"; 6012 AnimatedLength get cy native "SVGRadialGradientElement_cy_Getter";
6118 6013
6119 6014
6120 /** @domName SVGRadialGradientElement.fr */ 6015 /** @domName SVGRadialGradientElement.fr */
6121 SVGAnimatedLength get fr native "SVGRadialGradientElement_fr_Getter"; 6016 AnimatedLength get fr native "SVGRadialGradientElement_fr_Getter";
6122 6017
6123 6018
6124 /** @domName SVGRadialGradientElement.fx */ 6019 /** @domName SVGRadialGradientElement.fx */
6125 SVGAnimatedLength get fx native "SVGRadialGradientElement_fx_Getter"; 6020 AnimatedLength get fx native "SVGRadialGradientElement_fx_Getter";
6126 6021
6127 6022
6128 /** @domName SVGRadialGradientElement.fy */ 6023 /** @domName SVGRadialGradientElement.fy */
6129 SVGAnimatedLength get fy native "SVGRadialGradientElement_fy_Getter"; 6024 AnimatedLength get fy native "SVGRadialGradientElement_fy_Getter";
6130 6025
6131 6026
6132 /** @domName SVGRadialGradientElement.r */ 6027 /** @domName SVGRadialGradientElement.r */
6133 SVGAnimatedLength get r native "SVGRadialGradientElement_r_Getter"; 6028 AnimatedLength get r native "SVGRadialGradientElement_r_Getter";
6134 6029
6135 } 6030 }
6136 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6137 // for details. All rights reserved. Use of this source code is governed by a 6032 // for details. All rights reserved. Use of this source code is governed by a
6138 // BSD-style license that can be found in the LICENSE file. 6033 // BSD-style license that can be found in the LICENSE file.
6139 6034
6140 // WARNING: Do not edit - generated code. 6035 // WARNING: Do not edit - generated code.
6141 6036
6142 6037
6143 /// @domName SVGRect 6038 /// @domName SVGRect
6144 class SVGRect extends NativeFieldWrapperClass1 { 6039 class Rect extends NativeFieldWrapperClass1 {
6145 SVGRect.internal(); 6040 Rect.internal();
6146 6041
6147 6042
6148 /** @domName SVGRect.height */ 6043 /** @domName SVGRect.height */
6149 num get height native "SVGRect_height_Getter"; 6044 num get height native "SVGRect_height_Getter";
6150 6045
6151 6046
6152 /** @domName SVGRect.height */ 6047 /** @domName SVGRect.height */
6153 void set height(num value) native "SVGRect_height_Setter"; 6048 void set height(num value) native "SVGRect_height_Setter";
6154 6049
6155 6050
(...skipping 22 matching lines...) Expand all
6178 6073
6179 } 6074 }
6180 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6075 // 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 6076 // 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. 6077 // BSD-style license that can be found in the LICENSE file.
6183 6078
6184 // WARNING: Do not edit - generated code. 6079 // WARNING: Do not edit - generated code.
6185 6080
6186 6081
6187 /// @domName SVGRectElement 6082 /// @domName SVGRectElement
6188 class SVGRectElement extends SVGElement implements SVGLangSpace, SVGStylable, SV GTests, SVGTransformable, SVGExternalResourcesRequired { 6083 class RectElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace {
6189 SVGRectElement.internal(): super.internal(); 6084 RectElement.internal(): super.internal();
6190 6085
6191 6086
6192 /** @domName SVGRectElement.height */ 6087 /** @domName SVGRectElement.height */
6193 SVGAnimatedLength get height native "SVGRectElement_height_Getter"; 6088 AnimatedLength get height native "SVGRectElement_height_Getter";
6194 6089
6195 6090
6196 /** @domName SVGRectElement.rx */ 6091 /** @domName SVGRectElement.rx */
6197 SVGAnimatedLength get rx native "SVGRectElement_rx_Getter"; 6092 AnimatedLength get rx native "SVGRectElement_rx_Getter";
6198 6093
6199 6094
6200 /** @domName SVGRectElement.ry */ 6095 /** @domName SVGRectElement.ry */
6201 SVGAnimatedLength get ry native "SVGRectElement_ry_Getter"; 6096 AnimatedLength get ry native "SVGRectElement_ry_Getter";
6202 6097
6203 6098
6204 /** @domName SVGRectElement.width */ 6099 /** @domName SVGRectElement.width */
6205 SVGAnimatedLength get width native "SVGRectElement_width_Getter"; 6100 AnimatedLength get width native "SVGRectElement_width_Getter";
6206 6101
6207 6102
6208 /** @domName SVGRectElement.x */ 6103 /** @domName SVGRectElement.x */
6209 SVGAnimatedLength get x native "SVGRectElement_x_Getter"; 6104 AnimatedLength get x native "SVGRectElement_x_Getter";
6210 6105
6211 6106
6212 /** @domName SVGRectElement.y */ 6107 /** @domName SVGRectElement.y */
6213 SVGAnimatedLength get y native "SVGRectElement_y_Getter"; 6108 AnimatedLength get y native "SVGRectElement_y_Getter";
6214 6109
6215 6110
6216 /** @domName SVGRectElement.externalResourcesRequired */ 6111 /** @domName SVGRectElement.externalResourcesRequired */
6217 SVGAnimatedBoolean get externalResourcesRequired native "SVGRectElement_extern alResourcesRequired_Getter"; 6112 AnimatedBoolean get externalResourcesRequired native "SVGRectElement_externalR esourcesRequired_Getter";
6218 6113
6219 6114
6220 /** @domName SVGRectElement.xmllang */ 6115 /** @domName SVGRectElement.xmllang */
6221 String get xmllang native "SVGRectElement_xmllang_Getter"; 6116 String get xmllang native "SVGRectElement_xmllang_Getter";
6222 6117
6223 6118
6224 /** @domName SVGRectElement.xmllang */ 6119 /** @domName SVGRectElement.xmllang */
6225 void set xmllang(String value) native "SVGRectElement_xmllang_Setter"; 6120 void set xmllang(String value) native "SVGRectElement_xmllang_Setter";
6226 6121
6227 6122
6228 /** @domName SVGRectElement.xmlspace */ 6123 /** @domName SVGRectElement.xmlspace */
6229 String get xmlspace native "SVGRectElement_xmlspace_Getter"; 6124 String get xmlspace native "SVGRectElement_xmlspace_Getter";
6230 6125
6231 6126
6232 /** @domName SVGRectElement.xmlspace */ 6127 /** @domName SVGRectElement.xmlspace */
6233 void set xmlspace(String value) native "SVGRectElement_xmlspace_Setter"; 6128 void set xmlspace(String value) native "SVGRectElement_xmlspace_Setter";
6234 6129
6235 6130
6236 /** @domName SVGRectElement.farthestViewportElement */ 6131 /** @domName SVGRectElement.farthestViewportElement */
6237 SVGElement get farthestViewportElement native "SVGRectElement_farthestViewport Element_Getter"; 6132 SvgElement get farthestViewportElement native "SVGRectElement_farthestViewport Element_Getter";
6238 6133
6239 6134
6240 /** @domName SVGRectElement.nearestViewportElement */ 6135 /** @domName SVGRectElement.nearestViewportElement */
6241 SVGElement get nearestViewportElement native "SVGRectElement_nearestViewportEl ement_Getter"; 6136 SvgElement get nearestViewportElement native "SVGRectElement_nearestViewportEl ement_Getter";
6242 6137
6243 6138
6244 /** @domName SVGRectElement.getBBox */ 6139 /** @domName SVGRectElement.getBBox */
6245 SVGRect getBBox() native "SVGRectElement_getBBox_Callback"; 6140 Rect getBBox() native "SVGRectElement_getBBox_Callback";
6246 6141
6247 6142
6248 /** @domName SVGRectElement.getCTM */ 6143 /** @domName SVGRectElement.getCTM */
6249 SVGMatrix getCTM() native "SVGRectElement_getCTM_Callback"; 6144 Matrix getCTM() native "SVGRectElement_getCTM_Callback";
6250 6145
6251 6146
6252 /** @domName SVGRectElement.getScreenCTM */ 6147 /** @domName SVGRectElement.getScreenCTM */
6253 SVGMatrix getScreenCTM() native "SVGRectElement_getScreenCTM_Callback"; 6148 Matrix getScreenCTM() native "SVGRectElement_getScreenCTM_Callback";
6254 6149
6255 6150
6256 /** @domName SVGRectElement.getTransformToElement */ 6151 /** @domName SVGRectElement.getTransformToElement */
6257 SVGMatrix getTransformToElement(SVGElement element) native "SVGRectElement_get TransformToElement_Callback"; 6152 Matrix getTransformToElement(SvgElement element) native "SVGRectElement_getTra nsformToElement_Callback";
6258 6153
6259 6154
6260 /** @domName SVGRectElement.className */ 6155 /** @domName SVGRectElement.className */
6261 SVGAnimatedString get $dom_svgClassName native "SVGRectElement_className_Gette r"; 6156 AnimatedString get $dom_svgClassName native "SVGRectElement_className_Getter";
6262 6157
6263 6158
6264 /** @domName SVGRectElement.style */ 6159 /** @domName SVGRectElement.style */
6265 CSSStyleDeclaration get style native "SVGRectElement_style_Getter"; 6160 CSSStyleDeclaration get style native "SVGRectElement_style_Getter";
6266 6161
6267 6162
6268 /** @domName SVGRectElement.getPresentationAttribute */ 6163 /** @domName SVGRectElement.getPresentationAttribute */
6269 CSSValue getPresentationAttribute(String name) native "SVGRectElement_getPrese ntationAttribute_Callback"; 6164 CSSValue getPresentationAttribute(String name) native "SVGRectElement_getPrese ntationAttribute_Callback";
6270 6165
6271 6166
6272 /** @domName SVGRectElement.requiredExtensions */ 6167 /** @domName SVGRectElement.requiredExtensions */
6273 SVGStringList get requiredExtensions native "SVGRectElement_requiredExtensions _Getter"; 6168 StringList get requiredExtensions native "SVGRectElement_requiredExtensions_Ge tter";
6274 6169
6275 6170
6276 /** @domName SVGRectElement.requiredFeatures */ 6171 /** @domName SVGRectElement.requiredFeatures */
6277 SVGStringList get requiredFeatures native "SVGRectElement_requiredFeatures_Get ter"; 6172 StringList get requiredFeatures native "SVGRectElement_requiredFeatures_Getter ";
6278 6173
6279 6174
6280 /** @domName SVGRectElement.systemLanguage */ 6175 /** @domName SVGRectElement.systemLanguage */
6281 SVGStringList get systemLanguage native "SVGRectElement_systemLanguage_Getter" ; 6176 StringList get systemLanguage native "SVGRectElement_systemLanguage_Getter";
6282 6177
6283 6178
6284 /** @domName SVGRectElement.hasExtension */ 6179 /** @domName SVGRectElement.hasExtension */
6285 bool hasExtension(String extension) native "SVGRectElement_hasExtension_Callba ck"; 6180 bool hasExtension(String extension) native "SVGRectElement_hasExtension_Callba ck";
6286 6181
6287 6182
6288 /** @domName SVGRectElement.transform */ 6183 /** @domName SVGRectElement.transform */
6289 SVGAnimatedTransformList get transform native "SVGRectElement_transform_Getter "; 6184 AnimatedTransformList get transform native "SVGRectElement_transform_Getter";
6290 6185
6291 } 6186 }
6292 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6293 // for details. All rights reserved. Use of this source code is governed by a 6188 // for details. All rights reserved. Use of this source code is governed by a
6294 // BSD-style license that can be found in the LICENSE file. 6189 // BSD-style license that can be found in the LICENSE file.
6295 6190
6296 // WARNING: Do not edit - generated code. 6191 // WARNING: Do not edit - generated code.
6297 6192
6298 6193
6299 /// @domName SVGRenderingIntent 6194 /// @domName SVGRenderingIntent
6300 class SVGRenderingIntent extends NativeFieldWrapperClass1 { 6195 class RenderingIntent extends NativeFieldWrapperClass1 {
6301 SVGRenderingIntent.internal(); 6196 RenderingIntent.internal();
6302 6197
6303 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 6198 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
6304 6199
6305 static const int RENDERING_INTENT_AUTO = 1; 6200 static const int RENDERING_INTENT_AUTO = 1;
6306 6201
6307 static const int RENDERING_INTENT_PERCEPTUAL = 2; 6202 static const int RENDERING_INTENT_PERCEPTUAL = 2;
6308 6203
6309 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; 6204 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
6310 6205
6311 static const int RENDERING_INTENT_SATURATION = 4; 6206 static const int RENDERING_INTENT_SATURATION = 4;
6312 6207
6313 static const int RENDERING_INTENT_UNKNOWN = 0; 6208 static const int RENDERING_INTENT_UNKNOWN = 0;
6314 6209
6315 } 6210 }
6316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6211 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6317 // for details. All rights reserved. Use of this source code is governed by a 6212 // for details. All rights reserved. Use of this source code is governed by a
6318 // BSD-style license that can be found in the LICENSE file. 6213 // BSD-style license that can be found in the LICENSE file.
6319 6214
6320
6321 class SVGSVGElement extends SVGElement implements SVGZoomAndPan, SVGLocatable, S VGLangSpace, SVGTests, SVGStylable, SVGFitToViewBox, SVGExternalResourcesRequire d {
6322 factory SVGSVGElement() => _SVGSVGElementFactoryProvider.createSVGSVGElement() ;
6323
6324 SVGSVGElement.internal(): super.internal();
6325
6326
6327 /** @domName SVGSVGElement.contentScriptType */
6328 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter";
6329
6330
6331 /** @domName SVGSVGElement.contentScriptType */
6332 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter";
6333
6334
6335 /** @domName SVGSVGElement.contentStyleType */
6336 String get contentStyleType native "SVGSVGElement_contentStyleType_Getter";
6337
6338
6339 /** @domName SVGSVGElement.contentStyleType */
6340 void set contentStyleType(String value) native "SVGSVGElement_contentStyleType _Setter";
6341
6342
6343 /** @domName SVGSVGElement.currentScale */
6344 num get currentScale native "SVGSVGElement_currentScale_Getter";
6345
6346
6347 /** @domName SVGSVGElement.currentScale */
6348 void set currentScale(num value) native "SVGSVGElement_currentScale_Setter";
6349
6350
6351 /** @domName SVGSVGElement.currentTranslate */
6352 SVGPoint get currentTranslate native "SVGSVGElement_currentTranslate_Getter";
6353
6354
6355 /** @domName SVGSVGElement.currentView */
6356 SVGViewSpec get currentView native "SVGSVGElement_currentView_Getter";
6357
6358
6359 /** @domName SVGSVGElement.height */
6360 SVGAnimatedLength get height native "SVGSVGElement_height_Getter";
6361
6362
6363 /** @domName SVGSVGElement.pixelUnitToMillimeterX */
6364 num get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Ge tter";
6365
6366
6367 /** @domName SVGSVGElement.pixelUnitToMillimeterY */
6368 num get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Ge tter";
6369
6370
6371 /** @domName SVGSVGElement.screenPixelToMillimeterX */
6372 num get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeter X_Getter";
6373
6374
6375 /** @domName SVGSVGElement.screenPixelToMillimeterY */
6376 num get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeter Y_Getter";
6377
6378
6379 /** @domName SVGSVGElement.useCurrentView */
6380 bool get useCurrentView native "SVGSVGElement_useCurrentView_Getter";
6381
6382
6383 /** @domName SVGSVGElement.viewport */
6384 SVGRect get viewport native "SVGSVGElement_viewport_Getter";
6385
6386
6387 /** @domName SVGSVGElement.width */
6388 SVGAnimatedLength get width native "SVGSVGElement_width_Getter";
6389
6390
6391 /** @domName SVGSVGElement.x */
6392 SVGAnimatedLength get x native "SVGSVGElement_x_Getter";
6393
6394
6395 /** @domName SVGSVGElement.y */
6396 SVGAnimatedLength get y native "SVGSVGElement_y_Getter";
6397
6398
6399 /** @domName SVGSVGElement.animationsPaused */
6400 bool animationsPaused() native "SVGSVGElement_animationsPaused_Callback";
6401
6402
6403 /** @domName SVGSVGElement.checkEnclosure */
6404 bool checkEnclosure(SVGElement element, SVGRect rect) native "SVGSVGElement_ch eckEnclosure_Callback";
6405
6406
6407 /** @domName SVGSVGElement.checkIntersection */
6408 bool checkIntersection(SVGElement element, SVGRect rect) native "SVGSVGElement _checkIntersection_Callback";
6409
6410
6411 /** @domName SVGSVGElement.createSVGAngle */
6412 SVGAngle createSVGAngle() native "SVGSVGElement_createSVGAngle_Callback";
6413
6414
6415 /** @domName SVGSVGElement.createSVGLength */
6416 SVGLength createSVGLength() native "SVGSVGElement_createSVGLength_Callback";
6417
6418
6419 /** @domName SVGSVGElement.createSVGMatrix */
6420 SVGMatrix createSVGMatrix() native "SVGSVGElement_createSVGMatrix_Callback";
6421
6422
6423 /** @domName SVGSVGElement.createSVGNumber */
6424 SVGNumber createSVGNumber() native "SVGSVGElement_createSVGNumber_Callback";
6425
6426
6427 /** @domName SVGSVGElement.createSVGPoint */
6428 SVGPoint createSVGPoint() native "SVGSVGElement_createSVGPoint_Callback";
6429
6430
6431 /** @domName SVGSVGElement.createSVGRect */
6432 SVGRect createSVGRect() native "SVGSVGElement_createSVGRect_Callback";
6433
6434
6435 /** @domName SVGSVGElement.createSVGTransform */
6436 SVGTransform createSVGTransform() native "SVGSVGElement_createSVGTransform_Cal lback";
6437
6438
6439 /** @domName SVGSVGElement.createSVGTransformFromMatrix */
6440 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native "SVGSVGElem ent_createSVGTransformFromMatrix_Callback";
6441
6442
6443 /** @domName SVGSVGElement.deselectAll */
6444 void deselectAll() native "SVGSVGElement_deselectAll_Callback";
6445
6446
6447 /** @domName SVGSVGElement.forceRedraw */
6448 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback";
6449
6450
6451 /** @domName SVGSVGElement.getCurrentTime */
6452 num getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback";
6453
6454
6455 /** @domName SVGSVGElement.getElementById */
6456 Element getElementById(String elementId) native "SVGSVGElement_getElementById_ Callback";
6457
6458
6459 /** @domName SVGSVGElement.getEnclosureList */
6460 List<Node> getEnclosureList(SVGRect rect, SVGElement referenceElement) native "SVGSVGElement_getEnclosureList_Callback";
6461
6462
6463 /** @domName SVGSVGElement.getIntersectionList */
6464 List<Node> getIntersectionList(SVGRect rect, SVGElement referenceElement) nati ve "SVGSVGElement_getIntersectionList_Callback";
6465
6466
6467 /** @domName SVGSVGElement.pauseAnimations */
6468 void pauseAnimations() native "SVGSVGElement_pauseAnimations_Callback";
6469
6470
6471 /** @domName SVGSVGElement.setCurrentTime */
6472 void setCurrentTime(num seconds) native "SVGSVGElement_setCurrentTime_Callback ";
6473
6474
6475 /** @domName SVGSVGElement.suspendRedraw */
6476 int suspendRedraw(int maxWaitMilliseconds) native "SVGSVGElement_suspendRedraw _Callback";
6477
6478
6479 /** @domName SVGSVGElement.unpauseAnimations */
6480 void unpauseAnimations() native "SVGSVGElement_unpauseAnimations_Callback";
6481
6482
6483 /** @domName SVGSVGElement.unsuspendRedraw */
6484 void unsuspendRedraw(int suspendHandleId) native "SVGSVGElement_unsuspendRedra w_Callback";
6485
6486
6487 /** @domName SVGSVGElement.unsuspendRedrawAll */
6488 void unsuspendRedrawAll() native "SVGSVGElement_unsuspendRedrawAll_Callback";
6489
6490
6491 /** @domName SVGSVGElement.externalResourcesRequired */
6492 SVGAnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externa lResourcesRequired_Getter";
6493
6494
6495 /** @domName SVGSVGElement.preserveAspectRatio */
6496 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_p reserveAspectRatio_Getter";
6497
6498
6499 /** @domName SVGSVGElement.viewBox */
6500 SVGAnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter";
6501
6502
6503 /** @domName SVGSVGElement.xmllang */
6504 String get xmllang native "SVGSVGElement_xmllang_Getter";
6505
6506
6507 /** @domName SVGSVGElement.xmllang */
6508 void set xmllang(String value) native "SVGSVGElement_xmllang_Setter";
6509
6510
6511 /** @domName SVGSVGElement.xmlspace */
6512 String get xmlspace native "SVGSVGElement_xmlspace_Getter";
6513
6514
6515 /** @domName SVGSVGElement.xmlspace */
6516 void set xmlspace(String value) native "SVGSVGElement_xmlspace_Setter";
6517
6518
6519 /** @domName SVGSVGElement.farthestViewportElement */
6520 SVGElement get farthestViewportElement native "SVGSVGElement_farthestViewportE lement_Getter";
6521
6522
6523 /** @domName SVGSVGElement.nearestViewportElement */
6524 SVGElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle ment_Getter";
6525
6526
6527 /** @domName SVGSVGElement.getBBox */
6528 SVGRect getBBox() native "SVGSVGElement_getBBox_Callback";
6529
6530
6531 /** @domName SVGSVGElement.getCTM */
6532 SVGMatrix getCTM() native "SVGSVGElement_getCTM_Callback";
6533
6534
6535 /** @domName SVGSVGElement.getScreenCTM */
6536 SVGMatrix getScreenCTM() native "SVGSVGElement_getScreenCTM_Callback";
6537
6538
6539 /** @domName SVGSVGElement.getTransformToElement */
6540 SVGMatrix getTransformToElement(SVGElement element) native "SVGSVGElement_getT ransformToElement_Callback";
6541
6542
6543 /** @domName SVGSVGElement.className */
6544 SVGAnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter ";
6545
6546
6547 /** @domName SVGSVGElement.style */
6548 CSSStyleDeclaration get style native "SVGSVGElement_style_Getter";
6549
6550
6551 /** @domName SVGSVGElement.getPresentationAttribute */
6552 CSSValue getPresentationAttribute(String name) native "SVGSVGElement_getPresen tationAttribute_Callback";
6553
6554
6555 /** @domName SVGSVGElement.requiredExtensions */
6556 SVGStringList get requiredExtensions native "SVGSVGElement_requiredExtensions_ Getter";
6557
6558
6559 /** @domName SVGSVGElement.requiredFeatures */
6560 SVGStringList get requiredFeatures native "SVGSVGElement_requiredFeatures_Gett er";
6561
6562
6563 /** @domName SVGSVGElement.systemLanguage */
6564 SVGStringList get systemLanguage native "SVGSVGElement_systemLanguage_Getter";
6565
6566
6567 /** @domName SVGSVGElement.hasExtension */
6568 bool hasExtension(String extension) native "SVGSVGElement_hasExtension_Callbac k";
6569
6570
6571 /** @domName SVGSVGElement.zoomAndPan */
6572 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter";
6573
6574
6575 /** @domName SVGSVGElement.zoomAndPan */
6576 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter";
6577
6578 }
6579 // 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
6581 // BSD-style license that can be found in the LICENSE file.
6582
6583 // WARNING: Do not edit - generated code. 6215 // WARNING: Do not edit - generated code.
6584 6216
6585 6217
6586 /// @domName SVGScriptElement 6218 /// @domName SVGScriptElement
6587 class SVGScriptElement extends SVGElement implements SVGURIReference, SVGExterna lResourcesRequired { 6219 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired {
6588 SVGScriptElement.internal(): super.internal(); 6220
6221 factory ScriptElement() => _Elements.createScriptElement();
6222 ScriptElement.internal(): super.internal();
6589 6223
6590 6224
6591 /** @domName SVGScriptElement.type */ 6225 /** @domName SVGScriptElement.type */
6592 String get type native "SVGScriptElement_type_Getter"; 6226 String get type native "SVGScriptElement_type_Getter";
6593 6227
6594 6228
6595 /** @domName SVGScriptElement.type */ 6229 /** @domName SVGScriptElement.type */
6596 void set type(String value) native "SVGScriptElement_type_Setter"; 6230 void set type(String value) native "SVGScriptElement_type_Setter";
6597 6231
6598 6232
6599 /** @domName SVGScriptElement.externalResourcesRequired */ 6233 /** @domName SVGScriptElement.externalResourcesRequired */
6600 SVGAnimatedBoolean get externalResourcesRequired native "SVGScriptElement_exte rnalResourcesRequired_Getter"; 6234 AnimatedBoolean get externalResourcesRequired native "SVGScriptElement_externa lResourcesRequired_Getter";
6601 6235
6602 6236
6603 /** @domName SVGScriptElement.href */ 6237 /** @domName SVGScriptElement.href */
6604 SVGAnimatedString get href native "SVGScriptElement_href_Getter"; 6238 AnimatedString get href native "SVGScriptElement_href_Getter";
6605 6239
6606 } 6240 }
6607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6241 // 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 6242 // 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. 6243 // BSD-style license that can be found in the LICENSE file.
6610 6244
6611 // WARNING: Do not edit - generated code. 6245 // WARNING: Do not edit - generated code.
6612 6246
6613 6247
6614 /// @domName SVGSetElement 6248 /// @domName SVGSetElement
6615 class SVGSetElement extends SVGAnimationElement { 6249 class SetElement extends AnimationElement {
6616 SVGSetElement.internal(): super.internal(); 6250 SetElement.internal(): super.internal();
6617 6251
6618 } 6252 }
6619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6253 // 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 6254 // 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. 6255 // BSD-style license that can be found in the LICENSE file.
6622 6256
6623 // WARNING: Do not edit - generated code. 6257 // WARNING: Do not edit - generated code.
6624 6258
6625 6259
6626 /// @domName SVGStopElement 6260 /// @domName SVGStopElement
6627 class SVGStopElement extends SVGElement implements SVGStylable { 6261 class StopElement extends SvgElement implements Stylable {
6628 SVGStopElement.internal(): super.internal(); 6262 StopElement.internal(): super.internal();
6629 6263
6630 6264
6631 /** @domName SVGStopElement.offset */ 6265 /** @domName SVGStopElement.offset */
6632 SVGAnimatedNumber get offset native "SVGStopElement_offset_Getter"; 6266 AnimatedNumber get offset native "SVGStopElement_offset_Getter";
6633 6267
6634 6268
6635 /** @domName SVGStopElement.className */ 6269 /** @domName SVGStopElement.className */
6636 SVGAnimatedString get $dom_svgClassName native "SVGStopElement_className_Gette r"; 6270 AnimatedString get $dom_svgClassName native "SVGStopElement_className_Getter";
6637 6271
6638 6272
6639 /** @domName SVGStopElement.style */ 6273 /** @domName SVGStopElement.style */
6640 CSSStyleDeclaration get style native "SVGStopElement_style_Getter"; 6274 CSSStyleDeclaration get style native "SVGStopElement_style_Getter";
6641 6275
6642 6276
6643 /** @domName SVGStopElement.getPresentationAttribute */ 6277 /** @domName SVGStopElement.getPresentationAttribute */
6644 CSSValue getPresentationAttribute(String name) native "SVGStopElement_getPrese ntationAttribute_Callback"; 6278 CSSValue getPresentationAttribute(String name) native "SVGStopElement_getPrese ntationAttribute_Callback";
6645 6279
6646 } 6280 }
6647 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6281 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6648 // for details. All rights reserved. Use of this source code is governed by a 6282 // for details. All rights reserved. Use of this source code is governed by a
6649 // BSD-style license that can be found in the LICENSE file. 6283 // BSD-style license that can be found in the LICENSE file.
6650 6284
6651 // WARNING: Do not edit - generated code. 6285 // WARNING: Do not edit - generated code.
6652 6286
6653 6287
6654 /// @domName SVGStringList 6288 /// @domName SVGStringList
6655 class SVGStringList extends NativeFieldWrapperClass1 implements List<String> { 6289 class StringList extends NativeFieldWrapperClass1 implements List<String> {
6656 SVGStringList.internal(); 6290 StringList.internal();
6657 6291
6658 6292
6659 /** @domName SVGStringList.numberOfItems */ 6293 /** @domName SVGStringList.numberOfItems */
6660 int get numberOfItems native "SVGStringList_numberOfItems_Getter"; 6294 int get numberOfItems native "SVGStringList_numberOfItems_Getter";
6661 6295
6662 String operator[](int index) native "SVGStringList_item_Callback"; 6296 String operator[](int index) native "SVGStringList_item_Callback";
6663 6297
6664 void operator[]=(int index, String value) { 6298 void operator[]=(int index, String value) {
6665 throw new UnsupportedError("Cannot assign element of immutable List."); 6299 throw new UnsupportedError("Cannot assign element of immutable List.");
6666 } 6300 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
6772 6406
6773 } 6407 }
6774 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6408 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6775 // for details. All rights reserved. Use of this source code is governed by a 6409 // for details. All rights reserved. Use of this source code is governed by a
6776 // BSD-style license that can be found in the LICENSE file. 6410 // BSD-style license that can be found in the LICENSE file.
6777 6411
6778 // WARNING: Do not edit - generated code. 6412 // WARNING: Do not edit - generated code.
6779 6413
6780 6414
6781 /// @domName SVGStylable 6415 /// @domName SVGStylable
6782 class SVGStylable extends NativeFieldWrapperClass1 { 6416 class Stylable extends NativeFieldWrapperClass1 {
6783 SVGStylable.internal(); 6417 Stylable.internal();
6784 6418
6785 6419
6786 /** @domName SVGStylable.className */ 6420 /** @domName SVGStylable.className */
6787 SVGAnimatedString get $dom_svgClassName native "SVGStylable_className_Getter"; 6421 AnimatedString get $dom_svgClassName native "SVGStylable_className_Getter";
6788 6422
6789 6423
6790 /** @domName SVGStylable.style */ 6424 /** @domName SVGStylable.style */
6791 CSSStyleDeclaration get style native "SVGStylable_style_Getter"; 6425 CSSStyleDeclaration get style native "SVGStylable_style_Getter";
6792 6426
6793 6427
6794 /** @domName SVGStylable.getPresentationAttribute */ 6428 /** @domName SVGStylable.getPresentationAttribute */
6795 CSSValue getPresentationAttribute(String name) native "SVGStylable_getPresenta tionAttribute_Callback"; 6429 CSSValue getPresentationAttribute(String name) native "SVGStylable_getPresenta tionAttribute_Callback";
6796 6430
6797 } 6431 }
6798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6432 // 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 6433 // 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. 6434 // BSD-style license that can be found in the LICENSE file.
6801 6435
6802 // WARNING: Do not edit - generated code. 6436 // WARNING: Do not edit - generated code.
6803 6437
6804 6438
6805 /// @domName SVGStyleElement 6439 /// @domName SVGStyleElement
6806 class SVGStyleElement extends SVGElement implements SVGLangSpace { 6440 class StyleElement extends SvgElement implements LangSpace {
6807 SVGStyleElement.internal(): super.internal(); 6441
6442 factory StyleElement() => _Elements.createStyleElement();
6443 StyleElement.internal(): super.internal();
6808 6444
6809 6445
6810 /** @domName SVGStyleElement.disabled */ 6446 /** @domName SVGStyleElement.disabled */
6811 bool get disabled native "SVGStyleElement_disabled_Getter"; 6447 bool get disabled native "SVGStyleElement_disabled_Getter";
6812 6448
6813 6449
6814 /** @domName SVGStyleElement.disabled */ 6450 /** @domName SVGStyleElement.disabled */
6815 void set disabled(bool value) native "SVGStyleElement_disabled_Setter"; 6451 void set disabled(bool value) native "SVGStyleElement_disabled_Setter";
6816 6452
6817 6453
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
6849 6485
6850 /** @domName SVGStyleElement.xmlspace */ 6486 /** @domName SVGStyleElement.xmlspace */
6851 String get xmlspace native "SVGStyleElement_xmlspace_Getter"; 6487 String get xmlspace native "SVGStyleElement_xmlspace_Getter";
6852 6488
6853 6489
6854 /** @domName SVGStyleElement.xmlspace */ 6490 /** @domName SVGStyleElement.xmlspace */
6855 void set xmlspace(String value) native "SVGStyleElement_xmlspace_Setter"; 6491 void set xmlspace(String value) native "SVGStyleElement_xmlspace_Setter";
6856 6492
6857 } 6493 }
6858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6494 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6495 // for details. All rights reserved. Use of this source code is governed by a
6496 // BSD-style license that can be found in the LICENSE file.
6497
6498 // WARNING: Do not edit - generated code.
6499
6500
6501 /// @domName SVGDocument
6502 class SvgDocument extends Document {
6503 SvgDocument.internal(): super.internal();
6504
6505
6506 /** @domName SVGDocument.rootElement */
6507 SvgSvgElement get rootElement native "SVGDocument_rootElement_Getter";
6508
6509
6510 /** @domName SVGDocument.createEvent */
6511 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack";
6512
6513 }
6514 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6515 // for details. All rights reserved. Use of this source code is governed by a
6516 // BSD-style license that can be found in the LICENSE file.
6517
6518
6519 class _AttributeClassSet extends CssClassSet {
6520 final Element _element;
6521
6522 _AttributeClassSet(this._element);
6523
6524 Set<String> readClasses() {
6525 var classname = _element.attributes['class'];
6526
6527 Set<String> s = new Set<String>();
6528 for (String name in classname.split(' ')) {
6529 String trimmed = name.trim();
6530 if (!trimmed.isEmpty) {
6531 s.add(trimmed);
6532 }
6533 }
6534 return s;
6535 }
6536
6537 void writeClasses(Set s) {
6538 _element.attributes['class'] = _formatSet(s);
6539 }
6540 }
6541
6542 class SvgElement extends Element {
6543 factory SvgElement.tag(String tag) =>
6544 _SvgElementFactoryProvider.createSvgElement_tag(tag);
6545 factory SvgElement.svg(String svg) =>
6546 _SvgElementFactoryProvider.createSvgElement_svg(svg);
6547
6548 CssClassSet get classes {
6549 if (_cssClassSet == null) {
6550 _cssClassSet = new _AttributeClassSet(_ptr);
6551 }
6552 return _cssClassSet;
6553 }
6554
6555 List<Element> get elements => new FilteredElementList(this);
6556
6557 void set elements(Collection<Element> value) {
6558 final elements = this.elements;
6559 elements.clear();
6560 elements.addAll(value);
6561 }
6562
6563 String get outerHTML {
6564 final container = new Element.tag("div");
6565 final SvgElement cloned = this.clone(true);
6566 container.elements.add(cloned);
6567 return container.innerHTML;
6568 }
6569
6570 String get innerHTML {
6571 final container = new Element.tag("div");
6572 final SvgElement cloned = this.clone(true);
6573 container.elements.addAll(cloned.elements);
6574 return container.innerHTML;
6575 }
6576
6577 void set innerHTML(String svg) {
6578 final container = new Element.tag("div");
6579 // Wrap the SVG string in <svg> so that SvgElements are created, rather than
6580 // HTMLElements.
6581 container.innerHTML = '<svg version="1.1">$svg</svg>';
6582 this.elements = container.elements[0].elements;
6583 }
6584
6585 SvgElement.internal(): super.internal();
6586
6587
6588 /** @domName SVGElement.id */
6589 String get id native "SVGElement_id_Getter";
6590
6591
6592 /** @domName SVGElement.id */
6593 void set id(String value) native "SVGElement_id_Setter";
6594
6595
6596 /** @domName SVGElement.ownerSVGElement */
6597 SvgSvgElement get ownerSVGElement native "SVGElement_ownerSVGElement_Getter";
6598
6599
6600 /** @domName SVGElement.viewportElement */
6601 SvgElement get viewportElement native "SVGElement_viewportElement_Getter";
6602
6603
6604 /** @domName SVGElement.xmlbase */
6605 String get xmlbase native "SVGElement_xmlbase_Getter";
6606
6607
6608 /** @domName SVGElement.xmlbase */
6609 void set xmlbase(String value) native "SVGElement_xmlbase_Setter";
6610
6611 }
6612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6613 // for details. All rights reserved. Use of this source code is governed by a
6614 // BSD-style license that can be found in the LICENSE file.
6615
6616
6617 class SvgSvgElement extends SvgElement implements FitToViewBox, Tests, Stylable, Locatable, ExternalResourcesRequired, ZoomAndPan, LangSpace {
6618 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ;
6619
6620 SvgSvgElement.internal(): super.internal();
6621
6622
6623 /** @domName SVGSVGElement.contentScriptType */
6624 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter";
6625
6626
6627 /** @domName SVGSVGElement.contentScriptType */
6628 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter";
6629
6630
6631 /** @domName SVGSVGElement.contentStyleType */
6632 String get contentStyleType native "SVGSVGElement_contentStyleType_Getter";
6633
6634
6635 /** @domName SVGSVGElement.contentStyleType */
6636 void set contentStyleType(String value) native "SVGSVGElement_contentStyleType _Setter";
6637
6638
6639 /** @domName SVGSVGElement.currentScale */
6640 num get currentScale native "SVGSVGElement_currentScale_Getter";
6641
6642
6643 /** @domName SVGSVGElement.currentScale */
6644 void set currentScale(num value) native "SVGSVGElement_currentScale_Setter";
6645
6646
6647 /** @domName SVGSVGElement.currentTranslate */
6648 Point get currentTranslate native "SVGSVGElement_currentTranslate_Getter";
6649
6650
6651 /** @domName SVGSVGElement.currentView */
6652 ViewSpec get currentView native "SVGSVGElement_currentView_Getter";
6653
6654
6655 /** @domName SVGSVGElement.height */
6656 AnimatedLength get height native "SVGSVGElement_height_Getter";
6657
6658
6659 /** @domName SVGSVGElement.pixelUnitToMillimeterX */
6660 num get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Ge tter";
6661
6662
6663 /** @domName SVGSVGElement.pixelUnitToMillimeterY */
6664 num get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Ge tter";
6665
6666
6667 /** @domName SVGSVGElement.screenPixelToMillimeterX */
6668 num get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeter X_Getter";
6669
6670
6671 /** @domName SVGSVGElement.screenPixelToMillimeterY */
6672 num get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeter Y_Getter";
6673
6674
6675 /** @domName SVGSVGElement.useCurrentView */
6676 bool get useCurrentView native "SVGSVGElement_useCurrentView_Getter";
6677
6678
6679 /** @domName SVGSVGElement.viewport */
6680 Rect get viewport native "SVGSVGElement_viewport_Getter";
6681
6682
6683 /** @domName SVGSVGElement.width */
6684 AnimatedLength get width native "SVGSVGElement_width_Getter";
6685
6686
6687 /** @domName SVGSVGElement.x */
6688 AnimatedLength get x native "SVGSVGElement_x_Getter";
6689
6690
6691 /** @domName SVGSVGElement.y */
6692 AnimatedLength get y native "SVGSVGElement_y_Getter";
6693
6694
6695 /** @domName SVGSVGElement.animationsPaused */
6696 bool animationsPaused() native "SVGSVGElement_animationsPaused_Callback";
6697
6698
6699 /** @domName SVGSVGElement.checkEnclosure */
6700 bool checkEnclosure(SvgElement element, Rect rect) native "SVGSVGElement_check Enclosure_Callback";
6701
6702
6703 /** @domName SVGSVGElement.checkIntersection */
6704 bool checkIntersection(SvgElement element, Rect rect) native "SVGSVGElement_ch eckIntersection_Callback";
6705
6706
6707 /** @domName SVGSVGElement.createSVGAngle */
6708 Angle createSVGAngle() native "SVGSVGElement_createSVGAngle_Callback";
6709
6710
6711 /** @domName SVGSVGElement.createSVGLength */
6712 Length createSVGLength() native "SVGSVGElement_createSVGLength_Callback";
6713
6714
6715 /** @domName SVGSVGElement.createSVGMatrix */
6716 Matrix createSVGMatrix() native "SVGSVGElement_createSVGMatrix_Callback";
6717
6718
6719 /** @domName SVGSVGElement.createSVGNumber */
6720 Number createSVGNumber() native "SVGSVGElement_createSVGNumber_Callback";
6721
6722
6723 /** @domName SVGSVGElement.createSVGPoint */
6724 Point createSVGPoint() native "SVGSVGElement_createSVGPoint_Callback";
6725
6726
6727 /** @domName SVGSVGElement.createSVGRect */
6728 Rect createSVGRect() native "SVGSVGElement_createSVGRect_Callback";
6729
6730
6731 /** @domName SVGSVGElement.createSVGTransform */
6732 Transform createSVGTransform() native "SVGSVGElement_createSVGTransform_Callba ck";
6733
6734
6735 /** @domName SVGSVGElement.createSVGTransformFromMatrix */
6736 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGSVGElement_cr eateSVGTransformFromMatrix_Callback";
6737
6738
6739 /** @domName SVGSVGElement.deselectAll */
6740 void deselectAll() native "SVGSVGElement_deselectAll_Callback";
6741
6742
6743 /** @domName SVGSVGElement.forceRedraw */
6744 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback";
6745
6746
6747 /** @domName SVGSVGElement.getCurrentTime */
6748 num getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback";
6749
6750
6751 /** @domName SVGSVGElement.getElementById */
6752 Element getElementById(String elementId) native "SVGSVGElement_getElementById_ Callback";
6753
6754
6755 /** @domName SVGSVGElement.getEnclosureList */
6756 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) native "SV GSVGElement_getEnclosureList_Callback";
6757
6758
6759 /** @domName SVGSVGElement.getIntersectionList */
6760 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) native "SVGSVGElement_getIntersectionList_Callback";
6761
6762
6763 /** @domName SVGSVGElement.pauseAnimations */
6764 void pauseAnimations() native "SVGSVGElement_pauseAnimations_Callback";
6765
6766
6767 /** @domName SVGSVGElement.setCurrentTime */
6768 void setCurrentTime(num seconds) native "SVGSVGElement_setCurrentTime_Callback ";
6769
6770
6771 /** @domName SVGSVGElement.suspendRedraw */
6772 int suspendRedraw(int maxWaitMilliseconds) native "SVGSVGElement_suspendRedraw _Callback";
6773
6774
6775 /** @domName SVGSVGElement.unpauseAnimations */
6776 void unpauseAnimations() native "SVGSVGElement_unpauseAnimations_Callback";
6777
6778
6779 /** @domName SVGSVGElement.unsuspendRedraw */
6780 void unsuspendRedraw(int suspendHandleId) native "SVGSVGElement_unsuspendRedra w_Callback";
6781
6782
6783 /** @domName SVGSVGElement.unsuspendRedrawAll */
6784 void unsuspendRedrawAll() native "SVGSVGElement_unsuspendRedrawAll_Callback";
6785
6786
6787 /** @domName SVGSVGElement.externalResourcesRequired */
6788 AnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externalRe sourcesRequired_Getter";
6789
6790
6791 /** @domName SVGSVGElement.preserveAspectRatio */
6792 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_pres erveAspectRatio_Getter";
6793
6794
6795 /** @domName SVGSVGElement.viewBox */
6796 AnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter";
6797
6798
6799 /** @domName SVGSVGElement.xmllang */
6800 String get xmllang native "SVGSVGElement_xmllang_Getter";
6801
6802
6803 /** @domName SVGSVGElement.xmllang */
6804 void set xmllang(String value) native "SVGSVGElement_xmllang_Setter";
6805
6806
6807 /** @domName SVGSVGElement.xmlspace */
6808 String get xmlspace native "SVGSVGElement_xmlspace_Getter";
6809
6810
6811 /** @domName SVGSVGElement.xmlspace */
6812 void set xmlspace(String value) native "SVGSVGElement_xmlspace_Setter";
6813
6814
6815 /** @domName SVGSVGElement.farthestViewportElement */
6816 SvgElement get farthestViewportElement native "SVGSVGElement_farthestViewportE lement_Getter";
6817
6818
6819 /** @domName SVGSVGElement.nearestViewportElement */
6820 SvgElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle ment_Getter";
6821
6822
6823 /** @domName SVGSVGElement.getBBox */
6824 Rect getBBox() native "SVGSVGElement_getBBox_Callback";
6825
6826
6827 /** @domName SVGSVGElement.getCTM */
6828 Matrix getCTM() native "SVGSVGElement_getCTM_Callback";
6829
6830
6831 /** @domName SVGSVGElement.getScreenCTM */
6832 Matrix getScreenCTM() native "SVGSVGElement_getScreenCTM_Callback";
6833
6834
6835 /** @domName SVGSVGElement.getTransformToElement */
6836 Matrix getTransformToElement(SvgElement element) native "SVGSVGElement_getTran sformToElement_Callback";
6837
6838
6839 /** @domName SVGSVGElement.className */
6840 AnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter";
6841
6842
6843 /** @domName SVGSVGElement.style */
6844 CSSStyleDeclaration get style native "SVGSVGElement_style_Getter";
6845
6846
6847 /** @domName SVGSVGElement.getPresentationAttribute */
6848 CSSValue getPresentationAttribute(String name) native "SVGSVGElement_getPresen tationAttribute_Callback";
6849
6850
6851 /** @domName SVGSVGElement.requiredExtensions */
6852 StringList get requiredExtensions native "SVGSVGElement_requiredExtensions_Get ter";
6853
6854
6855 /** @domName SVGSVGElement.requiredFeatures */
6856 StringList get requiredFeatures native "SVGSVGElement_requiredFeatures_Getter" ;
6857
6858
6859 /** @domName SVGSVGElement.systemLanguage */
6860 StringList get systemLanguage native "SVGSVGElement_systemLanguage_Getter";
6861
6862
6863 /** @domName SVGSVGElement.hasExtension */
6864 bool hasExtension(String extension) native "SVGSVGElement_hasExtension_Callbac k";
6865
6866
6867 /** @domName SVGSVGElement.zoomAndPan */
6868 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter";
6869
6870
6871 /** @domName SVGSVGElement.zoomAndPan */
6872 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter";
6873
6874 }
6875 // 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 6876 // 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. 6877 // BSD-style license that can be found in the LICENSE file.
6861 6878
6862 // WARNING: Do not edit - generated code. 6879 // WARNING: Do not edit - generated code.
6863 6880
6864 6881
6865 /// @domName SVGSwitchElement 6882 /// @domName SVGSwitchElement
6866 class SVGSwitchElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { 6883 class SwitchElement extends SvgElement implements Transformable, Tests, Stylable , ExternalResourcesRequired, LangSpace {
6867 SVGSwitchElement.internal(): super.internal(); 6884 SwitchElement.internal(): super.internal();
6868 6885
6869 6886
6870 /** @domName SVGSwitchElement.externalResourcesRequired */ 6887 /** @domName SVGSwitchElement.externalResourcesRequired */
6871 SVGAnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_exte rnalResourcesRequired_Getter"; 6888 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter";
6872 6889
6873 6890
6874 /** @domName SVGSwitchElement.xmllang */ 6891 /** @domName SVGSwitchElement.xmllang */
6875 String get xmllang native "SVGSwitchElement_xmllang_Getter"; 6892 String get xmllang native "SVGSwitchElement_xmllang_Getter";
6876 6893
6877 6894
6878 /** @domName SVGSwitchElement.xmllang */ 6895 /** @domName SVGSwitchElement.xmllang */
6879 void set xmllang(String value) native "SVGSwitchElement_xmllang_Setter"; 6896 void set xmllang(String value) native "SVGSwitchElement_xmllang_Setter";
6880 6897
6881 6898
6882 /** @domName SVGSwitchElement.xmlspace */ 6899 /** @domName SVGSwitchElement.xmlspace */
6883 String get xmlspace native "SVGSwitchElement_xmlspace_Getter"; 6900 String get xmlspace native "SVGSwitchElement_xmlspace_Getter";
6884 6901
6885 6902
6886 /** @domName SVGSwitchElement.xmlspace */ 6903 /** @domName SVGSwitchElement.xmlspace */
6887 void set xmlspace(String value) native "SVGSwitchElement_xmlspace_Setter"; 6904 void set xmlspace(String value) native "SVGSwitchElement_xmlspace_Setter";
6888 6905
6889 6906
6890 /** @domName SVGSwitchElement.farthestViewportElement */ 6907 /** @domName SVGSwitchElement.farthestViewportElement */
6891 SVGElement get farthestViewportElement native "SVGSwitchElement_farthestViewpo rtElement_Getter"; 6908 SvgElement get farthestViewportElement native "SVGSwitchElement_farthestViewpo rtElement_Getter";
6892 6909
6893 6910
6894 /** @domName SVGSwitchElement.nearestViewportElement */ 6911 /** @domName SVGSwitchElement.nearestViewportElement */
6895 SVGElement get nearestViewportElement native "SVGSwitchElement_nearestViewport Element_Getter"; 6912 SvgElement get nearestViewportElement native "SVGSwitchElement_nearestViewport Element_Getter";
6896 6913
6897 6914
6898 /** @domName SVGSwitchElement.getBBox */ 6915 /** @domName SVGSwitchElement.getBBox */
6899 SVGRect getBBox() native "SVGSwitchElement_getBBox_Callback"; 6916 Rect getBBox() native "SVGSwitchElement_getBBox_Callback";
6900 6917
6901 6918
6902 /** @domName SVGSwitchElement.getCTM */ 6919 /** @domName SVGSwitchElement.getCTM */
6903 SVGMatrix getCTM() native "SVGSwitchElement_getCTM_Callback"; 6920 Matrix getCTM() native "SVGSwitchElement_getCTM_Callback";
6904 6921
6905 6922
6906 /** @domName SVGSwitchElement.getScreenCTM */ 6923 /** @domName SVGSwitchElement.getScreenCTM */
6907 SVGMatrix getScreenCTM() native "SVGSwitchElement_getScreenCTM_Callback"; 6924 Matrix getScreenCTM() native "SVGSwitchElement_getScreenCTM_Callback";
6908 6925
6909 6926
6910 /** @domName SVGSwitchElement.getTransformToElement */ 6927 /** @domName SVGSwitchElement.getTransformToElement */
6911 SVGMatrix getTransformToElement(SVGElement element) native "SVGSwitchElement_g etTransformToElement_Callback"; 6928 Matrix getTransformToElement(SvgElement element) native "SVGSwitchElement_getT ransformToElement_Callback";
6912 6929
6913 6930
6914 /** @domName SVGSwitchElement.className */ 6931 /** @domName SVGSwitchElement.className */
6915 SVGAnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Get ter"; 6932 AnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Getter ";
6916 6933
6917 6934
6918 /** @domName SVGSwitchElement.style */ 6935 /** @domName SVGSwitchElement.style */
6919 CSSStyleDeclaration get style native "SVGSwitchElement_style_Getter"; 6936 CSSStyleDeclaration get style native "SVGSwitchElement_style_Getter";
6920 6937
6921 6938
6922 /** @domName SVGSwitchElement.getPresentationAttribute */ 6939 /** @domName SVGSwitchElement.getPresentationAttribute */
6923 CSSValue getPresentationAttribute(String name) native "SVGSwitchElement_getPre sentationAttribute_Callback"; 6940 CSSValue getPresentationAttribute(String name) native "SVGSwitchElement_getPre sentationAttribute_Callback";
6924 6941
6925 6942
6926 /** @domName SVGSwitchElement.requiredExtensions */ 6943 /** @domName SVGSwitchElement.requiredExtensions */
6927 SVGStringList get requiredExtensions native "SVGSwitchElement_requiredExtensio ns_Getter"; 6944 StringList get requiredExtensions native "SVGSwitchElement_requiredExtensions_ Getter";
6928 6945
6929 6946
6930 /** @domName SVGSwitchElement.requiredFeatures */ 6947 /** @domName SVGSwitchElement.requiredFeatures */
6931 SVGStringList get requiredFeatures native "SVGSwitchElement_requiredFeatures_G etter"; 6948 StringList get requiredFeatures native "SVGSwitchElement_requiredFeatures_Gett er";
6932 6949
6933 6950
6934 /** @domName SVGSwitchElement.systemLanguage */ 6951 /** @domName SVGSwitchElement.systemLanguage */
6935 SVGStringList get systemLanguage native "SVGSwitchElement_systemLanguage_Gette r"; 6952 StringList get systemLanguage native "SVGSwitchElement_systemLanguage_Getter";
6936 6953
6937 6954
6938 /** @domName SVGSwitchElement.hasExtension */ 6955 /** @domName SVGSwitchElement.hasExtension */
6939 bool hasExtension(String extension) native "SVGSwitchElement_hasExtension_Call back"; 6956 bool hasExtension(String extension) native "SVGSwitchElement_hasExtension_Call back";
6940 6957
6941 6958
6942 /** @domName SVGSwitchElement.transform */ 6959 /** @domName SVGSwitchElement.transform */
6943 SVGAnimatedTransformList get transform native "SVGSwitchElement_transform_Gett er"; 6960 AnimatedTransformList get transform native "SVGSwitchElement_transform_Getter" ;
6944 6961
6945 } 6962 }
6946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6963 // 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 6964 // 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. 6965 // BSD-style license that can be found in the LICENSE file.
6949 6966
6950 // WARNING: Do not edit - generated code. 6967 // WARNING: Do not edit - generated code.
6951 6968
6952 6969
6953 /// @domName SVGSymbolElement 6970 /// @domName SVGSymbolElement
6954 class SVGSymbolElement extends SVGElement implements SVGLangSpace, SVGFitToViewB ox, SVGExternalResourcesRequired, SVGStylable { 6971 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired, Stylable, LangSpace {
6955 SVGSymbolElement.internal(): super.internal(); 6972 SymbolElement.internal(): super.internal();
6956 6973
6957 6974
6958 /** @domName SVGSymbolElement.externalResourcesRequired */ 6975 /** @domName SVGSymbolElement.externalResourcesRequired */
6959 SVGAnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_exte rnalResourcesRequired_Getter"; 6976 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter";
6960 6977
6961 6978
6962 /** @domName SVGSymbolElement.preserveAspectRatio */ 6979 /** @domName SVGSymbolElement.preserveAspectRatio */
6963 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElemen t_preserveAspectRatio_Getter"; 6980 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p reserveAspectRatio_Getter";
6964 6981
6965 6982
6966 /** @domName SVGSymbolElement.viewBox */ 6983 /** @domName SVGSymbolElement.viewBox */
6967 SVGAnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter"; 6984 AnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter";
6968 6985
6969 6986
6970 /** @domName SVGSymbolElement.xmllang */ 6987 /** @domName SVGSymbolElement.xmllang */
6971 String get xmllang native "SVGSymbolElement_xmllang_Getter"; 6988 String get xmllang native "SVGSymbolElement_xmllang_Getter";
6972 6989
6973 6990
6974 /** @domName SVGSymbolElement.xmllang */ 6991 /** @domName SVGSymbolElement.xmllang */
6975 void set xmllang(String value) native "SVGSymbolElement_xmllang_Setter"; 6992 void set xmllang(String value) native "SVGSymbolElement_xmllang_Setter";
6976 6993
6977 6994
6978 /** @domName SVGSymbolElement.xmlspace */ 6995 /** @domName SVGSymbolElement.xmlspace */
6979 String get xmlspace native "SVGSymbolElement_xmlspace_Getter"; 6996 String get xmlspace native "SVGSymbolElement_xmlspace_Getter";
6980 6997
6981 6998
6982 /** @domName SVGSymbolElement.xmlspace */ 6999 /** @domName SVGSymbolElement.xmlspace */
6983 void set xmlspace(String value) native "SVGSymbolElement_xmlspace_Setter"; 7000 void set xmlspace(String value) native "SVGSymbolElement_xmlspace_Setter";
6984 7001
6985 7002
6986 /** @domName SVGSymbolElement.className */ 7003 /** @domName SVGSymbolElement.className */
6987 SVGAnimatedString get $dom_svgClassName native "SVGSymbolElement_className_Get ter"; 7004 AnimatedString get $dom_svgClassName native "SVGSymbolElement_className_Getter ";
6988 7005
6989 7006
6990 /** @domName SVGSymbolElement.style */ 7007 /** @domName SVGSymbolElement.style */
6991 CSSStyleDeclaration get style native "SVGSymbolElement_style_Getter"; 7008 CSSStyleDeclaration get style native "SVGSymbolElement_style_Getter";
6992 7009
6993 7010
6994 /** @domName SVGSymbolElement.getPresentationAttribute */ 7011 /** @domName SVGSymbolElement.getPresentationAttribute */
6995 CSSValue getPresentationAttribute(String name) native "SVGSymbolElement_getPre sentationAttribute_Callback"; 7012 CSSValue getPresentationAttribute(String name) native "SVGSymbolElement_getPre sentationAttribute_Callback";
6996 7013
6997 } 7014 }
6998 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7015 // 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 7016 // 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. 7017 // BSD-style license that can be found in the LICENSE file.
7001 7018
7002 // WARNING: Do not edit - generated code. 7019 // WARNING: Do not edit - generated code.
7003 7020
7004 7021
7005 /// @domName SVGTRefElement 7022 /// @domName SVGTRefElement
7006 class SVGTRefElement extends SVGTextPositioningElement implements SVGURIReferenc e { 7023 class TRefElement extends TextPositioningElement implements UriReference {
7007 SVGTRefElement.internal(): super.internal(); 7024 TRefElement.internal(): super.internal();
7008 7025
7009 7026
7010 /** @domName SVGTRefElement.href */ 7027 /** @domName SVGTRefElement.href */
7011 SVGAnimatedString get href native "SVGTRefElement_href_Getter"; 7028 AnimatedString get href native "SVGTRefElement_href_Getter";
7012 7029
7013 } 7030 }
7014 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7031 // 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 7032 // 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. 7033 // BSD-style license that can be found in the LICENSE file.
7017 7034
7018 // WARNING: Do not edit - generated code. 7035 // WARNING: Do not edit - generated code.
7019 7036
7020 7037
7021 /// @domName SVGTSpanElement 7038 /// @domName SVGTSpanElement
7022 class SVGTSpanElement extends SVGTextPositioningElement { 7039 class TSpanElement extends TextPositioningElement {
7023 SVGTSpanElement.internal(): super.internal(); 7040 TSpanElement.internal(): super.internal();
7024 7041
7025 } 7042 }
7026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7043 // 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 7044 // 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. 7045 // BSD-style license that can be found in the LICENSE file.
7029 7046
7030 // WARNING: Do not edit - generated code. 7047 // WARNING: Do not edit - generated code.
7031 7048
7032 7049
7033 /// @domName SVGTests 7050 /// @domName SVGTests
7034 class SVGTests extends NativeFieldWrapperClass1 { 7051 class Tests extends NativeFieldWrapperClass1 {
7035 SVGTests.internal(); 7052 Tests.internal();
7036 7053
7037 7054
7038 /** @domName SVGTests.requiredExtensions */ 7055 /** @domName SVGTests.requiredExtensions */
7039 SVGStringList get requiredExtensions native "SVGTests_requiredExtensions_Gette r"; 7056 StringList get requiredExtensions native "SVGTests_requiredExtensions_Getter";
7040 7057
7041 7058
7042 /** @domName SVGTests.requiredFeatures */ 7059 /** @domName SVGTests.requiredFeatures */
7043 SVGStringList get requiredFeatures native "SVGTests_requiredFeatures_Getter"; 7060 StringList get requiredFeatures native "SVGTests_requiredFeatures_Getter";
7044 7061
7045 7062
7046 /** @domName SVGTests.systemLanguage */ 7063 /** @domName SVGTests.systemLanguage */
7047 SVGStringList get systemLanguage native "SVGTests_systemLanguage_Getter"; 7064 StringList get systemLanguage native "SVGTests_systemLanguage_Getter";
7048 7065
7049 7066
7050 /** @domName SVGTests.hasExtension */ 7067 /** @domName SVGTests.hasExtension */
7051 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback"; 7068 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback";
7052 7069
7053 } 7070 }
7054 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7055 // for details. All rights reserved. Use of this source code is governed by a 7072 // for details. All rights reserved. Use of this source code is governed by a
7056 // BSD-style license that can be found in the LICENSE file. 7073 // BSD-style license that can be found in the LICENSE file.
7057 7074
7058 // WARNING: Do not edit - generated code. 7075 // WARNING: Do not edit - generated code.
7059 7076
7060 7077
7061 /// @domName SVGTextContentElement 7078 /// @domName SVGTextContentElement
7062 class SVGTextContentElement extends SVGElement implements SVGLangSpace, SVGStyla ble, SVGTests, SVGExternalResourcesRequired { 7079 class TextContentElement extends SvgElement implements Tests, Stylable, External ResourcesRequired, LangSpace {
7063 SVGTextContentElement.internal(): super.internal(); 7080 TextContentElement.internal(): super.internal();
7064 7081
7065 static const int LENGTHADJUST_SPACING = 1; 7082 static const int LENGTHADJUST_SPACING = 1;
7066 7083
7067 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 7084 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
7068 7085
7069 static const int LENGTHADJUST_UNKNOWN = 0; 7086 static const int LENGTHADJUST_UNKNOWN = 0;
7070 7087
7071 7088
7072 /** @domName SVGTextContentElement.lengthAdjust */ 7089 /** @domName SVGTextContentElement.lengthAdjust */
7073 SVGAnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAd just_Getter"; 7090 AnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAdjus t_Getter";
7074 7091
7075 7092
7076 /** @domName SVGTextContentElement.textLength */ 7093 /** @domName SVGTextContentElement.textLength */
7077 SVGAnimatedLength get textLength native "SVGTextContentElement_textLength_Gett er"; 7094 AnimatedLength get textLength native "SVGTextContentElement_textLength_Getter" ;
7078 7095
7079 7096
7080 /** @domName SVGTextContentElement.getCharNumAtPosition */ 7097 /** @domName SVGTextContentElement.getCharNumAtPosition */
7081 int getCharNumAtPosition(SVGPoint point) native "SVGTextContentElement_getChar NumAtPosition_Callback"; 7098 int getCharNumAtPosition(Point point) native "SVGTextContentElement_getCharNum AtPosition_Callback";
7082 7099
7083 7100
7084 /** @domName SVGTextContentElement.getComputedTextLength */ 7101 /** @domName SVGTextContentElement.getComputedTextLength */
7085 num getComputedTextLength() native "SVGTextContentElement_getComputedTextLengt h_Callback"; 7102 num getComputedTextLength() native "SVGTextContentElement_getComputedTextLengt h_Callback";
7086 7103
7087 7104
7088 /** @domName SVGTextContentElement.getEndPositionOfChar */ 7105 /** @domName SVGTextContentElement.getEndPositionOfChar */
7089 SVGPoint getEndPositionOfChar(int offset) native "SVGTextContentElement_getEnd PositionOfChar_Callback"; 7106 Point getEndPositionOfChar(int offset) native "SVGTextContentElement_getEndPos itionOfChar_Callback";
7090 7107
7091 7108
7092 /** @domName SVGTextContentElement.getExtentOfChar */ 7109 /** @domName SVGTextContentElement.getExtentOfChar */
7093 SVGRect getExtentOfChar(int offset) native "SVGTextContentElement_getExtentOfC har_Callback"; 7110 Rect getExtentOfChar(int offset) native "SVGTextContentElement_getExtentOfChar _Callback";
7094 7111
7095 7112
7096 /** @domName SVGTextContentElement.getNumberOfChars */ 7113 /** @domName SVGTextContentElement.getNumberOfChars */
7097 int getNumberOfChars() native "SVGTextContentElement_getNumberOfChars_Callback "; 7114 int getNumberOfChars() native "SVGTextContentElement_getNumberOfChars_Callback ";
7098 7115
7099 7116
7100 /** @domName SVGTextContentElement.getRotationOfChar */ 7117 /** @domName SVGTextContentElement.getRotationOfChar */
7101 num getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfC har_Callback"; 7118 num getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfC har_Callback";
7102 7119
7103 7120
7104 /** @domName SVGTextContentElement.getStartPositionOfChar */ 7121 /** @domName SVGTextContentElement.getStartPositionOfChar */
7105 SVGPoint getStartPositionOfChar(int offset) native "SVGTextContentElement_getS tartPositionOfChar_Callback"; 7122 Point getStartPositionOfChar(int offset) native "SVGTextContentElement_getStar tPositionOfChar_Callback";
7106 7123
7107 7124
7108 /** @domName SVGTextContentElement.getSubStringLength */ 7125 /** @domName SVGTextContentElement.getSubStringLength */
7109 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g etSubStringLength_Callback"; 7126 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g etSubStringLength_Callback";
7110 7127
7111 7128
7112 /** @domName SVGTextContentElement.selectSubString */ 7129 /** @domName SVGTextContentElement.selectSubString */
7113 void selectSubString(int offset, int length) native "SVGTextContentElement_sel ectSubString_Callback"; 7130 void selectSubString(int offset, int length) native "SVGTextContentElement_sel ectSubString_Callback";
7114 7131
7115 7132
7116 /** @domName SVGTextContentElement.externalResourcesRequired */ 7133 /** @domName SVGTextContentElement.externalResourcesRequired */
7117 SVGAnimatedBoolean get externalResourcesRequired native "SVGTextContentElement _externalResourcesRequired_Getter"; 7134 AnimatedBoolean get externalResourcesRequired native "SVGTextContentElement_ex ternalResourcesRequired_Getter";
7118 7135
7119 7136
7120 /** @domName SVGTextContentElement.xmllang */ 7137 /** @domName SVGTextContentElement.xmllang */
7121 String get xmllang native "SVGTextContentElement_xmllang_Getter"; 7138 String get xmllang native "SVGTextContentElement_xmllang_Getter";
7122 7139
7123 7140
7124 /** @domName SVGTextContentElement.xmllang */ 7141 /** @domName SVGTextContentElement.xmllang */
7125 void set xmllang(String value) native "SVGTextContentElement_xmllang_Setter"; 7142 void set xmllang(String value) native "SVGTextContentElement_xmllang_Setter";
7126 7143
7127 7144
7128 /** @domName SVGTextContentElement.xmlspace */ 7145 /** @domName SVGTextContentElement.xmlspace */
7129 String get xmlspace native "SVGTextContentElement_xmlspace_Getter"; 7146 String get xmlspace native "SVGTextContentElement_xmlspace_Getter";
7130 7147
7131 7148
7132 /** @domName SVGTextContentElement.xmlspace */ 7149 /** @domName SVGTextContentElement.xmlspace */
7133 void set xmlspace(String value) native "SVGTextContentElement_xmlspace_Setter" ; 7150 void set xmlspace(String value) native "SVGTextContentElement_xmlspace_Setter" ;
7134 7151
7135 7152
7136 /** @domName SVGTextContentElement.className */ 7153 /** @domName SVGTextContentElement.className */
7137 SVGAnimatedString get $dom_svgClassName native "SVGTextContentElement_classNam e_Getter"; 7154 AnimatedString get $dom_svgClassName native "SVGTextContentElement_className_G etter";
7138 7155
7139 7156
7140 /** @domName SVGTextContentElement.style */ 7157 /** @domName SVGTextContentElement.style */
7141 CSSStyleDeclaration get style native "SVGTextContentElement_style_Getter"; 7158 CSSStyleDeclaration get style native "SVGTextContentElement_style_Getter";
7142 7159
7143 7160
7144 /** @domName SVGTextContentElement.getPresentationAttribute */ 7161 /** @domName SVGTextContentElement.getPresentationAttribute */
7145 CSSValue getPresentationAttribute(String name) native "SVGTextContentElement_g etPresentationAttribute_Callback"; 7162 CSSValue getPresentationAttribute(String name) native "SVGTextContentElement_g etPresentationAttribute_Callback";
7146 7163
7147 7164
7148 /** @domName SVGTextContentElement.requiredExtensions */ 7165 /** @domName SVGTextContentElement.requiredExtensions */
7149 SVGStringList get requiredExtensions native "SVGTextContentElement_requiredExt ensions_Getter"; 7166 StringList get requiredExtensions native "SVGTextContentElement_requiredExtens ions_Getter";
7150 7167
7151 7168
7152 /** @domName SVGTextContentElement.requiredFeatures */ 7169 /** @domName SVGTextContentElement.requiredFeatures */
7153 SVGStringList get requiredFeatures native "SVGTextContentElement_requiredFeatu res_Getter"; 7170 StringList get requiredFeatures native "SVGTextContentElement_requiredFeatures _Getter";
7154 7171
7155 7172
7156 /** @domName SVGTextContentElement.systemLanguage */ 7173 /** @domName SVGTextContentElement.systemLanguage */
7157 SVGStringList get systemLanguage native "SVGTextContentElement_systemLanguage_ Getter"; 7174 StringList get systemLanguage native "SVGTextContentElement_systemLanguage_Get ter";
7158 7175
7159 7176
7160 /** @domName SVGTextContentElement.hasExtension */ 7177 /** @domName SVGTextContentElement.hasExtension */
7161 bool hasExtension(String extension) native "SVGTextContentElement_hasExtension _Callback"; 7178 bool hasExtension(String extension) native "SVGTextContentElement_hasExtension _Callback";
7162 7179
7163 } 7180 }
7164 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7181 // 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 7182 // 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. 7183 // BSD-style license that can be found in the LICENSE file.
7167 7184
7168 // WARNING: Do not edit - generated code. 7185 // WARNING: Do not edit - generated code.
7169 7186
7170 7187
7171 /// @domName SVGTextElement 7188 /// @domName SVGTextElement
7172 class SVGTextElement extends SVGTextPositioningElement implements SVGTransformab le { 7189 class TextElement extends TextPositioningElement implements Transformable {
7173 SVGTextElement.internal(): super.internal(); 7190 TextElement.internal(): super.internal();
7174 7191
7175 7192
7176 /** @domName SVGTextElement.farthestViewportElement */ 7193 /** @domName SVGTextElement.farthestViewportElement */
7177 SVGElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter"; 7194 SvgElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter";
7178 7195
7179 7196
7180 /** @domName SVGTextElement.nearestViewportElement */ 7197 /** @domName SVGTextElement.nearestViewportElement */
7181 SVGElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter"; 7198 SvgElement get nearestViewportElement native "SVGTextElement_nearestViewportEl ement_Getter";
7182 7199
7183 7200
7184 /** @domName SVGTextElement.getBBox */ 7201 /** @domName SVGTextElement.getBBox */
7185 SVGRect getBBox() native "SVGTextElement_getBBox_Callback"; 7202 Rect getBBox() native "SVGTextElement_getBBox_Callback";
7186 7203
7187 7204
7188 /** @domName SVGTextElement.getCTM */ 7205 /** @domName SVGTextElement.getCTM */
7189 SVGMatrix getCTM() native "SVGTextElement_getCTM_Callback"; 7206 Matrix getCTM() native "SVGTextElement_getCTM_Callback";
7190 7207
7191 7208
7192 /** @domName SVGTextElement.getScreenCTM */ 7209 /** @domName SVGTextElement.getScreenCTM */
7193 SVGMatrix getScreenCTM() native "SVGTextElement_getScreenCTM_Callback"; 7210 Matrix getScreenCTM() native "SVGTextElement_getScreenCTM_Callback";
7194 7211
7195 7212
7196 /** @domName SVGTextElement.getTransformToElement */ 7213 /** @domName SVGTextElement.getTransformToElement */
7197 SVGMatrix getTransformToElement(SVGElement element) native "SVGTextElement_get TransformToElement_Callback"; 7214 Matrix getTransformToElement(SvgElement element) native "SVGTextElement_getTra nsformToElement_Callback";
7198 7215
7199 7216
7200 /** @domName SVGTextElement.transform */ 7217 /** @domName SVGTextElement.transform */
7201 SVGAnimatedTransformList get transform native "SVGTextElement_transform_Getter "; 7218 AnimatedTransformList get transform native "SVGTextElement_transform_Getter";
7202 7219
7203 } 7220 }
7204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7221 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7205 // for details. All rights reserved. Use of this source code is governed by a 7222 // for details. All rights reserved. Use of this source code is governed by a
7206 // BSD-style license that can be found in the LICENSE file. 7223 // BSD-style license that can be found in the LICENSE file.
7207 7224
7208 // WARNING: Do not edit - generated code. 7225 // WARNING: Do not edit - generated code.
7209 7226
7210 7227
7211 /// @domName SVGTextPathElement 7228 /// @domName SVGTextPathElement
7212 class SVGTextPathElement extends SVGTextContentElement implements SVGURIReferenc e { 7229 class TextPathElement extends TextContentElement implements UriReference {
7213 SVGTextPathElement.internal(): super.internal(); 7230 TextPathElement.internal(): super.internal();
7214 7231
7215 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 7232 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
7216 7233
7217 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 7234 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
7218 7235
7219 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; 7236 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0;
7220 7237
7221 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; 7238 static const int TEXTPATH_SPACINGTYPE_AUTO = 1;
7222 7239
7223 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 7240 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
7224 7241
7225 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 7242 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
7226 7243
7227 7244
7228 /** @domName SVGTextPathElement.method */ 7245 /** @domName SVGTextPathElement.method */
7229 SVGAnimatedEnumeration get method native "SVGTextPathElement_method_Getter"; 7246 AnimatedEnumeration get method native "SVGTextPathElement_method_Getter";
7230 7247
7231 7248
7232 /** @domName SVGTextPathElement.spacing */ 7249 /** @domName SVGTextPathElement.spacing */
7233 SVGAnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter"; 7250 AnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter";
7234 7251
7235 7252
7236 /** @domName SVGTextPathElement.startOffset */ 7253 /** @domName SVGTextPathElement.startOffset */
7237 SVGAnimatedLength get startOffset native "SVGTextPathElement_startOffset_Gette r"; 7254 AnimatedLength get startOffset native "SVGTextPathElement_startOffset_Getter";
7238 7255
7239 7256
7240 /** @domName SVGTextPathElement.href */ 7257 /** @domName SVGTextPathElement.href */
7241 SVGAnimatedString get href native "SVGTextPathElement_href_Getter"; 7258 AnimatedString get href native "SVGTextPathElement_href_Getter";
7242 7259
7243 } 7260 }
7244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7261 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7245 // for details. All rights reserved. Use of this source code is governed by a 7262 // for details. All rights reserved. Use of this source code is governed by a
7246 // BSD-style license that can be found in the LICENSE file. 7263 // BSD-style license that can be found in the LICENSE file.
7247 7264
7248 // WARNING: Do not edit - generated code. 7265 // WARNING: Do not edit - generated code.
7249 7266
7250 7267
7251 /// @domName SVGTextPositioningElement 7268 /// @domName SVGTextPositioningElement
7252 class SVGTextPositioningElement extends SVGTextContentElement { 7269 class TextPositioningElement extends TextContentElement {
7253 SVGTextPositioningElement.internal(): super.internal(); 7270 TextPositioningElement.internal(): super.internal();
7254 7271
7255 7272
7256 /** @domName SVGTextPositioningElement.dx */ 7273 /** @domName SVGTextPositioningElement.dx */
7257 SVGAnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter"; 7274 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter";
7258 7275
7259 7276
7260 /** @domName SVGTextPositioningElement.dy */ 7277 /** @domName SVGTextPositioningElement.dy */
7261 SVGAnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter"; 7278 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter";
7262 7279
7263 7280
7264 /** @domName SVGTextPositioningElement.rotate */ 7281 /** @domName SVGTextPositioningElement.rotate */
7265 SVGAnimatedNumberList get rotate native "SVGTextPositioningElement_rotate_Gett er"; 7282 AnimatedNumberList get rotate native "SVGTextPositioningElement_rotate_Getter" ;
7266 7283
7267 7284
7268 /** @domName SVGTextPositioningElement.x */ 7285 /** @domName SVGTextPositioningElement.x */
7269 SVGAnimatedLengthList get x native "SVGTextPositioningElement_x_Getter"; 7286 AnimatedLengthList get x native "SVGTextPositioningElement_x_Getter";
7270 7287
7271 7288
7272 /** @domName SVGTextPositioningElement.y */ 7289 /** @domName SVGTextPositioningElement.y */
7273 SVGAnimatedLengthList get y native "SVGTextPositioningElement_y_Getter"; 7290 AnimatedLengthList get y native "SVGTextPositioningElement_y_Getter";
7274 7291
7275 } 7292 }
7276 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7293 // 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 7294 // 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. 7295 // BSD-style license that can be found in the LICENSE file.
7279 7296
7280 // WARNING: Do not edit - generated code. 7297 // WARNING: Do not edit - generated code.
7281 7298
7282 7299
7283 /// @domName SVGTitleElement 7300 /// @domName SVGTitleElement
7284 class SVGTitleElement extends SVGElement implements SVGLangSpace, SVGStylable { 7301 class TitleElement extends SvgElement implements Stylable, LangSpace {
7285 SVGTitleElement.internal(): super.internal(); 7302
7303 factory TitleElement() => _Elements.createTitleElement();
7304 TitleElement.internal(): super.internal();
7286 7305
7287 7306
7288 /** @domName SVGTitleElement.xmllang */ 7307 /** @domName SVGTitleElement.xmllang */
7289 String get xmllang native "SVGTitleElement_xmllang_Getter"; 7308 String get xmllang native "SVGTitleElement_xmllang_Getter";
7290 7309
7291 7310
7292 /** @domName SVGTitleElement.xmllang */ 7311 /** @domName SVGTitleElement.xmllang */
7293 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter"; 7312 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter";
7294 7313
7295 7314
7296 /** @domName SVGTitleElement.xmlspace */ 7315 /** @domName SVGTitleElement.xmlspace */
7297 String get xmlspace native "SVGTitleElement_xmlspace_Getter"; 7316 String get xmlspace native "SVGTitleElement_xmlspace_Getter";
7298 7317
7299 7318
7300 /** @domName SVGTitleElement.xmlspace */ 7319 /** @domName SVGTitleElement.xmlspace */
7301 void set xmlspace(String value) native "SVGTitleElement_xmlspace_Setter"; 7320 void set xmlspace(String value) native "SVGTitleElement_xmlspace_Setter";
7302 7321
7303 7322
7304 /** @domName SVGTitleElement.className */ 7323 /** @domName SVGTitleElement.className */
7305 SVGAnimatedString get $dom_svgClassName native "SVGTitleElement_className_Gett er"; 7324 AnimatedString get $dom_svgClassName native "SVGTitleElement_className_Getter" ;
7306 7325
7307 7326
7308 /** @domName SVGTitleElement.style */ 7327 /** @domName SVGTitleElement.style */
7309 CSSStyleDeclaration get style native "SVGTitleElement_style_Getter"; 7328 CSSStyleDeclaration get style native "SVGTitleElement_style_Getter";
7310 7329
7311 7330
7312 /** @domName SVGTitleElement.getPresentationAttribute */ 7331 /** @domName SVGTitleElement.getPresentationAttribute */
7313 CSSValue getPresentationAttribute(String name) native "SVGTitleElement_getPres entationAttribute_Callback"; 7332 CSSValue getPresentationAttribute(String name) native "SVGTitleElement_getPres entationAttribute_Callback";
7314 7333
7315 } 7334 }
7316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7335 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7317 // for details. All rights reserved. Use of this source code is governed by a 7336 // for details. All rights reserved. Use of this source code is governed by a
7318 // BSD-style license that can be found in the LICENSE file. 7337 // BSD-style license that can be found in the LICENSE file.
7319 7338
7320 // WARNING: Do not edit - generated code. 7339 // WARNING: Do not edit - generated code.
7321 7340
7322 7341
7323 /// @domName SVGTransform 7342 /// @domName SVGTransform
7324 class SVGTransform extends NativeFieldWrapperClass1 { 7343 class Transform extends NativeFieldWrapperClass1 {
7325 SVGTransform.internal(); 7344 Transform.internal();
7326 7345
7327 static const int SVG_TRANSFORM_MATRIX = 1; 7346 static const int SVG_TRANSFORM_MATRIX = 1;
7328 7347
7329 static const int SVG_TRANSFORM_ROTATE = 4; 7348 static const int SVG_TRANSFORM_ROTATE = 4;
7330 7349
7331 static const int SVG_TRANSFORM_SCALE = 3; 7350 static const int SVG_TRANSFORM_SCALE = 3;
7332 7351
7333 static const int SVG_TRANSFORM_SKEWX = 5; 7352 static const int SVG_TRANSFORM_SKEWX = 5;
7334 7353
7335 static const int SVG_TRANSFORM_SKEWY = 6; 7354 static const int SVG_TRANSFORM_SKEWY = 6;
7336 7355
7337 static const int SVG_TRANSFORM_TRANSLATE = 2; 7356 static const int SVG_TRANSFORM_TRANSLATE = 2;
7338 7357
7339 static const int SVG_TRANSFORM_UNKNOWN = 0; 7358 static const int SVG_TRANSFORM_UNKNOWN = 0;
7340 7359
7341 7360
7342 /** @domName SVGTransform.angle */ 7361 /** @domName SVGTransform.angle */
7343 num get angle native "SVGTransform_angle_Getter"; 7362 num get angle native "SVGTransform_angle_Getter";
7344 7363
7345 7364
7346 /** @domName SVGTransform.matrix */ 7365 /** @domName SVGTransform.matrix */
7347 SVGMatrix get matrix native "SVGTransform_matrix_Getter"; 7366 Matrix get matrix native "SVGTransform_matrix_Getter";
7348 7367
7349 7368
7350 /** @domName SVGTransform.type */ 7369 /** @domName SVGTransform.type */
7351 int get type native "SVGTransform_type_Getter"; 7370 int get type native "SVGTransform_type_Getter";
7352 7371
7353 7372
7354 /** @domName SVGTransform.setMatrix */ 7373 /** @domName SVGTransform.setMatrix */
7355 void setMatrix(SVGMatrix matrix) native "SVGTransform_setMatrix_Callback"; 7374 void setMatrix(Matrix matrix) native "SVGTransform_setMatrix_Callback";
7356 7375
7357 7376
7358 /** @domName SVGTransform.setRotate */ 7377 /** @domName SVGTransform.setRotate */
7359 void setRotate(num angle, num cx, num cy) native "SVGTransform_setRotate_Callb ack"; 7378 void setRotate(num angle, num cx, num cy) native "SVGTransform_setRotate_Callb ack";
7360 7379
7361 7380
7362 /** @domName SVGTransform.setScale */ 7381 /** @domName SVGTransform.setScale */
7363 void setScale(num sx, num sy) native "SVGTransform_setScale_Callback"; 7382 void setScale(num sx, num sy) native "SVGTransform_setScale_Callback";
7364 7383
7365 7384
(...skipping 10 matching lines...) Expand all
7376 7395
7377 } 7396 }
7378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7397 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7379 // for details. All rights reserved. Use of this source code is governed by a 7398 // for details. All rights reserved. Use of this source code is governed by a
7380 // BSD-style license that can be found in the LICENSE file. 7399 // BSD-style license that can be found in the LICENSE file.
7381 7400
7382 // WARNING: Do not edit - generated code. 7401 // WARNING: Do not edit - generated code.
7383 7402
7384 7403
7385 /// @domName SVGTransformList 7404 /// @domName SVGTransformList
7386 class SVGTransformList extends NativeFieldWrapperClass1 implements List<SVGTrans form> { 7405 class TransformList extends NativeFieldWrapperClass1 implements List<Transform> {
7387 SVGTransformList.internal(); 7406 TransformList.internal();
7388 7407
7389 7408
7390 /** @domName SVGTransformList.numberOfItems */ 7409 /** @domName SVGTransformList.numberOfItems */
7391 int get numberOfItems native "SVGTransformList_numberOfItems_Getter"; 7410 int get numberOfItems native "SVGTransformList_numberOfItems_Getter";
7392 7411
7393 SVGTransform operator[](int index) native "SVGTransformList_item_Callback"; 7412 Transform operator[](int index) native "SVGTransformList_item_Callback";
7394 7413
7395 void operator[]=(int index, SVGTransform value) { 7414 void operator[]=(int index, Transform value) {
7396 throw new UnsupportedError("Cannot assign element of immutable List."); 7415 throw new UnsupportedError("Cannot assign element of immutable List.");
7397 } 7416 }
7398 // -- start List<SVGTransform> mixins. 7417 // -- start List<Transform> mixins.
7399 // SVGTransform is the element type. 7418 // Transform is the element type.
7400 7419
7401 // From Iterable<SVGTransform>: 7420 // From Iterable<Transform>:
7402 7421
7403 Iterator<SVGTransform> iterator() { 7422 Iterator<Transform> iterator() {
7404 // Note: NodeLists are not fixed size. And most probably length shouldn't 7423 // Note: NodeLists are not fixed size. And most probably length shouldn't
7405 // be cached in both iterator _and_ forEach method. For now caching it 7424 // be cached in both iterator _and_ forEach method. For now caching it
7406 // for consistency. 7425 // for consistency.
7407 return new FixedSizeListIterator<SVGTransform>(this); 7426 return new FixedSizeListIterator<Transform>(this);
7408 } 7427 }
7409 7428
7410 // From Collection<SVGTransform>: 7429 // From Collection<Transform>:
7411 7430
7412 void add(SVGTransform value) { 7431 void add(Transform value) {
7413 throw new UnsupportedError("Cannot add to immutable List."); 7432 throw new UnsupportedError("Cannot add to immutable List.");
7414 } 7433 }
7415 7434
7416 void addLast(SVGTransform value) { 7435 void addLast(Transform value) {
7417 throw new UnsupportedError("Cannot add to immutable List."); 7436 throw new UnsupportedError("Cannot add to immutable List.");
7418 } 7437 }
7419 7438
7420 void addAll(Collection<SVGTransform> collection) { 7439 void addAll(Collection<Transform> collection) {
7421 throw new UnsupportedError("Cannot add to immutable List."); 7440 throw new UnsupportedError("Cannot add to immutable List.");
7422 } 7441 }
7423 7442
7424 bool contains(SVGTransform element) => _Collections.contains(this, element); 7443 bool contains(Transform element) => _Collections.contains(this, element);
7425 7444
7426 void forEach(void f(SVGTransform element)) => _Collections.forEach(this, f); 7445 void forEach(void f(Transform element)) => _Collections.forEach(this, f);
7427 7446
7428 Collection map(f(SVGTransform element)) => _Collections.map(this, [], f); 7447 Collection map(f(Transform element)) => _Collections.map(this, [], f);
7429 7448
7430 Collection<SVGTransform> filter(bool f(SVGTransform element)) => 7449 Collection<Transform> filter(bool f(Transform element)) =>
7431 _Collections.filter(this, <SVGTransform>[], f); 7450 _Collections.filter(this, <Transform>[], f);
7432 7451
7433 bool every(bool f(SVGTransform element)) => _Collections.every(this, f); 7452 bool every(bool f(Transform element)) => _Collections.every(this, f);
7434 7453
7435 bool some(bool f(SVGTransform element)) => _Collections.some(this, f); 7454 bool some(bool f(Transform element)) => _Collections.some(this, f);
7436 7455
7437 bool get isEmpty => this.length == 0; 7456 bool get isEmpty => this.length == 0;
7438 7457
7439 // From List<SVGTransform>: 7458 // From List<Transform>:
7440 7459
7441 void sort([Comparator<SVGTransform> compare = Comparable.compare]) { 7460 void sort([Comparator<Transform> compare = Comparable.compare]) {
7442 throw new UnsupportedError("Cannot sort immutable List."); 7461 throw new UnsupportedError("Cannot sort immutable List.");
7443 } 7462 }
7444 7463
7445 int indexOf(SVGTransform element, [int start = 0]) => 7464 int indexOf(Transform element, [int start = 0]) =>
7446 _Lists.indexOf(this, element, start, this.length); 7465 _Lists.indexOf(this, element, start, this.length);
7447 7466
7448 int lastIndexOf(SVGTransform element, [int start]) { 7467 int lastIndexOf(Transform element, [int start]) {
7449 if (start == null) start = length - 1; 7468 if (start == null) start = length - 1;
7450 return _Lists.lastIndexOf(this, element, start); 7469 return _Lists.lastIndexOf(this, element, start);
7451 } 7470 }
7452 7471
7453 SVGTransform get last => this[length - 1]; 7472 Transform get last => this[length - 1];
7454 7473
7455 SVGTransform removeLast() { 7474 Transform removeLast() {
7456 throw new UnsupportedError("Cannot removeLast on immutable List."); 7475 throw new UnsupportedError("Cannot removeLast on immutable List.");
7457 } 7476 }
7458 7477
7459 void setRange(int start, int rangeLength, List<SVGTransform> from, [int startF rom]) { 7478 void setRange(int start, int rangeLength, List<Transform> from, [int startFrom ]) {
7460 throw new UnsupportedError("Cannot setRange on immutable List."); 7479 throw new UnsupportedError("Cannot setRange on immutable List.");
7461 } 7480 }
7462 7481
7463 void removeRange(int start, int rangeLength) { 7482 void removeRange(int start, int rangeLength) {
7464 throw new UnsupportedError("Cannot removeRange on immutable List."); 7483 throw new UnsupportedError("Cannot removeRange on immutable List.");
7465 } 7484 }
7466 7485
7467 void insertRange(int start, int rangeLength, [SVGTransform initialValue]) { 7486 void insertRange(int start, int rangeLength, [Transform initialValue]) {
7468 throw new UnsupportedError("Cannot insertRange on immutable List."); 7487 throw new UnsupportedError("Cannot insertRange on immutable List.");
7469 } 7488 }
7470 7489
7471 List<SVGTransform> getRange(int start, int rangeLength) => 7490 List<Transform> getRange(int start, int rangeLength) =>
7472 _Lists.getRange(this, start, rangeLength, <SVGTransform>[]); 7491 _Lists.getRange(this, start, rangeLength, <Transform>[]);
7473 7492
7474 // -- end List<SVGTransform> mixins. 7493 // -- end List<Transform> mixins.
7475 7494
7476 7495
7477 /** @domName SVGTransformList.appendItem */ 7496 /** @domName SVGTransformList.appendItem */
7478 SVGTransform appendItem(SVGTransform item) native "SVGTransformList_appendItem _Callback"; 7497 Transform appendItem(Transform item) native "SVGTransformList_appendItem_Callb ack";
7479 7498
7480 7499
7481 /** @domName SVGTransformList.clear */ 7500 /** @domName SVGTransformList.clear */
7482 void clear() native "SVGTransformList_clear_Callback"; 7501 void clear() native "SVGTransformList_clear_Callback";
7483 7502
7484 7503
7485 /** @domName SVGTransformList.consolidate */ 7504 /** @domName SVGTransformList.consolidate */
7486 SVGTransform consolidate() native "SVGTransformList_consolidate_Callback"; 7505 Transform consolidate() native "SVGTransformList_consolidate_Callback";
7487 7506
7488 7507
7489 /** @domName SVGTransformList.createSVGTransformFromMatrix */ 7508 /** @domName SVGTransformList.createSVGTransformFromMatrix */
7490 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native "SVGTransfo rmList_createSVGTransformFromMatrix_Callback"; 7509 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGTransformList _createSVGTransformFromMatrix_Callback";
7491 7510
7492 7511
7493 /** @domName SVGTransformList.getItem */ 7512 /** @domName SVGTransformList.getItem */
7494 SVGTransform getItem(int index) native "SVGTransformList_getItem_Callback"; 7513 Transform getItem(int index) native "SVGTransformList_getItem_Callback";
7495 7514
7496 7515
7497 /** @domName SVGTransformList.initialize */ 7516 /** @domName SVGTransformList.initialize */
7498 SVGTransform initialize(SVGTransform item) native "SVGTransformList_initialize _Callback"; 7517 Transform initialize(Transform item) native "SVGTransformList_initialize_Callb ack";
7499 7518
7500 7519
7501 /** @domName SVGTransformList.insertItemBefore */ 7520 /** @domName SVGTransformList.insertItemBefore */
7502 SVGTransform insertItemBefore(SVGTransform item, int index) native "SVGTransfo rmList_insertItemBefore_Callback"; 7521 Transform insertItemBefore(Transform item, int index) native "SVGTransformList _insertItemBefore_Callback";
7503 7522
7504 7523
7505 /** @domName SVGTransformList.removeItem */ 7524 /** @domName SVGTransformList.removeItem */
7506 SVGTransform removeItem(int index) native "SVGTransformList_removeItem_Callbac k"; 7525 Transform removeItem(int index) native "SVGTransformList_removeItem_Callback";
7507 7526
7508 7527
7509 /** @domName SVGTransformList.replaceItem */ 7528 /** @domName SVGTransformList.replaceItem */
7510 SVGTransform replaceItem(SVGTransform item, int index) native "SVGTransformLis t_replaceItem_Callback"; 7529 Transform replaceItem(Transform item, int index) native "SVGTransformList_repl aceItem_Callback";
7511 7530
7512 } 7531 }
7513 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7514 // for details. All rights reserved. Use of this source code is governed by a 7533 // for details. All rights reserved. Use of this source code is governed by a
7515 // BSD-style license that can be found in the LICENSE file. 7534 // BSD-style license that can be found in the LICENSE file.
7516 7535
7517 // WARNING: Do not edit - generated code. 7536 // WARNING: Do not edit - generated code.
7518 7537
7519 7538
7520 /// @domName SVGTransformable 7539 /// @domName SVGTransformable
7521 class SVGTransformable extends NativeFieldWrapperClass1 implements SVGLocatable { 7540 class Transformable extends NativeFieldWrapperClass1 implements Locatable {
7522 SVGTransformable.internal(); 7541 Transformable.internal();
7523 7542
7524 7543
7525 /** @domName SVGTransformable.transform */ 7544 /** @domName SVGTransformable.transform */
7526 SVGAnimatedTransformList get transform native "SVGTransformable_transform_Gett er"; 7545 AnimatedTransformList get transform native "SVGTransformable_transform_Getter" ;
7527 7546
7528 7547
7529 /** @domName SVGTransformable.farthestViewportElement */ 7548 /** @domName SVGTransformable.farthestViewportElement */
7530 SVGElement get farthestViewportElement native "SVGTransformable_farthestViewpo rtElement_Getter"; 7549 SvgElement get farthestViewportElement native "SVGTransformable_farthestViewpo rtElement_Getter";
7531 7550
7532 7551
7533 /** @domName SVGTransformable.nearestViewportElement */ 7552 /** @domName SVGTransformable.nearestViewportElement */
7534 SVGElement get nearestViewportElement native "SVGTransformable_nearestViewport Element_Getter"; 7553 SvgElement get nearestViewportElement native "SVGTransformable_nearestViewport Element_Getter";
7535 7554
7536 7555
7537 /** @domName SVGTransformable.getBBox */ 7556 /** @domName SVGTransformable.getBBox */
7538 SVGRect getBBox() native "SVGTransformable_getBBox_Callback"; 7557 Rect getBBox() native "SVGTransformable_getBBox_Callback";
7539 7558
7540 7559
7541 /** @domName SVGTransformable.getCTM */ 7560 /** @domName SVGTransformable.getCTM */
7542 SVGMatrix getCTM() native "SVGTransformable_getCTM_Callback"; 7561 Matrix getCTM() native "SVGTransformable_getCTM_Callback";
7543 7562
7544 7563
7545 /** @domName SVGTransformable.getScreenCTM */ 7564 /** @domName SVGTransformable.getScreenCTM */
7546 SVGMatrix getScreenCTM() native "SVGTransformable_getScreenCTM_Callback"; 7565 Matrix getScreenCTM() native "SVGTransformable_getScreenCTM_Callback";
7547 7566
7548 7567
7549 /** @domName SVGTransformable.getTransformToElement */ 7568 /** @domName SVGTransformable.getTransformToElement */
7550 SVGMatrix getTransformToElement(SVGElement element) native "SVGTransformable_g etTransformToElement_Callback"; 7569 Matrix getTransformToElement(SvgElement element) native "SVGTransformable_getT ransformToElement_Callback";
7551 7570
7552 } 7571 }
7553 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7572 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7554 // for details. All rights reserved. Use of this source code is governed by a 7573 // for details. All rights reserved. Use of this source code is governed by a
7555 // BSD-style license that can be found in the LICENSE file. 7574 // BSD-style license that can be found in the LICENSE file.
7556 7575
7557 // WARNING: Do not edit - generated code. 7576 // WARNING: Do not edit - generated code.
7558 7577
7559 7578
7560 /// @domName SVGURIReference 7579 /// @domName SVGUnitTypes
7561 class SVGURIReference extends NativeFieldWrapperClass1 { 7580 class UnitTypes extends NativeFieldWrapperClass1 {
7562 SVGURIReference.internal(); 7581 UnitTypes.internal();
7563 7582
7583 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
7564 7584
7565 /** @domName SVGURIReference.href */ 7585 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
7566 SVGAnimatedString get href native "SVGURIReference_href_Getter"; 7586
7587 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
7567 7588
7568 } 7589 }
7569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7590 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7570 // for details. All rights reserved. Use of this source code is governed by a 7591 // for details. All rights reserved. Use of this source code is governed by a
7571 // BSD-style license that can be found in the LICENSE file. 7592 // BSD-style license that can be found in the LICENSE file.
7572 7593
7573 // WARNING: Do not edit - generated code. 7594 // WARNING: Do not edit - generated code.
7574 7595
7575 7596
7576 /// @domName SVGUnitTypes 7597 /// @domName SVGURIReference
7577 class SVGUnitTypes extends NativeFieldWrapperClass1 { 7598 class UriReference extends NativeFieldWrapperClass1 {
7578 SVGUnitTypes.internal(); 7599 UriReference.internal();
7579 7600
7580 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
7581 7601
7582 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 7602 /** @domName SVGURIReference.href */
7583 7603 AnimatedString get href native "SVGURIReference_href_Getter";
7584 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
7585 7604
7586 } 7605 }
7587 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7606 // 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 7607 // 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. 7608 // BSD-style license that can be found in the LICENSE file.
7590 7609
7591 // WARNING: Do not edit - generated code. 7610 // WARNING: Do not edit - generated code.
7592 7611
7593 7612
7594 /// @domName SVGUseElement 7613 /// @domName SVGUseElement
7595 class SVGUseElement extends SVGElement implements SVGLangSpace, SVGTests, SVGSty lable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { 7614 class UseElement extends SvgElement implements Transformable, Tests, UriReferenc e, Stylable, ExternalResourcesRequired, LangSpace {
7596 SVGUseElement.internal(): super.internal(); 7615 UseElement.internal(): super.internal();
7597 7616
7598 7617
7599 /** @domName SVGUseElement.animatedInstanceRoot */ 7618 /** @domName SVGUseElement.animatedInstanceRoot */
7600 SVGElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInst anceRoot_Getter"; 7619 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter";
7601 7620
7602 7621
7603 /** @domName SVGUseElement.height */ 7622 /** @domName SVGUseElement.height */
7604 SVGAnimatedLength get height native "SVGUseElement_height_Getter"; 7623 AnimatedLength get height native "SVGUseElement_height_Getter";
7605 7624
7606 7625
7607 /** @domName SVGUseElement.instanceRoot */ 7626 /** @domName SVGUseElement.instanceRoot */
7608 SVGElementInstance get instanceRoot native "SVGUseElement_instanceRoot_Getter" ; 7627 ElementInstance get instanceRoot native "SVGUseElement_instanceRoot_Getter";
7609 7628
7610 7629
7611 /** @domName SVGUseElement.width */ 7630 /** @domName SVGUseElement.width */
7612 SVGAnimatedLength get width native "SVGUseElement_width_Getter"; 7631 AnimatedLength get width native "SVGUseElement_width_Getter";
7613 7632
7614 7633
7615 /** @domName SVGUseElement.x */ 7634 /** @domName SVGUseElement.x */
7616 SVGAnimatedLength get x native "SVGUseElement_x_Getter"; 7635 AnimatedLength get x native "SVGUseElement_x_Getter";
7617 7636
7618 7637
7619 /** @domName SVGUseElement.y */ 7638 /** @domName SVGUseElement.y */
7620 SVGAnimatedLength get y native "SVGUseElement_y_Getter"; 7639 AnimatedLength get y native "SVGUseElement_y_Getter";
7621 7640
7622 7641
7623 /** @domName SVGUseElement.externalResourcesRequired */ 7642 /** @domName SVGUseElement.externalResourcesRequired */
7624 SVGAnimatedBoolean get externalResourcesRequired native "SVGUseElement_externa lResourcesRequired_Getter"; 7643 AnimatedBoolean get externalResourcesRequired native "SVGUseElement_externalRe sourcesRequired_Getter";
7625 7644
7626 7645
7627 /** @domName SVGUseElement.xmllang */ 7646 /** @domName SVGUseElement.xmllang */
7628 String get xmllang native "SVGUseElement_xmllang_Getter"; 7647 String get xmllang native "SVGUseElement_xmllang_Getter";
7629 7648
7630 7649
7631 /** @domName SVGUseElement.xmllang */ 7650 /** @domName SVGUseElement.xmllang */
7632 void set xmllang(String value) native "SVGUseElement_xmllang_Setter"; 7651 void set xmllang(String value) native "SVGUseElement_xmllang_Setter";
7633 7652
7634 7653
7635 /** @domName SVGUseElement.xmlspace */ 7654 /** @domName SVGUseElement.xmlspace */
7636 String get xmlspace native "SVGUseElement_xmlspace_Getter"; 7655 String get xmlspace native "SVGUseElement_xmlspace_Getter";
7637 7656
7638 7657
7639 /** @domName SVGUseElement.xmlspace */ 7658 /** @domName SVGUseElement.xmlspace */
7640 void set xmlspace(String value) native "SVGUseElement_xmlspace_Setter"; 7659 void set xmlspace(String value) native "SVGUseElement_xmlspace_Setter";
7641 7660
7642 7661
7643 /** @domName SVGUseElement.farthestViewportElement */ 7662 /** @domName SVGUseElement.farthestViewportElement */
7644 SVGElement get farthestViewportElement native "SVGUseElement_farthestViewportE lement_Getter"; 7663 SvgElement get farthestViewportElement native "SVGUseElement_farthestViewportE lement_Getter";
7645 7664
7646 7665
7647 /** @domName SVGUseElement.nearestViewportElement */ 7666 /** @domName SVGUseElement.nearestViewportElement */
7648 SVGElement get nearestViewportElement native "SVGUseElement_nearestViewportEle ment_Getter"; 7667 SvgElement get nearestViewportElement native "SVGUseElement_nearestViewportEle ment_Getter";
7649 7668
7650 7669
7651 /** @domName SVGUseElement.getBBox */ 7670 /** @domName SVGUseElement.getBBox */
7652 SVGRect getBBox() native "SVGUseElement_getBBox_Callback"; 7671 Rect getBBox() native "SVGUseElement_getBBox_Callback";
7653 7672
7654 7673
7655 /** @domName SVGUseElement.getCTM */ 7674 /** @domName SVGUseElement.getCTM */
7656 SVGMatrix getCTM() native "SVGUseElement_getCTM_Callback"; 7675 Matrix getCTM() native "SVGUseElement_getCTM_Callback";
7657 7676
7658 7677
7659 /** @domName SVGUseElement.getScreenCTM */ 7678 /** @domName SVGUseElement.getScreenCTM */
7660 SVGMatrix getScreenCTM() native "SVGUseElement_getScreenCTM_Callback"; 7679 Matrix getScreenCTM() native "SVGUseElement_getScreenCTM_Callback";
7661 7680
7662 7681
7663 /** @domName SVGUseElement.getTransformToElement */ 7682 /** @domName SVGUseElement.getTransformToElement */
7664 SVGMatrix getTransformToElement(SVGElement element) native "SVGUseElement_getT ransformToElement_Callback"; 7683 Matrix getTransformToElement(SvgElement element) native "SVGUseElement_getTran sformToElement_Callback";
7665 7684
7666 7685
7667 /** @domName SVGUseElement.className */ 7686 /** @domName SVGUseElement.className */
7668 SVGAnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter "; 7687 AnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter";
7669 7688
7670 7689
7671 /** @domName SVGUseElement.style */ 7690 /** @domName SVGUseElement.style */
7672 CSSStyleDeclaration get style native "SVGUseElement_style_Getter"; 7691 CSSStyleDeclaration get style native "SVGUseElement_style_Getter";
7673 7692
7674 7693
7675 /** @domName SVGUseElement.getPresentationAttribute */ 7694 /** @domName SVGUseElement.getPresentationAttribute */
7676 CSSValue getPresentationAttribute(String name) native "SVGUseElement_getPresen tationAttribute_Callback"; 7695 CSSValue getPresentationAttribute(String name) native "SVGUseElement_getPresen tationAttribute_Callback";
7677 7696
7678 7697
7679 /** @domName SVGUseElement.requiredExtensions */ 7698 /** @domName SVGUseElement.requiredExtensions */
7680 SVGStringList get requiredExtensions native "SVGUseElement_requiredExtensions_ Getter"; 7699 StringList get requiredExtensions native "SVGUseElement_requiredExtensions_Get ter";
7681 7700
7682 7701
7683 /** @domName SVGUseElement.requiredFeatures */ 7702 /** @domName SVGUseElement.requiredFeatures */
7684 SVGStringList get requiredFeatures native "SVGUseElement_requiredFeatures_Gett er"; 7703 StringList get requiredFeatures native "SVGUseElement_requiredFeatures_Getter" ;
7685 7704
7686 7705
7687 /** @domName SVGUseElement.systemLanguage */ 7706 /** @domName SVGUseElement.systemLanguage */
7688 SVGStringList get systemLanguage native "SVGUseElement_systemLanguage_Getter"; 7707 StringList get systemLanguage native "SVGUseElement_systemLanguage_Getter";
7689 7708
7690 7709
7691 /** @domName SVGUseElement.hasExtension */ 7710 /** @domName SVGUseElement.hasExtension */
7692 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac k"; 7711 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac k";
7693 7712
7694 7713
7695 /** @domName SVGUseElement.transform */ 7714 /** @domName SVGUseElement.transform */
7696 SVGAnimatedTransformList get transform native "SVGUseElement_transform_Getter" ; 7715 AnimatedTransformList get transform native "SVGUseElement_transform_Getter";
7697 7716
7698 7717
7699 /** @domName SVGUseElement.href */ 7718 /** @domName SVGUseElement.href */
7700 SVGAnimatedString get href native "SVGUseElement_href_Getter"; 7719 AnimatedString get href native "SVGUseElement_href_Getter";
7701 7720
7702 } 7721 }
7703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7722 // 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 7723 // 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. 7724 // BSD-style license that can be found in the LICENSE file.
7706 7725
7707 // WARNING: Do not edit - generated code. 7726 // WARNING: Do not edit - generated code.
7708 7727
7709 7728
7710 /// @domName SVGVKernElement 7729 /// @domName SVGVKernElement
7711 class SVGVKernElement extends SVGElement { 7730 class VKernElement extends SvgElement {
7712 SVGVKernElement.internal(): super.internal(); 7731 VKernElement.internal(): super.internal();
7713 7732
7714 } 7733 }
7715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7734 // 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 7735 // 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. 7736 // BSD-style license that can be found in the LICENSE file.
7718 7737
7719 // WARNING: Do not edit - generated code. 7738 // WARNING: Do not edit - generated code.
7720 7739
7721 7740
7722 /// @domName SVGViewElement 7741 /// @domName SVGViewElement
7723 class SVGViewElement extends SVGElement implements SVGFitToViewBox, SVGZoomAndPa n, SVGExternalResourcesRequired { 7742 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan {
7724 SVGViewElement.internal(): super.internal(); 7743 ViewElement.internal(): super.internal();
7725 7744
7726 7745
7727 /** @domName SVGViewElement.viewTarget */ 7746 /** @domName SVGViewElement.viewTarget */
7728 SVGStringList get viewTarget native "SVGViewElement_viewTarget_Getter"; 7747 StringList get viewTarget native "SVGViewElement_viewTarget_Getter";
7729 7748
7730 7749
7731 /** @domName SVGViewElement.externalResourcesRequired */ 7750 /** @domName SVGViewElement.externalResourcesRequired */
7732 SVGAnimatedBoolean get externalResourcesRequired native "SVGViewElement_extern alResourcesRequired_Getter"; 7751 AnimatedBoolean get externalResourcesRequired native "SVGViewElement_externalR esourcesRequired_Getter";
7733 7752
7734 7753
7735 /** @domName SVGViewElement.preserveAspectRatio */ 7754 /** @domName SVGViewElement.preserveAspectRatio */
7736 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewElement_ preserveAspectRatio_Getter"; 7755 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewElement_pre serveAspectRatio_Getter";
7737 7756
7738 7757
7739 /** @domName SVGViewElement.viewBox */ 7758 /** @domName SVGViewElement.viewBox */
7740 SVGAnimatedRect get viewBox native "SVGViewElement_viewBox_Getter"; 7759 AnimatedRect get viewBox native "SVGViewElement_viewBox_Getter";
7741 7760
7742 7761
7743 /** @domName SVGViewElement.zoomAndPan */ 7762 /** @domName SVGViewElement.zoomAndPan */
7744 int get zoomAndPan native "SVGViewElement_zoomAndPan_Getter"; 7763 int get zoomAndPan native "SVGViewElement_zoomAndPan_Getter";
7745 7764
7746 7765
7747 /** @domName SVGViewElement.zoomAndPan */ 7766 /** @domName SVGViewElement.zoomAndPan */
7748 void set zoomAndPan(int value) native "SVGViewElement_zoomAndPan_Setter"; 7767 void set zoomAndPan(int value) native "SVGViewElement_zoomAndPan_Setter";
7749 7768
7750 } 7769 }
7751 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7770 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7752 // for details. All rights reserved. Use of this source code is governed by a 7771 // for details. All rights reserved. Use of this source code is governed by a
7753 // BSD-style license that can be found in the LICENSE file. 7772 // BSD-style license that can be found in the LICENSE file.
7754 7773
7755 // WARNING: Do not edit - generated code. 7774 // WARNING: Do not edit - generated code.
7756 7775
7757 7776
7758 /// @domName SVGViewSpec 7777 /// @domName SVGViewSpec
7759 class SVGViewSpec extends NativeFieldWrapperClass1 { 7778 class ViewSpec extends NativeFieldWrapperClass1 {
7760 SVGViewSpec.internal(); 7779 ViewSpec.internal();
7761 7780
7762 7781
7763 /** @domName SVGViewSpec.preserveAspectRatio */ 7782 /** @domName SVGViewSpec.preserveAspectRatio */
7764 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_pre serveAspectRatio_Getter"; 7783 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_preser veAspectRatio_Getter";
7765 7784
7766 7785
7767 /** @domName SVGViewSpec.preserveAspectRatioString */ 7786 /** @domName SVGViewSpec.preserveAspectRatioString */
7768 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt ring_Getter"; 7787 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt ring_Getter";
7769 7788
7770 7789
7771 /** @domName SVGViewSpec.transform */ 7790 /** @domName SVGViewSpec.transform */
7772 SVGTransformList get transform native "SVGViewSpec_transform_Getter"; 7791 TransformList get transform native "SVGViewSpec_transform_Getter";
7773 7792
7774 7793
7775 /** @domName SVGViewSpec.transformString */ 7794 /** @domName SVGViewSpec.transformString */
7776 String get transformString native "SVGViewSpec_transformString_Getter"; 7795 String get transformString native "SVGViewSpec_transformString_Getter";
7777 7796
7778 7797
7779 /** @domName SVGViewSpec.viewBox */ 7798 /** @domName SVGViewSpec.viewBox */
7780 SVGAnimatedRect get viewBox native "SVGViewSpec_viewBox_Getter"; 7799 AnimatedRect get viewBox native "SVGViewSpec_viewBox_Getter";
7781 7800
7782 7801
7783 /** @domName SVGViewSpec.viewBoxString */ 7802 /** @domName SVGViewSpec.viewBoxString */
7784 String get viewBoxString native "SVGViewSpec_viewBoxString_Getter"; 7803 String get viewBoxString native "SVGViewSpec_viewBoxString_Getter";
7785 7804
7786 7805
7787 /** @domName SVGViewSpec.viewTarget */ 7806 /** @domName SVGViewSpec.viewTarget */
7788 SVGElement get viewTarget native "SVGViewSpec_viewTarget_Getter"; 7807 SvgElement get viewTarget native "SVGViewSpec_viewTarget_Getter";
7789 7808
7790 7809
7791 /** @domName SVGViewSpec.viewTargetString */ 7810 /** @domName SVGViewSpec.viewTargetString */
7792 String get viewTargetString native "SVGViewSpec_viewTargetString_Getter"; 7811 String get viewTargetString native "SVGViewSpec_viewTargetString_Getter";
7793 7812
7794 7813
7795 /** @domName SVGViewSpec.zoomAndPan */ 7814 /** @domName SVGViewSpec.zoomAndPan */
7796 int get zoomAndPan native "SVGViewSpec_zoomAndPan_Getter"; 7815 int get zoomAndPan native "SVGViewSpec_zoomAndPan_Getter";
7797 7816
7798 7817
7799 /** @domName SVGViewSpec.zoomAndPan */ 7818 /** @domName SVGViewSpec.zoomAndPan */
7800 void set zoomAndPan(int value) native "SVGViewSpec_zoomAndPan_Setter"; 7819 void set zoomAndPan(int value) native "SVGViewSpec_zoomAndPan_Setter";
7801 7820
7802 } 7821 }
7803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7822 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7804 // for details. All rights reserved. Use of this source code is governed by a 7823 // for details. All rights reserved. Use of this source code is governed by a
7805 // BSD-style license that can be found in the LICENSE file. 7824 // BSD-style license that can be found in the LICENSE file.
7806 7825
7807 // WARNING: Do not edit - generated code. 7826 // WARNING: Do not edit - generated code.
7808 7827
7809 7828
7810 /// @domName SVGZoomAndPan 7829 /// @domName SVGZoomAndPan
7811 class SVGZoomAndPan extends NativeFieldWrapperClass1 { 7830 class ZoomAndPan extends NativeFieldWrapperClass1 {
7812 SVGZoomAndPan.internal(); 7831 ZoomAndPan.internal();
7813 7832
7814 static const int SVG_ZOOMANDPAN_DISABLE = 1; 7833 static const int SVG_ZOOMANDPAN_DISABLE = 1;
7815 7834
7816 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 7835 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
7817 7836
7818 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; 7837 static const int SVG_ZOOMANDPAN_UNKNOWN = 0;
7819 7838
7820 7839
7821 /** @domName SVGZoomAndPan.zoomAndPan */ 7840 /** @domName SVGZoomAndPan.zoomAndPan */
7822 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter"; 7841 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter";
7823 7842
7824 7843
7825 /** @domName SVGZoomAndPan.zoomAndPan */ 7844 /** @domName SVGZoomAndPan.zoomAndPan */
7826 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter"; 7845 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter";
7827 7846
7828 } 7847 }
7829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7830 // for details. All rights reserved. Use of this source code is governed by a 7849 // for details. All rights reserved. Use of this source code is governed by a
7831 // BSD-style license that can be found in the LICENSE file. 7850 // BSD-style license that can be found in the LICENSE file.
7832 7851
7833 // WARNING: Do not edit - generated code. 7852 // WARNING: Do not edit - generated code.
7834 7853
7835 7854
7836 /// @domName SVGZoomEvent 7855 /// @domName SVGZoomEvent
7837 class SVGZoomEvent extends UIEvent { 7856 class ZoomEvent extends UIEvent {
7838 SVGZoomEvent.internal(): super.internal(); 7857 ZoomEvent.internal(): super.internal();
7839 7858
7840 7859
7841 /** @domName SVGZoomEvent.newScale */ 7860 /** @domName SVGZoomEvent.newScale */
7842 num get newScale native "SVGZoomEvent_newScale_Getter"; 7861 num get newScale native "SVGZoomEvent_newScale_Getter";
7843 7862
7844 7863
7845 /** @domName SVGZoomEvent.newTranslate */ 7864 /** @domName SVGZoomEvent.newTranslate */
7846 SVGPoint get newTranslate native "SVGZoomEvent_newTranslate_Getter"; 7865 Point get newTranslate native "SVGZoomEvent_newTranslate_Getter";
7847 7866
7848 7867
7849 /** @domName SVGZoomEvent.previousScale */ 7868 /** @domName SVGZoomEvent.previousScale */
7850 num get previousScale native "SVGZoomEvent_previousScale_Getter"; 7869 num get previousScale native "SVGZoomEvent_previousScale_Getter";
7851 7870
7852 7871
7853 /** @domName SVGZoomEvent.previousTranslate */ 7872 /** @domName SVGZoomEvent.previousTranslate */
7854 SVGPoint get previousTranslate native "SVGZoomEvent_previousTranslate_Getter"; 7873 Point get previousTranslate native "SVGZoomEvent_previousTranslate_Getter";
7855 7874
7856 7875
7857 /** @domName SVGZoomEvent.zoomRectScreen */ 7876 /** @domName SVGZoomEvent.zoomRectScreen */
7858 SVGRect get zoomRectScreen native "SVGZoomEvent_zoomRectScreen_Getter"; 7877 Rect get zoomRectScreen native "SVGZoomEvent_zoomRectScreen_Getter";
7859 7878
7860 } 7879 }
7861 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7880 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7862 // for details. All rights reserved. Use of this source code is governed by a 7881 // for details. All rights reserved. Use of this source code is governed by a
7863 // BSD-style license that can be found in the LICENSE file. 7882 // BSD-style license that can be found in the LICENSE file.
7864 7883
7865 // WARNING: Do not edit - generated code. 7884 // WARNING: Do not edit - generated code.
7866 7885
7867 7886
7868 /// @domName SVGElementInstanceList 7887 /// @domName SVGElementInstanceList
7869 class _SVGElementInstanceList extends NativeFieldWrapperClass1 implements List<S VGElementInstance> { 7888 class _ElementInstanceList extends NativeFieldWrapperClass1 implements List<Elem entInstance> {
7870 _SVGElementInstanceList.internal(); 7889 _ElementInstanceList.internal();
7871 7890
7872 7891
7873 /** @domName SVGElementInstanceList.length */ 7892 /** @domName SVGElementInstanceList.length */
7874 int get length native "SVGElementInstanceList_length_Getter"; 7893 int get length native "SVGElementInstanceList_length_Getter";
7875 7894
7876 SVGElementInstance operator[](int index) native "SVGElementInstanceList_item_C allback"; 7895 ElementInstance operator[](int index) native "SVGElementInstanceList_item_Call back";
7877 7896
7878 void operator[]=(int index, SVGElementInstance value) { 7897 void operator[]=(int index, ElementInstance value) {
7879 throw new UnsupportedError("Cannot assign element of immutable List."); 7898 throw new UnsupportedError("Cannot assign element of immutable List.");
7880 } 7899 }
7881 // -- start List<SVGElementInstance> mixins. 7900 // -- start List<ElementInstance> mixins.
7882 // SVGElementInstance is the element type. 7901 // ElementInstance is the element type.
7883 7902
7884 // From Iterable<SVGElementInstance>: 7903 // From Iterable<ElementInstance>:
7885 7904
7886 Iterator<SVGElementInstance> iterator() { 7905 Iterator<ElementInstance> iterator() {
7887 // Note: NodeLists are not fixed size. And most probably length shouldn't 7906 // Note: NodeLists are not fixed size. And most probably length shouldn't
7888 // be cached in both iterator _and_ forEach method. For now caching it 7907 // be cached in both iterator _and_ forEach method. For now caching it
7889 // for consistency. 7908 // for consistency.
7890 return new FixedSizeListIterator<SVGElementInstance>(this); 7909 return new FixedSizeListIterator<ElementInstance>(this);
7891 } 7910 }
7892 7911
7893 // From Collection<SVGElementInstance>: 7912 // From Collection<ElementInstance>:
7894 7913
7895 void add(SVGElementInstance value) { 7914 void add(ElementInstance value) {
7896 throw new UnsupportedError("Cannot add to immutable List."); 7915 throw new UnsupportedError("Cannot add to immutable List.");
7897 } 7916 }
7898 7917
7899 void addLast(SVGElementInstance value) { 7918 void addLast(ElementInstance value) {
7900 throw new UnsupportedError("Cannot add to immutable List."); 7919 throw new UnsupportedError("Cannot add to immutable List.");
7901 } 7920 }
7902 7921
7903 void addAll(Collection<SVGElementInstance> collection) { 7922 void addAll(Collection<ElementInstance> collection) {
7904 throw new UnsupportedError("Cannot add to immutable List."); 7923 throw new UnsupportedError("Cannot add to immutable List.");
7905 } 7924 }
7906 7925
7907 bool contains(SVGElementInstance element) => _Collections.contains(this, eleme nt); 7926 bool contains(ElementInstance element) => _Collections.contains(this, element) ;
7908 7927
7909 void forEach(void f(SVGElementInstance element)) => _Collections.forEach(this, f); 7928 void forEach(void f(ElementInstance element)) => _Collections.forEach(this, f) ;
7910 7929
7911 Collection map(f(SVGElementInstance element)) => _Collections.map(this, [], f) ; 7930 Collection map(f(ElementInstance element)) => _Collections.map(this, [], f);
7912 7931
7913 Collection<SVGElementInstance> filter(bool f(SVGElementInstance element)) => 7932 Collection<ElementInstance> filter(bool f(ElementInstance element)) =>
7914 _Collections.filter(this, <SVGElementInstance>[], f); 7933 _Collections.filter(this, <ElementInstance>[], f);
7915 7934
7916 bool every(bool f(SVGElementInstance element)) => _Collections.every(this, f); 7935 bool every(bool f(ElementInstance element)) => _Collections.every(this, f);
7917 7936
7918 bool some(bool f(SVGElementInstance element)) => _Collections.some(this, f); 7937 bool some(bool f(ElementInstance element)) => _Collections.some(this, f);
7919 7938
7920 bool get isEmpty => this.length == 0; 7939 bool get isEmpty => this.length == 0;
7921 7940
7922 // From List<SVGElementInstance>: 7941 // From List<ElementInstance>:
7923 7942
7924 void sort([Comparator<SVGElementInstance> compare = Comparable.compare]) { 7943 void sort([Comparator<ElementInstance> compare = Comparable.compare]) {
7925 throw new UnsupportedError("Cannot sort immutable List."); 7944 throw new UnsupportedError("Cannot sort immutable List.");
7926 } 7945 }
7927 7946
7928 int indexOf(SVGElementInstance element, [int start = 0]) => 7947 int indexOf(ElementInstance element, [int start = 0]) =>
7929 _Lists.indexOf(this, element, start, this.length); 7948 _Lists.indexOf(this, element, start, this.length);
7930 7949
7931 int lastIndexOf(SVGElementInstance element, [int start]) { 7950 int lastIndexOf(ElementInstance element, [int start]) {
7932 if (start == null) start = length - 1; 7951 if (start == null) start = length - 1;
7933 return _Lists.lastIndexOf(this, element, start); 7952 return _Lists.lastIndexOf(this, element, start);
7934 } 7953 }
7935 7954
7936 SVGElementInstance get last => this[length - 1]; 7955 ElementInstance get last => this[length - 1];
7937 7956
7938 SVGElementInstance removeLast() { 7957 ElementInstance removeLast() {
7939 throw new UnsupportedError("Cannot removeLast on immutable List."); 7958 throw new UnsupportedError("Cannot removeLast on immutable List.");
7940 } 7959 }
7941 7960
7942 void setRange(int start, int rangeLength, List<SVGElementInstance> from, [int startFrom]) { 7961 void setRange(int start, int rangeLength, List<ElementInstance> from, [int sta rtFrom]) {
7943 throw new UnsupportedError("Cannot setRange on immutable List."); 7962 throw new UnsupportedError("Cannot setRange on immutable List.");
7944 } 7963 }
7945 7964
7946 void removeRange(int start, int rangeLength) { 7965 void removeRange(int start, int rangeLength) {
7947 throw new UnsupportedError("Cannot removeRange on immutable List."); 7966 throw new UnsupportedError("Cannot removeRange on immutable List.");
7948 } 7967 }
7949 7968
7950 void insertRange(int start, int rangeLength, [SVGElementInstance initialValue] ) { 7969 void insertRange(int start, int rangeLength, [ElementInstance initialValue]) {
7951 throw new UnsupportedError("Cannot insertRange on immutable List."); 7970 throw new UnsupportedError("Cannot insertRange on immutable List.");
7952 } 7971 }
7953 7972
7954 List<SVGElementInstance> getRange(int start, int rangeLength) => 7973 List<ElementInstance> getRange(int start, int rangeLength) =>
7955 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]); 7974 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]);
7956 7975
7957 // -- end List<SVGElementInstance> mixins. 7976 // -- end List<ElementInstance> mixins.
7958 7977
7959 7978
7960 /** @domName SVGElementInstanceList.item */ 7979 /** @domName SVGElementInstanceList.item */
7961 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac k"; 7980 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback";
7962 7981
7963 } 7982 }
7983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7984 // for details. All rights reserved. Use of this source code is governed by a
7985 // BSD-style license that can be found in the LICENSE file.
7986
7987
7988 class _Elements {
7989
7990
7991 static ImageElement createImageElement([String src, int width, int height]) {
7992 ImageElement _e = document.$dom_createElement("img");
7993 if (src != null) _e.src = src;
7994 if (width != null) _e.width = width;
7995 if (height != null) _e.height = height;
7996 return _e;
7997 }
7998
7999 static ScriptElement createScriptElement() {
8000 ScriptElement _e = document.$dom_createElement("script");
8001 return _e;
8002 }
8003
8004 static StyleElement createStyleElement() {
8005 StyleElement _e = document.$dom_createElement("style");
8006 return _e;
8007 }
8008
8009 static TitleElement createTitleElement() {
8010 TitleElement _e = document.$dom_createElement("title");
8011 return _e;
8012 }
8013 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698