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 17063007: Making all DOM types abstract and removing superfluous Dartium constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // for details. All rights reserved. Use of this source code is governed by a 57 // for details. All rights reserved. Use of this source code is governed by a
58 // BSD-style license that can be found in the LICENSE file. 58 // BSD-style license that can be found in the LICENSE file.
59 59
60 // WARNING: Do not edit - generated code. 60 // WARNING: Do not edit - generated code.
61 61
62 62
63 @DocsEditable 63 @DocsEditable
64 @DomName('SVGAElement') 64 @DomName('SVGAElement')
65 @Unstable 65 @Unstable
66 class AElement extends StyledElement implements UriReference, Tests, Transformab le, ExternalResourcesRequired, LangSpace { 66 class AElement extends StyledElement implements UriReference, Tests, Transformab le, ExternalResourcesRequired, LangSpace {
67 AElement.internal() : super.internal(); 67 // To suppress missing implicit constructor warnings.
68 factory AElement._() { throw new UnsupportedError("Not supported"); }
68 69
69 @DomName('SVGAElement.SVGAElement') 70 @DomName('SVGAElement.SVGAElement')
70 @DocsEditable 71 @DocsEditable
71 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 72 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
72 73
73 @DomName('SVGAElement.target') 74 @DomName('SVGAElement.target')
74 @DocsEditable 75 @DocsEditable
75 AnimatedString get target native "SVGAElement_target_Getter"; 76 AnimatedString get target native "SVGAElement_target_Getter";
76 77
77 @DomName('SVGAElement.externalResourcesRequired') 78 @DomName('SVGAElement.externalResourcesRequired')
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 // WARNING: Do not edit - generated code. 151 // WARNING: Do not edit - generated code.
151 152
152 153
153 @DocsEditable 154 @DocsEditable
154 @DomName('SVGAltGlyphElement') 155 @DomName('SVGAltGlyphElement')
155 @SupportedBrowser(SupportedBrowser.CHROME) 156 @SupportedBrowser(SupportedBrowser.CHROME)
156 @SupportedBrowser(SupportedBrowser.FIREFOX) 157 @SupportedBrowser(SupportedBrowser.FIREFOX)
157 @SupportedBrowser(SupportedBrowser.SAFARI) 158 @SupportedBrowser(SupportedBrowser.SAFARI)
158 @Unstable 159 @Unstable
159 class AltGlyphElement extends TextPositioningElement implements UriReference { 160 class AltGlyphElement extends TextPositioningElement implements UriReference {
160 AltGlyphElement.internal() : super.internal(); 161 // To suppress missing implicit constructor warnings.
162 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); }
161 163
162 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') 164 @DomName('SVGAltGlyphElement.SVGAltGlyphElement')
163 @DocsEditable 165 @DocsEditable
164 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph"); 166 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph");
165 167
166 /// Checks if this type is supported on the current platform. 168 /// Checks if this type is supported on the current platform.
167 static bool get supported => true; 169 static bool get supported => true;
168 170
169 @DomName('SVGAltGlyphElement.format') 171 @DomName('SVGAltGlyphElement.format')
170 @DocsEditable 172 @DocsEditable
(...skipping 20 matching lines...) Expand all
191 // 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
192 // BSD-style license that can be found in the LICENSE file. 194 // BSD-style license that can be found in the LICENSE file.
193 195
194 // WARNING: Do not edit - generated code. 196 // WARNING: Do not edit - generated code.
195 197
196 198
197 @DocsEditable 199 @DocsEditable
198 @DomName('SVGAngle') 200 @DomName('SVGAngle')
199 @Unstable 201 @Unstable
200 class Angle extends NativeFieldWrapperClass1 { 202 class Angle extends NativeFieldWrapperClass1 {
201 Angle.internal(); 203 // To suppress missing implicit constructor warnings.
204 factory Angle._() { throw new UnsupportedError("Not supported"); }
202 205
203 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') 206 @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
204 @DocsEditable 207 @DocsEditable
205 static const int SVG_ANGLETYPE_DEG = 2; 208 static const int SVG_ANGLETYPE_DEG = 2;
206 209
207 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') 210 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
208 @DocsEditable 211 @DocsEditable
209 static const int SVG_ANGLETYPE_GRAD = 4; 212 static const int SVG_ANGLETYPE_GRAD = 4;
210 213
211 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') 214 @DomName('SVGAngle.SVG_ANGLETYPE_RAD')
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 // WARNING: Do not edit - generated code. 267 // WARNING: Do not edit - generated code.
265 268
266 269
267 @DocsEditable 270 @DocsEditable
268 @DomName('SVGAnimateElement') 271 @DomName('SVGAnimateElement')
269 @SupportedBrowser(SupportedBrowser.CHROME) 272 @SupportedBrowser(SupportedBrowser.CHROME)
270 @SupportedBrowser(SupportedBrowser.FIREFOX) 273 @SupportedBrowser(SupportedBrowser.FIREFOX)
271 @SupportedBrowser(SupportedBrowser.SAFARI) 274 @SupportedBrowser(SupportedBrowser.SAFARI)
272 @Unstable 275 @Unstable
273 class AnimateElement extends AnimationElement { 276 class AnimateElement extends AnimationElement {
274 AnimateElement.internal() : super.internal(); 277 // To suppress missing implicit constructor warnings.
278 factory AnimateElement._() { throw new UnsupportedError("Not supported"); }
275 279
276 @DomName('SVGAnimateElement.SVGAnimateElement') 280 @DomName('SVGAnimateElement.SVGAnimateElement')
277 @DocsEditable 281 @DocsEditable
278 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate"); 282 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate");
279 283
280 /// Checks if this type is supported on the current platform. 284 /// Checks if this type is supported on the current platform.
281 static bool get supported => true; 285 static bool get supported => true;
282 286
283 } 287 }
284 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 288 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
285 // for details. All rights reserved. Use of this source code is governed by a 289 // for details. All rights reserved. Use of this source code is governed by a
286 // BSD-style license that can be found in the LICENSE file. 290 // BSD-style license that can be found in the LICENSE file.
287 291
288 // WARNING: Do not edit - generated code. 292 // WARNING: Do not edit - generated code.
289 293
290 294
291 @DocsEditable 295 @DocsEditable
292 @DomName('SVGAnimateMotionElement') 296 @DomName('SVGAnimateMotionElement')
293 @SupportedBrowser(SupportedBrowser.CHROME) 297 @SupportedBrowser(SupportedBrowser.CHROME)
294 @SupportedBrowser(SupportedBrowser.FIREFOX) 298 @SupportedBrowser(SupportedBrowser.FIREFOX)
295 @SupportedBrowser(SupportedBrowser.SAFARI) 299 @SupportedBrowser(SupportedBrowser.SAFARI)
296 @Unstable 300 @Unstable
297 class AnimateMotionElement extends AnimationElement { 301 class AnimateMotionElement extends AnimationElement {
298 AnimateMotionElement.internal() : super.internal(); 302 // To suppress missing implicit constructor warnings.
303 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported") ; }
299 304
300 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') 305 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
301 @DocsEditable 306 @DocsEditable
302 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion"); 307 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion");
303 308
304 /// Checks if this type is supported on the current platform. 309 /// Checks if this type is supported on the current platform.
305 static bool get supported => true; 310 static bool get supported => true;
306 311
307 } 312 }
308 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
309 // for details. All rights reserved. Use of this source code is governed by a 314 // for details. All rights reserved. Use of this source code is governed by a
310 // BSD-style license that can be found in the LICENSE file. 315 // BSD-style license that can be found in the LICENSE file.
311 316
312 // WARNING: Do not edit - generated code. 317 // WARNING: Do not edit - generated code.
313 318
314 319
315 @DocsEditable 320 @DocsEditable
316 @DomName('SVGAnimateTransformElement') 321 @DomName('SVGAnimateTransformElement')
317 @SupportedBrowser(SupportedBrowser.CHROME) 322 @SupportedBrowser(SupportedBrowser.CHROME)
318 @SupportedBrowser(SupportedBrowser.FIREFOX) 323 @SupportedBrowser(SupportedBrowser.FIREFOX)
319 @SupportedBrowser(SupportedBrowser.SAFARI) 324 @SupportedBrowser(SupportedBrowser.SAFARI)
320 @Unstable 325 @Unstable
321 class AnimateTransformElement extends AnimationElement { 326 class AnimateTransformElement extends AnimationElement {
322 AnimateTransformElement.internal() : super.internal(); 327 // To suppress missing implicit constructor warnings.
328 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte d"); }
323 329
324 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') 330 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
325 @DocsEditable 331 @DocsEditable
326 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform"); 332 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform");
327 333
328 /// Checks if this type is supported on the current platform. 334 /// Checks if this type is supported on the current platform.
329 static bool get supported => true; 335 static bool get supported => true;
330 336
331 } 337 }
332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
333 // for details. All rights reserved. Use of this source code is governed by a 339 // for details. All rights reserved. Use of this source code is governed by a
334 // BSD-style license that can be found in the LICENSE file. 340 // BSD-style license that can be found in the LICENSE file.
335 341
336 // WARNING: Do not edit - generated code. 342 // WARNING: Do not edit - generated code.
337 343
338 344
339 @DocsEditable 345 @DocsEditable
340 @DomName('SVGAnimatedAngle') 346 @DomName('SVGAnimatedAngle')
341 @Unstable 347 @Unstable
342 class AnimatedAngle extends NativeFieldWrapperClass1 { 348 class AnimatedAngle extends NativeFieldWrapperClass1 {
343 AnimatedAngle.internal(); 349 // To suppress missing implicit constructor warnings.
350 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); }
344 351
345 @DomName('SVGAnimatedAngle.animVal') 352 @DomName('SVGAnimatedAngle.animVal')
346 @DocsEditable 353 @DocsEditable
347 Angle get animVal native "SVGAnimatedAngle_animVal_Getter"; 354 Angle get animVal native "SVGAnimatedAngle_animVal_Getter";
348 355
349 @DomName('SVGAnimatedAngle.baseVal') 356 @DomName('SVGAnimatedAngle.baseVal')
350 @DocsEditable 357 @DocsEditable
351 Angle get baseVal native "SVGAnimatedAngle_baseVal_Getter"; 358 Angle get baseVal native "SVGAnimatedAngle_baseVal_Getter";
352 359
353 } 360 }
354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 361 // 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 362 // 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. 363 // BSD-style license that can be found in the LICENSE file.
357 364
358 // WARNING: Do not edit - generated code. 365 // WARNING: Do not edit - generated code.
359 366
360 367
361 @DocsEditable 368 @DocsEditable
362 @DomName('SVGAnimatedBoolean') 369 @DomName('SVGAnimatedBoolean')
363 @Unstable 370 @Unstable
364 class AnimatedBoolean extends NativeFieldWrapperClass1 { 371 class AnimatedBoolean extends NativeFieldWrapperClass1 {
365 AnimatedBoolean.internal(); 372 // To suppress missing implicit constructor warnings.
373 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); }
366 374
367 @DomName('SVGAnimatedBoolean.animVal') 375 @DomName('SVGAnimatedBoolean.animVal')
368 @DocsEditable 376 @DocsEditable
369 bool get animVal native "SVGAnimatedBoolean_animVal_Getter"; 377 bool get animVal native "SVGAnimatedBoolean_animVal_Getter";
370 378
371 @DomName('SVGAnimatedBoolean.baseVal') 379 @DomName('SVGAnimatedBoolean.baseVal')
372 @DocsEditable 380 @DocsEditable
373 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter"; 381 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter";
374 382
375 @DomName('SVGAnimatedBoolean.baseVal') 383 @DomName('SVGAnimatedBoolean.baseVal')
376 @DocsEditable 384 @DocsEditable
377 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter"; 385 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter";
378 386
379 } 387 }
380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
381 // for details. All rights reserved. Use of this source code is governed by a 389 // for details. All rights reserved. Use of this source code is governed by a
382 // BSD-style license that can be found in the LICENSE file. 390 // BSD-style license that can be found in the LICENSE file.
383 391
384 // WARNING: Do not edit - generated code. 392 // WARNING: Do not edit - generated code.
385 393
386 394
387 @DocsEditable 395 @DocsEditable
388 @DomName('SVGAnimatedEnumeration') 396 @DomName('SVGAnimatedEnumeration')
389 @Unstable 397 @Unstable
390 class AnimatedEnumeration extends NativeFieldWrapperClass1 { 398 class AnimatedEnumeration extends NativeFieldWrapperClass1 {
391 AnimatedEnumeration.internal(); 399 // To suppress missing implicit constructor warnings.
400 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); }
392 401
393 @DomName('SVGAnimatedEnumeration.animVal') 402 @DomName('SVGAnimatedEnumeration.animVal')
394 @DocsEditable 403 @DocsEditable
395 int get animVal native "SVGAnimatedEnumeration_animVal_Getter"; 404 int get animVal native "SVGAnimatedEnumeration_animVal_Getter";
396 405
397 @DomName('SVGAnimatedEnumeration.baseVal') 406 @DomName('SVGAnimatedEnumeration.baseVal')
398 @DocsEditable 407 @DocsEditable
399 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter"; 408 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter";
400 409
401 @DomName('SVGAnimatedEnumeration.baseVal') 410 @DomName('SVGAnimatedEnumeration.baseVal')
402 @DocsEditable 411 @DocsEditable
403 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter"; 412 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter";
404 413
405 } 414 }
406 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 415 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
407 // for details. All rights reserved. Use of this source code is governed by a 416 // for details. All rights reserved. Use of this source code is governed by a
408 // BSD-style license that can be found in the LICENSE file. 417 // BSD-style license that can be found in the LICENSE file.
409 418
410 // WARNING: Do not edit - generated code. 419 // WARNING: Do not edit - generated code.
411 420
412 421
413 @DocsEditable 422 @DocsEditable
414 @DomName('SVGAnimatedInteger') 423 @DomName('SVGAnimatedInteger')
415 @Unstable 424 @Unstable
416 class AnimatedInteger extends NativeFieldWrapperClass1 { 425 class AnimatedInteger extends NativeFieldWrapperClass1 {
417 AnimatedInteger.internal(); 426 // To suppress missing implicit constructor warnings.
427 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); }
418 428
419 @DomName('SVGAnimatedInteger.animVal') 429 @DomName('SVGAnimatedInteger.animVal')
420 @DocsEditable 430 @DocsEditable
421 int get animVal native "SVGAnimatedInteger_animVal_Getter"; 431 int get animVal native "SVGAnimatedInteger_animVal_Getter";
422 432
423 @DomName('SVGAnimatedInteger.baseVal') 433 @DomName('SVGAnimatedInteger.baseVal')
424 @DocsEditable 434 @DocsEditable
425 int get baseVal native "SVGAnimatedInteger_baseVal_Getter"; 435 int get baseVal native "SVGAnimatedInteger_baseVal_Getter";
426 436
427 @DomName('SVGAnimatedInteger.baseVal') 437 @DomName('SVGAnimatedInteger.baseVal')
428 @DocsEditable 438 @DocsEditable
429 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter"; 439 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter";
430 440
431 } 441 }
432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
433 // for details. All rights reserved. Use of this source code is governed by a 443 // for details. All rights reserved. Use of this source code is governed by a
434 // BSD-style license that can be found in the LICENSE file. 444 // BSD-style license that can be found in the LICENSE file.
435 445
436 // WARNING: Do not edit - generated code. 446 // WARNING: Do not edit - generated code.
437 447
438 448
439 @DocsEditable 449 @DocsEditable
440 @DomName('SVGAnimatedLength') 450 @DomName('SVGAnimatedLength')
441 @Unstable 451 @Unstable
442 class AnimatedLength extends NativeFieldWrapperClass1 { 452 class AnimatedLength extends NativeFieldWrapperClass1 {
443 AnimatedLength.internal(); 453 // To suppress missing implicit constructor warnings.
454 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); }
444 455
445 @DomName('SVGAnimatedLength.animVal') 456 @DomName('SVGAnimatedLength.animVal')
446 @DocsEditable 457 @DocsEditable
447 Length get animVal native "SVGAnimatedLength_animVal_Getter"; 458 Length get animVal native "SVGAnimatedLength_animVal_Getter";
448 459
449 @DomName('SVGAnimatedLength.baseVal') 460 @DomName('SVGAnimatedLength.baseVal')
450 @DocsEditable 461 @DocsEditable
451 Length get baseVal native "SVGAnimatedLength_baseVal_Getter"; 462 Length get baseVal native "SVGAnimatedLength_baseVal_Getter";
452 463
453 } 464 }
454 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
455 // for details. All rights reserved. Use of this source code is governed by a 466 // for details. All rights reserved. Use of this source code is governed by a
456 // BSD-style license that can be found in the LICENSE file. 467 // BSD-style license that can be found in the LICENSE file.
457 468
458 // WARNING: Do not edit - generated code. 469 // WARNING: Do not edit - generated code.
459 470
460 471
461 @DocsEditable 472 @DocsEditable
462 @DomName('SVGAnimatedLengthList') 473 @DomName('SVGAnimatedLengthList')
463 @Unstable 474 @Unstable
464 class AnimatedLengthList extends NativeFieldWrapperClass1 { 475 class AnimatedLengthList extends NativeFieldWrapperClass1 {
465 AnimatedLengthList.internal(); 476 // To suppress missing implicit constructor warnings.
477 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); }
466 478
467 @DomName('SVGAnimatedLengthList.animVal') 479 @DomName('SVGAnimatedLengthList.animVal')
468 @DocsEditable 480 @DocsEditable
469 LengthList get animVal native "SVGAnimatedLengthList_animVal_Getter"; 481 LengthList get animVal native "SVGAnimatedLengthList_animVal_Getter";
470 482
471 @DomName('SVGAnimatedLengthList.baseVal') 483 @DomName('SVGAnimatedLengthList.baseVal')
472 @DocsEditable 484 @DocsEditable
473 LengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter"; 485 LengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter";
474 486
475 } 487 }
476 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 488 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
477 // for details. All rights reserved. Use of this source code is governed by a 489 // for details. All rights reserved. Use of this source code is governed by a
478 // BSD-style license that can be found in the LICENSE file. 490 // BSD-style license that can be found in the LICENSE file.
479 491
480 // WARNING: Do not edit - generated code. 492 // WARNING: Do not edit - generated code.
481 493
482 494
483 @DocsEditable 495 @DocsEditable
484 @DomName('SVGAnimatedNumber') 496 @DomName('SVGAnimatedNumber')
485 @Unstable 497 @Unstable
486 class AnimatedNumber extends NativeFieldWrapperClass1 { 498 class AnimatedNumber extends NativeFieldWrapperClass1 {
487 AnimatedNumber.internal(); 499 // To suppress missing implicit constructor warnings.
500 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); }
488 501
489 @DomName('SVGAnimatedNumber.animVal') 502 @DomName('SVGAnimatedNumber.animVal')
490 @DocsEditable 503 @DocsEditable
491 num get animVal native "SVGAnimatedNumber_animVal_Getter"; 504 num get animVal native "SVGAnimatedNumber_animVal_Getter";
492 505
493 @DomName('SVGAnimatedNumber.baseVal') 506 @DomName('SVGAnimatedNumber.baseVal')
494 @DocsEditable 507 @DocsEditable
495 num get baseVal native "SVGAnimatedNumber_baseVal_Getter"; 508 num get baseVal native "SVGAnimatedNumber_baseVal_Getter";
496 509
497 @DomName('SVGAnimatedNumber.baseVal') 510 @DomName('SVGAnimatedNumber.baseVal')
498 @DocsEditable 511 @DocsEditable
499 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter"; 512 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter";
500 513
501 } 514 }
502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
503 // for details. All rights reserved. Use of this source code is governed by a 516 // for details. All rights reserved. Use of this source code is governed by a
504 // BSD-style license that can be found in the LICENSE file. 517 // BSD-style license that can be found in the LICENSE file.
505 518
506 // WARNING: Do not edit - generated code. 519 // WARNING: Do not edit - generated code.
507 520
508 521
509 @DocsEditable 522 @DocsEditable
510 @DomName('SVGAnimatedNumberList') 523 @DomName('SVGAnimatedNumberList')
511 @Unstable 524 @Unstable
512 class AnimatedNumberList extends NativeFieldWrapperClass1 { 525 class AnimatedNumberList extends NativeFieldWrapperClass1 {
513 AnimatedNumberList.internal(); 526 // To suppress missing implicit constructor warnings.
527 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); }
514 528
515 @DomName('SVGAnimatedNumberList.animVal') 529 @DomName('SVGAnimatedNumberList.animVal')
516 @DocsEditable 530 @DocsEditable
517 NumberList get animVal native "SVGAnimatedNumberList_animVal_Getter"; 531 NumberList get animVal native "SVGAnimatedNumberList_animVal_Getter";
518 532
519 @DomName('SVGAnimatedNumberList.baseVal') 533 @DomName('SVGAnimatedNumberList.baseVal')
520 @DocsEditable 534 @DocsEditable
521 NumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter"; 535 NumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter";
522 536
523 } 537 }
524 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 538 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
525 // for details. All rights reserved. Use of this source code is governed by a 539 // for details. All rights reserved. Use of this source code is governed by a
526 // BSD-style license that can be found in the LICENSE file. 540 // BSD-style license that can be found in the LICENSE file.
527 541
528 // WARNING: Do not edit - generated code. 542 // WARNING: Do not edit - generated code.
529 543
530 544
531 @DocsEditable 545 @DocsEditable
532 @DomName('SVGAnimatedPreserveAspectRatio') 546 @DomName('SVGAnimatedPreserveAspectRatio')
533 @Unstable 547 @Unstable
534 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 { 548 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 {
535 AnimatedPreserveAspectRatio.internal(); 549 // To suppress missing implicit constructor warnings.
550 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); }
536 551
537 @DomName('SVGAnimatedPreserveAspectRatio.animVal') 552 @DomName('SVGAnimatedPreserveAspectRatio.animVal')
538 @DocsEditable 553 @DocsEditable
539 PreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_animVal _Getter"; 554 PreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_animVal _Getter";
540 555
541 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') 556 @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
542 @DocsEditable 557 @DocsEditable
543 PreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_baseVal _Getter"; 558 PreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_baseVal _Getter";
544 559
545 } 560 }
546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 561 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
547 // for details. All rights reserved. Use of this source code is governed by a 562 // for details. All rights reserved. Use of this source code is governed by a
548 // BSD-style license that can be found in the LICENSE file. 563 // BSD-style license that can be found in the LICENSE file.
549 564
550 // WARNING: Do not edit - generated code. 565 // WARNING: Do not edit - generated code.
551 566
552 567
553 @DocsEditable 568 @DocsEditable
554 @DomName('SVGAnimatedRect') 569 @DomName('SVGAnimatedRect')
555 @Unstable 570 @Unstable
556 class AnimatedRect extends NativeFieldWrapperClass1 { 571 class AnimatedRect extends NativeFieldWrapperClass1 {
557 AnimatedRect.internal(); 572 // To suppress missing implicit constructor warnings.
573 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); }
558 574
559 @DomName('SVGAnimatedRect.animVal') 575 @DomName('SVGAnimatedRect.animVal')
560 @DocsEditable 576 @DocsEditable
561 Rect get animVal native "SVGAnimatedRect_animVal_Getter"; 577 Rect get animVal native "SVGAnimatedRect_animVal_Getter";
562 578
563 @DomName('SVGAnimatedRect.baseVal') 579 @DomName('SVGAnimatedRect.baseVal')
564 @DocsEditable 580 @DocsEditable
565 Rect get baseVal native "SVGAnimatedRect_baseVal_Getter"; 581 Rect get baseVal native "SVGAnimatedRect_baseVal_Getter";
566 582
567 } 583 }
568 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
569 // for details. All rights reserved. Use of this source code is governed by a 585 // for details. All rights reserved. Use of this source code is governed by a
570 // BSD-style license that can be found in the LICENSE file. 586 // BSD-style license that can be found in the LICENSE file.
571 587
572 // WARNING: Do not edit - generated code. 588 // WARNING: Do not edit - generated code.
573 589
574 590
575 @DocsEditable 591 @DocsEditable
576 @DomName('SVGAnimatedString') 592 @DomName('SVGAnimatedString')
577 @Unstable 593 @Unstable
578 class AnimatedString extends NativeFieldWrapperClass1 { 594 class AnimatedString extends NativeFieldWrapperClass1 {
579 AnimatedString.internal(); 595 // To suppress missing implicit constructor warnings.
596 factory AnimatedString._() { throw new UnsupportedError("Not supported"); }
580 597
581 @DomName('SVGAnimatedString.animVal') 598 @DomName('SVGAnimatedString.animVal')
582 @DocsEditable 599 @DocsEditable
583 String get animVal native "SVGAnimatedString_animVal_Getter"; 600 String get animVal native "SVGAnimatedString_animVal_Getter";
584 601
585 @DomName('SVGAnimatedString.baseVal') 602 @DomName('SVGAnimatedString.baseVal')
586 @DocsEditable 603 @DocsEditable
587 String get baseVal native "SVGAnimatedString_baseVal_Getter"; 604 String get baseVal native "SVGAnimatedString_baseVal_Getter";
588 605
589 @DomName('SVGAnimatedString.baseVal') 606 @DomName('SVGAnimatedString.baseVal')
590 @DocsEditable 607 @DocsEditable
591 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter"; 608 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter";
592 609
593 } 610 }
594 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 611 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
595 // for details. All rights reserved. Use of this source code is governed by a 612 // for details. All rights reserved. Use of this source code is governed by a
596 // BSD-style license that can be found in the LICENSE file. 613 // BSD-style license that can be found in the LICENSE file.
597 614
598 // WARNING: Do not edit - generated code. 615 // WARNING: Do not edit - generated code.
599 616
600 617
601 @DocsEditable 618 @DocsEditable
602 @DomName('SVGAnimatedTransformList') 619 @DomName('SVGAnimatedTransformList')
603 @Unstable 620 @Unstable
604 class AnimatedTransformList extends NativeFieldWrapperClass1 { 621 class AnimatedTransformList extends NativeFieldWrapperClass1 {
605 AnimatedTransformList.internal(); 622 // To suppress missing implicit constructor warnings.
623 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); }
606 624
607 @DomName('SVGAnimatedTransformList.animVal') 625 @DomName('SVGAnimatedTransformList.animVal')
608 @DocsEditable 626 @DocsEditable
609 TransformList get animVal native "SVGAnimatedTransformList_animVal_Getter"; 627 TransformList get animVal native "SVGAnimatedTransformList_animVal_Getter";
610 628
611 @DomName('SVGAnimatedTransformList.baseVal') 629 @DomName('SVGAnimatedTransformList.baseVal')
612 @DocsEditable 630 @DocsEditable
613 TransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter"; 631 TransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter";
614 632
615 } 633 }
616 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 634 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
617 // for details. All rights reserved. Use of this source code is governed by a 635 // for details. All rights reserved. Use of this source code is governed by a
618 // BSD-style license that can be found in the LICENSE file. 636 // BSD-style license that can be found in the LICENSE file.
619 637
620 // WARNING: Do not edit - generated code. 638 // WARNING: Do not edit - generated code.
621 639
622 640
623 @DocsEditable 641 @DocsEditable
624 @DomName('SVGAnimationElement') 642 @DomName('SVGAnimationElement')
625 @Unstable 643 @Unstable
626 class AnimationElement extends SvgElement implements Tests, ElementTimeControl, ExternalResourcesRequired { 644 class AnimationElement extends SvgElement implements Tests, ElementTimeControl, ExternalResourcesRequired {
627 AnimationElement.internal() : super.internal(); 645 // To suppress missing implicit constructor warnings.
646 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
628 647
629 @DomName('SVGAnimationElement.SVGAnimationElement') 648 @DomName('SVGAnimationElement.SVGAnimationElement')
630 @DocsEditable 649 @DocsEditable
631 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 650 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
632 651
633 @DomName('SVGAnimationElement.targetElement') 652 @DomName('SVGAnimationElement.targetElement')
634 @DocsEditable 653 @DocsEditable
635 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ; 654 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter" ;
636 655
637 @DomName('SVGAnimationElement.getCurrentTime') 656 @DomName('SVGAnimationElement.getCurrentTime')
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 // for details. All rights reserved. Use of this source code is governed by a 706 // for details. All rights reserved. Use of this source code is governed by a
688 // BSD-style license that can be found in the LICENSE file. 707 // BSD-style license that can be found in the LICENSE file.
689 708
690 // WARNING: Do not edit - generated code. 709 // WARNING: Do not edit - generated code.
691 710
692 711
693 @DocsEditable 712 @DocsEditable
694 @DomName('SVGCircleElement') 713 @DomName('SVGCircleElement')
695 @Unstable 714 @Unstable
696 class CircleElement extends StyledElement implements Transformable, Tests, Exter nalResourcesRequired, LangSpace { 715 class CircleElement extends StyledElement implements Transformable, Tests, Exter nalResourcesRequired, LangSpace {
697 CircleElement.internal() : super.internal(); 716 // To suppress missing implicit constructor warnings.
717 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
698 718
699 @DomName('SVGCircleElement.SVGCircleElement') 719 @DomName('SVGCircleElement.SVGCircleElement')
700 @DocsEditable 720 @DocsEditable
701 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 721 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
702 722
703 @DomName('SVGCircleElement.cx') 723 @DomName('SVGCircleElement.cx')
704 @DocsEditable 724 @DocsEditable
705 AnimatedLength get cx native "SVGCircleElement_cx_Getter"; 725 AnimatedLength get cx native "SVGCircleElement_cx_Getter";
706 726
707 @DomName('SVGCircleElement.cy') 727 @DomName('SVGCircleElement.cy')
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 // for details. All rights reserved. Use of this source code is governed by a 801 // for details. All rights reserved. Use of this source code is governed by a
782 // BSD-style license that can be found in the LICENSE file. 802 // BSD-style license that can be found in the LICENSE file.
783 803
784 // WARNING: Do not edit - generated code. 804 // WARNING: Do not edit - generated code.
785 805
786 806
787 @DocsEditable 807 @DocsEditable
788 @DomName('SVGClipPathElement') 808 @DomName('SVGClipPathElement')
789 @Unstable 809 @Unstable
790 class ClipPathElement extends StyledElement implements Transformable, Tests, Ext ernalResourcesRequired, LangSpace { 810 class ClipPathElement extends StyledElement implements Transformable, Tests, Ext ernalResourcesRequired, LangSpace {
791 ClipPathElement.internal() : super.internal(); 811 // To suppress missing implicit constructor warnings.
812 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
792 813
793 @DomName('SVGClipPathElement.SVGClipPathElement') 814 @DomName('SVGClipPathElement.SVGClipPathElement')
794 @DocsEditable 815 @DocsEditable
795 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 816 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
796 817
797 @DomName('SVGClipPathElement.clipPathUnits') 818 @DomName('SVGClipPathElement.clipPathUnits')
798 @DocsEditable 819 @DocsEditable
799 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter"; 820 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits _Getter";
800 821
801 @DomName('SVGClipPathElement.externalResourcesRequired') 822 @DomName('SVGClipPathElement.externalResourcesRequired')
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 // for details. All rights reserved. Use of this source code is governed by a 888 // for details. All rights reserved. Use of this source code is governed by a
868 // BSD-style license that can be found in the LICENSE file. 889 // BSD-style license that can be found in the LICENSE file.
869 890
870 // WARNING: Do not edit - generated code. 891 // WARNING: Do not edit - generated code.
871 892
872 893
873 @DocsEditable 894 @DocsEditable
874 @DomName('SVGDefsElement') 895 @DomName('SVGDefsElement')
875 @Unstable 896 @Unstable
876 class DefsElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace { 897 class DefsElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace {
877 DefsElement.internal() : super.internal(); 898 // To suppress missing implicit constructor warnings.
899 factory DefsElement._() { throw new UnsupportedError("Not supported"); }
878 900
879 @DomName('SVGDefsElement.SVGDefsElement') 901 @DomName('SVGDefsElement.SVGDefsElement')
880 @DocsEditable 902 @DocsEditable
881 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 903 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
882 904
883 @DomName('SVGDefsElement.externalResourcesRequired') 905 @DomName('SVGDefsElement.externalResourcesRequired')
884 @DocsEditable 906 @DocsEditable
885 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter"; 907 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR esourcesRequired_Getter";
886 908
887 @DomName('SVGDefsElement.xmllang') 909 @DomName('SVGDefsElement.xmllang')
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 // for details. All rights reserved. Use of this source code is governed by a 971 // for details. All rights reserved. Use of this source code is governed by a
950 // BSD-style license that can be found in the LICENSE file. 972 // BSD-style license that can be found in the LICENSE file.
951 973
952 // WARNING: Do not edit - generated code. 974 // WARNING: Do not edit - generated code.
953 975
954 976
955 @DocsEditable 977 @DocsEditable
956 @DomName('SVGDescElement') 978 @DomName('SVGDescElement')
957 @Unstable 979 @Unstable
958 class DescElement extends StyledElement implements LangSpace { 980 class DescElement extends StyledElement implements LangSpace {
959 DescElement.internal() : super.internal(); 981 // To suppress missing implicit constructor warnings.
982 factory DescElement._() { throw new UnsupportedError("Not supported"); }
960 983
961 @DomName('SVGDescElement.SVGDescElement') 984 @DomName('SVGDescElement.SVGDescElement')
962 @DocsEditable 985 @DocsEditable
963 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 986 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
964 987
965 @DomName('SVGDescElement.xmllang') 988 @DomName('SVGDescElement.xmllang')
966 @DocsEditable 989 @DocsEditable
967 String get xmllang native "SVGDescElement_xmllang_Getter"; 990 String get xmllang native "SVGDescElement_xmllang_Getter";
968 991
969 @DomName('SVGDescElement.xmllang') 992 @DomName('SVGDescElement.xmllang')
(...skipping 13 matching lines...) Expand all
983 // for details. All rights reserved. Use of this source code is governed by a 1006 // for details. All rights reserved. Use of this source code is governed by a
984 // BSD-style license that can be found in the LICENSE file. 1007 // BSD-style license that can be found in the LICENSE file.
985 1008
986 // WARNING: Do not edit - generated code. 1009 // WARNING: Do not edit - generated code.
987 1010
988 1011
989 @DocsEditable 1012 @DocsEditable
990 @DomName('SVGElementInstance') 1013 @DomName('SVGElementInstance')
991 @Unstable 1014 @Unstable
992 class ElementInstance extends EventTarget { 1015 class ElementInstance extends EventTarget {
993 ElementInstance.internal() : super.internal(); 1016 // To suppress missing implicit constructor warnings.
1017 factory ElementInstance._() { throw new UnsupportedError("Not supported"); }
994 1018
995 @DomName('SVGElementInstance.abortEvent') 1019 @DomName('SVGElementInstance.abortEvent')
996 @DocsEditable 1020 @DocsEditable
997 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider <Event>('abort'); 1021 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider <Event>('abort');
998 1022
999 @DomName('SVGElementInstance.beforecopyEvent') 1023 @DomName('SVGElementInstance.beforecopyEvent')
1000 @DocsEditable 1024 @DocsEditable
1001 static const EventStreamProvider<Event> beforeCopyEvent = const EventStreamPro vider<Event>('beforecopy'); 1025 static const EventStreamProvider<Event> beforeCopyEvent = const EventStreamPro vider<Event>('beforecopy');
1002 1026
1003 @DomName('SVGElementInstance.beforecutEvent') 1027 @DomName('SVGElementInstance.beforecutEvent')
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 // for details. All rights reserved. Use of this source code is governed by a 1377 // for details. All rights reserved. Use of this source code is governed by a
1354 // BSD-style license that can be found in the LICENSE file. 1378 // BSD-style license that can be found in the LICENSE file.
1355 1379
1356 // WARNING: Do not edit - generated code. 1380 // WARNING: Do not edit - generated code.
1357 1381
1358 1382
1359 @DocsEditable 1383 @DocsEditable
1360 @DomName('SVGEllipseElement') 1384 @DomName('SVGEllipseElement')
1361 @Unstable 1385 @Unstable
1362 class EllipseElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace { 1386 class EllipseElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace {
1363 EllipseElement.internal() : super.internal(); 1387 // To suppress missing implicit constructor warnings.
1388 factory EllipseElement._() { throw new UnsupportedError("Not supported"); }
1364 1389
1365 @DomName('SVGEllipseElement.SVGEllipseElement') 1390 @DomName('SVGEllipseElement.SVGEllipseElement')
1366 @DocsEditable 1391 @DocsEditable
1367 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1392 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1368 1393
1369 @DomName('SVGEllipseElement.cx') 1394 @DomName('SVGEllipseElement.cx')
1370 @DocsEditable 1395 @DocsEditable
1371 AnimatedLength get cx native "SVGEllipseElement_cx_Getter"; 1396 AnimatedLength get cx native "SVGEllipseElement_cx_Getter";
1372 1397
1373 @DomName('SVGEllipseElement.cy') 1398 @DomName('SVGEllipseElement.cy')
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 // for details. All rights reserved. Use of this source code is governed by a 1476 // for details. All rights reserved. Use of this source code is governed by a
1452 // BSD-style license that can be found in the LICENSE file. 1477 // BSD-style license that can be found in the LICENSE file.
1453 1478
1454 // WARNING: Do not edit - generated code. 1479 // WARNING: Do not edit - generated code.
1455 1480
1456 1481
1457 @DocsEditable 1482 @DocsEditable
1458 @DomName('SVGExternalResourcesRequired') 1483 @DomName('SVGExternalResourcesRequired')
1459 @Unstable 1484 @Unstable
1460 class ExternalResourcesRequired extends NativeFieldWrapperClass1 { 1485 class ExternalResourcesRequired extends NativeFieldWrapperClass1 {
1461 ExternalResourcesRequired.internal(); 1486 // To suppress missing implicit constructor warnings.
1487 factory ExternalResourcesRequired._() { throw new UnsupportedError("Not suppor ted"); }
1462 1488
1463 /// Checks if this type is supported on the current platform. 1489 /// Checks if this type is supported on the current platform.
1464 static bool supported(SvgElement element) => true; 1490 static bool supported(SvgElement element) => true;
1465 1491
1466 @DomName('SVGExternalResourcesRequired.externalResourcesRequired') 1492 @DomName('SVGExternalResourcesRequired.externalResourcesRequired')
1467 @DocsEditable 1493 @DocsEditable
1468 AnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesRequ ired_externalResourcesRequired_Getter"; 1494 AnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesRequ ired_externalResourcesRequired_Getter";
1469 1495
1470 } 1496 }
1471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1497 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1472 // for details. All rights reserved. Use of this source code is governed by a 1498 // for details. All rights reserved. Use of this source code is governed by a
1473 // BSD-style license that can be found in the LICENSE file. 1499 // BSD-style license that can be found in the LICENSE file.
1474 1500
1475 // WARNING: Do not edit - generated code. 1501 // WARNING: Do not edit - generated code.
1476 1502
1477 1503
1478 @DocsEditable 1504 @DocsEditable
1479 @DomName('SVGFEBlendElement') 1505 @DomName('SVGFEBlendElement')
1480 @SupportedBrowser(SupportedBrowser.CHROME) 1506 @SupportedBrowser(SupportedBrowser.CHROME)
1481 @SupportedBrowser(SupportedBrowser.FIREFOX) 1507 @SupportedBrowser(SupportedBrowser.FIREFOX)
1482 @SupportedBrowser(SupportedBrowser.IE, '10') 1508 @SupportedBrowser(SupportedBrowser.IE, '10')
1483 @SupportedBrowser(SupportedBrowser.SAFARI) 1509 @SupportedBrowser(SupportedBrowser.SAFARI)
1484 @Unstable 1510 @Unstable
1485 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes { 1511 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes {
1486 FEBlendElement.internal() : super.internal(); 1512 // To suppress missing implicit constructor warnings.
1513 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); }
1487 1514
1488 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1515 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1489 @DocsEditable 1516 @DocsEditable
1490 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1517 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1491 1518
1492 /// Checks if this type is supported on the current platform. 1519 /// Checks if this type is supported on the current platform.
1493 static bool get supported => true; 1520 static bool get supported => true;
1494 1521
1495 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN') 1522 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
1496 @DocsEditable 1523 @DocsEditable
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 1584
1558 1585
1559 @DocsEditable 1586 @DocsEditable
1560 @DomName('SVGFEColorMatrixElement') 1587 @DomName('SVGFEColorMatrixElement')
1561 @SupportedBrowser(SupportedBrowser.CHROME) 1588 @SupportedBrowser(SupportedBrowser.CHROME)
1562 @SupportedBrowser(SupportedBrowser.FIREFOX) 1589 @SupportedBrowser(SupportedBrowser.FIREFOX)
1563 @SupportedBrowser(SupportedBrowser.IE, '10') 1590 @SupportedBrowser(SupportedBrowser.IE, '10')
1564 @SupportedBrowser(SupportedBrowser.SAFARI) 1591 @SupportedBrowser(SupportedBrowser.SAFARI)
1565 @Unstable 1592 @Unstable
1566 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes { 1593 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes {
1567 FEColorMatrixElement.internal() : super.internal(); 1594 // To suppress missing implicit constructor warnings.
1595 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; }
1568 1596
1569 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1597 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1570 @DocsEditable 1598 @DocsEditable
1571 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1599 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1572 1600
1573 /// Checks if this type is supported on the current platform. 1601 /// Checks if this type is supported on the current platform.
1574 static bool get supported => true; 1602 static bool get supported => true;
1575 1603
1576 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE') 1604 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
1577 @DocsEditable 1605 @DocsEditable
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 1662
1635 1663
1636 @DocsEditable 1664 @DocsEditable
1637 @DomName('SVGFEComponentTransferElement') 1665 @DomName('SVGFEComponentTransferElement')
1638 @SupportedBrowser(SupportedBrowser.CHROME) 1666 @SupportedBrowser(SupportedBrowser.CHROME)
1639 @SupportedBrowser(SupportedBrowser.FIREFOX) 1667 @SupportedBrowser(SupportedBrowser.FIREFOX)
1640 @SupportedBrowser(SupportedBrowser.IE, '10') 1668 @SupportedBrowser(SupportedBrowser.IE, '10')
1641 @SupportedBrowser(SupportedBrowser.SAFARI) 1669 @SupportedBrowser(SupportedBrowser.SAFARI)
1642 @Unstable 1670 @Unstable
1643 class FEComponentTransferElement extends StyledElement implements FilterPrimitiv eStandardAttributes { 1671 class FEComponentTransferElement extends StyledElement implements FilterPrimitiv eStandardAttributes {
1644 FEComponentTransferElement.internal() : super.internal(); 1672 // To suppress missing implicit constructor warnings.
1673 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); }
1645 1674
1646 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') 1675 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
1647 @DocsEditable 1676 @DocsEditable
1648 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer"); 1677 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer");
1649 1678
1650 /// Checks if this type is supported on the current platform. 1679 /// Checks if this type is supported on the current platform.
1651 static bool get supported => true; 1680 static bool get supported => true;
1652 1681
1653 @DomName('SVGFEComponentTransferElement.in1') 1682 @DomName('SVGFEComponentTransferElement.in1')
1654 @DocsEditable 1683 @DocsEditable
(...skipping 24 matching lines...) Expand all
1679 // for details. All rights reserved. Use of this source code is governed by a 1708 // for details. All rights reserved. Use of this source code is governed by a
1680 // BSD-style license that can be found in the LICENSE file. 1709 // BSD-style license that can be found in the LICENSE file.
1681 1710
1682 // WARNING: Do not edit - generated code. 1711 // WARNING: Do not edit - generated code.
1683 1712
1684 1713
1685 @DocsEditable 1714 @DocsEditable
1686 @DomName('SVGFECompositeElement') 1715 @DomName('SVGFECompositeElement')
1687 @Unstable 1716 @Unstable
1688 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes { 1717 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes {
1689 FECompositeElement.internal() : super.internal(); 1718 // To suppress missing implicit constructor warnings.
1719 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
1690 1720
1691 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') 1721 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1692 @DocsEditable 1722 @DocsEditable
1693 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1723 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1694 1724
1695 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP') 1725 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1696 @DocsEditable 1726 @DocsEditable
1697 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1727 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1698 1728
1699 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN') 1729 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 1803
1774 1804
1775 @DocsEditable 1805 @DocsEditable
1776 @DomName('SVGFEConvolveMatrixElement') 1806 @DomName('SVGFEConvolveMatrixElement')
1777 @SupportedBrowser(SupportedBrowser.CHROME) 1807 @SupportedBrowser(SupportedBrowser.CHROME)
1778 @SupportedBrowser(SupportedBrowser.FIREFOX) 1808 @SupportedBrowser(SupportedBrowser.FIREFOX)
1779 @SupportedBrowser(SupportedBrowser.IE, '10') 1809 @SupportedBrowser(SupportedBrowser.IE, '10')
1780 @SupportedBrowser(SupportedBrowser.SAFARI) 1810 @SupportedBrowser(SupportedBrowser.SAFARI)
1781 @Unstable 1811 @Unstable
1782 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes { 1812 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes {
1783 FEConvolveMatrixElement.internal() : super.internal(); 1813 // To suppress missing implicit constructor warnings.
1814 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); }
1784 1815
1785 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1816 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1786 @DocsEditable 1817 @DocsEditable
1787 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1818 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1788 1819
1789 /// Checks if this type is supported on the current platform. 1820 /// Checks if this type is supported on the current platform.
1790 static bool get supported => true; 1821 static bool get supported => true;
1791 1822
1792 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE') 1823 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
1793 @DocsEditable 1824 @DocsEditable
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1882 1913
1883 1914
1884 @DocsEditable 1915 @DocsEditable
1885 @DomName('SVGFEDiffuseLightingElement') 1916 @DomName('SVGFEDiffuseLightingElement')
1886 @SupportedBrowser(SupportedBrowser.CHROME) 1917 @SupportedBrowser(SupportedBrowser.CHROME)
1887 @SupportedBrowser(SupportedBrowser.FIREFOX) 1918 @SupportedBrowser(SupportedBrowser.FIREFOX)
1888 @SupportedBrowser(SupportedBrowser.IE, '10') 1919 @SupportedBrowser(SupportedBrowser.IE, '10')
1889 @SupportedBrowser(SupportedBrowser.SAFARI) 1920 @SupportedBrowser(SupportedBrowser.SAFARI)
1890 @Unstable 1921 @Unstable
1891 class FEDiffuseLightingElement extends StyledElement implements FilterPrimitiveS tandardAttributes { 1922 class FEDiffuseLightingElement extends StyledElement implements FilterPrimitiveS tandardAttributes {
1892 FEDiffuseLightingElement.internal() : super.internal(); 1923 // To suppress missing implicit constructor warnings.
1924 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); }
1893 1925
1894 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') 1926 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
1895 @DocsEditable 1927 @DocsEditable
1896 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting"); 1928 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting");
1897 1929
1898 /// Checks if this type is supported on the current platform. 1930 /// Checks if this type is supported on the current platform.
1899 static bool get supported => true; 1931 static bool get supported => true;
1900 1932
1901 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 1933 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
1902 @DocsEditable 1934 @DocsEditable
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1947 1979
1948 1980
1949 @DocsEditable 1981 @DocsEditable
1950 @DomName('SVGFEDisplacementMapElement') 1982 @DomName('SVGFEDisplacementMapElement')
1951 @SupportedBrowser(SupportedBrowser.CHROME) 1983 @SupportedBrowser(SupportedBrowser.CHROME)
1952 @SupportedBrowser(SupportedBrowser.FIREFOX) 1984 @SupportedBrowser(SupportedBrowser.FIREFOX)
1953 @SupportedBrowser(SupportedBrowser.IE, '10') 1985 @SupportedBrowser(SupportedBrowser.IE, '10')
1954 @SupportedBrowser(SupportedBrowser.SAFARI) 1986 @SupportedBrowser(SupportedBrowser.SAFARI)
1955 @Unstable 1987 @Unstable
1956 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes { 1988 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes {
1957 FEDisplacementMapElement.internal() : super.internal(); 1989 // To suppress missing implicit constructor warnings.
1990 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); }
1958 1991
1959 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1992 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1960 @DocsEditable 1993 @DocsEditable
1961 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1994 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1962 1995
1963 /// Checks if this type is supported on the current platform. 1996 /// Checks if this type is supported on the current platform.
1964 static bool get supported => true; 1997 static bool get supported => true;
1965 1998
1966 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A') 1999 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
1967 @DocsEditable 2000 @DocsEditable
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 2065
2033 2066
2034 @DocsEditable 2067 @DocsEditable
2035 @DomName('SVGFEDistantLightElement') 2068 @DomName('SVGFEDistantLightElement')
2036 @SupportedBrowser(SupportedBrowser.CHROME) 2069 @SupportedBrowser(SupportedBrowser.CHROME)
2037 @SupportedBrowser(SupportedBrowser.FIREFOX) 2070 @SupportedBrowser(SupportedBrowser.FIREFOX)
2038 @SupportedBrowser(SupportedBrowser.IE, '10') 2071 @SupportedBrowser(SupportedBrowser.IE, '10')
2039 @SupportedBrowser(SupportedBrowser.SAFARI) 2072 @SupportedBrowser(SupportedBrowser.SAFARI)
2040 @Unstable 2073 @Unstable
2041 class FEDistantLightElement extends SvgElement { 2074 class FEDistantLightElement extends SvgElement {
2042 FEDistantLightElement.internal() : super.internal(); 2075 // To suppress missing implicit constructor warnings.
2076 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported" ); }
2043 2077
2044 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') 2078 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement')
2045 @DocsEditable 2079 @DocsEditable
2046 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight"); 2080 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight");
2047 2081
2048 /// Checks if this type is supported on the current platform. 2082 /// Checks if this type is supported on the current platform.
2049 static bool get supported => true; 2083 static bool get supported => true;
2050 2084
2051 @DomName('SVGFEDistantLightElement.azimuth') 2085 @DomName('SVGFEDistantLightElement.azimuth')
2052 @DocsEditable 2086 @DocsEditable
(...skipping 12 matching lines...) Expand all
2065 2099
2066 2100
2067 @DocsEditable 2101 @DocsEditable
2068 @DomName('SVGFEFloodElement') 2102 @DomName('SVGFEFloodElement')
2069 @SupportedBrowser(SupportedBrowser.CHROME) 2103 @SupportedBrowser(SupportedBrowser.CHROME)
2070 @SupportedBrowser(SupportedBrowser.FIREFOX) 2104 @SupportedBrowser(SupportedBrowser.FIREFOX)
2071 @SupportedBrowser(SupportedBrowser.IE, '10') 2105 @SupportedBrowser(SupportedBrowser.IE, '10')
2072 @SupportedBrowser(SupportedBrowser.SAFARI) 2106 @SupportedBrowser(SupportedBrowser.SAFARI)
2073 @Unstable 2107 @Unstable
2074 class FEFloodElement extends StyledElement implements FilterPrimitiveStandardAtt ributes { 2108 class FEFloodElement extends StyledElement implements FilterPrimitiveStandardAtt ributes {
2075 FEFloodElement.internal() : super.internal(); 2109 // To suppress missing implicit constructor warnings.
2110 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); }
2076 2111
2077 @DomName('SVGFEFloodElement.SVGFEFloodElement') 2112 @DomName('SVGFEFloodElement.SVGFEFloodElement')
2078 @DocsEditable 2113 @DocsEditable
2079 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood"); 2114 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood");
2080 2115
2081 /// Checks if this type is supported on the current platform. 2116 /// Checks if this type is supported on the current platform.
2082 static bool get supported => true; 2117 static bool get supported => true;
2083 2118
2084 @DomName('SVGFEFloodElement.height') 2119 @DomName('SVGFEFloodElement.height')
2085 @DocsEditable 2120 @DocsEditable
(...skipping 24 matching lines...) Expand all
2110 2145
2111 2146
2112 @DocsEditable 2147 @DocsEditable
2113 @DomName('SVGFEFuncAElement') 2148 @DomName('SVGFEFuncAElement')
2114 @SupportedBrowser(SupportedBrowser.CHROME) 2149 @SupportedBrowser(SupportedBrowser.CHROME)
2115 @SupportedBrowser(SupportedBrowser.FIREFOX) 2150 @SupportedBrowser(SupportedBrowser.FIREFOX)
2116 @SupportedBrowser(SupportedBrowser.IE, '10') 2151 @SupportedBrowser(SupportedBrowser.IE, '10')
2117 @SupportedBrowser(SupportedBrowser.SAFARI) 2152 @SupportedBrowser(SupportedBrowser.SAFARI)
2118 @Unstable 2153 @Unstable
2119 class FEFuncAElement extends _SVGComponentTransferFunctionElement { 2154 class FEFuncAElement extends _SVGComponentTransferFunctionElement {
2120 FEFuncAElement.internal() : super.internal(); 2155 // To suppress missing implicit constructor warnings.
2156 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); }
2121 2157
2122 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') 2158 @DomName('SVGFEFuncAElement.SVGFEFuncAElement')
2123 @DocsEditable 2159 @DocsEditable
2124 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA"); 2160 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA");
2125 2161
2126 /// Checks if this type is supported on the current platform. 2162 /// Checks if this type is supported on the current platform.
2127 static bool get supported => true; 2163 static bool get supported => true;
2128 2164
2129 } 2165 }
2130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2166 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2131 // for details. All rights reserved. Use of this source code is governed by a 2167 // for details. All rights reserved. Use of this source code is governed by a
2132 // BSD-style license that can be found in the LICENSE file. 2168 // BSD-style license that can be found in the LICENSE file.
2133 2169
2134 // WARNING: Do not edit - generated code. 2170 // WARNING: Do not edit - generated code.
2135 2171
2136 2172
2137 @DocsEditable 2173 @DocsEditable
2138 @DomName('SVGFEFuncBElement') 2174 @DomName('SVGFEFuncBElement')
2139 @SupportedBrowser(SupportedBrowser.CHROME) 2175 @SupportedBrowser(SupportedBrowser.CHROME)
2140 @SupportedBrowser(SupportedBrowser.FIREFOX) 2176 @SupportedBrowser(SupportedBrowser.FIREFOX)
2141 @SupportedBrowser(SupportedBrowser.IE, '10') 2177 @SupportedBrowser(SupportedBrowser.IE, '10')
2142 @SupportedBrowser(SupportedBrowser.SAFARI) 2178 @SupportedBrowser(SupportedBrowser.SAFARI)
2143 @Unstable 2179 @Unstable
2144 class FEFuncBElement extends _SVGComponentTransferFunctionElement { 2180 class FEFuncBElement extends _SVGComponentTransferFunctionElement {
2145 FEFuncBElement.internal() : super.internal(); 2181 // To suppress missing implicit constructor warnings.
2182 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); }
2146 2183
2147 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') 2184 @DomName('SVGFEFuncBElement.SVGFEFuncBElement')
2148 @DocsEditable 2185 @DocsEditable
2149 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB"); 2186 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB");
2150 2187
2151 /// Checks if this type is supported on the current platform. 2188 /// Checks if this type is supported on the current platform.
2152 static bool get supported => true; 2189 static bool get supported => true;
2153 2190
2154 } 2191 }
2155 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2156 // for details. All rights reserved. Use of this source code is governed by a 2193 // for details. All rights reserved. Use of this source code is governed by a
2157 // BSD-style license that can be found in the LICENSE file. 2194 // BSD-style license that can be found in the LICENSE file.
2158 2195
2159 // WARNING: Do not edit - generated code. 2196 // WARNING: Do not edit - generated code.
2160 2197
2161 2198
2162 @DocsEditable 2199 @DocsEditable
2163 @DomName('SVGFEFuncGElement') 2200 @DomName('SVGFEFuncGElement')
2164 @SupportedBrowser(SupportedBrowser.CHROME) 2201 @SupportedBrowser(SupportedBrowser.CHROME)
2165 @SupportedBrowser(SupportedBrowser.FIREFOX) 2202 @SupportedBrowser(SupportedBrowser.FIREFOX)
2166 @SupportedBrowser(SupportedBrowser.IE, '10') 2203 @SupportedBrowser(SupportedBrowser.IE, '10')
2167 @SupportedBrowser(SupportedBrowser.SAFARI) 2204 @SupportedBrowser(SupportedBrowser.SAFARI)
2168 @Unstable 2205 @Unstable
2169 class FEFuncGElement extends _SVGComponentTransferFunctionElement { 2206 class FEFuncGElement extends _SVGComponentTransferFunctionElement {
2170 FEFuncGElement.internal() : super.internal(); 2207 // To suppress missing implicit constructor warnings.
2208 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); }
2171 2209
2172 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') 2210 @DomName('SVGFEFuncGElement.SVGFEFuncGElement')
2173 @DocsEditable 2211 @DocsEditable
2174 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG"); 2212 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG");
2175 2213
2176 /// Checks if this type is supported on the current platform. 2214 /// Checks if this type is supported on the current platform.
2177 static bool get supported => true; 2215 static bool get supported => true;
2178 2216
2179 } 2217 }
2180 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2181 // for details. All rights reserved. Use of this source code is governed by a 2219 // for details. All rights reserved. Use of this source code is governed by a
2182 // BSD-style license that can be found in the LICENSE file. 2220 // BSD-style license that can be found in the LICENSE file.
2183 2221
2184 // WARNING: Do not edit - generated code. 2222 // WARNING: Do not edit - generated code.
2185 2223
2186 2224
2187 @DocsEditable 2225 @DocsEditable
2188 @DomName('SVGFEFuncRElement') 2226 @DomName('SVGFEFuncRElement')
2189 @SupportedBrowser(SupportedBrowser.CHROME) 2227 @SupportedBrowser(SupportedBrowser.CHROME)
2190 @SupportedBrowser(SupportedBrowser.FIREFOX) 2228 @SupportedBrowser(SupportedBrowser.FIREFOX)
2191 @SupportedBrowser(SupportedBrowser.IE, '10') 2229 @SupportedBrowser(SupportedBrowser.IE, '10')
2192 @SupportedBrowser(SupportedBrowser.SAFARI) 2230 @SupportedBrowser(SupportedBrowser.SAFARI)
2193 @Unstable 2231 @Unstable
2194 class FEFuncRElement extends _SVGComponentTransferFunctionElement { 2232 class FEFuncRElement extends _SVGComponentTransferFunctionElement {
2195 FEFuncRElement.internal() : super.internal(); 2233 // To suppress missing implicit constructor warnings.
2234 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); }
2196 2235
2197 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') 2236 @DomName('SVGFEFuncRElement.SVGFEFuncRElement')
2198 @DocsEditable 2237 @DocsEditable
2199 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR"); 2238 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR");
2200 2239
2201 /// Checks if this type is supported on the current platform. 2240 /// Checks if this type is supported on the current platform.
2202 static bool get supported => true; 2241 static bool get supported => true;
2203 2242
2204 } 2243 }
2205 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2206 // for details. All rights reserved. Use of this source code is governed by a 2245 // for details. All rights reserved. Use of this source code is governed by a
2207 // BSD-style license that can be found in the LICENSE file. 2246 // BSD-style license that can be found in the LICENSE file.
2208 2247
2209 // WARNING: Do not edit - generated code. 2248 // WARNING: Do not edit - generated code.
2210 2249
2211 2250
2212 @DocsEditable 2251 @DocsEditable
2213 @DomName('SVGFEGaussianBlurElement') 2252 @DomName('SVGFEGaussianBlurElement')
2214 @SupportedBrowser(SupportedBrowser.CHROME) 2253 @SupportedBrowser(SupportedBrowser.CHROME)
2215 @SupportedBrowser(SupportedBrowser.FIREFOX) 2254 @SupportedBrowser(SupportedBrowser.FIREFOX)
2216 @SupportedBrowser(SupportedBrowser.IE, '10') 2255 @SupportedBrowser(SupportedBrowser.IE, '10')
2217 @SupportedBrowser(SupportedBrowser.SAFARI) 2256 @SupportedBrowser(SupportedBrowser.SAFARI)
2218 @Unstable 2257 @Unstable
2219 class FEGaussianBlurElement extends StyledElement implements FilterPrimitiveStan dardAttributes { 2258 class FEGaussianBlurElement extends StyledElement implements FilterPrimitiveStan dardAttributes {
2220 FEGaussianBlurElement.internal() : super.internal(); 2259 // To suppress missing implicit constructor warnings.
2260 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); }
2221 2261
2222 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') 2262 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
2223 @DocsEditable 2263 @DocsEditable
2224 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur"); 2264 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur");
2225 2265
2226 /// Checks if this type is supported on the current platform. 2266 /// Checks if this type is supported on the current platform.
2227 static bool get supported => true; 2267 static bool get supported => true;
2228 2268
2229 @DomName('SVGFEGaussianBlurElement.in1') 2269 @DomName('SVGFEGaussianBlurElement.in1')
2230 @DocsEditable 2270 @DocsEditable
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 2311
2272 2312
2273 @DocsEditable 2313 @DocsEditable
2274 @DomName('SVGFEImageElement') 2314 @DomName('SVGFEImageElement')
2275 @SupportedBrowser(SupportedBrowser.CHROME) 2315 @SupportedBrowser(SupportedBrowser.CHROME)
2276 @SupportedBrowser(SupportedBrowser.FIREFOX) 2316 @SupportedBrowser(SupportedBrowser.FIREFOX)
2277 @SupportedBrowser(SupportedBrowser.IE, '10') 2317 @SupportedBrowser(SupportedBrowser.IE, '10')
2278 @SupportedBrowser(SupportedBrowser.SAFARI) 2318 @SupportedBrowser(SupportedBrowser.SAFARI)
2279 @Unstable 2319 @Unstable
2280 class FEImageElement extends StyledElement implements FilterPrimitiveStandardAtt ributes, UriReference, ExternalResourcesRequired, LangSpace { 2320 class FEImageElement extends StyledElement implements FilterPrimitiveStandardAtt ributes, UriReference, ExternalResourcesRequired, LangSpace {
2281 FEImageElement.internal() : super.internal(); 2321 // To suppress missing implicit constructor warnings.
2322 factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
2282 2323
2283 @DomName('SVGFEImageElement.SVGFEImageElement') 2324 @DomName('SVGFEImageElement.SVGFEImageElement')
2284 @DocsEditable 2325 @DocsEditable
2285 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 2326 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
2286 2327
2287 /// Checks if this type is supported on the current platform. 2328 /// Checks if this type is supported on the current platform.
2288 static bool get supported => true; 2329 static bool get supported => true;
2289 2330
2290 @DomName('SVGFEImageElement.preserveAspectRatio') 2331 @DomName('SVGFEImageElement.preserveAspectRatio')
2291 @DocsEditable 2332 @DocsEditable
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 2385
2345 2386
2346 @DocsEditable 2387 @DocsEditable
2347 @DomName('SVGFEMergeElement') 2388 @DomName('SVGFEMergeElement')
2348 @SupportedBrowser(SupportedBrowser.CHROME) 2389 @SupportedBrowser(SupportedBrowser.CHROME)
2349 @SupportedBrowser(SupportedBrowser.FIREFOX) 2390 @SupportedBrowser(SupportedBrowser.FIREFOX)
2350 @SupportedBrowser(SupportedBrowser.IE, '10') 2391 @SupportedBrowser(SupportedBrowser.IE, '10')
2351 @SupportedBrowser(SupportedBrowser.SAFARI) 2392 @SupportedBrowser(SupportedBrowser.SAFARI)
2352 @Unstable 2393 @Unstable
2353 class FEMergeElement extends StyledElement implements FilterPrimitiveStandardAtt ributes { 2394 class FEMergeElement extends StyledElement implements FilterPrimitiveStandardAtt ributes {
2354 FEMergeElement.internal() : super.internal(); 2395 // To suppress missing implicit constructor warnings.
2396 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); }
2355 2397
2356 @DomName('SVGFEMergeElement.SVGFEMergeElement') 2398 @DomName('SVGFEMergeElement.SVGFEMergeElement')
2357 @DocsEditable 2399 @DocsEditable
2358 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge"); 2400 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge");
2359 2401
2360 /// Checks if this type is supported on the current platform. 2402 /// Checks if this type is supported on the current platform.
2361 static bool get supported => true; 2403 static bool get supported => true;
2362 2404
2363 @DomName('SVGFEMergeElement.height') 2405 @DomName('SVGFEMergeElement.height')
2364 @DocsEditable 2406 @DocsEditable
(...skipping 24 matching lines...) Expand all
2389 2431
2390 2432
2391 @DocsEditable 2433 @DocsEditable
2392 @DomName('SVGFEMergeNodeElement') 2434 @DomName('SVGFEMergeNodeElement')
2393 @SupportedBrowser(SupportedBrowser.CHROME) 2435 @SupportedBrowser(SupportedBrowser.CHROME)
2394 @SupportedBrowser(SupportedBrowser.FIREFOX) 2436 @SupportedBrowser(SupportedBrowser.FIREFOX)
2395 @SupportedBrowser(SupportedBrowser.IE, '10') 2437 @SupportedBrowser(SupportedBrowser.IE, '10')
2396 @SupportedBrowser(SupportedBrowser.SAFARI) 2438 @SupportedBrowser(SupportedBrowser.SAFARI)
2397 @Unstable 2439 @Unstable
2398 class FEMergeNodeElement extends SvgElement { 2440 class FEMergeNodeElement extends SvgElement {
2399 FEMergeNodeElement.internal() : super.internal(); 2441 // To suppress missing implicit constructor warnings.
2442 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); }
2400 2443
2401 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') 2444 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement')
2402 @DocsEditable 2445 @DocsEditable
2403 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode"); 2446 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode");
2404 2447
2405 /// Checks if this type is supported on the current platform. 2448 /// Checks if this type is supported on the current platform.
2406 static bool get supported => true; 2449 static bool get supported => true;
2407 2450
2408 @DomName('SVGFEMergeNodeElement.in1') 2451 @DomName('SVGFEMergeNodeElement.in1')
2409 @DocsEditable 2452 @DocsEditable
2410 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter"; 2453 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter";
2411 2454
2412 } 2455 }
2413 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2456 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2414 // for details. All rights reserved. Use of this source code is governed by a 2457 // for details. All rights reserved. Use of this source code is governed by a
2415 // BSD-style license that can be found in the LICENSE file. 2458 // BSD-style license that can be found in the LICENSE file.
2416 2459
2417 // WARNING: Do not edit - generated code. 2460 // WARNING: Do not edit - generated code.
2418 2461
2419 2462
2420 @DocsEditable 2463 @DocsEditable
2421 @DomName('SVGFEMorphologyElement') 2464 @DomName('SVGFEMorphologyElement')
2422 @SupportedBrowser(SupportedBrowser.CHROME) 2465 @SupportedBrowser(SupportedBrowser.CHROME)
2423 @SupportedBrowser(SupportedBrowser.FIREFOX) 2466 @SupportedBrowser(SupportedBrowser.FIREFOX)
2424 @SupportedBrowser(SupportedBrowser.IE, '10') 2467 @SupportedBrowser(SupportedBrowser.IE, '10')
2425 @SupportedBrowser(SupportedBrowser.SAFARI) 2468 @SupportedBrowser(SupportedBrowser.SAFARI)
2426 @Unstable 2469 @Unstable
2427 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes { 2470 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes {
2428 FEMorphologyElement.internal() : super.internal(); 2471 // To suppress missing implicit constructor warnings.
2472 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
2429 2473
2430 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') 2474 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
2431 @DocsEditable 2475 @DocsEditable
2432 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2476 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2433 2477
2434 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2478 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2435 @DocsEditable 2479 @DocsEditable
2436 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2480 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2437 2481
2438 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2482 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2488 2532
2489 2533
2490 @DocsEditable 2534 @DocsEditable
2491 @DomName('SVGFEOffsetElement') 2535 @DomName('SVGFEOffsetElement')
2492 @SupportedBrowser(SupportedBrowser.CHROME) 2536 @SupportedBrowser(SupportedBrowser.CHROME)
2493 @SupportedBrowser(SupportedBrowser.FIREFOX) 2537 @SupportedBrowser(SupportedBrowser.FIREFOX)
2494 @SupportedBrowser(SupportedBrowser.IE, '10') 2538 @SupportedBrowser(SupportedBrowser.IE, '10')
2495 @SupportedBrowser(SupportedBrowser.SAFARI) 2539 @SupportedBrowser(SupportedBrowser.SAFARI)
2496 @Unstable 2540 @Unstable
2497 class FEOffsetElement extends StyledElement implements FilterPrimitiveStandardAt tributes { 2541 class FEOffsetElement extends StyledElement implements FilterPrimitiveStandardAt tributes {
2498 FEOffsetElement.internal() : super.internal(); 2542 // To suppress missing implicit constructor warnings.
2543 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); }
2499 2544
2500 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') 2545 @DomName('SVGFEOffsetElement.SVGFEOffsetElement')
2501 @DocsEditable 2546 @DocsEditable
2502 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset"); 2547 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset");
2503 2548
2504 /// Checks if this type is supported on the current platform. 2549 /// Checks if this type is supported on the current platform.
2505 static bool get supported => true; 2550 static bool get supported => true;
2506 2551
2507 @DomName('SVGFEOffsetElement.dx') 2552 @DomName('SVGFEOffsetElement.dx')
2508 @DocsEditable 2553 @DocsEditable
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
2545 2590
2546 2591
2547 @DocsEditable 2592 @DocsEditable
2548 @DomName('SVGFEPointLightElement') 2593 @DomName('SVGFEPointLightElement')
2549 @SupportedBrowser(SupportedBrowser.CHROME) 2594 @SupportedBrowser(SupportedBrowser.CHROME)
2550 @SupportedBrowser(SupportedBrowser.FIREFOX) 2595 @SupportedBrowser(SupportedBrowser.FIREFOX)
2551 @SupportedBrowser(SupportedBrowser.IE, '10') 2596 @SupportedBrowser(SupportedBrowser.IE, '10')
2552 @SupportedBrowser(SupportedBrowser.SAFARI) 2597 @SupportedBrowser(SupportedBrowser.SAFARI)
2553 @Unstable 2598 @Unstable
2554 class FEPointLightElement extends SvgElement { 2599 class FEPointLightElement extends SvgElement {
2555 FEPointLightElement.internal() : super.internal(); 2600 // To suppress missing implicit constructor warnings.
2601 factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); }
2556 2602
2557 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') 2603 @DomName('SVGFEPointLightElement.SVGFEPointLightElement')
2558 @DocsEditable 2604 @DocsEditable
2559 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight"); 2605 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight");
2560 2606
2561 /// Checks if this type is supported on the current platform. 2607 /// Checks if this type is supported on the current platform.
2562 static bool get supported => true; 2608 static bool get supported => true;
2563 2609
2564 @DomName('SVGFEPointLightElement.x') 2610 @DomName('SVGFEPointLightElement.x')
2565 @DocsEditable 2611 @DocsEditable
(...skipping 16 matching lines...) Expand all
2582 2628
2583 2629
2584 @DocsEditable 2630 @DocsEditable
2585 @DomName('SVGFESpecularLightingElement') 2631 @DomName('SVGFESpecularLightingElement')
2586 @SupportedBrowser(SupportedBrowser.CHROME) 2632 @SupportedBrowser(SupportedBrowser.CHROME)
2587 @SupportedBrowser(SupportedBrowser.FIREFOX) 2633 @SupportedBrowser(SupportedBrowser.FIREFOX)
2588 @SupportedBrowser(SupportedBrowser.IE, '10') 2634 @SupportedBrowser(SupportedBrowser.IE, '10')
2589 @SupportedBrowser(SupportedBrowser.SAFARI) 2635 @SupportedBrowser(SupportedBrowser.SAFARI)
2590 @Unstable 2636 @Unstable
2591 class FESpecularLightingElement extends StyledElement implements FilterPrimitive StandardAttributes { 2637 class FESpecularLightingElement extends StyledElement implements FilterPrimitive StandardAttributes {
2592 FESpecularLightingElement.internal() : super.internal(); 2638 // To suppress missing implicit constructor warnings.
2639 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); }
2593 2640
2594 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') 2641 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
2595 @DocsEditable 2642 @DocsEditable
2596 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting"); 2643 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting");
2597 2644
2598 /// Checks if this type is supported on the current platform. 2645 /// Checks if this type is supported on the current platform.
2599 static bool get supported => true; 2646 static bool get supported => true;
2600 2647
2601 @DomName('SVGFESpecularLightingElement.in1') 2648 @DomName('SVGFESpecularLightingElement.in1')
2602 @DocsEditable 2649 @DocsEditable
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
2643 2690
2644 2691
2645 @DocsEditable 2692 @DocsEditable
2646 @DomName('SVGFESpotLightElement') 2693 @DomName('SVGFESpotLightElement')
2647 @SupportedBrowser(SupportedBrowser.CHROME) 2694 @SupportedBrowser(SupportedBrowser.CHROME)
2648 @SupportedBrowser(SupportedBrowser.FIREFOX) 2695 @SupportedBrowser(SupportedBrowser.FIREFOX)
2649 @SupportedBrowser(SupportedBrowser.IE, '10') 2696 @SupportedBrowser(SupportedBrowser.IE, '10')
2650 @SupportedBrowser(SupportedBrowser.SAFARI) 2697 @SupportedBrowser(SupportedBrowser.SAFARI)
2651 @Unstable 2698 @Unstable
2652 class FESpotLightElement extends SvgElement { 2699 class FESpotLightElement extends SvgElement {
2653 FESpotLightElement.internal() : super.internal(); 2700 // To suppress missing implicit constructor warnings.
2701 factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); }
2654 2702
2655 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') 2703 @DomName('SVGFESpotLightElement.SVGFESpotLightElement')
2656 @DocsEditable 2704 @DocsEditable
2657 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight"); 2705 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight");
2658 2706
2659 /// Checks if this type is supported on the current platform. 2707 /// Checks if this type is supported on the current platform.
2660 static bool get supported => true; 2708 static bool get supported => true;
2661 2709
2662 @DomName('SVGFESpotLightElement.limitingConeAngle') 2710 @DomName('SVGFESpotLightElement.limitingConeAngle')
2663 @DocsEditable 2711 @DocsEditable
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
2700 2748
2701 2749
2702 @DocsEditable 2750 @DocsEditable
2703 @DomName('SVGFETileElement') 2751 @DomName('SVGFETileElement')
2704 @SupportedBrowser(SupportedBrowser.CHROME) 2752 @SupportedBrowser(SupportedBrowser.CHROME)
2705 @SupportedBrowser(SupportedBrowser.FIREFOX) 2753 @SupportedBrowser(SupportedBrowser.FIREFOX)
2706 @SupportedBrowser(SupportedBrowser.IE, '10') 2754 @SupportedBrowser(SupportedBrowser.IE, '10')
2707 @SupportedBrowser(SupportedBrowser.SAFARI) 2755 @SupportedBrowser(SupportedBrowser.SAFARI)
2708 @Unstable 2756 @Unstable
2709 class FETileElement extends StyledElement implements FilterPrimitiveStandardAttr ibutes { 2757 class FETileElement extends StyledElement implements FilterPrimitiveStandardAttr ibutes {
2710 FETileElement.internal() : super.internal(); 2758 // To suppress missing implicit constructor warnings.
2759 factory FETileElement._() { throw new UnsupportedError("Not supported"); }
2711 2760
2712 @DomName('SVGFETileElement.SVGFETileElement') 2761 @DomName('SVGFETileElement.SVGFETileElement')
2713 @DocsEditable 2762 @DocsEditable
2714 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile"); 2763 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile");
2715 2764
2716 /// Checks if this type is supported on the current platform. 2765 /// Checks if this type is supported on the current platform.
2717 static bool get supported => true; 2766 static bool get supported => true;
2718 2767
2719 @DomName('SVGFETileElement.in1') 2768 @DomName('SVGFETileElement.in1')
2720 @DocsEditable 2769 @DocsEditable
(...skipping 28 matching lines...) Expand all
2749 2798
2750 2799
2751 @DocsEditable 2800 @DocsEditable
2752 @DomName('SVGFETurbulenceElement') 2801 @DomName('SVGFETurbulenceElement')
2753 @SupportedBrowser(SupportedBrowser.CHROME) 2802 @SupportedBrowser(SupportedBrowser.CHROME)
2754 @SupportedBrowser(SupportedBrowser.FIREFOX) 2803 @SupportedBrowser(SupportedBrowser.FIREFOX)
2755 @SupportedBrowser(SupportedBrowser.IE, '10') 2804 @SupportedBrowser(SupportedBrowser.IE, '10')
2756 @SupportedBrowser(SupportedBrowser.SAFARI) 2805 @SupportedBrowser(SupportedBrowser.SAFARI)
2757 @Unstable 2806 @Unstable
2758 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes { 2807 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes {
2759 FETurbulenceElement.internal() : super.internal(); 2808 // To suppress missing implicit constructor warnings.
2809 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); }
2760 2810
2761 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2811 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2762 @DocsEditable 2812 @DocsEditable
2763 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2813 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2764 2814
2765 /// Checks if this type is supported on the current platform. 2815 /// Checks if this type is supported on the current platform.
2766 static bool get supported => true; 2816 static bool get supported => true;
2767 2817
2768 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH') 2818 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
2769 @DocsEditable 2819 @DocsEditable
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
2842 2892
2843 2893
2844 @DocsEditable 2894 @DocsEditable
2845 @DomName('SVGFilterElement') 2895 @DomName('SVGFilterElement')
2846 @SupportedBrowser(SupportedBrowser.CHROME) 2896 @SupportedBrowser(SupportedBrowser.CHROME)
2847 @SupportedBrowser(SupportedBrowser.FIREFOX) 2897 @SupportedBrowser(SupportedBrowser.FIREFOX)
2848 @SupportedBrowser(SupportedBrowser.IE, '10') 2898 @SupportedBrowser(SupportedBrowser.IE, '10')
2849 @SupportedBrowser(SupportedBrowser.SAFARI) 2899 @SupportedBrowser(SupportedBrowser.SAFARI)
2850 @Unstable 2900 @Unstable
2851 class FilterElement extends StyledElement implements UriReference, ExternalResou rcesRequired, LangSpace { 2901 class FilterElement extends StyledElement implements UriReference, ExternalResou rcesRequired, LangSpace {
2852 FilterElement.internal() : super.internal(); 2902 // To suppress missing implicit constructor warnings.
2903 factory FilterElement._() { throw new UnsupportedError("Not supported"); }
2853 2904
2854 @DomName('SVGFilterElement.SVGFilterElement') 2905 @DomName('SVGFilterElement.SVGFilterElement')
2855 @DocsEditable 2906 @DocsEditable
2856 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2907 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2857 2908
2858 /// Checks if this type is supported on the current platform. 2909 /// Checks if this type is supported on the current platform.
2859 static bool get supported => true; 2910 static bool get supported => true;
2860 2911
2861 @DomName('SVGFilterElement.filterResX') 2912 @DomName('SVGFilterElement.filterResX')
2862 @DocsEditable 2913 @DocsEditable
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
2923 // for details. All rights reserved. Use of this source code is governed by a 2974 // for details. All rights reserved. Use of this source code is governed by a
2924 // BSD-style license that can be found in the LICENSE file. 2975 // BSD-style license that can be found in the LICENSE file.
2925 2976
2926 // WARNING: Do not edit - generated code. 2977 // WARNING: Do not edit - generated code.
2927 2978
2928 2979
2929 @DocsEditable 2980 @DocsEditable
2930 @DomName('SVGFilterPrimitiveStandardAttributes') 2981 @DomName('SVGFilterPrimitiveStandardAttributes')
2931 @Unstable 2982 @Unstable
2932 class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 { 2983 class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 {
2933 FilterPrimitiveStandardAttributes.internal(); 2984 // To suppress missing implicit constructor warnings.
2985 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No t supported"); }
2934 2986
2935 @DomName('SVGFilterPrimitiveStandardAttributes.height') 2987 @DomName('SVGFilterPrimitiveStandardAttributes.height')
2936 @DocsEditable 2988 @DocsEditable
2937 AnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_height_ Getter"; 2989 AnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_height_ Getter";
2938 2990
2939 @DomName('SVGFilterPrimitiveStandardAttributes.result') 2991 @DomName('SVGFilterPrimitiveStandardAttributes.result')
2940 @DocsEditable 2992 @DocsEditable
2941 AnimatedString get result native "SVGFilterPrimitiveStandardAttributes_result_ Getter"; 2993 AnimatedString get result native "SVGFilterPrimitiveStandardAttributes_result_ Getter";
2942 2994
2943 @DomName('SVGFilterPrimitiveStandardAttributes.width') 2995 @DomName('SVGFilterPrimitiveStandardAttributes.width')
(...skipping 13 matching lines...) Expand all
2957 // for details. All rights reserved. Use of this source code is governed by a 3009 // for details. All rights reserved. Use of this source code is governed by a
2958 // BSD-style license that can be found in the LICENSE file. 3010 // BSD-style license that can be found in the LICENSE file.
2959 3011
2960 // WARNING: Do not edit - generated code. 3012 // WARNING: Do not edit - generated code.
2961 3013
2962 3014
2963 @DocsEditable 3015 @DocsEditable
2964 @DomName('SVGFitToViewBox') 3016 @DomName('SVGFitToViewBox')
2965 @Unstable 3017 @Unstable
2966 class FitToViewBox extends NativeFieldWrapperClass1 { 3018 class FitToViewBox extends NativeFieldWrapperClass1 {
2967 FitToViewBox.internal(); 3019 // To suppress missing implicit constructor warnings.
3020 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); }
2968 3021
2969 @DomName('SVGFitToViewBox.preserveAspectRatio') 3022 @DomName('SVGFitToViewBox.preserveAspectRatio')
2970 @DocsEditable 3023 @DocsEditable
2971 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox_pr eserveAspectRatio_Getter"; 3024 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox_pr eserveAspectRatio_Getter";
2972 3025
2973 @DomName('SVGFitToViewBox.viewBox') 3026 @DomName('SVGFitToViewBox.viewBox')
2974 @DocsEditable 3027 @DocsEditable
2975 AnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter"; 3028 AnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter";
2976 3029
2977 } 3030 }
2978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2979 // for details. All rights reserved. Use of this source code is governed by a 3032 // for details. All rights reserved. Use of this source code is governed by a
2980 // BSD-style license that can be found in the LICENSE file. 3033 // BSD-style license that can be found in the LICENSE file.
2981 3034
2982 // WARNING: Do not edit - generated code. 3035 // WARNING: Do not edit - generated code.
2983 3036
2984 3037
2985 @DocsEditable 3038 @DocsEditable
2986 @DomName('SVGForeignObjectElement') 3039 @DomName('SVGForeignObjectElement')
2987 @SupportedBrowser(SupportedBrowser.CHROME) 3040 @SupportedBrowser(SupportedBrowser.CHROME)
2988 @SupportedBrowser(SupportedBrowser.FIREFOX) 3041 @SupportedBrowser(SupportedBrowser.FIREFOX)
2989 @SupportedBrowser(SupportedBrowser.SAFARI) 3042 @SupportedBrowser(SupportedBrowser.SAFARI)
2990 @Unstable 3043 @Unstable
2991 class ForeignObjectElement extends StyledElement implements Transformable, Tests , ExternalResourcesRequired, LangSpace { 3044 class ForeignObjectElement extends StyledElement implements Transformable, Tests , ExternalResourcesRequired, LangSpace {
2992 ForeignObjectElement.internal() : super.internal(); 3045 // To suppress missing implicit constructor warnings.
3046 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported") ; }
2993 3047
2994 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') 3048 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
2995 @DocsEditable 3049 @DocsEditable
2996 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 3050 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
2997 3051
2998 /// Checks if this type is supported on the current platform. 3052 /// Checks if this type is supported on the current platform.
2999 static bool get supported => true; 3053 static bool get supported => true;
3000 3054
3001 @DomName('SVGForeignObjectElement.height') 3055 @DomName('SVGForeignObjectElement.height')
3002 @DocsEditable 3056 @DocsEditable
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
3083 // for details. All rights reserved. Use of this source code is governed by a 3137 // for details. All rights reserved. Use of this source code is governed by a
3084 // BSD-style license that can be found in the LICENSE file. 3138 // BSD-style license that can be found in the LICENSE file.
3085 3139
3086 // WARNING: Do not edit - generated code. 3140 // WARNING: Do not edit - generated code.
3087 3141
3088 3142
3089 @DocsEditable 3143 @DocsEditable
3090 @DomName('SVGGElement') 3144 @DomName('SVGGElement')
3091 @Unstable 3145 @Unstable
3092 class GElement extends StyledElement implements Transformable, Tests, ExternalRe sourcesRequired, LangSpace { 3146 class GElement extends StyledElement implements Transformable, Tests, ExternalRe sourcesRequired, LangSpace {
3093 GElement.internal() : super.internal(); 3147 // To suppress missing implicit constructor warnings.
3148 factory GElement._() { throw new UnsupportedError("Not supported"); }
3094 3149
3095 @DomName('SVGGElement.SVGGElement') 3150 @DomName('SVGGElement.SVGGElement')
3096 @DocsEditable 3151 @DocsEditable
3097 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 3152 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
3098 3153
3099 @DomName('SVGGElement.externalResourcesRequired') 3154 @DomName('SVGGElement.externalResourcesRequired')
3100 @DocsEditable 3155 @DocsEditable
3101 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter"; 3156 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso urcesRequired_Getter";
3102 3157
3103 @DomName('SVGGElement.xmllang') 3158 @DomName('SVGGElement.xmllang')
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
3165 // for details. All rights reserved. Use of this source code is governed by a 3220 // for details. All rights reserved. Use of this source code is governed by a
3166 // BSD-style license that can be found in the LICENSE file. 3221 // BSD-style license that can be found in the LICENSE file.
3167 3222
3168 // WARNING: Do not edit - generated code. 3223 // WARNING: Do not edit - generated code.
3169 3224
3170 3225
3171 @DocsEditable 3226 @DocsEditable
3172 @DomName('SVGImageElement') 3227 @DomName('SVGImageElement')
3173 @Unstable 3228 @Unstable
3174 class ImageElement extends StyledElement implements UriReference, Tests, Transfo rmable, ExternalResourcesRequired, LangSpace { 3229 class ImageElement extends StyledElement implements UriReference, Tests, Transfo rmable, ExternalResourcesRequired, LangSpace {
3175 ImageElement.internal() : super.internal(); 3230 // To suppress missing implicit constructor warnings.
3231 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
3176 3232
3177 @DomName('SVGImageElement.SVGImageElement') 3233 @DomName('SVGImageElement.SVGImageElement')
3178 @DocsEditable 3234 @DocsEditable
3179 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 3235 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3180 3236
3181 @DomName('SVGImageElement.height') 3237 @DomName('SVGImageElement.height')
3182 @DocsEditable 3238 @DocsEditable
3183 AnimatedLength get height native "SVGImageElement_height_Getter"; 3239 AnimatedLength get height native "SVGImageElement_height_Getter";
3184 3240
3185 @DomName('SVGImageElement.preserveAspectRatio') 3241 @DomName('SVGImageElement.preserveAspectRatio')
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
3271 // for details. All rights reserved. Use of this source code is governed by a 3327 // for details. All rights reserved. Use of this source code is governed by a
3272 // BSD-style license that can be found in the LICENSE file. 3328 // BSD-style license that can be found in the LICENSE file.
3273 3329
3274 // WARNING: Do not edit - generated code. 3330 // WARNING: Do not edit - generated code.
3275 3331
3276 3332
3277 @DocsEditable 3333 @DocsEditable
3278 @DomName('SVGLangSpace') 3334 @DomName('SVGLangSpace')
3279 @Unstable 3335 @Unstable
3280 class LangSpace extends NativeFieldWrapperClass1 { 3336 class LangSpace extends NativeFieldWrapperClass1 {
3281 LangSpace.internal(); 3337 // To suppress missing implicit constructor warnings.
3338 factory LangSpace._() { throw new UnsupportedError("Not supported"); }
3282 3339
3283 /// Checks if this type is supported on the current platform. 3340 /// Checks if this type is supported on the current platform.
3284 static bool supported(SvgElement element) => true; 3341 static bool supported(SvgElement element) => true;
3285 3342
3286 @DomName('SVGLangSpace.xmllang') 3343 @DomName('SVGLangSpace.xmllang')
3287 @DocsEditable 3344 @DocsEditable
3288 String get xmllang native "SVGLangSpace_xmllang_Getter"; 3345 String get xmllang native "SVGLangSpace_xmllang_Getter";
3289 3346
3290 @DomName('SVGLangSpace.xmllang') 3347 @DomName('SVGLangSpace.xmllang')
3291 @DocsEditable 3348 @DocsEditable
(...skipping 12 matching lines...) Expand all
3304 // for details. All rights reserved. Use of this source code is governed by a 3361 // for details. All rights reserved. Use of this source code is governed by a
3305 // BSD-style license that can be found in the LICENSE file. 3362 // BSD-style license that can be found in the LICENSE file.
3306 3363
3307 // WARNING: Do not edit - generated code. 3364 // WARNING: Do not edit - generated code.
3308 3365
3309 3366
3310 @DocsEditable 3367 @DocsEditable
3311 @DomName('SVGLength') 3368 @DomName('SVGLength')
3312 @Unstable 3369 @Unstable
3313 class Length extends NativeFieldWrapperClass1 { 3370 class Length extends NativeFieldWrapperClass1 {
3314 Length.internal(); 3371 // To suppress missing implicit constructor warnings.
3372 factory Length._() { throw new UnsupportedError("Not supported"); }
3315 3373
3316 @DomName('SVGLength.SVG_LENGTHTYPE_CM') 3374 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3317 @DocsEditable 3375 @DocsEditable
3318 static const int SVG_LENGTHTYPE_CM = 6; 3376 static const int SVG_LENGTHTYPE_CM = 6;
3319 3377
3320 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') 3378 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3321 @DocsEditable 3379 @DocsEditable
3322 static const int SVG_LENGTHTYPE_EMS = 3; 3380 static const int SVG_LENGTHTYPE_EMS = 3;
3323 3381
3324 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') 3382 @DomName('SVGLength.SVG_LENGTHTYPE_EXS')
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
3398 // for details. All rights reserved. Use of this source code is governed by a 3456 // for details. All rights reserved. Use of this source code is governed by a
3399 // BSD-style license that can be found in the LICENSE file. 3457 // BSD-style license that can be found in the LICENSE file.
3400 3458
3401 // WARNING: Do not edit - generated code. 3459 // WARNING: Do not edit - generated code.
3402 3460
3403 3461
3404 @DocsEditable 3462 @DocsEditable
3405 @DomName('SVGLengthList') 3463 @DomName('SVGLengthList')
3406 @Unstable 3464 @Unstable
3407 class LengthList extends NativeFieldWrapperClass1 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> { 3465 class LengthList extends NativeFieldWrapperClass1 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> {
3408 LengthList.internal(); 3466 // To suppress missing implicit constructor warnings.
3467 factory LengthList._() { throw new UnsupportedError("Not supported"); }
3409 3468
3410 @DomName('SVGLengthList.numberOfItems') 3469 @DomName('SVGLengthList.numberOfItems')
3411 @DocsEditable 3470 @DocsEditable
3412 int get numberOfItems native "SVGLengthList_numberOfItems_Getter"; 3471 int get numberOfItems native "SVGLengthList_numberOfItems_Getter";
3413 3472
3414 Length operator[](int index) { 3473 Length operator[](int index) {
3415 if (index < 0 || index >= length) 3474 if (index < 0 || index >= length)
3416 throw new RangeError.range(index, 0, length); 3475 throw new RangeError.range(index, 0, length);
3417 return _nativeIndexedGetter(index); 3476 return _nativeIndexedGetter(index);
3418 } 3477 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
3491 // for details. All rights reserved. Use of this source code is governed by a 3550 // for details. All rights reserved. Use of this source code is governed by a
3492 // BSD-style license that can be found in the LICENSE file. 3551 // BSD-style license that can be found in the LICENSE file.
3493 3552
3494 // WARNING: Do not edit - generated code. 3553 // WARNING: Do not edit - generated code.
3495 3554
3496 3555
3497 @DocsEditable 3556 @DocsEditable
3498 @DomName('SVGLineElement') 3557 @DomName('SVGLineElement')
3499 @Unstable 3558 @Unstable
3500 class LineElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace { 3559 class LineElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace {
3501 LineElement.internal() : super.internal(); 3560 // To suppress missing implicit constructor warnings.
3561 factory LineElement._() { throw new UnsupportedError("Not supported"); }
3502 3562
3503 @DomName('SVGLineElement.SVGLineElement') 3563 @DomName('SVGLineElement.SVGLineElement')
3504 @DocsEditable 3564 @DocsEditable
3505 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3565 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3506 3566
3507 @DomName('SVGLineElement.x1') 3567 @DomName('SVGLineElement.x1')
3508 @DocsEditable 3568 @DocsEditable
3509 AnimatedLength get x1 native "SVGLineElement_x1_Getter"; 3569 AnimatedLength get x1 native "SVGLineElement_x1_Getter";
3510 3570
3511 @DomName('SVGLineElement.x2') 3571 @DomName('SVGLineElement.x2')
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
3589 // for details. All rights reserved. Use of this source code is governed by a 3649 // for details. All rights reserved. Use of this source code is governed by a
3590 // BSD-style license that can be found in the LICENSE file. 3650 // BSD-style license that can be found in the LICENSE file.
3591 3651
3592 // WARNING: Do not edit - generated code. 3652 // WARNING: Do not edit - generated code.
3593 3653
3594 3654
3595 @DocsEditable 3655 @DocsEditable
3596 @DomName('SVGLinearGradientElement') 3656 @DomName('SVGLinearGradientElement')
3597 @Unstable 3657 @Unstable
3598 class LinearGradientElement extends _GradientElement { 3658 class LinearGradientElement extends _GradientElement {
3599 LinearGradientElement.internal() : super.internal(); 3659 // To suppress missing implicit constructor warnings.
3660 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); }
3600 3661
3601 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3662 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
3602 @DocsEditable 3663 @DocsEditable
3603 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3664 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3604 3665
3605 @DomName('SVGLinearGradientElement.x1') 3666 @DomName('SVGLinearGradientElement.x1')
3606 @DocsEditable 3667 @DocsEditable
3607 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; 3668 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter";
3608 3669
3609 @DomName('SVGLinearGradientElement.x2') 3670 @DomName('SVGLinearGradientElement.x2')
(...skipping 13 matching lines...) Expand all
3623 // for details. All rights reserved. Use of this source code is governed by a 3684 // for details. All rights reserved. Use of this source code is governed by a
3624 // BSD-style license that can be found in the LICENSE file. 3685 // BSD-style license that can be found in the LICENSE file.
3625 3686
3626 // WARNING: Do not edit - generated code. 3687 // WARNING: Do not edit - generated code.
3627 3688
3628 3689
3629 @DocsEditable 3690 @DocsEditable
3630 @DomName('SVGLocatable') 3691 @DomName('SVGLocatable')
3631 @Unstable 3692 @Unstable
3632 class Locatable extends NativeFieldWrapperClass1 { 3693 class Locatable extends NativeFieldWrapperClass1 {
3633 Locatable.internal(); 3694 // To suppress missing implicit constructor warnings.
3695 factory Locatable._() { throw new UnsupportedError("Not supported"); }
3634 3696
3635 @DomName('SVGLocatable.farthestViewportElement') 3697 @DomName('SVGLocatable.farthestViewportElement')
3636 @DocsEditable 3698 @DocsEditable
3637 SvgElement get farthestViewportElement native "SVGLocatable_farthestViewportEl ement_Getter"; 3699 SvgElement get farthestViewportElement native "SVGLocatable_farthestViewportEl ement_Getter";
3638 3700
3639 @DomName('SVGLocatable.nearestViewportElement') 3701 @DomName('SVGLocatable.nearestViewportElement')
3640 @DocsEditable 3702 @DocsEditable
3641 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter"; 3703 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem ent_Getter";
3642 3704
3643 @DomName('SVGLocatable.getBBox') 3705 @DomName('SVGLocatable.getBBox')
(...skipping 17 matching lines...) Expand all
3661 // for details. All rights reserved. Use of this source code is governed by a 3723 // for details. All rights reserved. Use of this source code is governed by a
3662 // BSD-style license that can be found in the LICENSE file. 3724 // BSD-style license that can be found in the LICENSE file.
3663 3725
3664 // WARNING: Do not edit - generated code. 3726 // WARNING: Do not edit - generated code.
3665 3727
3666 3728
3667 @DocsEditable 3729 @DocsEditable
3668 @DomName('SVGMarkerElement') 3730 @DomName('SVGMarkerElement')
3669 @Unstable 3731 @Unstable
3670 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace { 3732 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace {
3671 MarkerElement.internal() : super.internal(); 3733 // To suppress missing implicit constructor warnings.
3734 factory MarkerElement._() { throw new UnsupportedError("Not supported"); }
3672 3735
3673 @DomName('SVGMarkerElement.SVGMarkerElement') 3736 @DomName('SVGMarkerElement.SVGMarkerElement')
3674 @DocsEditable 3737 @DocsEditable
3675 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3738 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3676 3739
3677 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') 3740 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
3678 @DocsEditable 3741 @DocsEditable
3679 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3742 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
3680 3743
3681 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN') 3744 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN')
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
3767 // for details. All rights reserved. Use of this source code is governed by a 3830 // for details. All rights reserved. Use of this source code is governed by a
3768 // BSD-style license that can be found in the LICENSE file. 3831 // BSD-style license that can be found in the LICENSE file.
3769 3832
3770 // WARNING: Do not edit - generated code. 3833 // WARNING: Do not edit - generated code.
3771 3834
3772 3835
3773 @DocsEditable 3836 @DocsEditable
3774 @DomName('SVGMaskElement') 3837 @DomName('SVGMaskElement')
3775 @Unstable 3838 @Unstable
3776 class MaskElement extends StyledElement implements Tests, ExternalResourcesRequi red, LangSpace { 3839 class MaskElement extends StyledElement implements Tests, ExternalResourcesRequi red, LangSpace {
3777 MaskElement.internal() : super.internal(); 3840 // To suppress missing implicit constructor warnings.
3841 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3778 3842
3779 @DomName('SVGMaskElement.SVGMaskElement') 3843 @DomName('SVGMaskElement.SVGMaskElement')
3780 @DocsEditable 3844 @DocsEditable
3781 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3845 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3782 3846
3783 @DomName('SVGMaskElement.height') 3847 @DomName('SVGMaskElement.height')
3784 @DocsEditable 3848 @DocsEditable
3785 AnimatedLength get height native "SVGMaskElement_height_Getter"; 3849 AnimatedLength get height native "SVGMaskElement_height_Getter";
3786 3850
3787 @DomName('SVGMaskElement.maskContentUnits') 3851 @DomName('SVGMaskElement.maskContentUnits')
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
3845 // for details. All rights reserved. Use of this source code is governed by a 3909 // for details. All rights reserved. Use of this source code is governed by a
3846 // BSD-style license that can be found in the LICENSE file. 3910 // BSD-style license that can be found in the LICENSE file.
3847 3911
3848 // WARNING: Do not edit - generated code. 3912 // WARNING: Do not edit - generated code.
3849 3913
3850 3914
3851 @DocsEditable 3915 @DocsEditable
3852 @DomName('SVGMatrix') 3916 @DomName('SVGMatrix')
3853 @Unstable 3917 @Unstable
3854 class Matrix extends NativeFieldWrapperClass1 { 3918 class Matrix extends NativeFieldWrapperClass1 {
3855 Matrix.internal(); 3919 // To suppress missing implicit constructor warnings.
3920 factory Matrix._() { throw new UnsupportedError("Not supported"); }
3856 3921
3857 @DomName('SVGMatrix.a') 3922 @DomName('SVGMatrix.a')
3858 @DocsEditable 3923 @DocsEditable
3859 num get a native "SVGMatrix_a_Getter"; 3924 num get a native "SVGMatrix_a_Getter";
3860 3925
3861 @DomName('SVGMatrix.a') 3926 @DomName('SVGMatrix.a')
3862 @DocsEditable 3927 @DocsEditable
3863 void set a(num value) native "SVGMatrix_a_Setter"; 3928 void set a(num value) native "SVGMatrix_a_Setter";
3864 3929
3865 @DomName('SVGMatrix.b') 3930 @DomName('SVGMatrix.b')
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
3951 // for details. All rights reserved. Use of this source code is governed by a 4016 // for details. All rights reserved. Use of this source code is governed by a
3952 // BSD-style license that can be found in the LICENSE file. 4017 // BSD-style license that can be found in the LICENSE file.
3953 4018
3954 // WARNING: Do not edit - generated code. 4019 // WARNING: Do not edit - generated code.
3955 4020
3956 4021
3957 @DocsEditable 4022 @DocsEditable
3958 @DomName('SVGMetadataElement') 4023 @DomName('SVGMetadataElement')
3959 @Unstable 4024 @Unstable
3960 class MetadataElement extends SvgElement { 4025 class MetadataElement extends SvgElement {
3961 MetadataElement.internal() : super.internal(); 4026 // To suppress missing implicit constructor warnings.
4027 factory MetadataElement._() { throw new UnsupportedError("Not supported"); }
3962 4028
3963 } 4029 }
3964 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4030 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3965 // for details. All rights reserved. Use of this source code is governed by a 4031 // for details. All rights reserved. Use of this source code is governed by a
3966 // BSD-style license that can be found in the LICENSE file. 4032 // BSD-style license that can be found in the LICENSE file.
3967 4033
3968 // WARNING: Do not edit - generated code. 4034 // WARNING: Do not edit - generated code.
3969 4035
3970 4036
3971 @DocsEditable 4037 @DocsEditable
3972 @DomName('SVGNumber') 4038 @DomName('SVGNumber')
3973 @Unstable 4039 @Unstable
3974 class Number extends NativeFieldWrapperClass1 { 4040 class Number extends NativeFieldWrapperClass1 {
3975 Number.internal(); 4041 // To suppress missing implicit constructor warnings.
4042 factory Number._() { throw new UnsupportedError("Not supported"); }
3976 4043
3977 @DomName('SVGNumber.value') 4044 @DomName('SVGNumber.value')
3978 @DocsEditable 4045 @DocsEditable
3979 num get value native "SVGNumber_value_Getter"; 4046 num get value native "SVGNumber_value_Getter";
3980 4047
3981 @DomName('SVGNumber.value') 4048 @DomName('SVGNumber.value')
3982 @DocsEditable 4049 @DocsEditable
3983 void set value(num value) native "SVGNumber_value_Setter"; 4050 void set value(num value) native "SVGNumber_value_Setter";
3984 4051
3985 } 4052 }
3986 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4053 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3987 // for details. All rights reserved. Use of this source code is governed by a 4054 // for details. All rights reserved. Use of this source code is governed by a
3988 // BSD-style license that can be found in the LICENSE file. 4055 // BSD-style license that can be found in the LICENSE file.
3989 4056
3990 // WARNING: Do not edit - generated code. 4057 // WARNING: Do not edit - generated code.
3991 4058
3992 4059
3993 @DocsEditable 4060 @DocsEditable
3994 @DomName('SVGNumberList') 4061 @DomName('SVGNumberList')
3995 @Unstable 4062 @Unstable
3996 class NumberList extends NativeFieldWrapperClass1 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> { 4063 class NumberList extends NativeFieldWrapperClass1 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> {
3997 NumberList.internal(); 4064 // To suppress missing implicit constructor warnings.
4065 factory NumberList._() { throw new UnsupportedError("Not supported"); }
3998 4066
3999 @DomName('SVGNumberList.numberOfItems') 4067 @DomName('SVGNumberList.numberOfItems')
4000 @DocsEditable 4068 @DocsEditable
4001 int get numberOfItems native "SVGNumberList_numberOfItems_Getter"; 4069 int get numberOfItems native "SVGNumberList_numberOfItems_Getter";
4002 4070
4003 Number operator[](int index) { 4071 Number operator[](int index) {
4004 if (index < 0 || index >= length) 4072 if (index < 0 || index >= length)
4005 throw new RangeError.range(index, 0, length); 4073 throw new RangeError.range(index, 0, length);
4006 return _nativeIndexedGetter(index); 4074 return _nativeIndexedGetter(index);
4007 } 4075 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
4080 // for details. All rights reserved. Use of this source code is governed by a 4148 // for details. All rights reserved. Use of this source code is governed by a
4081 // BSD-style license that can be found in the LICENSE file. 4149 // BSD-style license that can be found in the LICENSE file.
4082 4150
4083 // WARNING: Do not edit - generated code. 4151 // WARNING: Do not edit - generated code.
4084 4152
4085 4153
4086 @DocsEditable 4154 @DocsEditable
4087 @DomName('SVGPathElement') 4155 @DomName('SVGPathElement')
4088 @Unstable 4156 @Unstable
4089 class PathElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace { 4157 class PathElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace {
4090 PathElement.internal() : super.internal(); 4158 // To suppress missing implicit constructor warnings.
4159 factory PathElement._() { throw new UnsupportedError("Not supported"); }
4091 4160
4092 @DomName('SVGPathElement.SVGPathElement') 4161 @DomName('SVGPathElement.SVGPathElement')
4093 @DocsEditable 4162 @DocsEditable
4094 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 4163 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
4095 4164
4096 @DomName('SVGPathElement.animatedNormalizedPathSegList') 4165 @DomName('SVGPathElement.animatedNormalizedPathSegList')
4097 @DocsEditable 4166 @DocsEditable
4098 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter"; 4167 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN ormalizedPathSegList_Getter";
4099 4168
4100 @DomName('SVGPathElement.animatedPathSegList') 4169 @DomName('SVGPathElement.animatedPathSegList')
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
4270 // for details. All rights reserved. Use of this source code is governed by a 4339 // for details. All rights reserved. Use of this source code is governed by a
4271 // BSD-style license that can be found in the LICENSE file. 4340 // BSD-style license that can be found in the LICENSE file.
4272 4341
4273 // WARNING: Do not edit - generated code. 4342 // WARNING: Do not edit - generated code.
4274 4343
4275 4344
4276 @DocsEditable 4345 @DocsEditable
4277 @DomName('SVGPathSeg') 4346 @DomName('SVGPathSeg')
4278 @Unstable 4347 @Unstable
4279 class PathSeg extends NativeFieldWrapperClass1 { 4348 class PathSeg extends NativeFieldWrapperClass1 {
4280 PathSeg.internal(); 4349 // To suppress missing implicit constructor warnings.
4350 factory PathSeg._() { throw new UnsupportedError("Not supported"); }
4281 4351
4282 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') 4352 @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
4283 @DocsEditable 4353 @DocsEditable
4284 static const int PATHSEG_ARC_ABS = 10; 4354 static const int PATHSEG_ARC_ABS = 10;
4285 4355
4286 @DomName('SVGPathSeg.PATHSEG_ARC_REL') 4356 @DomName('SVGPathSeg.PATHSEG_ARC_REL')
4287 @DocsEditable 4357 @DocsEditable
4288 static const int PATHSEG_ARC_REL = 11; 4358 static const int PATHSEG_ARC_REL = 11;
4289 4359
4290 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') 4360 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH')
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
4372 // for details. All rights reserved. Use of this source code is governed by a 4442 // for details. All rights reserved. Use of this source code is governed by a
4373 // BSD-style license that can be found in the LICENSE file. 4443 // BSD-style license that can be found in the LICENSE file.
4374 4444
4375 // WARNING: Do not edit - generated code. 4445 // WARNING: Do not edit - generated code.
4376 4446
4377 4447
4378 @DocsEditable 4448 @DocsEditable
4379 @DomName('SVGPathSegArcAbs') 4449 @DomName('SVGPathSegArcAbs')
4380 @Unstable 4450 @Unstable
4381 class PathSegArcAbs extends PathSeg { 4451 class PathSegArcAbs extends PathSeg {
4382 PathSegArcAbs.internal() : super.internal(); 4452 // To suppress missing implicit constructor warnings.
4453 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); }
4383 4454
4384 @DomName('SVGPathSegArcAbs.angle') 4455 @DomName('SVGPathSegArcAbs.angle')
4385 @DocsEditable 4456 @DocsEditable
4386 num get angle native "SVGPathSegArcAbs_angle_Getter"; 4457 num get angle native "SVGPathSegArcAbs_angle_Getter";
4387 4458
4388 @DomName('SVGPathSegArcAbs.angle') 4459 @DomName('SVGPathSegArcAbs.angle')
4389 @DocsEditable 4460 @DocsEditable
4390 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter"; 4461 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter";
4391 4462
4392 @DomName('SVGPathSegArcAbs.largeArcFlag') 4463 @DomName('SVGPathSegArcAbs.largeArcFlag')
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
4442 // for details. All rights reserved. Use of this source code is governed by a 4513 // for details. All rights reserved. Use of this source code is governed by a
4443 // BSD-style license that can be found in the LICENSE file. 4514 // BSD-style license that can be found in the LICENSE file.
4444 4515
4445 // WARNING: Do not edit - generated code. 4516 // WARNING: Do not edit - generated code.
4446 4517
4447 4518
4448 @DocsEditable 4519 @DocsEditable
4449 @DomName('SVGPathSegArcRel') 4520 @DomName('SVGPathSegArcRel')
4450 @Unstable 4521 @Unstable
4451 class PathSegArcRel extends PathSeg { 4522 class PathSegArcRel extends PathSeg {
4452 PathSegArcRel.internal() : super.internal(); 4523 // To suppress missing implicit constructor warnings.
4524 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); }
4453 4525
4454 @DomName('SVGPathSegArcRel.angle') 4526 @DomName('SVGPathSegArcRel.angle')
4455 @DocsEditable 4527 @DocsEditable
4456 num get angle native "SVGPathSegArcRel_angle_Getter"; 4528 num get angle native "SVGPathSegArcRel_angle_Getter";
4457 4529
4458 @DomName('SVGPathSegArcRel.angle') 4530 @DomName('SVGPathSegArcRel.angle')
4459 @DocsEditable 4531 @DocsEditable
4460 void set angle(num value) native "SVGPathSegArcRel_angle_Setter"; 4532 void set angle(num value) native "SVGPathSegArcRel_angle_Setter";
4461 4533
4462 @DomName('SVGPathSegArcRel.largeArcFlag') 4534 @DomName('SVGPathSegArcRel.largeArcFlag')
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
4512 // for details. All rights reserved. Use of this source code is governed by a 4584 // for details. All rights reserved. Use of this source code is governed by a
4513 // BSD-style license that can be found in the LICENSE file. 4585 // BSD-style license that can be found in the LICENSE file.
4514 4586
4515 // WARNING: Do not edit - generated code. 4587 // WARNING: Do not edit - generated code.
4516 4588
4517 4589
4518 @DocsEditable 4590 @DocsEditable
4519 @DomName('SVGPathSegClosePath') 4591 @DomName('SVGPathSegClosePath')
4520 @Unstable 4592 @Unstable
4521 class PathSegClosePath extends PathSeg { 4593 class PathSegClosePath extends PathSeg {
4522 PathSegClosePath.internal() : super.internal(); 4594 // To suppress missing implicit constructor warnings.
4595 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); }
4523 4596
4524 } 4597 }
4525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4598 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4526 // for details. All rights reserved. Use of this source code is governed by a 4599 // for details. All rights reserved. Use of this source code is governed by a
4527 // BSD-style license that can be found in the LICENSE file. 4600 // BSD-style license that can be found in the LICENSE file.
4528 4601
4529 // WARNING: Do not edit - generated code. 4602 // WARNING: Do not edit - generated code.
4530 4603
4531 4604
4532 @DocsEditable 4605 @DocsEditable
4533 @DomName('SVGPathSegCurvetoCubicAbs') 4606 @DomName('SVGPathSegCurvetoCubicAbs')
4534 @Unstable 4607 @Unstable
4535 class PathSegCurvetoCubicAbs extends PathSeg { 4608 class PathSegCurvetoCubicAbs extends PathSeg {
4536 PathSegCurvetoCubicAbs.internal() : super.internal(); 4609 // To suppress missing implicit constructor warnings.
4610 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); }
4537 4611
4538 @DomName('SVGPathSegCurvetoCubicAbs.x') 4612 @DomName('SVGPathSegCurvetoCubicAbs.x')
4539 @DocsEditable 4613 @DocsEditable
4540 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter"; 4614 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter";
4541 4615
4542 @DomName('SVGPathSegCurvetoCubicAbs.x') 4616 @DomName('SVGPathSegCurvetoCubicAbs.x')
4543 @DocsEditable 4617 @DocsEditable
4544 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter"; 4618 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter";
4545 4619
4546 @DomName('SVGPathSegCurvetoCubicAbs.x1') 4620 @DomName('SVGPathSegCurvetoCubicAbs.x1')
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
4588 // for details. All rights reserved. Use of this source code is governed by a 4662 // for details. All rights reserved. Use of this source code is governed by a
4589 // BSD-style license that can be found in the LICENSE file. 4663 // BSD-style license that can be found in the LICENSE file.
4590 4664
4591 // WARNING: Do not edit - generated code. 4665 // WARNING: Do not edit - generated code.
4592 4666
4593 4667
4594 @DocsEditable 4668 @DocsEditable
4595 @DomName('SVGPathSegCurvetoCubicRel') 4669 @DomName('SVGPathSegCurvetoCubicRel')
4596 @Unstable 4670 @Unstable
4597 class PathSegCurvetoCubicRel extends PathSeg { 4671 class PathSegCurvetoCubicRel extends PathSeg {
4598 PathSegCurvetoCubicRel.internal() : super.internal(); 4672 // To suppress missing implicit constructor warnings.
4673 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); }
4599 4674
4600 @DomName('SVGPathSegCurvetoCubicRel.x') 4675 @DomName('SVGPathSegCurvetoCubicRel.x')
4601 @DocsEditable 4676 @DocsEditable
4602 num get x native "SVGPathSegCurvetoCubicRel_x_Getter"; 4677 num get x native "SVGPathSegCurvetoCubicRel_x_Getter";
4603 4678
4604 @DomName('SVGPathSegCurvetoCubicRel.x') 4679 @DomName('SVGPathSegCurvetoCubicRel.x')
4605 @DocsEditable 4680 @DocsEditable
4606 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter"; 4681 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter";
4607 4682
4608 @DomName('SVGPathSegCurvetoCubicRel.x1') 4683 @DomName('SVGPathSegCurvetoCubicRel.x1')
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
4650 // for details. All rights reserved. Use of this source code is governed by a 4725 // for details. All rights reserved. Use of this source code is governed by a
4651 // BSD-style license that can be found in the LICENSE file. 4726 // BSD-style license that can be found in the LICENSE file.
4652 4727
4653 // WARNING: Do not edit - generated code. 4728 // WARNING: Do not edit - generated code.
4654 4729
4655 4730
4656 @DocsEditable 4731 @DocsEditable
4657 @DomName('SVGPathSegCurvetoCubicSmoothAbs') 4732 @DomName('SVGPathSegCurvetoCubicSmoothAbs')
4658 @Unstable 4733 @Unstable
4659 class PathSegCurvetoCubicSmoothAbs extends PathSeg { 4734 class PathSegCurvetoCubicSmoothAbs extends PathSeg {
4660 PathSegCurvetoCubicSmoothAbs.internal() : super.internal(); 4735 // To suppress missing implicit constructor warnings.
4736 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); }
4661 4737
4662 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4738 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4663 @DocsEditable 4739 @DocsEditable
4664 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter"; 4740 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter";
4665 4741
4666 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4742 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4667 @DocsEditable 4743 @DocsEditable
4668 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter"; 4744 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter";
4669 4745
4670 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 4746 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
(...skipping 25 matching lines...) Expand all
4696 // for details. All rights reserved. Use of this source code is governed by a 4772 // for details. All rights reserved. Use of this source code is governed by a
4697 // BSD-style license that can be found in the LICENSE file. 4773 // BSD-style license that can be found in the LICENSE file.
4698 4774
4699 // WARNING: Do not edit - generated code. 4775 // WARNING: Do not edit - generated code.
4700 4776
4701 4777
4702 @DocsEditable 4778 @DocsEditable
4703 @DomName('SVGPathSegCurvetoCubicSmoothRel') 4779 @DomName('SVGPathSegCurvetoCubicSmoothRel')
4704 @Unstable 4780 @Unstable
4705 class PathSegCurvetoCubicSmoothRel extends PathSeg { 4781 class PathSegCurvetoCubicSmoothRel extends PathSeg {
4706 PathSegCurvetoCubicSmoothRel.internal() : super.internal(); 4782 // To suppress missing implicit constructor warnings.
4783 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); }
4707 4784
4708 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4785 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4709 @DocsEditable 4786 @DocsEditable
4710 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter"; 4787 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter";
4711 4788
4712 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4789 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4713 @DocsEditable 4790 @DocsEditable
4714 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter"; 4791 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter";
4715 4792
4716 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 4793 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
(...skipping 25 matching lines...) Expand all
4742 // for details. All rights reserved. Use of this source code is governed by a 4819 // for details. All rights reserved. Use of this source code is governed by a
4743 // BSD-style license that can be found in the LICENSE file. 4820 // BSD-style license that can be found in the LICENSE file.
4744 4821
4745 // WARNING: Do not edit - generated code. 4822 // WARNING: Do not edit - generated code.
4746 4823
4747 4824
4748 @DocsEditable 4825 @DocsEditable
4749 @DomName('SVGPathSegCurvetoQuadraticAbs') 4826 @DomName('SVGPathSegCurvetoQuadraticAbs')
4750 @Unstable 4827 @Unstable
4751 class PathSegCurvetoQuadraticAbs extends PathSeg { 4828 class PathSegCurvetoQuadraticAbs extends PathSeg {
4752 PathSegCurvetoQuadraticAbs.internal() : super.internal(); 4829 // To suppress missing implicit constructor warnings.
4830 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); }
4753 4831
4754 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4832 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4755 @DocsEditable 4833 @DocsEditable
4756 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter"; 4834 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter";
4757 4835
4758 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4836 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4759 @DocsEditable 4837 @DocsEditable
4760 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter"; 4838 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter";
4761 4839
4762 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 4840 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
(...skipping 25 matching lines...) Expand all
4788 // for details. All rights reserved. Use of this source code is governed by a 4866 // for details. All rights reserved. Use of this source code is governed by a
4789 // BSD-style license that can be found in the LICENSE file. 4867 // BSD-style license that can be found in the LICENSE file.
4790 4868
4791 // WARNING: Do not edit - generated code. 4869 // WARNING: Do not edit - generated code.
4792 4870
4793 4871
4794 @DocsEditable 4872 @DocsEditable
4795 @DomName('SVGPathSegCurvetoQuadraticRel') 4873 @DomName('SVGPathSegCurvetoQuadraticRel')
4796 @Unstable 4874 @Unstable
4797 class PathSegCurvetoQuadraticRel extends PathSeg { 4875 class PathSegCurvetoQuadraticRel extends PathSeg {
4798 PathSegCurvetoQuadraticRel.internal() : super.internal(); 4876 // To suppress missing implicit constructor warnings.
4877 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); }
4799 4878
4800 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4879 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4801 @DocsEditable 4880 @DocsEditable
4802 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter"; 4881 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter";
4803 4882
4804 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4883 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4805 @DocsEditable 4884 @DocsEditable
4806 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter"; 4885 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter";
4807 4886
4808 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 4887 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
(...skipping 25 matching lines...) Expand all
4834 // for details. All rights reserved. Use of this source code is governed by a 4913 // for details. All rights reserved. Use of this source code is governed by a
4835 // BSD-style license that can be found in the LICENSE file. 4914 // BSD-style license that can be found in the LICENSE file.
4836 4915
4837 // WARNING: Do not edit - generated code. 4916 // WARNING: Do not edit - generated code.
4838 4917
4839 4918
4840 @DocsEditable 4919 @DocsEditable
4841 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') 4920 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs')
4842 @Unstable 4921 @Unstable
4843 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { 4922 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
4844 PathSegCurvetoQuadraticSmoothAbs.internal() : super.internal(); 4923 // To suppress missing implicit constructor warnings.
4924 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); }
4845 4925
4846 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4926 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4847 @DocsEditable 4927 @DocsEditable
4848 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter"; 4928 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter";
4849 4929
4850 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4930 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4851 @DocsEditable 4931 @DocsEditable
4852 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter"; 4932 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter";
4853 4933
4854 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4934 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4855 @DocsEditable 4935 @DocsEditable
4856 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter"; 4936 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter";
4857 4937
4858 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4938 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4859 @DocsEditable 4939 @DocsEditable
4860 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter"; 4940 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter";
4861 4941
4862 } 4942 }
4863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4943 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4864 // for details. All rights reserved. Use of this source code is governed by a 4944 // for details. All rights reserved. Use of this source code is governed by a
4865 // BSD-style license that can be found in the LICENSE file. 4945 // BSD-style license that can be found in the LICENSE file.
4866 4946
4867 // WARNING: Do not edit - generated code. 4947 // WARNING: Do not edit - generated code.
4868 4948
4869 4949
4870 @DocsEditable 4950 @DocsEditable
4871 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') 4951 @DomName('SVGPathSegCurvetoQuadraticSmoothRel')
4872 @Unstable 4952 @Unstable
4873 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { 4953 class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
4874 PathSegCurvetoQuadraticSmoothRel.internal() : super.internal(); 4954 // To suppress missing implicit constructor warnings.
4955 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); }
4875 4956
4876 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4957 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4877 @DocsEditable 4958 @DocsEditable
4878 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter"; 4959 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter";
4879 4960
4880 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4961 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4881 @DocsEditable 4962 @DocsEditable
4882 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter"; 4963 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter";
4883 4964
4884 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4965 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4885 @DocsEditable 4966 @DocsEditable
4886 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter"; 4967 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter";
4887 4968
4888 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4969 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4889 @DocsEditable 4970 @DocsEditable
4890 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter"; 4971 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter";
4891 4972
4892 } 4973 }
4893 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4894 // for details. All rights reserved. Use of this source code is governed by a 4975 // for details. All rights reserved. Use of this source code is governed by a
4895 // BSD-style license that can be found in the LICENSE file. 4976 // BSD-style license that can be found in the LICENSE file.
4896 4977
4897 // WARNING: Do not edit - generated code. 4978 // WARNING: Do not edit - generated code.
4898 4979
4899 4980
4900 @DocsEditable 4981 @DocsEditable
4901 @DomName('SVGPathSegLinetoAbs') 4982 @DomName('SVGPathSegLinetoAbs')
4902 @Unstable 4983 @Unstable
4903 class PathSegLinetoAbs extends PathSeg { 4984 class PathSegLinetoAbs extends PathSeg {
4904 PathSegLinetoAbs.internal() : super.internal(); 4985 // To suppress missing implicit constructor warnings.
4986 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); }
4905 4987
4906 @DomName('SVGPathSegLinetoAbs.x') 4988 @DomName('SVGPathSegLinetoAbs.x')
4907 @DocsEditable 4989 @DocsEditable
4908 num get x native "SVGPathSegLinetoAbs_x_Getter"; 4990 num get x native "SVGPathSegLinetoAbs_x_Getter";
4909 4991
4910 @DomName('SVGPathSegLinetoAbs.x') 4992 @DomName('SVGPathSegLinetoAbs.x')
4911 @DocsEditable 4993 @DocsEditable
4912 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter"; 4994 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter";
4913 4995
4914 @DomName('SVGPathSegLinetoAbs.y') 4996 @DomName('SVGPathSegLinetoAbs.y')
4915 @DocsEditable 4997 @DocsEditable
4916 num get y native "SVGPathSegLinetoAbs_y_Getter"; 4998 num get y native "SVGPathSegLinetoAbs_y_Getter";
4917 4999
4918 @DomName('SVGPathSegLinetoAbs.y') 5000 @DomName('SVGPathSegLinetoAbs.y')
4919 @DocsEditable 5001 @DocsEditable
4920 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter"; 5002 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter";
4921 5003
4922 } 5004 }
4923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5005 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4924 // for details. All rights reserved. Use of this source code is governed by a 5006 // for details. All rights reserved. Use of this source code is governed by a
4925 // BSD-style license that can be found in the LICENSE file. 5007 // BSD-style license that can be found in the LICENSE file.
4926 5008
4927 // WARNING: Do not edit - generated code. 5009 // WARNING: Do not edit - generated code.
4928 5010
4929 5011
4930 @DocsEditable 5012 @DocsEditable
4931 @DomName('SVGPathSegLinetoHorizontalAbs') 5013 @DomName('SVGPathSegLinetoHorizontalAbs')
4932 @Unstable 5014 @Unstable
4933 class PathSegLinetoHorizontalAbs extends PathSeg { 5015 class PathSegLinetoHorizontalAbs extends PathSeg {
4934 PathSegLinetoHorizontalAbs.internal() : super.internal(); 5016 // To suppress missing implicit constructor warnings.
5017 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); }
4935 5018
4936 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5019 @DomName('SVGPathSegLinetoHorizontalAbs.x')
4937 @DocsEditable 5020 @DocsEditable
4938 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter"; 5021 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter";
4939 5022
4940 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5023 @DomName('SVGPathSegLinetoHorizontalAbs.x')
4941 @DocsEditable 5024 @DocsEditable
4942 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter"; 5025 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter";
4943 5026
4944 } 5027 }
4945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5028 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4946 // for details. All rights reserved. Use of this source code is governed by a 5029 // for details. All rights reserved. Use of this source code is governed by a
4947 // BSD-style license that can be found in the LICENSE file. 5030 // BSD-style license that can be found in the LICENSE file.
4948 5031
4949 // WARNING: Do not edit - generated code. 5032 // WARNING: Do not edit - generated code.
4950 5033
4951 5034
4952 @DocsEditable 5035 @DocsEditable
4953 @DomName('SVGPathSegLinetoHorizontalRel') 5036 @DomName('SVGPathSegLinetoHorizontalRel')
4954 @Unstable 5037 @Unstable
4955 class PathSegLinetoHorizontalRel extends PathSeg { 5038 class PathSegLinetoHorizontalRel extends PathSeg {
4956 PathSegLinetoHorizontalRel.internal() : super.internal(); 5039 // To suppress missing implicit constructor warnings.
5040 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); }
4957 5041
4958 @DomName('SVGPathSegLinetoHorizontalRel.x') 5042 @DomName('SVGPathSegLinetoHorizontalRel.x')
4959 @DocsEditable 5043 @DocsEditable
4960 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter"; 5044 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter";
4961 5045
4962 @DomName('SVGPathSegLinetoHorizontalRel.x') 5046 @DomName('SVGPathSegLinetoHorizontalRel.x')
4963 @DocsEditable 5047 @DocsEditable
4964 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter"; 5048 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter";
4965 5049
4966 } 5050 }
4967 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5051 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4968 // for details. All rights reserved. Use of this source code is governed by a 5052 // for details. All rights reserved. Use of this source code is governed by a
4969 // BSD-style license that can be found in the LICENSE file. 5053 // BSD-style license that can be found in the LICENSE file.
4970 5054
4971 // WARNING: Do not edit - generated code. 5055 // WARNING: Do not edit - generated code.
4972 5056
4973 5057
4974 @DocsEditable 5058 @DocsEditable
4975 @DomName('SVGPathSegLinetoRel') 5059 @DomName('SVGPathSegLinetoRel')
4976 @Unstable 5060 @Unstable
4977 class PathSegLinetoRel extends PathSeg { 5061 class PathSegLinetoRel extends PathSeg {
4978 PathSegLinetoRel.internal() : super.internal(); 5062 // To suppress missing implicit constructor warnings.
5063 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); }
4979 5064
4980 @DomName('SVGPathSegLinetoRel.x') 5065 @DomName('SVGPathSegLinetoRel.x')
4981 @DocsEditable 5066 @DocsEditable
4982 num get x native "SVGPathSegLinetoRel_x_Getter"; 5067 num get x native "SVGPathSegLinetoRel_x_Getter";
4983 5068
4984 @DomName('SVGPathSegLinetoRel.x') 5069 @DomName('SVGPathSegLinetoRel.x')
4985 @DocsEditable 5070 @DocsEditable
4986 void set x(num value) native "SVGPathSegLinetoRel_x_Setter"; 5071 void set x(num value) native "SVGPathSegLinetoRel_x_Setter";
4987 5072
4988 @DomName('SVGPathSegLinetoRel.y') 5073 @DomName('SVGPathSegLinetoRel.y')
4989 @DocsEditable 5074 @DocsEditable
4990 num get y native "SVGPathSegLinetoRel_y_Getter"; 5075 num get y native "SVGPathSegLinetoRel_y_Getter";
4991 5076
4992 @DomName('SVGPathSegLinetoRel.y') 5077 @DomName('SVGPathSegLinetoRel.y')
4993 @DocsEditable 5078 @DocsEditable
4994 void set y(num value) native "SVGPathSegLinetoRel_y_Setter"; 5079 void set y(num value) native "SVGPathSegLinetoRel_y_Setter";
4995 5080
4996 } 5081 }
4997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5082 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4998 // for details. All rights reserved. Use of this source code is governed by a 5083 // for details. All rights reserved. Use of this source code is governed by a
4999 // BSD-style license that can be found in the LICENSE file. 5084 // BSD-style license that can be found in the LICENSE file.
5000 5085
5001 // WARNING: Do not edit - generated code. 5086 // WARNING: Do not edit - generated code.
5002 5087
5003 5088
5004 @DocsEditable 5089 @DocsEditable
5005 @DomName('SVGPathSegLinetoVerticalAbs') 5090 @DomName('SVGPathSegLinetoVerticalAbs')
5006 @Unstable 5091 @Unstable
5007 class PathSegLinetoVerticalAbs extends PathSeg { 5092 class PathSegLinetoVerticalAbs extends PathSeg {
5008 PathSegLinetoVerticalAbs.internal() : super.internal(); 5093 // To suppress missing implicit constructor warnings.
5094 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); }
5009 5095
5010 @DomName('SVGPathSegLinetoVerticalAbs.y') 5096 @DomName('SVGPathSegLinetoVerticalAbs.y')
5011 @DocsEditable 5097 @DocsEditable
5012 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter"; 5098 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter";
5013 5099
5014 @DomName('SVGPathSegLinetoVerticalAbs.y') 5100 @DomName('SVGPathSegLinetoVerticalAbs.y')
5015 @DocsEditable 5101 @DocsEditable
5016 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter"; 5102 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter";
5017 5103
5018 } 5104 }
5019 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5020 // for details. All rights reserved. Use of this source code is governed by a 5106 // for details. All rights reserved. Use of this source code is governed by a
5021 // BSD-style license that can be found in the LICENSE file. 5107 // BSD-style license that can be found in the LICENSE file.
5022 5108
5023 // WARNING: Do not edit - generated code. 5109 // WARNING: Do not edit - generated code.
5024 5110
5025 5111
5026 @DocsEditable 5112 @DocsEditable
5027 @DomName('SVGPathSegLinetoVerticalRel') 5113 @DomName('SVGPathSegLinetoVerticalRel')
5028 @Unstable 5114 @Unstable
5029 class PathSegLinetoVerticalRel extends PathSeg { 5115 class PathSegLinetoVerticalRel extends PathSeg {
5030 PathSegLinetoVerticalRel.internal() : super.internal(); 5116 // To suppress missing implicit constructor warnings.
5117 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); }
5031 5118
5032 @DomName('SVGPathSegLinetoVerticalRel.y') 5119 @DomName('SVGPathSegLinetoVerticalRel.y')
5033 @DocsEditable 5120 @DocsEditable
5034 num get y native "SVGPathSegLinetoVerticalRel_y_Getter"; 5121 num get y native "SVGPathSegLinetoVerticalRel_y_Getter";
5035 5122
5036 @DomName('SVGPathSegLinetoVerticalRel.y') 5123 @DomName('SVGPathSegLinetoVerticalRel.y')
5037 @DocsEditable 5124 @DocsEditable
5038 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter"; 5125 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter";
5039 5126
5040 } 5127 }
5041 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5128 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5042 // for details. All rights reserved. Use of this source code is governed by a 5129 // for details. All rights reserved. Use of this source code is governed by a
5043 // BSD-style license that can be found in the LICENSE file. 5130 // BSD-style license that can be found in the LICENSE file.
5044 5131
5045 // WARNING: Do not edit - generated code. 5132 // WARNING: Do not edit - generated code.
5046 5133
5047 5134
5048 @DocsEditable 5135 @DocsEditable
5049 @DomName('SVGPathSegList') 5136 @DomName('SVGPathSegList')
5050 @Unstable 5137 @Unstable
5051 class PathSegList extends NativeFieldWrapperClass1 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> { 5138 class PathSegList extends NativeFieldWrapperClass1 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> {
5052 PathSegList.internal(); 5139 // To suppress missing implicit constructor warnings.
5140 factory PathSegList._() { throw new UnsupportedError("Not supported"); }
5053 5141
5054 @DomName('SVGPathSegList.numberOfItems') 5142 @DomName('SVGPathSegList.numberOfItems')
5055 @DocsEditable 5143 @DocsEditable
5056 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter"; 5144 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter";
5057 5145
5058 PathSeg operator[](int index) { 5146 PathSeg operator[](int index) {
5059 if (index < 0 || index >= length) 5147 if (index < 0 || index >= length)
5060 throw new RangeError.range(index, 0, length); 5148 throw new RangeError.range(index, 0, length);
5061 return _nativeIndexedGetter(index); 5149 return _nativeIndexedGetter(index);
5062 } 5150 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
5135 // for details. All rights reserved. Use of this source code is governed by a 5223 // for details. All rights reserved. Use of this source code is governed by a
5136 // BSD-style license that can be found in the LICENSE file. 5224 // BSD-style license that can be found in the LICENSE file.
5137 5225
5138 // WARNING: Do not edit - generated code. 5226 // WARNING: Do not edit - generated code.
5139 5227
5140 5228
5141 @DocsEditable 5229 @DocsEditable
5142 @DomName('SVGPathSegMovetoAbs') 5230 @DomName('SVGPathSegMovetoAbs')
5143 @Unstable 5231 @Unstable
5144 class PathSegMovetoAbs extends PathSeg { 5232 class PathSegMovetoAbs extends PathSeg {
5145 PathSegMovetoAbs.internal() : super.internal(); 5233 // To suppress missing implicit constructor warnings.
5234 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); }
5146 5235
5147 @DomName('SVGPathSegMovetoAbs.x') 5236 @DomName('SVGPathSegMovetoAbs.x')
5148 @DocsEditable 5237 @DocsEditable
5149 num get x native "SVGPathSegMovetoAbs_x_Getter"; 5238 num get x native "SVGPathSegMovetoAbs_x_Getter";
5150 5239
5151 @DomName('SVGPathSegMovetoAbs.x') 5240 @DomName('SVGPathSegMovetoAbs.x')
5152 @DocsEditable 5241 @DocsEditable
5153 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter"; 5242 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter";
5154 5243
5155 @DomName('SVGPathSegMovetoAbs.y') 5244 @DomName('SVGPathSegMovetoAbs.y')
5156 @DocsEditable 5245 @DocsEditable
5157 num get y native "SVGPathSegMovetoAbs_y_Getter"; 5246 num get y native "SVGPathSegMovetoAbs_y_Getter";
5158 5247
5159 @DomName('SVGPathSegMovetoAbs.y') 5248 @DomName('SVGPathSegMovetoAbs.y')
5160 @DocsEditable 5249 @DocsEditable
5161 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter"; 5250 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter";
5162 5251
5163 } 5252 }
5164 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5165 // for details. All rights reserved. Use of this source code is governed by a 5254 // for details. All rights reserved. Use of this source code is governed by a
5166 // BSD-style license that can be found in the LICENSE file. 5255 // BSD-style license that can be found in the LICENSE file.
5167 5256
5168 // WARNING: Do not edit - generated code. 5257 // WARNING: Do not edit - generated code.
5169 5258
5170 5259
5171 @DocsEditable 5260 @DocsEditable
5172 @DomName('SVGPathSegMovetoRel') 5261 @DomName('SVGPathSegMovetoRel')
5173 @Unstable 5262 @Unstable
5174 class PathSegMovetoRel extends PathSeg { 5263 class PathSegMovetoRel extends PathSeg {
5175 PathSegMovetoRel.internal() : super.internal(); 5264 // To suppress missing implicit constructor warnings.
5265 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); }
5176 5266
5177 @DomName('SVGPathSegMovetoRel.x') 5267 @DomName('SVGPathSegMovetoRel.x')
5178 @DocsEditable 5268 @DocsEditable
5179 num get x native "SVGPathSegMovetoRel_x_Getter"; 5269 num get x native "SVGPathSegMovetoRel_x_Getter";
5180 5270
5181 @DomName('SVGPathSegMovetoRel.x') 5271 @DomName('SVGPathSegMovetoRel.x')
5182 @DocsEditable 5272 @DocsEditable
5183 void set x(num value) native "SVGPathSegMovetoRel_x_Setter"; 5273 void set x(num value) native "SVGPathSegMovetoRel_x_Setter";
5184 5274
5185 @DomName('SVGPathSegMovetoRel.y') 5275 @DomName('SVGPathSegMovetoRel.y')
5186 @DocsEditable 5276 @DocsEditable
5187 num get y native "SVGPathSegMovetoRel_y_Getter"; 5277 num get y native "SVGPathSegMovetoRel_y_Getter";
5188 5278
5189 @DomName('SVGPathSegMovetoRel.y') 5279 @DomName('SVGPathSegMovetoRel.y')
5190 @DocsEditable 5280 @DocsEditable
5191 void set y(num value) native "SVGPathSegMovetoRel_y_Setter"; 5281 void set y(num value) native "SVGPathSegMovetoRel_y_Setter";
5192 5282
5193 } 5283 }
5194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5284 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5195 // for details. All rights reserved. Use of this source code is governed by a 5285 // for details. All rights reserved. Use of this source code is governed by a
5196 // BSD-style license that can be found in the LICENSE file. 5286 // BSD-style license that can be found in the LICENSE file.
5197 5287
5198 // WARNING: Do not edit - generated code. 5288 // WARNING: Do not edit - generated code.
5199 5289
5200 5290
5201 @DocsEditable 5291 @DocsEditable
5202 @DomName('SVGPatternElement') 5292 @DomName('SVGPatternElement')
5203 @Unstable 5293 @Unstable
5204 class PatternElement extends StyledElement implements FitToViewBox, UriReference , Tests, ExternalResourcesRequired, LangSpace { 5294 class PatternElement extends StyledElement implements FitToViewBox, UriReference , Tests, ExternalResourcesRequired, LangSpace {
5205 PatternElement.internal() : super.internal(); 5295 // To suppress missing implicit constructor warnings.
5296 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
5206 5297
5207 @DomName('SVGPatternElement.SVGPatternElement') 5298 @DomName('SVGPatternElement.SVGPatternElement')
5208 @DocsEditable 5299 @DocsEditable
5209 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 5300 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
5210 5301
5211 @DomName('SVGPatternElement.height') 5302 @DomName('SVGPatternElement.height')
5212 @DocsEditable 5303 @DocsEditable
5213 AnimatedLength get height native "SVGPatternElement_height_Getter"; 5304 AnimatedLength get height native "SVGPatternElement_height_Getter";
5214 5305
5215 @DomName('SVGPatternElement.patternContentUnits') 5306 @DomName('SVGPatternElement.patternContentUnits')
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
5289 // for details. All rights reserved. Use of this source code is governed by a 5380 // for details. All rights reserved. Use of this source code is governed by a
5290 // BSD-style license that can be found in the LICENSE file. 5381 // BSD-style license that can be found in the LICENSE file.
5291 5382
5292 // WARNING: Do not edit - generated code. 5383 // WARNING: Do not edit - generated code.
5293 5384
5294 5385
5295 @DocsEditable 5386 @DocsEditable
5296 @DomName('SVGPoint') 5387 @DomName('SVGPoint')
5297 @Unstable 5388 @Unstable
5298 class Point extends NativeFieldWrapperClass1 { 5389 class Point extends NativeFieldWrapperClass1 {
5299 Point.internal(); 5390 // To suppress missing implicit constructor warnings.
5391 factory Point._() { throw new UnsupportedError("Not supported"); }
5300 5392
5301 @DomName('SVGPoint.x') 5393 @DomName('SVGPoint.x')
5302 @DocsEditable 5394 @DocsEditable
5303 num get x native "SVGPoint_x_Getter"; 5395 num get x native "SVGPoint_x_Getter";
5304 5396
5305 @DomName('SVGPoint.x') 5397 @DomName('SVGPoint.x')
5306 @DocsEditable 5398 @DocsEditable
5307 void set x(num value) native "SVGPoint_x_Setter"; 5399 void set x(num value) native "SVGPoint_x_Setter";
5308 5400
5309 @DomName('SVGPoint.y') 5401 @DomName('SVGPoint.y')
(...skipping 13 matching lines...) Expand all
5323 // for details. All rights reserved. Use of this source code is governed by a 5415 // for details. All rights reserved. Use of this source code is governed by a
5324 // BSD-style license that can be found in the LICENSE file. 5416 // BSD-style license that can be found in the LICENSE file.
5325 5417
5326 // WARNING: Do not edit - generated code. 5418 // WARNING: Do not edit - generated code.
5327 5419
5328 5420
5329 @DocsEditable 5421 @DocsEditable
5330 @DomName('SVGPointList') 5422 @DomName('SVGPointList')
5331 @Unstable 5423 @Unstable
5332 class PointList extends NativeFieldWrapperClass1 { 5424 class PointList extends NativeFieldWrapperClass1 {
5333 PointList.internal(); 5425 // To suppress missing implicit constructor warnings.
5426 factory PointList._() { throw new UnsupportedError("Not supported"); }
5334 5427
5335 @DomName('SVGPointList.numberOfItems') 5428 @DomName('SVGPointList.numberOfItems')
5336 @DocsEditable 5429 @DocsEditable
5337 int get numberOfItems native "SVGPointList_numberOfItems_Getter"; 5430 int get numberOfItems native "SVGPointList_numberOfItems_Getter";
5338 5431
5339 @DomName('SVGPointList.appendItem') 5432 @DomName('SVGPointList.appendItem')
5340 @DocsEditable 5433 @DocsEditable
5341 Point appendItem(Point item) native "SVGPointList_appendItem_Callback"; 5434 Point appendItem(Point item) native "SVGPointList_appendItem_Callback";
5342 5435
5343 @DomName('SVGPointList.clear') 5436 @DomName('SVGPointList.clear')
(...skipping 25 matching lines...) Expand all
5369 // for details. All rights reserved. Use of this source code is governed by a 5462 // for details. All rights reserved. Use of this source code is governed by a
5370 // BSD-style license that can be found in the LICENSE file. 5463 // BSD-style license that can be found in the LICENSE file.
5371 5464
5372 // WARNING: Do not edit - generated code. 5465 // WARNING: Do not edit - generated code.
5373 5466
5374 5467
5375 @DocsEditable 5468 @DocsEditable
5376 @DomName('SVGPolygonElement') 5469 @DomName('SVGPolygonElement')
5377 @Unstable 5470 @Unstable
5378 class PolygonElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace { 5471 class PolygonElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace {
5379 PolygonElement.internal() : super.internal(); 5472 // To suppress missing implicit constructor warnings.
5473 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
5380 5474
5381 @DomName('SVGPolygonElement.SVGPolygonElement') 5475 @DomName('SVGPolygonElement.SVGPolygonElement')
5382 @DocsEditable 5476 @DocsEditable
5383 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 5477 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
5384 5478
5385 @DomName('SVGPolygonElement.animatedPoints') 5479 @DomName('SVGPolygonElement.animatedPoints')
5386 @DocsEditable 5480 @DocsEditable
5387 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter"; 5481 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter";
5388 5482
5389 @DomName('SVGPolygonElement.points') 5483 @DomName('SVGPolygonElement.points')
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
5459 // for details. All rights reserved. Use of this source code is governed by a 5553 // for details. All rights reserved. Use of this source code is governed by a
5460 // BSD-style license that can be found in the LICENSE file. 5554 // BSD-style license that can be found in the LICENSE file.
5461 5555
5462 // WARNING: Do not edit - generated code. 5556 // WARNING: Do not edit - generated code.
5463 5557
5464 5558
5465 @DocsEditable 5559 @DocsEditable
5466 @DomName('SVGPolylineElement') 5560 @DomName('SVGPolylineElement')
5467 @Unstable 5561 @Unstable
5468 class PolylineElement extends StyledElement implements Transformable, Tests, Ext ernalResourcesRequired, LangSpace { 5562 class PolylineElement extends StyledElement implements Transformable, Tests, Ext ernalResourcesRequired, LangSpace {
5469 PolylineElement.internal() : super.internal(); 5563 // To suppress missing implicit constructor warnings.
5564 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
5470 5565
5471 @DomName('SVGPolylineElement.SVGPolylineElement') 5566 @DomName('SVGPolylineElement.SVGPolylineElement')
5472 @DocsEditable 5567 @DocsEditable
5473 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 5568 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
5474 5569
5475 @DomName('SVGPolylineElement.animatedPoints') 5570 @DomName('SVGPolylineElement.animatedPoints')
5476 @DocsEditable 5571 @DocsEditable
5477 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ; 5572 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter" ;
5478 5573
5479 @DomName('SVGPolylineElement.points') 5574 @DomName('SVGPolylineElement.points')
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
5549 // for details. All rights reserved. Use of this source code is governed by a 5644 // for details. All rights reserved. Use of this source code is governed by a
5550 // BSD-style license that can be found in the LICENSE file. 5645 // BSD-style license that can be found in the LICENSE file.
5551 5646
5552 // WARNING: Do not edit - generated code. 5647 // WARNING: Do not edit - generated code.
5553 5648
5554 5649
5555 @DocsEditable 5650 @DocsEditable
5556 @DomName('SVGPreserveAspectRatio') 5651 @DomName('SVGPreserveAspectRatio')
5557 @Unstable 5652 @Unstable
5558 class PreserveAspectRatio extends NativeFieldWrapperClass1 { 5653 class PreserveAspectRatio extends NativeFieldWrapperClass1 {
5559 PreserveAspectRatio.internal(); 5654 // To suppress missing implicit constructor warnings.
5655 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported"); }
5560 5656
5561 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') 5657 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
5562 @DocsEditable 5658 @DocsEditable
5563 static const int SVG_MEETORSLICE_MEET = 1; 5659 static const int SVG_MEETORSLICE_MEET = 1;
5564 5660
5565 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') 5661 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE')
5566 @DocsEditable 5662 @DocsEditable
5567 static const int SVG_MEETORSLICE_SLICE = 2; 5663 static const int SVG_MEETORSLICE_SLICE = 2;
5568 5664
5569 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') 5665 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN')
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
5635 // for details. All rights reserved. Use of this source code is governed by a 5731 // for details. All rights reserved. Use of this source code is governed by a
5636 // BSD-style license that can be found in the LICENSE file. 5732 // BSD-style license that can be found in the LICENSE file.
5637 5733
5638 // WARNING: Do not edit - generated code. 5734 // WARNING: Do not edit - generated code.
5639 5735
5640 5736
5641 @DocsEditable 5737 @DocsEditable
5642 @DomName('SVGRadialGradientElement') 5738 @DomName('SVGRadialGradientElement')
5643 @Unstable 5739 @Unstable
5644 class RadialGradientElement extends _GradientElement { 5740 class RadialGradientElement extends _GradientElement {
5645 RadialGradientElement.internal() : super.internal(); 5741 // To suppress missing implicit constructor warnings.
5742 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); }
5646 5743
5647 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 5744 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
5648 @DocsEditable 5745 @DocsEditable
5649 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 5746 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
5650 5747
5651 @DomName('SVGRadialGradientElement.cx') 5748 @DomName('SVGRadialGradientElement.cx')
5652 @DocsEditable 5749 @DocsEditable
5653 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; 5750 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter";
5654 5751
5655 @DomName('SVGRadialGradientElement.cy') 5752 @DomName('SVGRadialGradientElement.cy')
(...skipping 21 matching lines...) Expand all
5677 // for details. All rights reserved. Use of this source code is governed by a 5774 // 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. 5775 // BSD-style license that can be found in the LICENSE file.
5679 5776
5680 // WARNING: Do not edit - generated code. 5777 // WARNING: Do not edit - generated code.
5681 5778
5682 5779
5683 @DocsEditable 5780 @DocsEditable
5684 @DomName('SVGRect') 5781 @DomName('SVGRect')
5685 @Unstable 5782 @Unstable
5686 class Rect extends NativeFieldWrapperClass1 { 5783 class Rect extends NativeFieldWrapperClass1 {
5687 Rect.internal(); 5784 // To suppress missing implicit constructor warnings.
5785 factory Rect._() { throw new UnsupportedError("Not supported"); }
5688 5786
5689 @DomName('SVGRect.height') 5787 @DomName('SVGRect.height')
5690 @DocsEditable 5788 @DocsEditable
5691 num get height native "SVGRect_height_Getter"; 5789 num get height native "SVGRect_height_Getter";
5692 5790
5693 @DomName('SVGRect.height') 5791 @DomName('SVGRect.height')
5694 @DocsEditable 5792 @DocsEditable
5695 void set height(num value) native "SVGRect_height_Setter"; 5793 void set height(num value) native "SVGRect_height_Setter";
5696 5794
5697 @DomName('SVGRect.width') 5795 @DomName('SVGRect.width')
(...skipping 25 matching lines...) Expand all
5723 // for details. All rights reserved. Use of this source code is governed by a 5821 // for details. All rights reserved. Use of this source code is governed by a
5724 // BSD-style license that can be found in the LICENSE file. 5822 // BSD-style license that can be found in the LICENSE file.
5725 5823
5726 // WARNING: Do not edit - generated code. 5824 // WARNING: Do not edit - generated code.
5727 5825
5728 5826
5729 @DocsEditable 5827 @DocsEditable
5730 @DomName('SVGRectElement') 5828 @DomName('SVGRectElement')
5731 @Unstable 5829 @Unstable
5732 class RectElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace { 5830 class RectElement extends StyledElement implements Transformable, Tests, Externa lResourcesRequired, LangSpace {
5733 RectElement.internal() : super.internal(); 5831 // To suppress missing implicit constructor warnings.
5832 factory RectElement._() { throw new UnsupportedError("Not supported"); }
5734 5833
5735 @DomName('SVGRectElement.SVGRectElement') 5834 @DomName('SVGRectElement.SVGRectElement')
5736 @DocsEditable 5835 @DocsEditable
5737 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 5836 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5738 5837
5739 @DomName('SVGRectElement.height') 5838 @DomName('SVGRectElement.height')
5740 @DocsEditable 5839 @DocsEditable
5741 AnimatedLength get height native "SVGRectElement_height_Getter"; 5840 AnimatedLength get height native "SVGRectElement_height_Getter";
5742 5841
5743 @DomName('SVGRectElement.rx') 5842 @DomName('SVGRectElement.rx')
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
5829 // for details. All rights reserved. Use of this source code is governed by a 5928 // for details. All rights reserved. Use of this source code is governed by a
5830 // BSD-style license that can be found in the LICENSE file. 5929 // BSD-style license that can be found in the LICENSE file.
5831 5930
5832 // WARNING: Do not edit - generated code. 5931 // WARNING: Do not edit - generated code.
5833 5932
5834 5933
5835 @DocsEditable 5934 @DocsEditable
5836 @DomName('SVGRenderingIntent') 5935 @DomName('SVGRenderingIntent')
5837 @Unstable 5936 @Unstable
5838 class RenderingIntent extends NativeFieldWrapperClass1 { 5937 class RenderingIntent extends NativeFieldWrapperClass1 {
5839 RenderingIntent.internal(); 5938 // To suppress missing implicit constructor warnings.
5939 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); }
5840 5940
5841 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') 5941 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC')
5842 @DocsEditable 5942 @DocsEditable
5843 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 5943 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
5844 5944
5845 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') 5945 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO')
5846 @DocsEditable 5946 @DocsEditable
5847 static const int RENDERING_INTENT_AUTO = 1; 5947 static const int RENDERING_INTENT_AUTO = 1;
5848 5948
5849 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') 5949 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL')
(...skipping 17 matching lines...) Expand all
5867 // for details. All rights reserved. Use of this source code is governed by a 5967 // for details. All rights reserved. Use of this source code is governed by a
5868 // BSD-style license that can be found in the LICENSE file. 5968 // BSD-style license that can be found in the LICENSE file.
5869 5969
5870 // WARNING: Do not edit - generated code. 5970 // WARNING: Do not edit - generated code.
5871 5971
5872 5972
5873 @DocsEditable 5973 @DocsEditable
5874 @DomName('SVGScriptElement') 5974 @DomName('SVGScriptElement')
5875 @Unstable 5975 @Unstable
5876 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired { 5976 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired {
5877 ScriptElement.internal() : super.internal(); 5977 // To suppress missing implicit constructor warnings.
5978 factory ScriptElement._() { throw new UnsupportedError("Not supported"); }
5878 5979
5879 @DomName('SVGScriptElement.SVGScriptElement') 5980 @DomName('SVGScriptElement.SVGScriptElement')
5880 @DocsEditable 5981 @DocsEditable
5881 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 5982 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
5882 5983
5883 @DomName('SVGScriptElement.type') 5984 @DomName('SVGScriptElement.type')
5884 @DocsEditable 5985 @DocsEditable
5885 String get type native "SVGScriptElement_type_Getter"; 5986 String get type native "SVGScriptElement_type_Getter";
5886 5987
5887 @DomName('SVGScriptElement.type') 5988 @DomName('SVGScriptElement.type')
(...skipping 16 matching lines...) Expand all
5904 // WARNING: Do not edit - generated code. 6005 // WARNING: Do not edit - generated code.
5905 6006
5906 6007
5907 @DocsEditable 6008 @DocsEditable
5908 @DomName('SVGSetElement') 6009 @DomName('SVGSetElement')
5909 @SupportedBrowser(SupportedBrowser.CHROME) 6010 @SupportedBrowser(SupportedBrowser.CHROME)
5910 @SupportedBrowser(SupportedBrowser.FIREFOX) 6011 @SupportedBrowser(SupportedBrowser.FIREFOX)
5911 @SupportedBrowser(SupportedBrowser.SAFARI) 6012 @SupportedBrowser(SupportedBrowser.SAFARI)
5912 @Unstable 6013 @Unstable
5913 class SetElement extends AnimationElement { 6014 class SetElement extends AnimationElement {
5914 SetElement.internal() : super.internal(); 6015 // To suppress missing implicit constructor warnings.
6016 factory SetElement._() { throw new UnsupportedError("Not supported"); }
5915 6017
5916 @DomName('SVGSetElement.SVGSetElement') 6018 @DomName('SVGSetElement.SVGSetElement')
5917 @DocsEditable 6019 @DocsEditable
5918 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ; 6020 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ;
5919 6021
5920 /// Checks if this type is supported on the current platform. 6022 /// Checks if this type is supported on the current platform.
5921 static bool get supported => true; 6023 static bool get supported => true;
5922 6024
5923 } 6025 }
5924 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5925 // for details. All rights reserved. Use of this source code is governed by a 6027 // for details. All rights reserved. Use of this source code is governed by a
5926 // BSD-style license that can be found in the LICENSE file. 6028 // BSD-style license that can be found in the LICENSE file.
5927 6029
5928 // WARNING: Do not edit - generated code. 6030 // WARNING: Do not edit - generated code.
5929 6031
5930 6032
5931 @DocsEditable 6033 @DocsEditable
5932 @DomName('SVGStopElement') 6034 @DomName('SVGStopElement')
5933 @Unstable 6035 @Unstable
5934 class StopElement extends StyledElement { 6036 class StopElement extends StyledElement {
5935 StopElement.internal() : super.internal(); 6037 // To suppress missing implicit constructor warnings.
6038 factory StopElement._() { throw new UnsupportedError("Not supported"); }
5936 6039
5937 @DomName('SVGStopElement.SVGStopElement') 6040 @DomName('SVGStopElement.SVGStopElement')
5938 @DocsEditable 6041 @DocsEditable
5939 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 6042 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
5940 6043
5941 @DomName('SVGStopElement.offset') 6044 @DomName('SVGStopElement.offset')
5942 @DocsEditable 6045 @DocsEditable
5943 AnimatedNumber get gradientOffset native "SVGStopElement_offset_Getter"; 6046 AnimatedNumber get gradientOffset native "SVGStopElement_offset_Getter";
5944 6047
5945 } 6048 }
5946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6049 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5947 // for details. All rights reserved. Use of this source code is governed by a 6050 // for details. All rights reserved. Use of this source code is governed by a
5948 // BSD-style license that can be found in the LICENSE file. 6051 // BSD-style license that can be found in the LICENSE file.
5949 6052
5950 // WARNING: Do not edit - generated code. 6053 // WARNING: Do not edit - generated code.
5951 6054
5952 6055
5953 @DocsEditable 6056 @DocsEditable
5954 @DomName('SVGStringList') 6057 @DomName('SVGStringList')
5955 @Unstable 6058 @Unstable
5956 class StringList extends NativeFieldWrapperClass1 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> { 6059 class StringList extends NativeFieldWrapperClass1 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> {
5957 StringList.internal(); 6060 // To suppress missing implicit constructor warnings.
6061 factory StringList._() { throw new UnsupportedError("Not supported"); }
5958 6062
5959 @DomName('SVGStringList.numberOfItems') 6063 @DomName('SVGStringList.numberOfItems')
5960 @DocsEditable 6064 @DocsEditable
5961 int get numberOfItems native "SVGStringList_numberOfItems_Getter"; 6065 int get numberOfItems native "SVGStringList_numberOfItems_Getter";
5962 6066
5963 String operator[](int index) { 6067 String operator[](int index) {
5964 if (index < 0 || index >= length) 6068 if (index < 0 || index >= length)
5965 throw new RangeError.range(index, 0, length); 6069 throw new RangeError.range(index, 0, length);
5966 return _nativeIndexedGetter(index); 6070 return _nativeIndexedGetter(index);
5967 } 6071 }
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
6041 // BSD-style license that can be found in the LICENSE file. 6145 // BSD-style license that can be found in the LICENSE file.
6042 6146
6043 // WARNING: Do not edit - generated code. 6147 // WARNING: Do not edit - generated code.
6044 6148
6045 6149
6046 @DocsEditable 6150 @DocsEditable
6047 @DomName('SVGStyleElement') 6151 @DomName('SVGStyleElement')
6048 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 6152 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
6049 @Experimental // nonstandard 6153 @Experimental // nonstandard
6050 class StyleElement extends SvgElement implements LangSpace { 6154 class StyleElement extends SvgElement implements LangSpace {
6051 StyleElement.internal() : super.internal(); 6155 // To suppress missing implicit constructor warnings.
6156 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
6052 6157
6053 @DomName('SVGStyleElement.SVGStyleElement') 6158 @DomName('SVGStyleElement.SVGStyleElement')
6054 @DocsEditable 6159 @DocsEditable
6055 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 6160 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
6056 6161
6057 @DomName('SVGStyleElement.disabled') 6162 @DomName('SVGStyleElement.disabled')
6058 @DocsEditable 6163 @DocsEditable
6059 bool get disabled native "SVGStyleElement_disabled_Getter"; 6164 bool get disabled native "SVGStyleElement_disabled_Getter";
6060 6165
6061 @DomName('SVGStyleElement.disabled') 6166 @DomName('SVGStyleElement.disabled')
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
6107 // 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
6108 // BSD-style license that can be found in the LICENSE file. 6213 // BSD-style license that can be found in the LICENSE file.
6109 6214
6110 // WARNING: Do not edit - generated code. 6215 // WARNING: Do not edit - generated code.
6111 6216
6112 6217
6113 @DocsEditable 6218 @DocsEditable
6114 @DomName('SVGStyledElement') 6219 @DomName('SVGStyledElement')
6115 @Unstable 6220 @Unstable
6116 class StyledElement extends SvgElement { 6221 class StyledElement extends SvgElement {
6117 StyledElement.internal() : super.internal(); 6222 // To suppress missing implicit constructor warnings.
6223 factory StyledElement._() { throw new UnsupportedError("Not supported"); }
6118 6224
6119 @DomName('SVGStyledElement.className') 6225 @DomName('SVGStyledElement.className')
6120 @DocsEditable 6226 @DocsEditable
6121 AnimatedString get $dom_svgClassName native "SVGStyledElement_className_Getter "; 6227 AnimatedString get $dom_svgClassName native "SVGStyledElement_className_Getter ";
6122 6228
6123 @DomName('SVGStyledElement.style') 6229 @DomName('SVGStyledElement.style')
6124 @DocsEditable 6230 @DocsEditable
6125 CssStyleDeclaration get style native "SVGStyledElement_style_Getter"; 6231 CssStyleDeclaration get style native "SVGStyledElement_style_Getter";
6126 6232
6127 } 6233 }
6128 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6234 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6129 // for details. All rights reserved. Use of this source code is governed by a 6235 // for details. All rights reserved. Use of this source code is governed by a
6130 // BSD-style license that can be found in the LICENSE file. 6236 // BSD-style license that can be found in the LICENSE file.
6131 6237
6132 // WARNING: Do not edit - generated code. 6238 // WARNING: Do not edit - generated code.
6133 6239
6134 6240
6135 @DocsEditable 6241 @DocsEditable
6136 @DomName('SVGDocument') 6242 @DomName('SVGDocument')
6137 @Unstable 6243 @Unstable
6138 class SvgDocument extends Document { 6244 class SvgDocument extends Document {
6139 SvgDocument.internal() : super.internal(); 6245 // To suppress missing implicit constructor warnings.
6246 factory SvgDocument._() { throw new UnsupportedError("Not supported"); }
6140 6247
6141 @DomName('SVGDocument.rootElement') 6248 @DomName('SVGDocument.rootElement')
6142 @DocsEditable 6249 @DocsEditable
6143 SvgSvgElement get rootElement native "SVGDocument_rootElement_Getter"; 6250 SvgSvgElement get rootElement native "SVGDocument_rootElement_Getter";
6144 6251
6145 @DomName('SVGDocument.createEvent') 6252 @DomName('SVGDocument.createEvent')
6146 @DocsEditable 6253 @DocsEditable
6147 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack"; 6254 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack";
6148 6255
6149 } 6256 }
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
6252 6359
6253 /** 6360 /**
6254 * Checks to see if the SVG element type is supported by the current platform. 6361 * Checks to see if the SVG element type is supported by the current platform.
6255 * 6362 *
6256 * The tag should be a valid SVG element tag name. 6363 * The tag should be a valid SVG element tag name.
6257 */ 6364 */
6258 static bool isTagSupported(String tag) { 6365 static bool isTagSupported(String tag) {
6259 var e = new SvgElement.tag(tag); 6366 var e = new SvgElement.tag(tag);
6260 return e is SvgElement && !(e is UnknownElement); 6367 return e is SvgElement && !(e is UnknownElement);
6261 } 6368 }
6262 SvgElement.internal() : super.internal(); 6369 // To suppress missing implicit constructor warnings.
6370 factory SvgElement._() { throw new UnsupportedError("Not supported"); }
6263 6371
6264 @DomName('SVGElement.id') 6372 @DomName('SVGElement.id')
6265 @DocsEditable 6373 @DocsEditable
6266 String get id native "SVGElement_id_Getter"; 6374 String get id native "SVGElement_id_Getter";
6267 6375
6268 @DomName('SVGElement.id') 6376 @DomName('SVGElement.id')
6269 @DocsEditable 6377 @DocsEditable
6270 void set id(String value) native "SVGElement_id_Setter"; 6378 void set id(String value) native "SVGElement_id_Setter";
6271 6379
6272 @DomName('SVGElement.ownerSVGElement') 6380 @DomName('SVGElement.ownerSVGElement')
(...skipping 17 matching lines...) Expand all
6290 // for details. All rights reserved. Use of this source code is governed by a 6398 // for details. All rights reserved. Use of this source code is governed by a
6291 // BSD-style license that can be found in the LICENSE file. 6399 // BSD-style license that can be found in the LICENSE file.
6292 6400
6293 // WARNING: Do not edit - generated code. 6401 // WARNING: Do not edit - generated code.
6294 6402
6295 6403
6296 @DocsEditable 6404 @DocsEditable
6297 @DomName('SVGException') 6405 @DomName('SVGException')
6298 @Unstable 6406 @Unstable
6299 class SvgException extends NativeFieldWrapperClass1 { 6407 class SvgException extends NativeFieldWrapperClass1 {
6300 SvgException.internal(); 6408 // To suppress missing implicit constructor warnings.
6409 factory SvgException._() { throw new UnsupportedError("Not supported"); }
6301 6410
6302 @DomName('SVGException.SVG_INVALID_VALUE_ERR') 6411 @DomName('SVGException.SVG_INVALID_VALUE_ERR')
6303 @DocsEditable 6412 @DocsEditable
6304 static const int SVG_INVALID_VALUE_ERR = 1; 6413 static const int SVG_INVALID_VALUE_ERR = 1;
6305 6414
6306 @DomName('SVGException.SVG_MATRIX_NOT_INVERTABLE') 6415 @DomName('SVGException.SVG_MATRIX_NOT_INVERTABLE')
6307 @DocsEditable 6416 @DocsEditable
6308 static const int SVG_MATRIX_NOT_INVERTABLE = 2; 6417 static const int SVG_MATRIX_NOT_INVERTABLE = 2;
6309 6418
6310 @DomName('SVGException.SVG_WRONG_TYPE_ERR') 6419 @DomName('SVGException.SVG_WRONG_TYPE_ERR')
(...skipping 22 matching lines...) Expand all
6333 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6334 // for details. All rights reserved. Use of this source code is governed by a 6443 // for details. All rights reserved. Use of this source code is governed by a
6335 // BSD-style license that can be found in the LICENSE file. 6444 // BSD-style license that can be found in the LICENSE file.
6336 6445
6337 6446
6338 @DomName('SVGSVGElement') 6447 @DomName('SVGSVGElement')
6339 @Unstable 6448 @Unstable
6340 class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable , Tests, ExternalResourcesRequired, ZoomAndPan, LangSpace { 6449 class SvgSvgElement extends StyledElement implements FitToViewBox, Transformable , Tests, ExternalResourcesRequired, ZoomAndPan, LangSpace {
6341 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ; 6450 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ;
6342 6451
6343 SvgSvgElement.internal() : super.internal(); 6452 // To suppress missing implicit constructor warnings.
6453 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
6344 6454
6345 @DomName('SVGSVGElement.contentScriptType') 6455 @DomName('SVGSVGElement.contentScriptType')
6346 @DocsEditable 6456 @DocsEditable
6347 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter"; 6457 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter";
6348 6458
6349 @DomName('SVGSVGElement.contentScriptType') 6459 @DomName('SVGSVGElement.contentScriptType')
6350 @DocsEditable 6460 @DocsEditable
6351 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter"; 6461 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy pe_Setter";
6352 6462
6353 @DomName('SVGSVGElement.contentStyleType') 6463 @DomName('SVGSVGElement.contentStyleType')
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
6591 // for details. All rights reserved. Use of this source code is governed by a 6701 // for details. All rights reserved. Use of this source code is governed by a
6592 // BSD-style license that can be found in the LICENSE file. 6702 // BSD-style license that can be found in the LICENSE file.
6593 6703
6594 // WARNING: Do not edit - generated code. 6704 // WARNING: Do not edit - generated code.
6595 6705
6596 6706
6597 @DocsEditable 6707 @DocsEditable
6598 @DomName('SVGSwitchElement') 6708 @DomName('SVGSwitchElement')
6599 @Unstable 6709 @Unstable
6600 class SwitchElement extends StyledElement implements Transformable, Tests, Exter nalResourcesRequired, LangSpace { 6710 class SwitchElement extends StyledElement implements Transformable, Tests, Exter nalResourcesRequired, LangSpace {
6601 SwitchElement.internal() : super.internal(); 6711 // To suppress missing implicit constructor warnings.
6712 factory SwitchElement._() { throw new UnsupportedError("Not supported"); }
6602 6713
6603 @DomName('SVGSwitchElement.SVGSwitchElement') 6714 @DomName('SVGSwitchElement.SVGSwitchElement')
6604 @DocsEditable 6715 @DocsEditable
6605 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 6716 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
6606 6717
6607 @DomName('SVGSwitchElement.externalResourcesRequired') 6718 @DomName('SVGSwitchElement.externalResourcesRequired')
6608 @DocsEditable 6719 @DocsEditable
6609 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter"; 6720 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa lResourcesRequired_Getter";
6610 6721
6611 @DomName('SVGSwitchElement.xmllang') 6722 @DomName('SVGSwitchElement.xmllang')
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
6673 // for details. All rights reserved. Use of this source code is governed by a 6784 // for details. All rights reserved. Use of this source code is governed by a
6674 // BSD-style license that can be found in the LICENSE file. 6785 // BSD-style license that can be found in the LICENSE file.
6675 6786
6676 // WARNING: Do not edit - generated code. 6787 // WARNING: Do not edit - generated code.
6677 6788
6678 6789
6679 @DocsEditable 6790 @DocsEditable
6680 @DomName('SVGSymbolElement') 6791 @DomName('SVGSymbolElement')
6681 @Unstable 6792 @Unstable
6682 class SymbolElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace { 6793 class SymbolElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace {
6683 SymbolElement.internal() : super.internal(); 6794 // To suppress missing implicit constructor warnings.
6795 factory SymbolElement._() { throw new UnsupportedError("Not supported"); }
6684 6796
6685 @DomName('SVGSymbolElement.SVGSymbolElement') 6797 @DomName('SVGSymbolElement.SVGSymbolElement')
6686 @DocsEditable 6798 @DocsEditable
6687 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 6799 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6688 6800
6689 @DomName('SVGSymbolElement.externalResourcesRequired') 6801 @DomName('SVGSymbolElement.externalResourcesRequired')
6690 @DocsEditable 6802 @DocsEditable
6691 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter"; 6803 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa lResourcesRequired_Getter";
6692 6804
6693 @DomName('SVGSymbolElement.preserveAspectRatio') 6805 @DomName('SVGSymbolElement.preserveAspectRatio')
(...skipping 25 matching lines...) Expand all
6719 // for details. All rights reserved. Use of this source code is governed by a 6831 // for details. All rights reserved. Use of this source code is governed by a
6720 // BSD-style license that can be found in the LICENSE file. 6832 // BSD-style license that can be found in the LICENSE file.
6721 6833
6722 // WARNING: Do not edit - generated code. 6834 // WARNING: Do not edit - generated code.
6723 6835
6724 6836
6725 @DocsEditable 6837 @DocsEditable
6726 @DomName('SVGTSpanElement') 6838 @DomName('SVGTSpanElement')
6727 @Unstable 6839 @Unstable
6728 class TSpanElement extends TextPositioningElement { 6840 class TSpanElement extends TextPositioningElement {
6729 TSpanElement.internal() : super.internal(); 6841 // To suppress missing implicit constructor warnings.
6842 factory TSpanElement._() { throw new UnsupportedError("Not supported"); }
6730 6843
6731 @DomName('SVGTSpanElement.SVGTSpanElement') 6844 @DomName('SVGTSpanElement.SVGTSpanElement')
6732 @DocsEditable 6845 @DocsEditable
6733 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an"); 6846 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an");
6734 6847
6735 } 6848 }
6736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6849 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6737 // for details. All rights reserved. Use of this source code is governed by a 6850 // for details. All rights reserved. Use of this source code is governed by a
6738 // BSD-style license that can be found in the LICENSE file. 6851 // BSD-style license that can be found in the LICENSE file.
6739 6852
6740 // WARNING: Do not edit - generated code. 6853 // WARNING: Do not edit - generated code.
6741 6854
6742 6855
6743 @DocsEditable 6856 @DocsEditable
6744 @DomName('SVGTests') 6857 @DomName('SVGTests')
6745 @Unstable 6858 @Unstable
6746 class Tests extends NativeFieldWrapperClass1 { 6859 class Tests extends NativeFieldWrapperClass1 {
6747 Tests.internal(); 6860 // To suppress missing implicit constructor warnings.
6861 factory Tests._() { throw new UnsupportedError("Not supported"); }
6748 6862
6749 @DomName('SVGTests.requiredExtensions') 6863 @DomName('SVGTests.requiredExtensions')
6750 @DocsEditable 6864 @DocsEditable
6751 StringList get requiredExtensions native "SVGTests_requiredExtensions_Getter"; 6865 StringList get requiredExtensions native "SVGTests_requiredExtensions_Getter";
6752 6866
6753 @DomName('SVGTests.requiredFeatures') 6867 @DomName('SVGTests.requiredFeatures')
6754 @DocsEditable 6868 @DocsEditable
6755 StringList get requiredFeatures native "SVGTests_requiredFeatures_Getter"; 6869 StringList get requiredFeatures native "SVGTests_requiredFeatures_Getter";
6756 6870
6757 @DomName('SVGTests.systemLanguage') 6871 @DomName('SVGTests.systemLanguage')
6758 @DocsEditable 6872 @DocsEditable
6759 StringList get systemLanguage native "SVGTests_systemLanguage_Getter"; 6873 StringList get systemLanguage native "SVGTests_systemLanguage_Getter";
6760 6874
6761 @DomName('SVGTests.hasExtension') 6875 @DomName('SVGTests.hasExtension')
6762 @DocsEditable 6876 @DocsEditable
6763 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback"; 6877 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback";
6764 6878
6765 } 6879 }
6766 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6880 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6767 // for details. All rights reserved. Use of this source code is governed by a 6881 // for details. All rights reserved. Use of this source code is governed by a
6768 // BSD-style license that can be found in the LICENSE file. 6882 // BSD-style license that can be found in the LICENSE file.
6769 6883
6770 // WARNING: Do not edit - generated code. 6884 // WARNING: Do not edit - generated code.
6771 6885
6772 6886
6773 @DocsEditable 6887 @DocsEditable
6774 @DomName('SVGTextContentElement') 6888 @DomName('SVGTextContentElement')
6775 @Unstable 6889 @Unstable
6776 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace { 6890 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace {
6777 TextContentElement.internal() : super.internal(); 6891 // To suppress missing implicit constructor warnings.
6892 factory TextContentElement._() { throw new UnsupportedError("Not supported"); }
6778 6893
6779 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') 6894 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
6780 @DocsEditable 6895 @DocsEditable
6781 static const int LENGTHADJUST_SPACING = 1; 6896 static const int LENGTHADJUST_SPACING = 1;
6782 6897
6783 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 6898 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
6784 @DocsEditable 6899 @DocsEditable
6785 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 6900 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
6786 6901
6787 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 6902 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
6873 // for details. All rights reserved. Use of this source code is governed by a 6988 // for details. All rights reserved. Use of this source code is governed by a
6874 // BSD-style license that can be found in the LICENSE file. 6989 // BSD-style license that can be found in the LICENSE file.
6875 6990
6876 // WARNING: Do not edit - generated code. 6991 // WARNING: Do not edit - generated code.
6877 6992
6878 6993
6879 @DocsEditable 6994 @DocsEditable
6880 @DomName('SVGTextElement') 6995 @DomName('SVGTextElement')
6881 @Unstable 6996 @Unstable
6882 class TextElement extends TextPositioningElement implements Transformable { 6997 class TextElement extends TextPositioningElement implements Transformable {
6883 TextElement.internal() : super.internal(); 6998 // To suppress missing implicit constructor warnings.
6999 factory TextElement._() { throw new UnsupportedError("Not supported"); }
6884 7000
6885 @DomName('SVGTextElement.SVGTextElement') 7001 @DomName('SVGTextElement.SVGTextElement')
6886 @DocsEditable 7002 @DocsEditable
6887 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 7003 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
6888 7004
6889 @DomName('SVGTextElement.farthestViewportElement') 7005 @DomName('SVGTextElement.farthestViewportElement')
6890 @DocsEditable 7006 @DocsEditable
6891 SvgElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter"; 7007 SvgElement get farthestViewportElement native "SVGTextElement_farthestViewport Element_Getter";
6892 7008
6893 @DomName('SVGTextElement.nearestViewportElement') 7009 @DomName('SVGTextElement.nearestViewportElement')
(...skipping 25 matching lines...) Expand all
6919 // for details. All rights reserved. Use of this source code is governed by a 7035 // for details. All rights reserved. Use of this source code is governed by a
6920 // BSD-style license that can be found in the LICENSE file. 7036 // BSD-style license that can be found in the LICENSE file.
6921 7037
6922 // WARNING: Do not edit - generated code. 7038 // WARNING: Do not edit - generated code.
6923 7039
6924 7040
6925 @DocsEditable 7041 @DocsEditable
6926 @DomName('SVGTextPathElement') 7042 @DomName('SVGTextPathElement')
6927 @Unstable 7043 @Unstable
6928 class TextPathElement extends TextContentElement implements UriReference { 7044 class TextPathElement extends TextContentElement implements UriReference {
6929 TextPathElement.internal() : super.internal(); 7045 // To suppress missing implicit constructor warnings.
7046 factory TextPathElement._() { throw new UnsupportedError("Not supported"); }
6930 7047
6931 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') 7048 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN')
6932 @DocsEditable 7049 @DocsEditable
6933 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 7050 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
6934 7051
6935 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH') 7052 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH')
6936 @DocsEditable 7053 @DocsEditable
6937 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 7054 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
6938 7055
6939 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN') 7056 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN')
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
6973 // for details. All rights reserved. Use of this source code is governed by a 7090 // for details. All rights reserved. Use of this source code is governed by a
6974 // BSD-style license that can be found in the LICENSE file. 7091 // BSD-style license that can be found in the LICENSE file.
6975 7092
6976 // WARNING: Do not edit - generated code. 7093 // WARNING: Do not edit - generated code.
6977 7094
6978 7095
6979 @DocsEditable 7096 @DocsEditable
6980 @DomName('SVGTextPositioningElement') 7097 @DomName('SVGTextPositioningElement')
6981 @Unstable 7098 @Unstable
6982 class TextPositioningElement extends TextContentElement { 7099 class TextPositioningElement extends TextContentElement {
6983 TextPositioningElement.internal() : super.internal(); 7100 // To suppress missing implicit constructor warnings.
7101 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
6984 7102
6985 @DomName('SVGTextPositioningElement.dx') 7103 @DomName('SVGTextPositioningElement.dx')
6986 @DocsEditable 7104 @DocsEditable
6987 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter"; 7105 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter";
6988 7106
6989 @DomName('SVGTextPositioningElement.dy') 7107 @DomName('SVGTextPositioningElement.dy')
6990 @DocsEditable 7108 @DocsEditable
6991 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter"; 7109 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter";
6992 7110
6993 @DomName('SVGTextPositioningElement.rotate') 7111 @DomName('SVGTextPositioningElement.rotate')
(...skipping 13 matching lines...) Expand all
7007 // for details. All rights reserved. Use of this source code is governed by a 7125 // for details. All rights reserved. Use of this source code is governed by a
7008 // BSD-style license that can be found in the LICENSE file. 7126 // BSD-style license that can be found in the LICENSE file.
7009 7127
7010 // WARNING: Do not edit - generated code. 7128 // WARNING: Do not edit - generated code.
7011 7129
7012 7130
7013 @DocsEditable 7131 @DocsEditable
7014 @DomName('SVGTitleElement') 7132 @DomName('SVGTitleElement')
7015 @Unstable 7133 @Unstable
7016 class TitleElement extends StyledElement implements LangSpace { 7134 class TitleElement extends StyledElement implements LangSpace {
7017 TitleElement.internal() : super.internal(); 7135 // To suppress missing implicit constructor warnings.
7136 factory TitleElement._() { throw new UnsupportedError("Not supported"); }
7018 7137
7019 @DomName('SVGTitleElement.SVGTitleElement') 7138 @DomName('SVGTitleElement.SVGTitleElement')
7020 @DocsEditable 7139 @DocsEditable
7021 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 7140 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
7022 7141
7023 @DomName('SVGTitleElement.xmllang') 7142 @DomName('SVGTitleElement.xmllang')
7024 @DocsEditable 7143 @DocsEditable
7025 String get xmllang native "SVGTitleElement_xmllang_Getter"; 7144 String get xmllang native "SVGTitleElement_xmllang_Getter";
7026 7145
7027 @DomName('SVGTitleElement.xmllang') 7146 @DomName('SVGTitleElement.xmllang')
(...skipping 13 matching lines...) Expand all
7041 // for details. All rights reserved. Use of this source code is governed by a 7160 // for details. All rights reserved. Use of this source code is governed by a
7042 // BSD-style license that can be found in the LICENSE file. 7161 // BSD-style license that can be found in the LICENSE file.
7043 7162
7044 // WARNING: Do not edit - generated code. 7163 // WARNING: Do not edit - generated code.
7045 7164
7046 7165
7047 @DocsEditable 7166 @DocsEditable
7048 @DomName('SVGTransform') 7167 @DomName('SVGTransform')
7049 @Unstable 7168 @Unstable
7050 class Transform extends NativeFieldWrapperClass1 { 7169 class Transform extends NativeFieldWrapperClass1 {
7051 Transform.internal(); 7170 // To suppress missing implicit constructor warnings.
7171 factory Transform._() { throw new UnsupportedError("Not supported"); }
7052 7172
7053 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') 7173 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
7054 @DocsEditable 7174 @DocsEditable
7055 static const int SVG_TRANSFORM_MATRIX = 1; 7175 static const int SVG_TRANSFORM_MATRIX = 1;
7056 7176
7057 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') 7177 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE')
7058 @DocsEditable 7178 @DocsEditable
7059 static const int SVG_TRANSFORM_ROTATE = 4; 7179 static const int SVG_TRANSFORM_ROTATE = 4;
7060 7180
7061 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') 7181 @DomName('SVGTransform.SVG_TRANSFORM_SCALE')
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
7119 // for details. All rights reserved. Use of this source code is governed by a 7239 // for details. All rights reserved. Use of this source code is governed by a
7120 // BSD-style license that can be found in the LICENSE file. 7240 // BSD-style license that can be found in the LICENSE file.
7121 7241
7122 // WARNING: Do not edit - generated code. 7242 // WARNING: Do not edit - generated code.
7123 7243
7124 7244
7125 @DocsEditable 7245 @DocsEditable
7126 @DomName('SVGTransformList') 7246 @DomName('SVGTransformList')
7127 @Unstable 7247 @Unstable
7128 class TransformList extends NativeFieldWrapperClass1 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> { 7248 class TransformList extends NativeFieldWrapperClass1 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> {
7129 TransformList.internal(); 7249 // To suppress missing implicit constructor warnings.
7250 factory TransformList._() { throw new UnsupportedError("Not supported"); }
7130 7251
7131 @DomName('SVGTransformList.numberOfItems') 7252 @DomName('SVGTransformList.numberOfItems')
7132 @DocsEditable 7253 @DocsEditable
7133 int get numberOfItems native "SVGTransformList_numberOfItems_Getter"; 7254 int get numberOfItems native "SVGTransformList_numberOfItems_Getter";
7134 7255
7135 Transform operator[](int index) { 7256 Transform operator[](int index) {
7136 if (index < 0 || index >= length) 7257 if (index < 0 || index >= length)
7137 throw new RangeError.range(index, 0, length); 7258 throw new RangeError.range(index, 0, length);
7138 return _nativeIndexedGetter(index); 7259 return _nativeIndexedGetter(index);
7139 } 7260 }
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
7220 // for details. All rights reserved. Use of this source code is governed by a 7341 // for details. All rights reserved. Use of this source code is governed by a
7221 // BSD-style license that can be found in the LICENSE file. 7342 // BSD-style license that can be found in the LICENSE file.
7222 7343
7223 // WARNING: Do not edit - generated code. 7344 // WARNING: Do not edit - generated code.
7224 7345
7225 7346
7226 @DocsEditable 7347 @DocsEditable
7227 @DomName('SVGTransformable') 7348 @DomName('SVGTransformable')
7228 @Unstable 7349 @Unstable
7229 class Transformable extends NativeFieldWrapperClass1 implements Locatable { 7350 class Transformable extends NativeFieldWrapperClass1 implements Locatable {
7230 Transformable.internal(); 7351 // To suppress missing implicit constructor warnings.
7352 factory Transformable._() { throw new UnsupportedError("Not supported"); }
7231 7353
7232 @DomName('SVGTransformable.transform') 7354 @DomName('SVGTransformable.transform')
7233 @DocsEditable 7355 @DocsEditable
7234 AnimatedTransformList get transform native "SVGTransformable_transform_Getter" ; 7356 AnimatedTransformList get transform native "SVGTransformable_transform_Getter" ;
7235 7357
7236 @DomName('SVGTransformable.farthestViewportElement') 7358 @DomName('SVGTransformable.farthestViewportElement')
7237 @DocsEditable 7359 @DocsEditable
7238 SvgElement get farthestViewportElement native "SVGTransformable_farthestViewpo rtElement_Getter"; 7360 SvgElement get farthestViewportElement native "SVGTransformable_farthestViewpo rtElement_Getter";
7239 7361
7240 @DomName('SVGTransformable.nearestViewportElement') 7362 @DomName('SVGTransformable.nearestViewportElement')
(...skipping 21 matching lines...) Expand all
7262 // for details. All rights reserved. Use of this source code is governed by a 7384 // for details. All rights reserved. Use of this source code is governed by a
7263 // BSD-style license that can be found in the LICENSE file. 7385 // BSD-style license that can be found in the LICENSE file.
7264 7386
7265 // WARNING: Do not edit - generated code. 7387 // WARNING: Do not edit - generated code.
7266 7388
7267 7389
7268 @DocsEditable 7390 @DocsEditable
7269 @DomName('SVGUnitTypes') 7391 @DomName('SVGUnitTypes')
7270 @Unstable 7392 @Unstable
7271 class UnitTypes extends NativeFieldWrapperClass1 { 7393 class UnitTypes extends NativeFieldWrapperClass1 {
7272 UnitTypes.internal(); 7394 // To suppress missing implicit constructor warnings.
7395 factory UnitTypes._() { throw new UnsupportedError("Not supported"); }
7273 7396
7274 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') 7397 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
7275 @DocsEditable 7398 @DocsEditable
7276 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 7399 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
7277 7400
7278 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') 7401 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
7279 @DocsEditable 7402 @DocsEditable
7280 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 7403 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
7281 7404
7282 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') 7405 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE')
7283 @DocsEditable 7406 @DocsEditable
7284 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; 7407 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
7285 7408
7286 } 7409 }
7287 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7288 // for details. All rights reserved. Use of this source code is governed by a 7411 // for details. All rights reserved. Use of this source code is governed by a
7289 // BSD-style license that can be found in the LICENSE file. 7412 // BSD-style license that can be found in the LICENSE file.
7290 7413
7291 // WARNING: Do not edit - generated code. 7414 // WARNING: Do not edit - generated code.
7292 7415
7293 7416
7294 @DocsEditable 7417 @DocsEditable
7295 @DomName('SVGURIReference') 7418 @DomName('SVGURIReference')
7296 @Unstable 7419 @Unstable
7297 class UriReference extends NativeFieldWrapperClass1 { 7420 class UriReference extends NativeFieldWrapperClass1 {
7298 UriReference.internal(); 7421 // To suppress missing implicit constructor warnings.
7422 factory UriReference._() { throw new UnsupportedError("Not supported"); }
7299 7423
7300 @DomName('SVGURIReference.href') 7424 @DomName('SVGURIReference.href')
7301 @DocsEditable 7425 @DocsEditable
7302 AnimatedString get href native "SVGURIReference_href_Getter"; 7426 AnimatedString get href native "SVGURIReference_href_Getter";
7303 7427
7304 } 7428 }
7305 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7306 // for details. All rights reserved. Use of this source code is governed by a 7430 // for details. All rights reserved. Use of this source code is governed by a
7307 // BSD-style license that can be found in the LICENSE file. 7431 // BSD-style license that can be found in the LICENSE file.
7308 7432
7309 // WARNING: Do not edit - generated code. 7433 // WARNING: Do not edit - generated code.
7310 7434
7311 7435
7312 @DocsEditable 7436 @DocsEditable
7313 @DomName('SVGUseElement') 7437 @DomName('SVGUseElement')
7314 @Unstable 7438 @Unstable
7315 class UseElement extends StyledElement implements UriReference, Tests, Transform able, ExternalResourcesRequired, LangSpace { 7439 class UseElement extends StyledElement implements UriReference, Tests, Transform able, ExternalResourcesRequired, LangSpace {
7316 UseElement.internal() : super.internal(); 7440 // To suppress missing implicit constructor warnings.
7441 factory UseElement._() { throw new UnsupportedError("Not supported"); }
7317 7442
7318 @DomName('SVGUseElement.SVGUseElement') 7443 @DomName('SVGUseElement.SVGUseElement')
7319 @DocsEditable 7444 @DocsEditable
7320 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 7445 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
7321 7446
7322 @DomName('SVGUseElement.animatedInstanceRoot') 7447 @DomName('SVGUseElement.animatedInstanceRoot')
7323 @DocsEditable 7448 @DocsEditable
7324 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter"; 7449 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc eRoot_Getter";
7325 7450
7326 @DomName('SVGUseElement.height') 7451 @DomName('SVGUseElement.height')
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
7416 // for details. All rights reserved. Use of this source code is governed by a 7541 // for details. All rights reserved. Use of this source code is governed by a
7417 // BSD-style license that can be found in the LICENSE file. 7542 // BSD-style license that can be found in the LICENSE file.
7418 7543
7419 // WARNING: Do not edit - generated code. 7544 // WARNING: Do not edit - generated code.
7420 7545
7421 7546
7422 @DocsEditable 7547 @DocsEditable
7423 @DomName('SVGViewElement') 7548 @DomName('SVGViewElement')
7424 @Unstable 7549 @Unstable
7425 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan { 7550 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR equired, ZoomAndPan {
7426 ViewElement.internal() : super.internal(); 7551 // To suppress missing implicit constructor warnings.
7552 factory ViewElement._() { throw new UnsupportedError("Not supported"); }
7427 7553
7428 @DomName('SVGViewElement.SVGViewElement') 7554 @DomName('SVGViewElement.SVGViewElement')
7429 @DocsEditable 7555 @DocsEditable
7430 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 7556 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
7431 7557
7432 @DomName('SVGViewElement.viewTarget') 7558 @DomName('SVGViewElement.viewTarget')
7433 @DocsEditable 7559 @DocsEditable
7434 StringList get viewTarget native "SVGViewElement_viewTarget_Getter"; 7560 StringList get viewTarget native "SVGViewElement_viewTarget_Getter";
7435 7561
7436 @DomName('SVGViewElement.externalResourcesRequired') 7562 @DomName('SVGViewElement.externalResourcesRequired')
(...skipping 21 matching lines...) Expand all
7458 // for details. All rights reserved. Use of this source code is governed by a 7584 // for details. All rights reserved. Use of this source code is governed by a
7459 // BSD-style license that can be found in the LICENSE file. 7585 // BSD-style license that can be found in the LICENSE file.
7460 7586
7461 // WARNING: Do not edit - generated code. 7587 // WARNING: Do not edit - generated code.
7462 7588
7463 7589
7464 @DocsEditable 7590 @DocsEditable
7465 @DomName('SVGViewSpec') 7591 @DomName('SVGViewSpec')
7466 @Unstable 7592 @Unstable
7467 class ViewSpec extends NativeFieldWrapperClass1 { 7593 class ViewSpec extends NativeFieldWrapperClass1 {
7468 ViewSpec.internal(); 7594 // To suppress missing implicit constructor warnings.
7595 factory ViewSpec._() { throw new UnsupportedError("Not supported"); }
7469 7596
7470 @DomName('SVGViewSpec.preserveAspectRatio') 7597 @DomName('SVGViewSpec.preserveAspectRatio')
7471 @DocsEditable 7598 @DocsEditable
7472 @Experimental // nonstandard 7599 @Experimental // nonstandard
7473 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_preser veAspectRatio_Getter"; 7600 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_preser veAspectRatio_Getter";
7474 7601
7475 @DomName('SVGViewSpec.preserveAspectRatioString') 7602 @DomName('SVGViewSpec.preserveAspectRatioString')
7476 @DocsEditable 7603 @DocsEditable
7477 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt ring_Getter"; 7604 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt ring_Getter";
7478 7605
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
7516 // for details. All rights reserved. Use of this source code is governed by a 7643 // for details. All rights reserved. Use of this source code is governed by a
7517 // BSD-style license that can be found in the LICENSE file. 7644 // BSD-style license that can be found in the LICENSE file.
7518 7645
7519 // WARNING: Do not edit - generated code. 7646 // WARNING: Do not edit - generated code.
7520 7647
7521 7648
7522 @DocsEditable 7649 @DocsEditable
7523 @DomName('SVGZoomAndPan') 7650 @DomName('SVGZoomAndPan')
7524 @Unstable 7651 @Unstable
7525 class ZoomAndPan extends NativeFieldWrapperClass1 { 7652 class ZoomAndPan extends NativeFieldWrapperClass1 {
7526 ZoomAndPan.internal(); 7653 // To suppress missing implicit constructor warnings.
7654 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); }
7527 7655
7528 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') 7656 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE')
7529 @DocsEditable 7657 @DocsEditable
7530 static const int SVG_ZOOMANDPAN_DISABLE = 1; 7658 static const int SVG_ZOOMANDPAN_DISABLE = 1;
7531 7659
7532 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') 7660 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY')
7533 @DocsEditable 7661 @DocsEditable
7534 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 7662 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
7535 7663
7536 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') 7664 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN')
(...skipping 13 matching lines...) Expand all
7550 // for details. All rights reserved. Use of this source code is governed by a 7678 // for details. All rights reserved. Use of this source code is governed by a
7551 // BSD-style license that can be found in the LICENSE file. 7679 // BSD-style license that can be found in the LICENSE file.
7552 7680
7553 // WARNING: Do not edit - generated code. 7681 // WARNING: Do not edit - generated code.
7554 7682
7555 7683
7556 @DocsEditable 7684 @DocsEditable
7557 @DomName('SVGZoomEvent') 7685 @DomName('SVGZoomEvent')
7558 @Unstable 7686 @Unstable
7559 class ZoomEvent extends UIEvent { 7687 class ZoomEvent extends UIEvent {
7560 ZoomEvent.internal() : super.internal(); 7688 // To suppress missing implicit constructor warnings.
7689 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); }
7561 7690
7562 @DomName('SVGZoomEvent.newScale') 7691 @DomName('SVGZoomEvent.newScale')
7563 @DocsEditable 7692 @DocsEditable
7564 num get newScale native "SVGZoomEvent_newScale_Getter"; 7693 num get newScale native "SVGZoomEvent_newScale_Getter";
7565 7694
7566 @DomName('SVGZoomEvent.newTranslate') 7695 @DomName('SVGZoomEvent.newTranslate')
7567 @DocsEditable 7696 @DocsEditable
7568 Point get newTranslate native "SVGZoomEvent_newTranslate_Getter"; 7697 Point get newTranslate native "SVGZoomEvent_newTranslate_Getter";
7569 7698
7570 @DomName('SVGZoomEvent.previousScale') 7699 @DomName('SVGZoomEvent.previousScale')
(...skipping 13 matching lines...) Expand all
7584 // for details. All rights reserved. Use of this source code is governed by a 7713 // for details. All rights reserved. Use of this source code is governed by a
7585 // BSD-style license that can be found in the LICENSE file. 7714 // BSD-style license that can be found in the LICENSE file.
7586 7715
7587 // WARNING: Do not edit - generated code. 7716 // WARNING: Do not edit - generated code.
7588 7717
7589 7718
7590 @DocsEditable 7719 @DocsEditable
7591 @DomName('SVGElementInstanceList') 7720 @DomName('SVGElementInstanceList')
7592 @Unstable 7721 @Unstable
7593 class _ElementInstanceList extends NativeFieldWrapperClass1 with ListMixin<Eleme ntInstance>, ImmutableListMixin<ElementInstance> implements List<ElementInstance > { 7722 class _ElementInstanceList extends NativeFieldWrapperClass1 with ListMixin<Eleme ntInstance>, ImmutableListMixin<ElementInstance> implements List<ElementInstance > {
7594 _ElementInstanceList.internal(); 7723 // To suppress missing implicit constructor warnings.
7724 factory _ElementInstanceList._() { throw new UnsupportedError("Not supported") ; }
7595 7725
7596 @DomName('SVGElementInstanceList.length') 7726 @DomName('SVGElementInstanceList.length')
7597 @DocsEditable 7727 @DocsEditable
7598 int get length native "SVGElementInstanceList_length_Getter"; 7728 int get length native "SVGElementInstanceList_length_Getter";
7599 7729
7600 ElementInstance operator[](int index) { 7730 ElementInstance operator[](int index) {
7601 if (index < 0 || index >= length) 7731 if (index < 0 || index >= length)
7602 throw new RangeError.range(index, 0, length); 7732 throw new RangeError.range(index, 0, length);
7603 return _nativeIndexedGetter(index); 7733 return _nativeIndexedGetter(index);
7604 } 7734 }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
7651 // for details. All rights reserved. Use of this source code is governed by a 7781 // for details. All rights reserved. Use of this source code is governed by a
7652 // BSD-style license that can be found in the LICENSE file. 7782 // BSD-style license that can be found in the LICENSE file.
7653 7783
7654 // WARNING: Do not edit - generated code. 7784 // WARNING: Do not edit - generated code.
7655 7785
7656 7786
7657 @DocsEditable 7787 @DocsEditable
7658 @DomName('SVGGradientElement') 7788 @DomName('SVGGradientElement')
7659 @Unstable 7789 @Unstable
7660 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired { 7790 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired {
7661 _GradientElement.internal() : super.internal(); 7791 // To suppress missing implicit constructor warnings.
7792 factory _GradientElement._() { throw new UnsupportedError("Not supported"); }
7662 7793
7663 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') 7794 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
7664 @DocsEditable 7795 @DocsEditable
7665 static const int SVG_SPREADMETHOD_PAD = 1; 7796 static const int SVG_SPREADMETHOD_PAD = 1;
7666 7797
7667 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') 7798 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
7668 @DocsEditable 7799 @DocsEditable
7669 static const int SVG_SPREADMETHOD_REFLECT = 2; 7800 static const int SVG_SPREADMETHOD_REFLECT = 2;
7670 7801
7671 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 7802 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
(...skipping 29 matching lines...) Expand all
7701 // for details. All rights reserved. Use of this source code is governed by a 7832 // for details. All rights reserved. Use of this source code is governed by a
7702 // BSD-style license that can be found in the LICENSE file. 7833 // BSD-style license that can be found in the LICENSE file.
7703 7834
7704 // WARNING: Do not edit - generated code. 7835 // WARNING: Do not edit - generated code.
7705 7836
7706 7837
7707 @DocsEditable 7838 @DocsEditable
7708 @DomName('SVGAltGlyphDefElement') 7839 @DomName('SVGAltGlyphDefElement')
7709 @Unstable 7840 @Unstable
7710 abstract class _SVGAltGlyphDefElement extends SvgElement { 7841 abstract class _SVGAltGlyphDefElement extends SvgElement {
7711 _SVGAltGlyphDefElement.internal() : super.internal(); 7842 // To suppress missing implicit constructor warnings.
7843 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); }
7712 7844
7713 } 7845 }
7714 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7846 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7715 // for details. All rights reserved. Use of this source code is governed by a 7847 // for details. All rights reserved. Use of this source code is governed by a
7716 // BSD-style license that can be found in the LICENSE file. 7848 // BSD-style license that can be found in the LICENSE file.
7717 7849
7718 // WARNING: Do not edit - generated code. 7850 // WARNING: Do not edit - generated code.
7719 7851
7720 7852
7721 @DocsEditable 7853 @DocsEditable
7722 @DomName('SVGAltGlyphItemElement') 7854 @DomName('SVGAltGlyphItemElement')
7723 @Unstable 7855 @Unstable
7724 abstract class _SVGAltGlyphItemElement extends SvgElement { 7856 abstract class _SVGAltGlyphItemElement extends SvgElement {
7725 _SVGAltGlyphItemElement.internal() : super.internal(); 7857 // To suppress missing implicit constructor warnings.
7858 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); }
7726 7859
7727 } 7860 }
7728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7861 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7729 // for details. All rights reserved. Use of this source code is governed by a 7862 // for details. All rights reserved. Use of this source code is governed by a
7730 // BSD-style license that can be found in the LICENSE file. 7863 // BSD-style license that can be found in the LICENSE file.
7731 7864
7732 // WARNING: Do not edit - generated code. 7865 // WARNING: Do not edit - generated code.
7733 7866
7734 7867
7735 @DocsEditable 7868 @DocsEditable
7736 @DomName('SVGAnimateColorElement') 7869 @DomName('SVGAnimateColorElement')
7737 @Unstable 7870 @Unstable
7738 abstract class _SVGAnimateColorElement extends AnimationElement { 7871 abstract class _SVGAnimateColorElement extends AnimationElement {
7739 _SVGAnimateColorElement.internal() : super.internal(); 7872 // To suppress missing implicit constructor warnings.
7873 factory _SVGAnimateColorElement._() { throw new UnsupportedError("Not supporte d"); }
7740 7874
7741 } 7875 }
7742 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 7876 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
7743 // for details. All rights reserved. Use of this source code is governed by a 7877 // for details. All rights reserved. Use of this source code is governed by a
7744 // BSD-style license that can be found in the LICENSE file. 7878 // BSD-style license that can be found in the LICENSE file.
7745 7879
7746 7880
7747 // Hack because the baseclass is private in dart:html, and we want to omit this 7881 // Hack because the baseclass is private in dart:html, and we want to omit this
7748 // type entirely but can't. 7882 // type entirely but can't.
7749 @DocsEditable 7883 @DocsEditable
7750 @DomName('SVGColor') 7884 @DomName('SVGColor')
7751 @Unstable 7885 @Unstable
7752 class _SVGColor { 7886 abstract class _SVGColor {
7753 _SVGColor.internal(); 7887 _SVGColor.internal();
7754 } 7888 }
7755 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7889 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7756 // for details. All rights reserved. Use of this source code is governed by a 7890 // for details. All rights reserved. Use of this source code is governed by a
7757 // BSD-style license that can be found in the LICENSE file. 7891 // BSD-style license that can be found in the LICENSE file.
7758 7892
7759 // WARNING: Do not edit - generated code. 7893 // WARNING: Do not edit - generated code.
7760 7894
7761 7895
7762 @DocsEditable 7896 @DocsEditable
7763 @DomName('SVGComponentTransferFunctionElement') 7897 @DomName('SVGComponentTransferFunctionElement')
7764 @Unstable 7898 @Unstable
7765 abstract class _SVGComponentTransferFunctionElement extends SvgElement { 7899 abstract class _SVGComponentTransferFunctionElement extends SvgElement {
7766 _SVGComponentTransferFunctionElement.internal() : super.internal(); 7900 // To suppress missing implicit constructor warnings.
7901 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); }
7767 7902
7768 } 7903 }
7769 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7770 // for details. All rights reserved. Use of this source code is governed by a 7905 // for details. All rights reserved. Use of this source code is governed by a
7771 // BSD-style license that can be found in the LICENSE file. 7906 // BSD-style license that can be found in the LICENSE file.
7772 7907
7773 // WARNING: Do not edit - generated code. 7908 // WARNING: Do not edit - generated code.
7774 7909
7775 7910
7776 @DocsEditable 7911 @DocsEditable
7777 @DomName('SVGCursorElement') 7912 @DomName('SVGCursorElement')
7778 @Unstable 7913 @Unstable
7779 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes ts, ExternalResourcesRequired { 7914 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes ts, ExternalResourcesRequired {
7780 _SVGCursorElement.internal() : super.internal(); 7915 // To suppress missing implicit constructor warnings.
7916 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); }
7781 7917
7782 @DomName('SVGCursorElement.SVGCursorElement') 7918 @DomName('SVGCursorElement.SVGCursorElement')
7783 @DocsEditable 7919 @DocsEditable
7784 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor"); 7920 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor");
7785 7921
7786 /// Checks if this type is supported on the current platform. 7922 /// Checks if this type is supported on the current platform.
7787 static bool get supported => true; 7923 static bool get supported => true;
7788 7924
7789 } 7925 }
7790 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7926 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7791 // for details. All rights reserved. Use of this source code is governed by a 7927 // for details. All rights reserved. Use of this source code is governed by a
7792 // BSD-style license that can be found in the LICENSE file. 7928 // BSD-style license that can be found in the LICENSE file.
7793 7929
7794 // WARNING: Do not edit - generated code. 7930 // WARNING: Do not edit - generated code.
7795 7931
7796 7932
7797 @DocsEditable 7933 @DocsEditable
7798 @DomName('SVGFEDropShadowElement') 7934 @DomName('SVGFEDropShadowElement')
7799 @Experimental // nonstandard 7935 @Experimental // nonstandard
7800 abstract class _SVGFEDropShadowElement extends StyledElement implements FilterPr imitiveStandardAttributes { 7936 abstract class _SVGFEDropShadowElement extends StyledElement implements FilterPr imitiveStandardAttributes {
7801 _SVGFEDropShadowElement.internal() : super.internal(); 7937 // To suppress missing implicit constructor warnings.
7938 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); }
7802 7939
7803 } 7940 }
7804 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7941 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7805 // for details. All rights reserved. Use of this source code is governed by a 7942 // for details. All rights reserved. Use of this source code is governed by a
7806 // BSD-style license that can be found in the LICENSE file. 7943 // BSD-style license that can be found in the LICENSE file.
7807 7944
7808 // WARNING: Do not edit - generated code. 7945 // WARNING: Do not edit - generated code.
7809 7946
7810 7947
7811 @DocsEditable 7948 @DocsEditable
7812 @DomName('SVGFontElement') 7949 @DomName('SVGFontElement')
7813 @Unstable 7950 @Unstable
7814 abstract class _SVGFontElement extends SvgElement { 7951 abstract class _SVGFontElement extends SvgElement {
7815 _SVGFontElement.internal() : super.internal(); 7952 // To suppress missing implicit constructor warnings.
7953 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); }
7816 7954
7817 } 7955 }
7818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7956 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7819 // for details. All rights reserved. Use of this source code is governed by a 7957 // for details. All rights reserved. Use of this source code is governed by a
7820 // BSD-style license that can be found in the LICENSE file. 7958 // BSD-style license that can be found in the LICENSE file.
7821 7959
7822 // WARNING: Do not edit - generated code. 7960 // WARNING: Do not edit - generated code.
7823 7961
7824 7962
7825 @DocsEditable 7963 @DocsEditable
7826 @DomName('SVGFontFaceElement') 7964 @DomName('SVGFontFaceElement')
7827 @Unstable 7965 @Unstable
7828 abstract class _SVGFontFaceElement extends SvgElement { 7966 abstract class _SVGFontFaceElement extends SvgElement {
7829 _SVGFontFaceElement.internal() : super.internal(); 7967 // To suppress missing implicit constructor warnings.
7968 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); }
7830 7969
7831 } 7970 }
7832 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7971 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7833 // for details. All rights reserved. Use of this source code is governed by a 7972 // for details. All rights reserved. Use of this source code is governed by a
7834 // BSD-style license that can be found in the LICENSE file. 7973 // BSD-style license that can be found in the LICENSE file.
7835 7974
7836 // WARNING: Do not edit - generated code. 7975 // WARNING: Do not edit - generated code.
7837 7976
7838 7977
7839 @DocsEditable 7978 @DocsEditable
7840 @DomName('SVGFontFaceFormatElement') 7979 @DomName('SVGFontFaceFormatElement')
7841 @Unstable 7980 @Unstable
7842 abstract class _SVGFontFaceFormatElement extends SvgElement { 7981 abstract class _SVGFontFaceFormatElement extends SvgElement {
7843 _SVGFontFaceFormatElement.internal() : super.internal(); 7982 // To suppress missing implicit constructor warnings.
7983 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); }
7844 7984
7845 } 7985 }
7846 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7986 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7847 // for details. All rights reserved. Use of this source code is governed by a 7987 // for details. All rights reserved. Use of this source code is governed by a
7848 // BSD-style license that can be found in the LICENSE file. 7988 // BSD-style license that can be found in the LICENSE file.
7849 7989
7850 // WARNING: Do not edit - generated code. 7990 // WARNING: Do not edit - generated code.
7851 7991
7852 7992
7853 @DocsEditable 7993 @DocsEditable
7854 @DomName('SVGFontFaceNameElement') 7994 @DomName('SVGFontFaceNameElement')
7855 @Unstable 7995 @Unstable
7856 abstract class _SVGFontFaceNameElement extends SvgElement { 7996 abstract class _SVGFontFaceNameElement extends SvgElement {
7857 _SVGFontFaceNameElement.internal() : super.internal(); 7997 // To suppress missing implicit constructor warnings.
7998 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); }
7858 7999
7859 } 8000 }
7860 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8001 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7861 // for details. All rights reserved. Use of this source code is governed by a 8002 // for details. All rights reserved. Use of this source code is governed by a
7862 // BSD-style license that can be found in the LICENSE file. 8003 // BSD-style license that can be found in the LICENSE file.
7863 8004
7864 // WARNING: Do not edit - generated code. 8005 // WARNING: Do not edit - generated code.
7865 8006
7866 8007
7867 @DocsEditable 8008 @DocsEditable
7868 @DomName('SVGFontFaceSrcElement') 8009 @DomName('SVGFontFaceSrcElement')
7869 @Unstable 8010 @Unstable
7870 abstract class _SVGFontFaceSrcElement extends SvgElement { 8011 abstract class _SVGFontFaceSrcElement extends SvgElement {
7871 _SVGFontFaceSrcElement.internal() : super.internal(); 8012 // To suppress missing implicit constructor warnings.
8013 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); }
7872 8014
7873 } 8015 }
7874 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7875 // for details. All rights reserved. Use of this source code is governed by a 8017 // for details. All rights reserved. Use of this source code is governed by a
7876 // BSD-style license that can be found in the LICENSE file. 8018 // BSD-style license that can be found in the LICENSE file.
7877 8019
7878 // WARNING: Do not edit - generated code. 8020 // WARNING: Do not edit - generated code.
7879 8021
7880 8022
7881 @DocsEditable 8023 @DocsEditable
7882 @DomName('SVGFontFaceUriElement') 8024 @DomName('SVGFontFaceUriElement')
7883 @Unstable 8025 @Unstable
7884 abstract class _SVGFontFaceUriElement extends SvgElement { 8026 abstract class _SVGFontFaceUriElement extends SvgElement {
7885 _SVGFontFaceUriElement.internal() : super.internal(); 8027 // To suppress missing implicit constructor warnings.
8028 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); }
7886 8029
7887 } 8030 }
7888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7889 // for details. All rights reserved. Use of this source code is governed by a 8032 // for details. All rights reserved. Use of this source code is governed by a
7890 // BSD-style license that can be found in the LICENSE file. 8033 // BSD-style license that can be found in the LICENSE file.
7891 8034
7892 // WARNING: Do not edit - generated code. 8035 // WARNING: Do not edit - generated code.
7893 8036
7894 8037
7895 @DocsEditable 8038 @DocsEditable
7896 @DomName('SVGGlyphElement') 8039 @DomName('SVGGlyphElement')
7897 @Unstable 8040 @Unstable
7898 abstract class _SVGGlyphElement extends SvgElement { 8041 abstract class _SVGGlyphElement extends SvgElement {
7899 _SVGGlyphElement.internal() : super.internal(); 8042 // To suppress missing implicit constructor warnings.
8043 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); }
7900 8044
7901 @DomName('SVGGlyphElement.SVGGlyphElement') 8045 @DomName('SVGGlyphElement.SVGGlyphElement')
7902 @DocsEditable 8046 @DocsEditable
7903 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph"); 8047 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph");
7904 8048
7905 } 8049 }
7906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8050 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7907 // for details. All rights reserved. Use of this source code is governed by a 8051 // for details. All rights reserved. Use of this source code is governed by a
7908 // BSD-style license that can be found in the LICENSE file. 8052 // BSD-style license that can be found in the LICENSE file.
7909 8053
7910 // WARNING: Do not edit - generated code. 8054 // WARNING: Do not edit - generated code.
7911 8055
7912 8056
7913 @DocsEditable 8057 @DocsEditable
7914 @DomName('SVGGlyphRefElement') 8058 @DomName('SVGGlyphRefElement')
7915 @Unstable 8059 @Unstable
7916 abstract class _SVGGlyphRefElement extends StyledElement implements UriReference { 8060 abstract class _SVGGlyphRefElement extends StyledElement implements UriReference {
7917 _SVGGlyphRefElement.internal() : super.internal(); 8061 // To suppress missing implicit constructor warnings.
8062 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); }
7918 8063
7919 } 8064 }
7920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7921 // for details. All rights reserved. Use of this source code is governed by a 8066 // for details. All rights reserved. Use of this source code is governed by a
7922 // BSD-style license that can be found in the LICENSE file. 8067 // BSD-style license that can be found in the LICENSE file.
7923 8068
7924 // WARNING: Do not edit - generated code. 8069 // WARNING: Do not edit - generated code.
7925 8070
7926 8071
7927 @DocsEditable 8072 @DocsEditable
7928 @DomName('SVGHKernElement') 8073 @DomName('SVGHKernElement')
7929 @Unstable 8074 @Unstable
7930 abstract class _SVGHKernElement extends SvgElement { 8075 abstract class _SVGHKernElement extends SvgElement {
7931 _SVGHKernElement.internal() : super.internal(); 8076 // To suppress missing implicit constructor warnings.
8077 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); }
7932 8078
7933 @DomName('SVGHKernElement.SVGHKernElement') 8079 @DomName('SVGHKernElement.SVGHKernElement')
7934 @DocsEditable 8080 @DocsEditable
7935 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern"); 8081 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern");
7936 8082
7937 } 8083 }
7938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8084 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7939 // for details. All rights reserved. Use of this source code is governed by a 8085 // for details. All rights reserved. Use of this source code is governed by a
7940 // BSD-style license that can be found in the LICENSE file. 8086 // BSD-style license that can be found in the LICENSE file.
7941 8087
7942 // WARNING: Do not edit - generated code. 8088 // WARNING: Do not edit - generated code.
7943 8089
7944 8090
7945 @DocsEditable 8091 @DocsEditable
7946 @DomName('SVGMPathElement') 8092 @DomName('SVGMPathElement')
7947 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired { 8093 abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte rnalResourcesRequired {
7948 _SVGMPathElement.internal() : super.internal(); 8094 // To suppress missing implicit constructor warnings.
8095 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); }
7949 8096
7950 @DomName('SVGMPathElement.SVGMPathElement') 8097 @DomName('SVGMPathElement.SVGMPathElement')
7951 @DocsEditable 8098 @DocsEditable
7952 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath"); 8099 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath");
7953 8100
7954 } 8101 }
7955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8102 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7956 // for details. All rights reserved. Use of this source code is governed by a 8103 // for details. All rights reserved. Use of this source code is governed by a
7957 // BSD-style license that can be found in the LICENSE file. 8104 // BSD-style license that can be found in the LICENSE file.
7958 8105
7959 // WARNING: Do not edit - generated code. 8106 // WARNING: Do not edit - generated code.
7960 8107
7961 8108
7962 @DocsEditable 8109 @DocsEditable
7963 @DomName('SVGMissingGlyphElement') 8110 @DomName('SVGMissingGlyphElement')
7964 @Unstable 8111 @Unstable
7965 abstract class _SVGMissingGlyphElement extends StyledElement { 8112 abstract class _SVGMissingGlyphElement extends StyledElement {
7966 _SVGMissingGlyphElement.internal() : super.internal(); 8113 // To suppress missing implicit constructor warnings.
8114 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); }
7967 8115
7968 } 8116 }
7969 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7970 // for details. All rights reserved. Use of this source code is governed by a 8118 // for details. All rights reserved. Use of this source code is governed by a
7971 // BSD-style license that can be found in the LICENSE file. 8119 // BSD-style license that can be found in the LICENSE file.
7972 8120
7973 // WARNING: Do not edit - generated code. 8121 // WARNING: Do not edit - generated code.
7974 8122
7975 8123
7976 @DocsEditable 8124 @DocsEditable
7977 @DomName('SVGPaint') 8125 @DomName('SVGPaint')
7978 @Unstable 8126 @Unstable
7979 abstract class _SVGPaint extends _SVGColor { 8127 abstract class _SVGPaint extends _SVGColor {
7980 _SVGPaint.internal() : super.internal(); 8128 // To suppress missing implicit constructor warnings.
8129 factory _SVGPaint._() { throw new UnsupportedError("Not supported"); }
7981 8130
7982 } 8131 }
7983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8132 // 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 8133 // 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. 8134 // BSD-style license that can be found in the LICENSE file.
7986 8135
7987 // WARNING: Do not edit - generated code. 8136 // WARNING: Do not edit - generated code.
7988 8137
7989 8138
7990 @DocsEditable 8139 @DocsEditable
7991 @DomName('SVGTRefElement') 8140 @DomName('SVGTRefElement')
7992 @Unstable 8141 @Unstable
7993 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence { 8142 abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe rence {
7994 _SVGTRefElement.internal() : super.internal(); 8143 // To suppress missing implicit constructor warnings.
8144 factory _SVGTRefElement._() { throw new UnsupportedError("Not supported"); }
7995 8145
7996 @DomName('SVGTRefElement.SVGTRefElement') 8146 @DomName('SVGTRefElement.SVGTRefElement')
7997 @DocsEditable 8147 @DocsEditable
7998 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref"); 8148 factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag(" tref");
7999 8149
8000 } 8150 }
8001 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8151 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8002 // for details. All rights reserved. Use of this source code is governed by a 8152 // for details. All rights reserved. Use of this source code is governed by a
8003 // BSD-style license that can be found in the LICENSE file. 8153 // BSD-style license that can be found in the LICENSE file.
8004 8154
8005 // WARNING: Do not edit - generated code. 8155 // WARNING: Do not edit - generated code.
8006 8156
8007 8157
8008 @DocsEditable 8158 @DocsEditable
8009 @DomName('SVGVKernElement') 8159 @DomName('SVGVKernElement')
8010 @Unstable 8160 @Unstable
8011 abstract class _SVGVKernElement extends SvgElement { 8161 abstract class _SVGVKernElement extends SvgElement {
8012 _SVGVKernElement.internal() : super.internal(); 8162 // To suppress missing implicit constructor warnings.
8163 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
8013 8164
8014 @DomName('SVGVKernElement.SVGVKernElement') 8165 @DomName('SVGVKernElement.SVGVKernElement')
8015 @DocsEditable 8166 @DocsEditable
8016 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8167 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8017 8168
8018 } 8169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698