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

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

Issue 684783005: Redirect blink calls through instance (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library 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:_internal' hide deprecated; 5 import 'dart:_internal' hide deprecated;
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 import 'dart:_blink' as _blink; 9 import 'dart:_blink' as _blink;
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 191 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
192 /** 192 /**
193 * Constructor instantiated by the DOM when a custom element has been created. 193 * Constructor instantiated by the DOM when a custom element has been created.
194 * 194 *
195 * This can only be called by subclasses from their created constructor. 195 * This can only be called by subclasses from their created constructor.
196 */ 196 */
197 AElement.created() : super.created(); 197 AElement.created() : super.created();
198 198
199 @DomName('SVGAElement.target') 199 @DomName('SVGAElement.target')
200 @DocsEditable() 200 @DocsEditable()
201 AnimatedString get target => _blink.BlinkSVGAElement.target_Getter(this); 201 AnimatedString get target => _blink.BlinkSVGAElement.instance.target_Getter_(t his);
202 202
203 @DomName('SVGAElement.href') 203 @DomName('SVGAElement.href')
204 @DocsEditable() 204 @DocsEditable()
205 AnimatedString get href => _blink.BlinkSVGAElement.href_Getter(this); 205 AnimatedString get href => _blink.BlinkSVGAElement.instance.href_Getter_(this) ;
206 206
207 } 207 }
208 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 208 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
209 // for details. All rights reserved. Use of this source code is governed by a 209 // for details. All rights reserved. Use of this source code is governed by a
210 // BSD-style license that can be found in the LICENSE file. 210 // BSD-style license that can be found in the LICENSE file.
211 211
212 // WARNING: Do not edit - generated code. 212 // WARNING: Do not edit - generated code.
213 213
214 214
215 @DocsEditable() 215 @DocsEditable()
(...skipping 14 matching lines...) Expand all
230 * 230 *
231 * This can only be called by subclasses from their created constructor. 231 * This can only be called by subclasses from their created constructor.
232 */ 232 */
233 AltGlyphElement.created() : super.created(); 233 AltGlyphElement.created() : super.created();
234 234
235 /// Checks if this type is supported on the current platform. 235 /// Checks if this type is supported on the current platform.
236 static bool get supported => true; 236 static bool get supported => true;
237 237
238 @DomName('SVGAltGlyphElement.format') 238 @DomName('SVGAltGlyphElement.format')
239 @DocsEditable() 239 @DocsEditable()
240 String get format => _blink.BlinkSVGAltGlyphElement.format_Getter(this); 240 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(th is);
241 241
242 @DomName('SVGAltGlyphElement.format') 242 @DomName('SVGAltGlyphElement.format')
243 @DocsEditable() 243 @DocsEditable()
244 void set format(String value) => _blink.BlinkSVGAltGlyphElement.format_Setter( this, value); 244 void set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.forma t_Setter_(this, value);
245 245
246 @DomName('SVGAltGlyphElement.glyphRef') 246 @DomName('SVGAltGlyphElement.glyphRef')
247 @DocsEditable() 247 @DocsEditable()
248 String get glyphRef => _blink.BlinkSVGAltGlyphElement.glyphRef_Getter(this); 248 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter _(this);
249 249
250 @DomName('SVGAltGlyphElement.glyphRef') 250 @DomName('SVGAltGlyphElement.glyphRef')
251 @DocsEditable() 251 @DocsEditable()
252 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.glyphRef_Set ter(this, value); 252 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.gly phRef_Setter_(this, value);
253 253
254 @DomName('SVGAltGlyphElement.href') 254 @DomName('SVGAltGlyphElement.href')
255 @DocsEditable() 255 @DocsEditable()
256 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.href_Getter(this); 256 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.instance.href_Getter _(this);
257 257
258 } 258 }
259 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 259 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
260 // for details. All rights reserved. Use of this source code is governed by a 260 // for details. All rights reserved. Use of this source code is governed by a
261 // BSD-style license that can be found in the LICENSE file. 261 // BSD-style license that can be found in the LICENSE file.
262 262
263 // WARNING: Do not edit - generated code. 263 // WARNING: Do not edit - generated code.
264 264
265 265
266 @DocsEditable() 266 @DocsEditable()
(...skipping 18 matching lines...) Expand all
285 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN') 285 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
286 @DocsEditable() 286 @DocsEditable()
287 static const int SVG_ANGLETYPE_UNKNOWN = 0; 287 static const int SVG_ANGLETYPE_UNKNOWN = 0;
288 288
289 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED') 289 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
290 @DocsEditable() 290 @DocsEditable()
291 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 291 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
292 292
293 @DomName('SVGAngle.unitType') 293 @DomName('SVGAngle.unitType')
294 @DocsEditable() 294 @DocsEditable()
295 int get unitType => _blink.BlinkSVGAngle.unitType_Getter(this); 295 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(this);
296 296
297 @DomName('SVGAngle.value') 297 @DomName('SVGAngle.value')
298 @DocsEditable() 298 @DocsEditable()
299 num get value => _blink.BlinkSVGAngle.value_Getter(this); 299 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(this);
300 300
301 @DomName('SVGAngle.value') 301 @DomName('SVGAngle.value')
302 @DocsEditable() 302 @DocsEditable()
303 void set value(num value) => _blink.BlinkSVGAngle.value_Setter(this, value); 303 void set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(this, value);
304 304
305 @DomName('SVGAngle.valueAsString') 305 @DomName('SVGAngle.valueAsString')
306 @DocsEditable() 306 @DocsEditable()
307 String get valueAsString => _blink.BlinkSVGAngle.valueAsString_Getter(this); 307 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter _(this);
308 308
309 @DomName('SVGAngle.valueAsString') 309 @DomName('SVGAngle.valueAsString')
310 @DocsEditable() 310 @DocsEditable()
311 void set valueAsString(String value) => _blink.BlinkSVGAngle.valueAsString_Set ter(this, value); 311 void set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsS tring_Setter_(this, value);
312 312
313 @DomName('SVGAngle.valueInSpecifiedUnits') 313 @DomName('SVGAngle.valueInSpecifiedUnits')
314 @DocsEditable() 314 @DocsEditable()
315 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.valueInSpecifiedUnits_Ge tter(this); 315 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie dUnits_Getter_(this);
316 316
317 @DomName('SVGAngle.valueInSpecifiedUnits') 317 @DomName('SVGAngle.valueInSpecifiedUnits')
318 @DocsEditable() 318 @DocsEditable()
319 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.valueInSpeci fiedUnits_Setter(this, value); 319 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.val ueInSpecifiedUnits_Setter_(this, value);
320 320
321 @DomName('SVGAngle.convertToSpecifiedUnits') 321 @DomName('SVGAngle.convertToSpecifiedUnits')
322 @DocsEditable() 322 @DocsEditable()
323 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.convertToSp ecifiedUnits_Callback_1(this, unitType); 323 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co nvertToSpecifiedUnits_Callback_1_(this, unitType);
324 324
325 @DomName('SVGAngle.newValueSpecifiedUnits') 325 @DomName('SVGAngle.newValueSpecifiedUnits')
326 @DocsEditable() 326 @DocsEditable()
327 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.newValueSpecifiedUnits_Callback_2(this, unitType, valueInSpecifie dUnits); 327 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, value InSpecifiedUnits);
328 328
329 } 329 }
330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
331 // for details. All rights reserved. Use of this source code is governed by a 331 // for details. All rights reserved. Use of this source code is governed by a
332 // BSD-style license that can be found in the LICENSE file. 332 // BSD-style license that can be found in the LICENSE file.
333 333
334 // WARNING: Do not edit - generated code. 334 // WARNING: Do not edit - generated code.
335 335
336 336
337 @DocsEditable() 337 @DocsEditable()
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 429
430 @DocsEditable() 430 @DocsEditable()
431 @DomName('SVGAnimatedAngle') 431 @DomName('SVGAnimatedAngle')
432 @Unstable() 432 @Unstable()
433 class AnimatedAngle extends NativeFieldWrapperClass2 { 433 class AnimatedAngle extends NativeFieldWrapperClass2 {
434 // To suppress missing implicit constructor warnings. 434 // To suppress missing implicit constructor warnings.
435 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } 435 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); }
436 436
437 @DomName('SVGAnimatedAngle.animVal') 437 @DomName('SVGAnimatedAngle.animVal')
438 @DocsEditable() 438 @DocsEditable()
439 Angle get animVal => _blink.BlinkSVGAnimatedAngle.animVal_Getter(this); 439 Angle get animVal => _blink.BlinkSVGAnimatedAngle.instance.animVal_Getter_(thi s);
440 440
441 @DomName('SVGAnimatedAngle.baseVal') 441 @DomName('SVGAnimatedAngle.baseVal')
442 @DocsEditable() 442 @DocsEditable()
443 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.baseVal_Getter(this); 443 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.instance.baseVal_Getter_(thi s);
444 444
445 } 445 }
446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
447 // for details. All rights reserved. Use of this source code is governed by a 447 // for details. All rights reserved. Use of this source code is governed by a
448 // BSD-style license that can be found in the LICENSE file. 448 // BSD-style license that can be found in the LICENSE file.
449 449
450 // WARNING: Do not edit - generated code. 450 // WARNING: Do not edit - generated code.
451 451
452 452
453 @DocsEditable() 453 @DocsEditable()
454 @DomName('SVGAnimatedBoolean') 454 @DomName('SVGAnimatedBoolean')
455 @Unstable() 455 @Unstable()
456 class AnimatedBoolean extends NativeFieldWrapperClass2 { 456 class AnimatedBoolean extends NativeFieldWrapperClass2 {
457 // To suppress missing implicit constructor warnings. 457 // To suppress missing implicit constructor warnings.
458 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } 458 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); }
459 459
460 @DomName('SVGAnimatedBoolean.animVal') 460 @DomName('SVGAnimatedBoolean.animVal')
461 @DocsEditable() 461 @DocsEditable()
462 bool get animVal => _blink.BlinkSVGAnimatedBoolean.animVal_Getter(this); 462 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(th is);
463 463
464 @DomName('SVGAnimatedBoolean.baseVal') 464 @DomName('SVGAnimatedBoolean.baseVal')
465 @DocsEditable() 465 @DocsEditable()
466 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.baseVal_Getter(this); 466 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(th is);
467 467
468 @DomName('SVGAnimatedBoolean.baseVal') 468 @DomName('SVGAnimatedBoolean.baseVal')
469 @DocsEditable() 469 @DocsEditable()
470 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.baseVal_Setter( this, value); 470 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa l_Setter_(this, value);
471 471
472 } 472 }
473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
474 // for details. All rights reserved. Use of this source code is governed by a 474 // for details. All rights reserved. Use of this source code is governed by a
475 // BSD-style license that can be found in the LICENSE file. 475 // BSD-style license that can be found in the LICENSE file.
476 476
477 // WARNING: Do not edit - generated code. 477 // WARNING: Do not edit - generated code.
478 478
479 479
480 @DocsEditable() 480 @DocsEditable()
481 @DomName('SVGAnimatedEnumeration') 481 @DomName('SVGAnimatedEnumeration')
482 @Unstable() 482 @Unstable()
483 class AnimatedEnumeration extends NativeFieldWrapperClass2 { 483 class AnimatedEnumeration extends NativeFieldWrapperClass2 {
484 // To suppress missing implicit constructor warnings. 484 // To suppress missing implicit constructor warnings.
485 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); } 485 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); }
486 486
487 @DomName('SVGAnimatedEnumeration.animVal') 487 @DomName('SVGAnimatedEnumeration.animVal')
488 @DocsEditable() 488 @DocsEditable()
489 int get animVal => _blink.BlinkSVGAnimatedEnumeration.animVal_Getter(this); 489 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_ (this);
490 490
491 @DomName('SVGAnimatedEnumeration.baseVal') 491 @DomName('SVGAnimatedEnumeration.baseVal')
492 @DocsEditable() 492 @DocsEditable()
493 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.baseVal_Getter(this); 493 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_ (this);
494 494
495 @DomName('SVGAnimatedEnumeration.baseVal') 495 @DomName('SVGAnimatedEnumeration.baseVal')
496 @DocsEditable() 496 @DocsEditable()
497 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.baseVal_Sett er(this, value); 497 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas eVal_Setter_(this, value);
498 498
499 } 499 }
500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
501 // for details. All rights reserved. Use of this source code is governed by a 501 // for details. All rights reserved. Use of this source code is governed by a
502 // BSD-style license that can be found in the LICENSE file. 502 // BSD-style license that can be found in the LICENSE file.
503 503
504 // WARNING: Do not edit - generated code. 504 // WARNING: Do not edit - generated code.
505 505
506 506
507 @DocsEditable() 507 @DocsEditable()
508 @DomName('SVGAnimatedInteger') 508 @DomName('SVGAnimatedInteger')
509 @Unstable() 509 @Unstable()
510 class AnimatedInteger extends NativeFieldWrapperClass2 { 510 class AnimatedInteger extends NativeFieldWrapperClass2 {
511 // To suppress missing implicit constructor warnings. 511 // To suppress missing implicit constructor warnings.
512 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } 512 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); }
513 513
514 @DomName('SVGAnimatedInteger.animVal') 514 @DomName('SVGAnimatedInteger.animVal')
515 @DocsEditable() 515 @DocsEditable()
516 int get animVal => _blink.BlinkSVGAnimatedInteger.animVal_Getter(this); 516 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(thi s);
517 517
518 @DomName('SVGAnimatedInteger.baseVal') 518 @DomName('SVGAnimatedInteger.baseVal')
519 @DocsEditable() 519 @DocsEditable()
520 int get baseVal => _blink.BlinkSVGAnimatedInteger.baseVal_Getter(this); 520 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(thi s);
521 521
522 @DomName('SVGAnimatedInteger.baseVal') 522 @DomName('SVGAnimatedInteger.baseVal')
523 @DocsEditable() 523 @DocsEditable()
524 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.baseVal_Setter(t his, value); 524 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal _Setter_(this, value);
525 525
526 } 526 }
527 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 527 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
528 // for details. All rights reserved. Use of this source code is governed by a 528 // for details. All rights reserved. Use of this source code is governed by a
529 // BSD-style license that can be found in the LICENSE file. 529 // BSD-style license that can be found in the LICENSE file.
530 530
531 // WARNING: Do not edit - generated code. 531 // WARNING: Do not edit - generated code.
532 532
533 533
534 @DocsEditable() 534 @DocsEditable()
535 @DomName('SVGAnimatedLength') 535 @DomName('SVGAnimatedLength')
536 @Unstable() 536 @Unstable()
537 class AnimatedLength extends NativeFieldWrapperClass2 { 537 class AnimatedLength extends NativeFieldWrapperClass2 {
538 // To suppress missing implicit constructor warnings. 538 // To suppress missing implicit constructor warnings.
539 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } 539 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); }
540 540
541 @DomName('SVGAnimatedLength.animVal') 541 @DomName('SVGAnimatedLength.animVal')
542 @DocsEditable() 542 @DocsEditable()
543 Length get animVal => _blink.BlinkSVGAnimatedLength.animVal_Getter(this); 543 Length get animVal => _blink.BlinkSVGAnimatedLength.instance.animVal_Getter_(t his);
544 544
545 @DomName('SVGAnimatedLength.baseVal') 545 @DomName('SVGAnimatedLength.baseVal')
546 @DocsEditable() 546 @DocsEditable()
547 Length get baseVal => _blink.BlinkSVGAnimatedLength.baseVal_Getter(this); 547 Length get baseVal => _blink.BlinkSVGAnimatedLength.instance.baseVal_Getter_(t his);
548 548
549 } 549 }
550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
551 // for details. All rights reserved. Use of this source code is governed by a 551 // for details. All rights reserved. Use of this source code is governed by a
552 // BSD-style license that can be found in the LICENSE file. 552 // BSD-style license that can be found in the LICENSE file.
553 553
554 // WARNING: Do not edit - generated code. 554 // WARNING: Do not edit - generated code.
555 555
556 556
557 @DocsEditable() 557 @DocsEditable()
558 @DomName('SVGAnimatedLengthList') 558 @DomName('SVGAnimatedLengthList')
559 @Unstable() 559 @Unstable()
560 class AnimatedLengthList extends NativeFieldWrapperClass2 { 560 class AnimatedLengthList extends NativeFieldWrapperClass2 {
561 // To suppress missing implicit constructor warnings. 561 // To suppress missing implicit constructor warnings.
562 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); } 562 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); }
563 563
564 @DomName('SVGAnimatedLengthList.animVal') 564 @DomName('SVGAnimatedLengthList.animVal')
565 @DocsEditable() 565 @DocsEditable()
566 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.animVal_Getter(thi s); 566 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.instance.animVal_G etter_(this);
567 567
568 @DomName('SVGAnimatedLengthList.baseVal') 568 @DomName('SVGAnimatedLengthList.baseVal')
569 @DocsEditable() 569 @DocsEditable()
570 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.baseVal_Getter(thi s); 570 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.instance.baseVal_G etter_(this);
571 571
572 } 572 }
573 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 573 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
574 // for details. All rights reserved. Use of this source code is governed by a 574 // for details. All rights reserved. Use of this source code is governed by a
575 // BSD-style license that can be found in the LICENSE file. 575 // BSD-style license that can be found in the LICENSE file.
576 576
577 // WARNING: Do not edit - generated code. 577 // WARNING: Do not edit - generated code.
578 578
579 579
580 @DocsEditable() 580 @DocsEditable()
581 @DomName('SVGAnimatedNumber') 581 @DomName('SVGAnimatedNumber')
582 @Unstable() 582 @Unstable()
583 class AnimatedNumber extends NativeFieldWrapperClass2 { 583 class AnimatedNumber extends NativeFieldWrapperClass2 {
584 // To suppress missing implicit constructor warnings. 584 // To suppress missing implicit constructor warnings.
585 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } 585 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); }
586 586
587 @DomName('SVGAnimatedNumber.animVal') 587 @DomName('SVGAnimatedNumber.animVal')
588 @DocsEditable() 588 @DocsEditable()
589 double get animVal => _blink.BlinkSVGAnimatedNumber.animVal_Getter(this); 589 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(t his);
590 590
591 @DomName('SVGAnimatedNumber.baseVal') 591 @DomName('SVGAnimatedNumber.baseVal')
592 @DocsEditable() 592 @DocsEditable()
593 num get baseVal => _blink.BlinkSVGAnimatedNumber.baseVal_Getter(this); 593 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(this );
594 594
595 @DomName('SVGAnimatedNumber.baseVal') 595 @DomName('SVGAnimatedNumber.baseVal')
596 @DocsEditable() 596 @DocsEditable()
597 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.baseVal_Setter(th is, value); 597 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_ Setter_(this, value);
598 598
599 } 599 }
600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
601 // for details. All rights reserved. Use of this source code is governed by a 601 // for details. All rights reserved. Use of this source code is governed by a
602 // BSD-style license that can be found in the LICENSE file. 602 // BSD-style license that can be found in the LICENSE file.
603 603
604 // WARNING: Do not edit - generated code. 604 // WARNING: Do not edit - generated code.
605 605
606 606
607 @DocsEditable() 607 @DocsEditable()
608 @DomName('SVGAnimatedNumberList') 608 @DomName('SVGAnimatedNumberList')
609 @Unstable() 609 @Unstable()
610 class AnimatedNumberList extends NativeFieldWrapperClass2 { 610 class AnimatedNumberList extends NativeFieldWrapperClass2 {
611 // To suppress missing implicit constructor warnings. 611 // To suppress missing implicit constructor warnings.
612 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); } 612 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); }
613 613
614 @DomName('SVGAnimatedNumberList.animVal') 614 @DomName('SVGAnimatedNumberList.animVal')
615 @DocsEditable() 615 @DocsEditable()
616 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.animVal_Getter(thi s); 616 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.instance.animVal_G etter_(this);
617 617
618 @DomName('SVGAnimatedNumberList.baseVal') 618 @DomName('SVGAnimatedNumberList.baseVal')
619 @DocsEditable() 619 @DocsEditable()
620 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.baseVal_Getter(thi s); 620 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.instance.baseVal_G etter_(this);
621 621
622 } 622 }
623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
624 // for details. All rights reserved. Use of this source code is governed by a 624 // for details. All rights reserved. Use of this source code is governed by a
625 // BSD-style license that can be found in the LICENSE file. 625 // BSD-style license that can be found in the LICENSE file.
626 626
627 // WARNING: Do not edit - generated code. 627 // WARNING: Do not edit - generated code.
628 628
629 629
630 @DocsEditable() 630 @DocsEditable()
631 @DomName('SVGAnimatedPreserveAspectRatio') 631 @DomName('SVGAnimatedPreserveAspectRatio')
632 @Unstable() 632 @Unstable()
633 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { 633 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 {
634 // To suppress missing implicit constructor warnings. 634 // To suppress missing implicit constructor warnings.
635 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); } 635 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); }
636 636
637 @DomName('SVGAnimatedPreserveAspectRatio.animVal') 637 @DomName('SVGAnimatedPreserveAspectRatio.animVal')
638 @DocsEditable() 638 @DocsEditable()
639 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. animVal_Getter(this); 639 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. instance.animVal_Getter_(this);
640 640
641 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') 641 @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
642 @DocsEditable() 642 @DocsEditable()
643 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. baseVal_Getter(this); 643 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. instance.baseVal_Getter_(this);
644 644
645 } 645 }
646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
647 // for details. All rights reserved. Use of this source code is governed by a 647 // for details. All rights reserved. Use of this source code is governed by a
648 // BSD-style license that can be found in the LICENSE file. 648 // BSD-style license that can be found in the LICENSE file.
649 649
650 // WARNING: Do not edit - generated code. 650 // WARNING: Do not edit - generated code.
651 651
652 652
653 @DocsEditable() 653 @DocsEditable()
654 @DomName('SVGAnimatedRect') 654 @DomName('SVGAnimatedRect')
655 @Unstable() 655 @Unstable()
656 class AnimatedRect extends NativeFieldWrapperClass2 { 656 class AnimatedRect extends NativeFieldWrapperClass2 {
657 // To suppress missing implicit constructor warnings. 657 // To suppress missing implicit constructor warnings.
658 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } 658 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); }
659 659
660 @DomName('SVGAnimatedRect.animVal') 660 @DomName('SVGAnimatedRect.animVal')
661 @DocsEditable() 661 @DocsEditable()
662 Rect get animVal => _blink.BlinkSVGAnimatedRect.animVal_Getter(this); 662 Rect get animVal => _blink.BlinkSVGAnimatedRect.instance.animVal_Getter_(this) ;
663 663
664 @DomName('SVGAnimatedRect.baseVal') 664 @DomName('SVGAnimatedRect.baseVal')
665 @DocsEditable() 665 @DocsEditable()
666 Rect get baseVal => _blink.BlinkSVGAnimatedRect.baseVal_Getter(this); 666 Rect get baseVal => _blink.BlinkSVGAnimatedRect.instance.baseVal_Getter_(this) ;
667 667
668 } 668 }
669 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 669 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
670 // for details. All rights reserved. Use of this source code is governed by a 670 // for details. All rights reserved. Use of this source code is governed by a
671 // BSD-style license that can be found in the LICENSE file. 671 // BSD-style license that can be found in the LICENSE file.
672 672
673 // WARNING: Do not edit - generated code. 673 // WARNING: Do not edit - generated code.
674 674
675 675
676 @DocsEditable() 676 @DocsEditable()
677 @DomName('SVGAnimatedString') 677 @DomName('SVGAnimatedString')
678 @Unstable() 678 @Unstable()
679 class AnimatedString extends NativeFieldWrapperClass2 { 679 class AnimatedString extends NativeFieldWrapperClass2 {
680 // To suppress missing implicit constructor warnings. 680 // To suppress missing implicit constructor warnings.
681 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } 681 factory AnimatedString._() { throw new UnsupportedError("Not supported"); }
682 682
683 @DomName('SVGAnimatedString.animVal') 683 @DomName('SVGAnimatedString.animVal')
684 @DocsEditable() 684 @DocsEditable()
685 String get animVal => _blink.BlinkSVGAnimatedString.animVal_Getter(this); 685 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(t his);
686 686
687 @DomName('SVGAnimatedString.baseVal') 687 @DomName('SVGAnimatedString.baseVal')
688 @DocsEditable() 688 @DocsEditable()
689 String get baseVal => _blink.BlinkSVGAnimatedString.baseVal_Getter(this); 689 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(t his);
690 690
691 @DomName('SVGAnimatedString.baseVal') 691 @DomName('SVGAnimatedString.baseVal')
692 @DocsEditable() 692 @DocsEditable()
693 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.baseVal_Setter (this, value); 693 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV al_Setter_(this, value);
694 694
695 } 695 }
696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
697 // for details. All rights reserved. Use of this source code is governed by a 697 // for details. All rights reserved. Use of this source code is governed by a
698 // BSD-style license that can be found in the LICENSE file. 698 // BSD-style license that can be found in the LICENSE file.
699 699
700 // WARNING: Do not edit - generated code. 700 // WARNING: Do not edit - generated code.
701 701
702 702
703 @DocsEditable() 703 @DocsEditable()
704 @DomName('SVGAnimatedTransformList') 704 @DomName('SVGAnimatedTransformList')
705 @Unstable() 705 @Unstable()
706 class AnimatedTransformList extends NativeFieldWrapperClass2 { 706 class AnimatedTransformList extends NativeFieldWrapperClass2 {
707 // To suppress missing implicit constructor warnings. 707 // To suppress missing implicit constructor warnings.
708 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); } 708 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); }
709 709
710 @DomName('SVGAnimatedTransformList.animVal') 710 @DomName('SVGAnimatedTransformList.animVal')
711 @DocsEditable() 711 @DocsEditable()
712 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.animVal_Gett er(this); 712 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.instance.ani mVal_Getter_(this);
713 713
714 @DomName('SVGAnimatedTransformList.baseVal') 714 @DomName('SVGAnimatedTransformList.baseVal')
715 @DocsEditable() 715 @DocsEditable()
716 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.baseVal_Gett er(this); 716 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.instance.bas eVal_Getter_(this);
717 717
718 } 718 }
719 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 719 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
720 // for details. All rights reserved. Use of this source code is governed by a 720 // for details. All rights reserved. Use of this source code is governed by a
721 // BSD-style license that can be found in the LICENSE file. 721 // BSD-style license that can be found in the LICENSE file.
722 722
723 // WARNING: Do not edit - generated code. 723 // WARNING: Do not edit - generated code.
724 724
725 725
726 @DocsEditable() 726 @DocsEditable()
727 @DomName('SVGAnimationElement') 727 @DomName('SVGAnimationElement')
728 @Unstable() 728 @Unstable()
729 class AnimationElement extends SvgElement implements Tests { 729 class AnimationElement extends SvgElement implements Tests {
730 // To suppress missing implicit constructor warnings. 730 // To suppress missing implicit constructor warnings.
731 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } 731 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
732 732
733 @DomName('SVGAnimationElement.SVGAnimationElement') 733 @DomName('SVGAnimationElement.SVGAnimationElement')
734 @DocsEditable() 734 @DocsEditable()
735 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 735 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
736 /** 736 /**
737 * Constructor instantiated by the DOM when a custom element has been created. 737 * Constructor instantiated by the DOM when a custom element has been created.
738 * 738 *
739 * This can only be called by subclasses from their created constructor. 739 * This can only be called by subclasses from their created constructor.
740 */ 740 */
741 AnimationElement.created() : super.created(); 741 AnimationElement.created() : super.created();
742 742
743 @DomName('SVGAnimationElement.targetElement') 743 @DomName('SVGAnimationElement.targetElement')
744 @DocsEditable() 744 @DocsEditable()
745 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.targetElement_ Getter(this); 745 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.instance.targe tElement_Getter_(this);
746 746
747 @DomName('SVGAnimationElement.beginElement') 747 @DomName('SVGAnimationElement.beginElement')
748 @DocsEditable() 748 @DocsEditable()
749 void beginElement() => _blink.BlinkSVGAnimationElement.beginElement_Callback_0 (this); 749 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C allback_0_(this);
750 750
751 @DomName('SVGAnimationElement.beginElementAt') 751 @DomName('SVGAnimationElement.beginElementAt')
752 @DocsEditable() 752 @DocsEditable()
753 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.beginElemen tAt_Callback_1(this, offset); 753 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be ginElementAt_Callback_1_(this, offset);
754 754
755 @DomName('SVGAnimationElement.endElement') 755 @DomName('SVGAnimationElement.endElement')
756 @DocsEditable() 756 @DocsEditable()
757 void endElement() => _blink.BlinkSVGAnimationElement.endElement_Callback_0(thi s); 757 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb ack_0_(this);
758 758
759 @DomName('SVGAnimationElement.endElementAt') 759 @DomName('SVGAnimationElement.endElementAt')
760 @DocsEditable() 760 @DocsEditable()
761 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.endElementAt_ Callback_1(this, offset); 761 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE lementAt_Callback_1_(this, offset);
762 762
763 @DomName('SVGAnimationElement.getCurrentTime') 763 @DomName('SVGAnimationElement.getCurrentTime')
764 @DocsEditable() 764 @DocsEditable()
765 double getCurrentTime() => _blink.BlinkSVGAnimationElement.getCurrentTime_Call back_0(this); 765 double getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrent Time_Callback_0_(this);
766 766
767 @DomName('SVGAnimationElement.getSimpleDuration') 767 @DomName('SVGAnimationElement.getSimpleDuration')
768 @DocsEditable() 768 @DocsEditable()
769 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.getSimpleDuratio n_Callback_0(this); 769 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimp leDuration_Callback_0_(this);
770 770
771 @DomName('SVGAnimationElement.getStartTime') 771 @DomName('SVGAnimationElement.getStartTime')
772 @DocsEditable() 772 @DocsEditable()
773 double getStartTime() => _blink.BlinkSVGAnimationElement.getStartTime_Callback _0(this); 773 double getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime _Callback_0_(this);
774 774
775 @DomName('SVGAnimationElement.requiredExtensions') 775 @DomName('SVGAnimationElement.requiredExtensions')
776 @DocsEditable() 776 @DocsEditable()
777 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.requiredE xtensions_Getter(this); 777 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.instance. requiredExtensions_Getter_(this);
778 778
779 @DomName('SVGAnimationElement.requiredFeatures') 779 @DomName('SVGAnimationElement.requiredFeatures')
780 @DocsEditable() 780 @DocsEditable()
781 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.requiredFea tures_Getter(this); 781 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.instance.re quiredFeatures_Getter_(this);
782 782
783 @DomName('SVGAnimationElement.systemLanguage') 783 @DomName('SVGAnimationElement.systemLanguage')
784 @DocsEditable() 784 @DocsEditable()
785 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.systemLanguag e_Getter(this); 785 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.instance.syst emLanguage_Getter_(this);
786 786
787 @DomName('SVGAnimationElement.hasExtension') 787 @DomName('SVGAnimationElement.hasExtension')
788 @DocsEditable() 788 @DocsEditable()
789 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.hasExte nsion_Callback_1(this, extension); 789 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instanc e.hasExtension_Callback_1_(this, extension);
790 790
791 } 791 }
792 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 792 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
793 // for details. All rights reserved. Use of this source code is governed by a 793 // for details. All rights reserved. Use of this source code is governed by a
794 // BSD-style license that can be found in the LICENSE file. 794 // BSD-style license that can be found in the LICENSE file.
795 795
796 // WARNING: Do not edit - generated code. 796 // WARNING: Do not edit - generated code.
797 797
798 798
799 @DocsEditable() 799 @DocsEditable()
800 @DomName('SVGCircleElement') 800 @DomName('SVGCircleElement')
801 @Unstable() 801 @Unstable()
802 class CircleElement extends GeometryElement { 802 class CircleElement extends GeometryElement {
803 // To suppress missing implicit constructor warnings. 803 // To suppress missing implicit constructor warnings.
804 factory CircleElement._() { throw new UnsupportedError("Not supported"); } 804 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
805 805
806 @DomName('SVGCircleElement.SVGCircleElement') 806 @DomName('SVGCircleElement.SVGCircleElement')
807 @DocsEditable() 807 @DocsEditable()
808 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 808 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
809 /** 809 /**
810 * Constructor instantiated by the DOM when a custom element has been created. 810 * Constructor instantiated by the DOM when a custom element has been created.
811 * 811 *
812 * This can only be called by subclasses from their created constructor. 812 * This can only be called by subclasses from their created constructor.
813 */ 813 */
814 CircleElement.created() : super.created(); 814 CircleElement.created() : super.created();
815 815
816 @DomName('SVGCircleElement.cx') 816 @DomName('SVGCircleElement.cx')
817 @DocsEditable() 817 @DocsEditable()
818 AnimatedLength get cx => _blink.BlinkSVGCircleElement.cx_Getter(this); 818 AnimatedLength get cx => _blink.BlinkSVGCircleElement.instance.cx_Getter_(this );
819 819
820 @DomName('SVGCircleElement.cy') 820 @DomName('SVGCircleElement.cy')
821 @DocsEditable() 821 @DocsEditable()
822 AnimatedLength get cy => _blink.BlinkSVGCircleElement.cy_Getter(this); 822 AnimatedLength get cy => _blink.BlinkSVGCircleElement.instance.cy_Getter_(this );
823 823
824 @DomName('SVGCircleElement.r') 824 @DomName('SVGCircleElement.r')
825 @DocsEditable() 825 @DocsEditable()
826 AnimatedLength get r => _blink.BlinkSVGCircleElement.r_Getter(this); 826 AnimatedLength get r => _blink.BlinkSVGCircleElement.instance.r_Getter_(this);
827 827
828 } 828 }
829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
830 // for details. All rights reserved. Use of this source code is governed by a 830 // for details. All rights reserved. Use of this source code is governed by a
831 // BSD-style license that can be found in the LICENSE file. 831 // BSD-style license that can be found in the LICENSE file.
832 832
833 // WARNING: Do not edit - generated code. 833 // WARNING: Do not edit - generated code.
834 834
835 835
836 @DocsEditable() 836 @DocsEditable()
837 @DomName('SVGClipPathElement') 837 @DomName('SVGClipPathElement')
838 @Unstable() 838 @Unstable()
839 class ClipPathElement extends GraphicsElement { 839 class ClipPathElement extends GraphicsElement {
840 // To suppress missing implicit constructor warnings. 840 // To suppress missing implicit constructor warnings.
841 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } 841 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
842 842
843 @DomName('SVGClipPathElement.SVGClipPathElement') 843 @DomName('SVGClipPathElement.SVGClipPathElement')
844 @DocsEditable() 844 @DocsEditable()
845 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 845 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
846 /** 846 /**
847 * Constructor instantiated by the DOM when a custom element has been created. 847 * Constructor instantiated by the DOM when a custom element has been created.
848 * 848 *
849 * This can only be called by subclasses from their created constructor. 849 * This can only be called by subclasses from their created constructor.
850 */ 850 */
851 ClipPathElement.created() : super.created(); 851 ClipPathElement.created() : super.created();
852 852
853 @DomName('SVGClipPathElement.clipPathUnits') 853 @DomName('SVGClipPathElement.clipPathUnits')
854 @DocsEditable() 854 @DocsEditable()
855 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.clipPa thUnits_Getter(this); 855 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.instan ce.clipPathUnits_Getter_(this);
856 856
857 } 857 }
858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 858 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
859 // for details. All rights reserved. Use of this source code is governed by a 859 // for details. All rights reserved. Use of this source code is governed by a
860 // BSD-style license that can be found in the LICENSE file. 860 // BSD-style license that can be found in the LICENSE file.
861 861
862 // WARNING: Do not edit - generated code. 862 // WARNING: Do not edit - generated code.
863 863
864 864
865 @DocsEditable() 865 @DocsEditable()
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 945 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
946 /** 946 /**
947 * Constructor instantiated by the DOM when a custom element has been created. 947 * Constructor instantiated by the DOM when a custom element has been created.
948 * 948 *
949 * This can only be called by subclasses from their created constructor. 949 * This can only be called by subclasses from their created constructor.
950 */ 950 */
951 EllipseElement.created() : super.created(); 951 EllipseElement.created() : super.created();
952 952
953 @DomName('SVGEllipseElement.cx') 953 @DomName('SVGEllipseElement.cx')
954 @DocsEditable() 954 @DocsEditable()
955 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.cx_Getter(this); 955 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.instance.cx_Getter_(thi s);
956 956
957 @DomName('SVGEllipseElement.cy') 957 @DomName('SVGEllipseElement.cy')
958 @DocsEditable() 958 @DocsEditable()
959 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.cy_Getter(this); 959 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.instance.cy_Getter_(thi s);
960 960
961 @DomName('SVGEllipseElement.rx') 961 @DomName('SVGEllipseElement.rx')
962 @DocsEditable() 962 @DocsEditable()
963 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.rx_Getter(this); 963 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.instance.rx_Getter_(thi s);
964 964
965 @DomName('SVGEllipseElement.ry') 965 @DomName('SVGEllipseElement.ry')
966 @DocsEditable() 966 @DocsEditable()
967 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.ry_Getter(this); 967 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.instance.ry_Getter_(thi s);
968 968
969 } 969 }
970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
971 // 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
972 // BSD-style license that can be found in the LICENSE file. 972 // BSD-style license that can be found in the LICENSE file.
973 973
974 // WARNING: Do not edit - generated code. 974 // WARNING: Do not edit - generated code.
975 975
976 976
977 @DocsEditable() 977 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN') 1017 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
1018 @DocsEditable() 1018 @DocsEditable()
1019 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1019 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1020 1020
1021 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN') 1021 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
1022 @DocsEditable() 1022 @DocsEditable()
1023 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1023 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1024 1024
1025 @DomName('SVGFEBlendElement.in1') 1025 @DomName('SVGFEBlendElement.in1')
1026 @DocsEditable() 1026 @DocsEditable()
1027 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.in1_Getter(this); 1027 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.instance.in1_Getter_(t his);
1028 1028
1029 @DomName('SVGFEBlendElement.in2') 1029 @DomName('SVGFEBlendElement.in2')
1030 @DocsEditable() 1030 @DocsEditable()
1031 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.in2_Getter(this); 1031 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.instance.in2_Getter_(t his);
1032 1032
1033 @DomName('SVGFEBlendElement.mode') 1033 @DomName('SVGFEBlendElement.mode')
1034 @DocsEditable() 1034 @DocsEditable()
1035 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.mode_Getter(this ); 1035 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.instance.mode_Ge tter_(this);
1036 1036
1037 @DomName('SVGFEBlendElement.height') 1037 @DomName('SVGFEBlendElement.height')
1038 @DocsEditable() 1038 @DocsEditable()
1039 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.height_Getter(this) ; 1039 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.instance.height_Get ter_(this);
1040 1040
1041 @DomName('SVGFEBlendElement.result') 1041 @DomName('SVGFEBlendElement.result')
1042 @DocsEditable() 1042 @DocsEditable()
1043 AnimatedString get result => _blink.BlinkSVGFEBlendElement.result_Getter(this) ; 1043 AnimatedString get result => _blink.BlinkSVGFEBlendElement.instance.result_Get ter_(this);
1044 1044
1045 @DomName('SVGFEBlendElement.width') 1045 @DomName('SVGFEBlendElement.width')
1046 @DocsEditable() 1046 @DocsEditable()
1047 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.width_Getter(this); 1047 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.instance.width_Gette r_(this);
1048 1048
1049 @DomName('SVGFEBlendElement.x') 1049 @DomName('SVGFEBlendElement.x')
1050 @DocsEditable() 1050 @DocsEditable()
1051 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.x_Getter(this); 1051 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.instance.x_Getter_(this) ;
1052 1052
1053 @DomName('SVGFEBlendElement.y') 1053 @DomName('SVGFEBlendElement.y')
1054 @DocsEditable() 1054 @DocsEditable()
1055 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.y_Getter(this); 1055 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.instance.y_Getter_(this) ;
1056 1056
1057 } 1057 }
1058 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1058 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1059 // for details. All rights reserved. Use of this source code is governed by a 1059 // for details. All rights reserved. Use of this source code is governed by a
1060 // BSD-style license that can be found in the LICENSE file. 1060 // BSD-style license that can be found in the LICENSE file.
1061 1061
1062 // WARNING: Do not edit - generated code. 1062 // WARNING: Do not edit - generated code.
1063 1063
1064 1064
1065 @DocsEditable() 1065 @DocsEditable()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE') 1101 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
1102 @DocsEditable() 1102 @DocsEditable()
1103 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1103 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1104 1104
1105 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN') 1105 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
1106 @DocsEditable() 1106 @DocsEditable()
1107 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1107 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1108 1108
1109 @DomName('SVGFEColorMatrixElement.in1') 1109 @DomName('SVGFEColorMatrixElement.in1')
1110 @DocsEditable() 1110 @DocsEditable()
1111 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.in1_Getter(this) ; 1111 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.instance.in1_Get ter_(this);
1112 1112
1113 @DomName('SVGFEColorMatrixElement.type') 1113 @DomName('SVGFEColorMatrixElement.type')
1114 @DocsEditable() 1114 @DocsEditable()
1115 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.type_Gette r(this); 1115 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.instance.t ype_Getter_(this);
1116 1116
1117 @DomName('SVGFEColorMatrixElement.values') 1117 @DomName('SVGFEColorMatrixElement.values')
1118 @DocsEditable() 1118 @DocsEditable()
1119 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.values_Ge tter(this); 1119 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.instance. values_Getter_(this);
1120 1120
1121 @DomName('SVGFEColorMatrixElement.height') 1121 @DomName('SVGFEColorMatrixElement.height')
1122 @DocsEditable() 1122 @DocsEditable()
1123 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.height_Getter (this); 1123 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.instance.heig ht_Getter_(this);
1124 1124
1125 @DomName('SVGFEColorMatrixElement.result') 1125 @DomName('SVGFEColorMatrixElement.result')
1126 @DocsEditable() 1126 @DocsEditable()
1127 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.result_Getter (this); 1127 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.instance.resu lt_Getter_(this);
1128 1128
1129 @DomName('SVGFEColorMatrixElement.width') 1129 @DomName('SVGFEColorMatrixElement.width')
1130 @DocsEditable() 1130 @DocsEditable()
1131 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.width_Getter(t his); 1131 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.instance.width _Getter_(this);
1132 1132
1133 @DomName('SVGFEColorMatrixElement.x') 1133 @DomName('SVGFEColorMatrixElement.x')
1134 @DocsEditable() 1134 @DocsEditable()
1135 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.x_Getter(this); 1135 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.instance.x_Getter_ (this);
1136 1136
1137 @DomName('SVGFEColorMatrixElement.y') 1137 @DomName('SVGFEColorMatrixElement.y')
1138 @DocsEditable() 1138 @DocsEditable()
1139 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.y_Getter(this); 1139 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.instance.y_Getter_ (this);
1140 1140
1141 } 1141 }
1142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1143 // for details. All rights reserved. Use of this source code is governed by a 1143 // for details. All rights reserved. Use of this source code is governed by a
1144 // BSD-style license that can be found in the LICENSE file. 1144 // BSD-style license that can be found in the LICENSE file.
1145 1145
1146 // WARNING: Do not edit - generated code. 1146 // WARNING: Do not edit - generated code.
1147 1147
1148 1148
1149 @DocsEditable() 1149 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1165 * 1165 *
1166 * This can only be called by subclasses from their created constructor. 1166 * This can only be called by subclasses from their created constructor.
1167 */ 1167 */
1168 FEComponentTransferElement.created() : super.created(); 1168 FEComponentTransferElement.created() : super.created();
1169 1169
1170 /// Checks if this type is supported on the current platform. 1170 /// Checks if this type is supported on the current platform.
1171 static bool get supported => true; 1171 static bool get supported => true;
1172 1172
1173 @DomName('SVGFEComponentTransferElement.in1') 1173 @DomName('SVGFEComponentTransferElement.in1')
1174 @DocsEditable() 1174 @DocsEditable()
1175 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.in1_Getter (this); 1175 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.instance.i n1_Getter_(this);
1176 1176
1177 @DomName('SVGFEComponentTransferElement.height') 1177 @DomName('SVGFEComponentTransferElement.height')
1178 @DocsEditable() 1178 @DocsEditable()
1179 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.height_ Getter(this); 1179 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.instanc e.height_Getter_(this);
1180 1180
1181 @DomName('SVGFEComponentTransferElement.result') 1181 @DomName('SVGFEComponentTransferElement.result')
1182 @DocsEditable() 1182 @DocsEditable()
1183 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.result_ Getter(this); 1183 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.instanc e.result_Getter_(this);
1184 1184
1185 @DomName('SVGFEComponentTransferElement.width') 1185 @DomName('SVGFEComponentTransferElement.width')
1186 @DocsEditable() 1186 @DocsEditable()
1187 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.width_Ge tter(this); 1187 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.instance .width_Getter_(this);
1188 1188
1189 @DomName('SVGFEComponentTransferElement.x') 1189 @DomName('SVGFEComponentTransferElement.x')
1190 @DocsEditable() 1190 @DocsEditable()
1191 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.x_Getter(thi s); 1191 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.instance.x_G etter_(this);
1192 1192
1193 @DomName('SVGFEComponentTransferElement.y') 1193 @DomName('SVGFEComponentTransferElement.y')
1194 @DocsEditable() 1194 @DocsEditable()
1195 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.y_Getter(thi s); 1195 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.instance.y_G etter_(this);
1196 1196
1197 } 1197 }
1198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1199 // for details. All rights reserved. Use of this source code is governed by a 1199 // for details. All rights reserved. Use of this source code is governed by a
1200 // BSD-style license that can be found in the LICENSE file. 1200 // BSD-style license that can be found in the LICENSE file.
1201 1201
1202 // WARNING: Do not edit - generated code. 1202 // WARNING: Do not edit - generated code.
1203 1203
1204 1204
1205 @DocsEditable() 1205 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN') 1238 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
1239 @DocsEditable() 1239 @DocsEditable()
1240 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1240 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1241 1241
1242 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR') 1242 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
1243 @DocsEditable() 1243 @DocsEditable()
1244 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1244 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1245 1245
1246 @DomName('SVGFECompositeElement.in1') 1246 @DomName('SVGFECompositeElement.in1')
1247 @DocsEditable() 1247 @DocsEditable()
1248 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.in1_Getter(this); 1248 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.instance.in1_Gette r_(this);
1249 1249
1250 @DomName('SVGFECompositeElement.in2') 1250 @DomName('SVGFECompositeElement.in2')
1251 @DocsEditable() 1251 @DocsEditable()
1252 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.in2_Getter(this); 1252 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.instance.in2_Gette r_(this);
1253 1253
1254 @DomName('SVGFECompositeElement.k1') 1254 @DomName('SVGFECompositeElement.k1')
1255 @DocsEditable() 1255 @DocsEditable()
1256 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.k1_Getter(this); 1256 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.instance.k1_Getter_ (this);
1257 1257
1258 @DomName('SVGFECompositeElement.k2') 1258 @DomName('SVGFECompositeElement.k2')
1259 @DocsEditable() 1259 @DocsEditable()
1260 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.k2_Getter(this); 1260 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.instance.k2_Getter_ (this);
1261 1261
1262 @DomName('SVGFECompositeElement.k3') 1262 @DomName('SVGFECompositeElement.k3')
1263 @DocsEditable() 1263 @DocsEditable()
1264 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.k3_Getter(this); 1264 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.instance.k3_Getter_ (this);
1265 1265
1266 @DomName('SVGFECompositeElement.k4') 1266 @DomName('SVGFECompositeElement.k4')
1267 @DocsEditable() 1267 @DocsEditable()
1268 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.k4_Getter(this); 1268 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.instance.k4_Getter_ (this);
1269 1269
1270 @DomName('SVGFECompositeElement.operator') 1270 @DomName('SVGFECompositeElement.operator')
1271 @DocsEditable() 1271 @DocsEditable()
1272 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.operator _Getter(this); 1272 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.instance .operator_Getter_(this);
1273 1273
1274 @DomName('SVGFECompositeElement.height') 1274 @DomName('SVGFECompositeElement.height')
1275 @DocsEditable() 1275 @DocsEditable()
1276 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.height_Getter(t his); 1276 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.instance.height _Getter_(this);
1277 1277
1278 @DomName('SVGFECompositeElement.result') 1278 @DomName('SVGFECompositeElement.result')
1279 @DocsEditable() 1279 @DocsEditable()
1280 AnimatedString get result => _blink.BlinkSVGFECompositeElement.result_Getter(t his); 1280 AnimatedString get result => _blink.BlinkSVGFECompositeElement.instance.result _Getter_(this);
1281 1281
1282 @DomName('SVGFECompositeElement.width') 1282 @DomName('SVGFECompositeElement.width')
1283 @DocsEditable() 1283 @DocsEditable()
1284 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.width_Getter(thi s); 1284 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.instance.width_G etter_(this);
1285 1285
1286 @DomName('SVGFECompositeElement.x') 1286 @DomName('SVGFECompositeElement.x')
1287 @DocsEditable() 1287 @DocsEditable()
1288 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.x_Getter(this); 1288 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.instance.x_Getter_(t his);
1289 1289
1290 @DomName('SVGFECompositeElement.y') 1290 @DomName('SVGFECompositeElement.y')
1291 @DocsEditable() 1291 @DocsEditable()
1292 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.y_Getter(this); 1292 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.instance.y_Getter_(t his);
1293 1293
1294 } 1294 }
1295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1296 // for details. All rights reserved. Use of this source code is governed by a 1296 // for details. All rights reserved. Use of this source code is governed by a
1297 // BSD-style license that can be found in the LICENSE file. 1297 // BSD-style license that can be found in the LICENSE file.
1298 1298
1299 // WARNING: Do not edit - generated code. 1299 // WARNING: Do not edit - generated code.
1300 1300
1301 1301
1302 @DocsEditable() 1302 @DocsEditable()
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN') 1334 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
1335 @DocsEditable() 1335 @DocsEditable()
1336 static const int SVG_EDGEMODE_UNKNOWN = 0; 1336 static const int SVG_EDGEMODE_UNKNOWN = 0;
1337 1337
1338 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP') 1338 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
1339 @DocsEditable() 1339 @DocsEditable()
1340 static const int SVG_EDGEMODE_WRAP = 2; 1340 static const int SVG_EDGEMODE_WRAP = 2;
1341 1341
1342 @DomName('SVGFEConvolveMatrixElement.bias') 1342 @DomName('SVGFEConvolveMatrixElement.bias')
1343 @DocsEditable() 1343 @DocsEditable()
1344 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.bias_Getter( this); 1344 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.instance.bia s_Getter_(this);
1345 1345
1346 @DomName('SVGFEConvolveMatrixElement.divisor') 1346 @DomName('SVGFEConvolveMatrixElement.divisor')
1347 @DocsEditable() 1347 @DocsEditable()
1348 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.divisor_G etter(this); 1348 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.instance. divisor_Getter_(this);
1349 1349
1350 @DomName('SVGFEConvolveMatrixElement.edgeMode') 1350 @DomName('SVGFEConvolveMatrixElement.edgeMode')
1351 @DocsEditable() 1351 @DocsEditable()
1352 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.edg eMode_Getter(this); 1352 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.ins tance.edgeMode_Getter_(this);
1353 1353
1354 @DomName('SVGFEConvolveMatrixElement.in1') 1354 @DomName('SVGFEConvolveMatrixElement.in1')
1355 @DocsEditable() 1355 @DocsEditable()
1356 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.in1_Getter(th is); 1356 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.instance.in1_ Getter_(this);
1357 1357
1358 @DomName('SVGFEConvolveMatrixElement.kernelMatrix') 1358 @DomName('SVGFEConvolveMatrixElement.kernelMatrix')
1359 @DocsEditable() 1359 @DocsEditable()
1360 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement. kernelMatrix_Getter(this); 1360 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement. instance.kernelMatrix_Getter_(this);
1361 1361
1362 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX') 1362 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
1363 @DocsEditable() 1363 @DocsEditable()
1364 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement .kernelUnitLengthX_Getter(this); 1364 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement .instance.kernelUnitLengthX_Getter_(this);
1365 1365
1366 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY') 1366 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
1367 @DocsEditable() 1367 @DocsEditable()
1368 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement .kernelUnitLengthY_Getter(this); 1368 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement .instance.kernelUnitLengthY_Getter_(this);
1369 1369
1370 @DomName('SVGFEConvolveMatrixElement.orderX') 1370 @DomName('SVGFEConvolveMatrixElement.orderX')
1371 @DocsEditable() 1371 @DocsEditable()
1372 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.orderX_Ge tter(this); 1372 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.instance. orderX_Getter_(this);
1373 1373
1374 @DomName('SVGFEConvolveMatrixElement.orderY') 1374 @DomName('SVGFEConvolveMatrixElement.orderY')
1375 @DocsEditable() 1375 @DocsEditable()
1376 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.orderY_Ge tter(this); 1376 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.instance. orderY_Getter_(this);
1377 1377
1378 @DomName('SVGFEConvolveMatrixElement.preserveAlpha') 1378 @DomName('SVGFEConvolveMatrixElement.preserveAlpha')
1379 @DocsEditable() 1379 @DocsEditable()
1380 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.pr eserveAlpha_Getter(this); 1380 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.in stance.preserveAlpha_Getter_(this);
1381 1381
1382 @DomName('SVGFEConvolveMatrixElement.targetX') 1382 @DomName('SVGFEConvolveMatrixElement.targetX')
1383 @DocsEditable() 1383 @DocsEditable()
1384 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.targetX_ Getter(this); 1384 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.instance .targetX_Getter_(this);
1385 1385
1386 @DomName('SVGFEConvolveMatrixElement.targetY') 1386 @DomName('SVGFEConvolveMatrixElement.targetY')
1387 @DocsEditable() 1387 @DocsEditable()
1388 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.targetY_ Getter(this); 1388 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.instance .targetY_Getter_(this);
1389 1389
1390 @DomName('SVGFEConvolveMatrixElement.height') 1390 @DomName('SVGFEConvolveMatrixElement.height')
1391 @DocsEditable() 1391 @DocsEditable()
1392 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.height_Get ter(this); 1392 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.instance.h eight_Getter_(this);
1393 1393
1394 @DomName('SVGFEConvolveMatrixElement.result') 1394 @DomName('SVGFEConvolveMatrixElement.result')
1395 @DocsEditable() 1395 @DocsEditable()
1396 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.result_Get ter(this); 1396 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.instance.r esult_Getter_(this);
1397 1397
1398 @DomName('SVGFEConvolveMatrixElement.width') 1398 @DomName('SVGFEConvolveMatrixElement.width')
1399 @DocsEditable() 1399 @DocsEditable()
1400 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.width_Gette r(this); 1400 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.instance.wi dth_Getter_(this);
1401 1401
1402 @DomName('SVGFEConvolveMatrixElement.x') 1402 @DomName('SVGFEConvolveMatrixElement.x')
1403 @DocsEditable() 1403 @DocsEditable()
1404 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.x_Getter(this); 1404 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.instance.x_Gett er_(this);
1405 1405
1406 @DomName('SVGFEConvolveMatrixElement.y') 1406 @DomName('SVGFEConvolveMatrixElement.y')
1407 @DocsEditable() 1407 @DocsEditable()
1408 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.y_Getter(this); 1408 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.instance.y_Gett er_(this);
1409 1409
1410 } 1410 }
1411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1412 // for details. All rights reserved. Use of this source code is governed by a 1412 // for details. All rights reserved. Use of this source code is governed by a
1413 // BSD-style license that can be found in the LICENSE file. 1413 // BSD-style license that can be found in the LICENSE file.
1414 1414
1415 // WARNING: Do not edit - generated code. 1415 // WARNING: Do not edit - generated code.
1416 1416
1417 1417
1418 @DocsEditable() 1418 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1434 * 1434 *
1435 * This can only be called by subclasses from their created constructor. 1435 * This can only be called by subclasses from their created constructor.
1436 */ 1436 */
1437 FEDiffuseLightingElement.created() : super.created(); 1437 FEDiffuseLightingElement.created() : super.created();
1438 1438
1439 /// Checks if this type is supported on the current platform. 1439 /// Checks if this type is supported on the current platform.
1440 static bool get supported => true; 1440 static bool get supported => true;
1441 1441
1442 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 1442 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
1443 @DocsEditable() 1443 @DocsEditable()
1444 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement. diffuseConstant_Getter(this); 1444 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement. instance.diffuseConstant_Getter_(this);
1445 1445
1446 @DomName('SVGFEDiffuseLightingElement.in1') 1446 @DomName('SVGFEDiffuseLightingElement.in1')
1447 @DocsEditable() 1447 @DocsEditable()
1448 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.in1_Getter(t his); 1448 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.instance.in1 _Getter_(this);
1449 1449
1450 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX') 1450 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
1451 @DocsEditable() 1451 @DocsEditable()
1452 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen t.kernelUnitLengthX_Getter(this); 1452 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen t.instance.kernelUnitLengthX_Getter_(this);
1453 1453
1454 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY') 1454 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
1455 @DocsEditable() 1455 @DocsEditable()
1456 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen t.kernelUnitLengthY_Getter(this); 1456 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen t.instance.kernelUnitLengthY_Getter_(this);
1457 1457
1458 @DomName('SVGFEDiffuseLightingElement.surfaceScale') 1458 @DomName('SVGFEDiffuseLightingElement.surfaceScale')
1459 @DocsEditable() 1459 @DocsEditable()
1460 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.sur faceScale_Getter(this); 1460 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.ins tance.surfaceScale_Getter_(this);
1461 1461
1462 @DomName('SVGFEDiffuseLightingElement.height') 1462 @DomName('SVGFEDiffuseLightingElement.height')
1463 @DocsEditable() 1463 @DocsEditable()
1464 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.height_Ge tter(this); 1464 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.instance. height_Getter_(this);
1465 1465
1466 @DomName('SVGFEDiffuseLightingElement.result') 1466 @DomName('SVGFEDiffuseLightingElement.result')
1467 @DocsEditable() 1467 @DocsEditable()
1468 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.result_Ge tter(this); 1468 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.instance. result_Getter_(this);
1469 1469
1470 @DomName('SVGFEDiffuseLightingElement.width') 1470 @DomName('SVGFEDiffuseLightingElement.width')
1471 @DocsEditable() 1471 @DocsEditable()
1472 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.width_Gett er(this); 1472 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.instance.w idth_Getter_(this);
1473 1473
1474 @DomName('SVGFEDiffuseLightingElement.x') 1474 @DomName('SVGFEDiffuseLightingElement.x')
1475 @DocsEditable() 1475 @DocsEditable()
1476 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.x_Getter(this) ; 1476 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.instance.x_Get ter_(this);
1477 1477
1478 @DomName('SVGFEDiffuseLightingElement.y') 1478 @DomName('SVGFEDiffuseLightingElement.y')
1479 @DocsEditable() 1479 @DocsEditable()
1480 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.y_Getter(this) ; 1480 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.instance.y_Get ter_(this);
1481 1481
1482 } 1482 }
1483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1484 // for details. All rights reserved. Use of this source code is governed by a 1484 // for details. All rights reserved. Use of this source code is governed by a
1485 // BSD-style license that can be found in the LICENSE file. 1485 // BSD-style license that can be found in the LICENSE file.
1486 1486
1487 // WARNING: Do not edit - generated code. 1487 // WARNING: Do not edit - generated code.
1488 1488
1489 1489
1490 @DocsEditable() 1490 @DocsEditable()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R') 1526 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
1527 @DocsEditable() 1527 @DocsEditable()
1528 static const int SVG_CHANNEL_R = 1; 1528 static const int SVG_CHANNEL_R = 1;
1529 1529
1530 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN') 1530 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
1531 @DocsEditable() 1531 @DocsEditable()
1532 static const int SVG_CHANNEL_UNKNOWN = 0; 1532 static const int SVG_CHANNEL_UNKNOWN = 0;
1533 1533
1534 @DomName('SVGFEDisplacementMapElement.in1') 1534 @DomName('SVGFEDisplacementMapElement.in1')
1535 @DocsEditable() 1535 @DocsEditable()
1536 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.in1_Getter(t his); 1536 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.instance.in1 _Getter_(this);
1537 1537
1538 @DomName('SVGFEDisplacementMapElement.in2') 1538 @DomName('SVGFEDisplacementMapElement.in2')
1539 @DocsEditable() 1539 @DocsEditable()
1540 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.in2_Getter(t his); 1540 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.instance.in2 _Getter_(this);
1541 1541
1542 @DomName('SVGFEDisplacementMapElement.scale') 1542 @DomName('SVGFEDisplacementMapElement.scale')
1543 @DocsEditable() 1543 @DocsEditable()
1544 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.scale_Gett er(this); 1544 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.instance.s cale_Getter_(this);
1545 1545
1546 @DomName('SVGFEDisplacementMapElement.xChannelSelector') 1546 @DomName('SVGFEDisplacementMapElement.xChannelSelector')
1547 @DocsEditable() 1547 @DocsEditable()
1548 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.xChannelSelector_Getter(this); 1548 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.instance.xChannelSelector_Getter_(this);
1549 1549
1550 @DomName('SVGFEDisplacementMapElement.yChannelSelector') 1550 @DomName('SVGFEDisplacementMapElement.yChannelSelector')
1551 @DocsEditable() 1551 @DocsEditable()
1552 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.yChannelSelector_Getter(this); 1552 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.instance.yChannelSelector_Getter_(this);
1553 1553
1554 @DomName('SVGFEDisplacementMapElement.height') 1554 @DomName('SVGFEDisplacementMapElement.height')
1555 @DocsEditable() 1555 @DocsEditable()
1556 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.height_Ge tter(this); 1556 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.instance. height_Getter_(this);
1557 1557
1558 @DomName('SVGFEDisplacementMapElement.result') 1558 @DomName('SVGFEDisplacementMapElement.result')
1559 @DocsEditable() 1559 @DocsEditable()
1560 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.result_Ge tter(this); 1560 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.instance. result_Getter_(this);
1561 1561
1562 @DomName('SVGFEDisplacementMapElement.width') 1562 @DomName('SVGFEDisplacementMapElement.width')
1563 @DocsEditable() 1563 @DocsEditable()
1564 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.width_Gett er(this); 1564 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.instance.w idth_Getter_(this);
1565 1565
1566 @DomName('SVGFEDisplacementMapElement.x') 1566 @DomName('SVGFEDisplacementMapElement.x')
1567 @DocsEditable() 1567 @DocsEditable()
1568 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.x_Getter(this) ; 1568 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.instance.x_Get ter_(this);
1569 1569
1570 @DomName('SVGFEDisplacementMapElement.y') 1570 @DomName('SVGFEDisplacementMapElement.y')
1571 @DocsEditable() 1571 @DocsEditable()
1572 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.y_Getter(this) ; 1572 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.instance.y_Get ter_(this);
1573 1573
1574 } 1574 }
1575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1576 // for details. All rights reserved. Use of this source code is governed by a 1576 // for details. All rights reserved. Use of this source code is governed by a
1577 // BSD-style license that can be found in the LICENSE file. 1577 // BSD-style license that can be found in the LICENSE file.
1578 1578
1579 // WARNING: Do not edit - generated code. 1579 // WARNING: Do not edit - generated code.
1580 1580
1581 1581
1582 @DocsEditable() 1582 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1598 * 1598 *
1599 * This can only be called by subclasses from their created constructor. 1599 * This can only be called by subclasses from their created constructor.
1600 */ 1600 */
1601 FEDistantLightElement.created() : super.created(); 1601 FEDistantLightElement.created() : super.created();
1602 1602
1603 /// Checks if this type is supported on the current platform. 1603 /// Checks if this type is supported on the current platform.
1604 static bool get supported => true; 1604 static bool get supported => true;
1605 1605
1606 @DomName('SVGFEDistantLightElement.azimuth') 1606 @DomName('SVGFEDistantLightElement.azimuth')
1607 @DocsEditable() 1607 @DocsEditable()
1608 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.azimuth_Get ter(this); 1608 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.instance.az imuth_Getter_(this);
1609 1609
1610 @DomName('SVGFEDistantLightElement.elevation') 1610 @DomName('SVGFEDistantLightElement.elevation')
1611 @DocsEditable() 1611 @DocsEditable()
1612 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.elevation _Getter(this); 1612 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.instance. elevation_Getter_(this);
1613 1613
1614 } 1614 }
1615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1616 // for details. All rights reserved. Use of this source code is governed by a 1616 // for details. All rights reserved. Use of this source code is governed by a
1617 // BSD-style license that can be found in the LICENSE file. 1617 // BSD-style license that can be found in the LICENSE file.
1618 1618
1619 // WARNING: Do not edit - generated code. 1619 // WARNING: Do not edit - generated code.
1620 1620
1621 1621
1622 @DocsEditable() 1622 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1638 * 1638 *
1639 * This can only be called by subclasses from their created constructor. 1639 * This can only be called by subclasses from their created constructor.
1640 */ 1640 */
1641 FEFloodElement.created() : super.created(); 1641 FEFloodElement.created() : super.created();
1642 1642
1643 /// Checks if this type is supported on the current platform. 1643 /// Checks if this type is supported on the current platform.
1644 static bool get supported => true; 1644 static bool get supported => true;
1645 1645
1646 @DomName('SVGFEFloodElement.height') 1646 @DomName('SVGFEFloodElement.height')
1647 @DocsEditable() 1647 @DocsEditable()
1648 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.height_Getter(this) ; 1648 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.instance.height_Get ter_(this);
1649 1649
1650 @DomName('SVGFEFloodElement.result') 1650 @DomName('SVGFEFloodElement.result')
1651 @DocsEditable() 1651 @DocsEditable()
1652 AnimatedString get result => _blink.BlinkSVGFEFloodElement.result_Getter(this) ; 1652 AnimatedString get result => _blink.BlinkSVGFEFloodElement.instance.result_Get ter_(this);
1653 1653
1654 @DomName('SVGFEFloodElement.width') 1654 @DomName('SVGFEFloodElement.width')
1655 @DocsEditable() 1655 @DocsEditable()
1656 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.width_Getter(this); 1656 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.instance.width_Gette r_(this);
1657 1657
1658 @DomName('SVGFEFloodElement.x') 1658 @DomName('SVGFEFloodElement.x')
1659 @DocsEditable() 1659 @DocsEditable()
1660 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.x_Getter(this); 1660 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.instance.x_Getter_(this) ;
1661 1661
1662 @DomName('SVGFEFloodElement.y') 1662 @DomName('SVGFEFloodElement.y')
1663 @DocsEditable() 1663 @DocsEditable()
1664 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.y_Getter(this); 1664 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.instance.y_Getter_(this) ;
1665 1665
1666 } 1666 }
1667 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1667 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1668 // for details. All rights reserved. Use of this source code is governed by a 1668 // for details. All rights reserved. Use of this source code is governed by a
1669 // BSD-style license that can be found in the LICENSE file. 1669 // BSD-style license that can be found in the LICENSE file.
1670 1670
1671 // WARNING: Do not edit - generated code. 1671 // WARNING: Do not edit - generated code.
1672 1672
1673 1673
1674 @DocsEditable() 1674 @DocsEditable()
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 * 1818 *
1819 * This can only be called by subclasses from their created constructor. 1819 * This can only be called by subclasses from their created constructor.
1820 */ 1820 */
1821 FEGaussianBlurElement.created() : super.created(); 1821 FEGaussianBlurElement.created() : super.created();
1822 1822
1823 /// Checks if this type is supported on the current platform. 1823 /// Checks if this type is supported on the current platform.
1824 static bool get supported => true; 1824 static bool get supported => true;
1825 1825
1826 @DomName('SVGFEGaussianBlurElement.in1') 1826 @DomName('SVGFEGaussianBlurElement.in1')
1827 @DocsEditable() 1827 @DocsEditable()
1828 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.in1_Getter(this ); 1828 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.instance.in1_Ge tter_(this);
1829 1829
1830 @DomName('SVGFEGaussianBlurElement.stdDeviationX') 1830 @DomName('SVGFEGaussianBlurElement.stdDeviationX')
1831 @DocsEditable() 1831 @DocsEditable()
1832 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.stdDe viationX_Getter(this); 1832 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.insta nce.stdDeviationX_Getter_(this);
1833 1833
1834 @DomName('SVGFEGaussianBlurElement.stdDeviationY') 1834 @DomName('SVGFEGaussianBlurElement.stdDeviationY')
1835 @DocsEditable() 1835 @DocsEditable()
1836 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.stdDe viationY_Getter(this); 1836 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.insta nce.stdDeviationY_Getter_(this);
1837 1837
1838 @DomName('SVGFEGaussianBlurElement.setStdDeviation') 1838 @DomName('SVGFEGaussianBlurElement.setStdDeviation')
1839 @DocsEditable() 1839 @DocsEditable()
1840 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.setStdDeviation_Callback_2(this, stdDeviationX, stdDeviatio nY); 1840 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.instance.setStdDeviation_Callback_2_(this, stdDeviationX, s tdDeviationY);
1841 1841
1842 @DomName('SVGFEGaussianBlurElement.height') 1842 @DomName('SVGFEGaussianBlurElement.height')
1843 @DocsEditable() 1843 @DocsEditable()
1844 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.height_Gette r(this); 1844 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.instance.hei ght_Getter_(this);
1845 1845
1846 @DomName('SVGFEGaussianBlurElement.result') 1846 @DomName('SVGFEGaussianBlurElement.result')
1847 @DocsEditable() 1847 @DocsEditable()
1848 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.result_Gette r(this); 1848 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.instance.res ult_Getter_(this);
1849 1849
1850 @DomName('SVGFEGaussianBlurElement.width') 1850 @DomName('SVGFEGaussianBlurElement.width')
1851 @DocsEditable() 1851 @DocsEditable()
1852 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.width_Getter( this); 1852 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.instance.widt h_Getter_(this);
1853 1853
1854 @DomName('SVGFEGaussianBlurElement.x') 1854 @DomName('SVGFEGaussianBlurElement.x')
1855 @DocsEditable() 1855 @DocsEditable()
1856 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.x_Getter(this); 1856 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.instance.x_Getter _(this);
1857 1857
1858 @DomName('SVGFEGaussianBlurElement.y') 1858 @DomName('SVGFEGaussianBlurElement.y')
1859 @DocsEditable() 1859 @DocsEditable()
1860 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.y_Getter(this); 1860 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.instance.y_Getter _(this);
1861 1861
1862 } 1862 }
1863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1864 // for details. All rights reserved. Use of this source code is governed by a 1864 // for details. All rights reserved. Use of this source code is governed by a
1865 // BSD-style license that can be found in the LICENSE file. 1865 // BSD-style license that can be found in the LICENSE file.
1866 1866
1867 // WARNING: Do not edit - generated code. 1867 // WARNING: Do not edit - generated code.
1868 1868
1869 1869
1870 @DocsEditable() 1870 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1886 * 1886 *
1887 * This can only be called by subclasses from their created constructor. 1887 * This can only be called by subclasses from their created constructor.
1888 */ 1888 */
1889 FEImageElement.created() : super.created(); 1889 FEImageElement.created() : super.created();
1890 1890
1891 /// Checks if this type is supported on the current platform. 1891 /// Checks if this type is supported on the current platform.
1892 static bool get supported => true; 1892 static bool get supported => true;
1893 1893
1894 @DomName('SVGFEImageElement.preserveAspectRatio') 1894 @DomName('SVGFEImageElement.preserveAspectRatio')
1895 @DocsEditable() 1895 @DocsEditable()
1896 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE lement.preserveAspectRatio_Getter(this); 1896 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE lement.instance.preserveAspectRatio_Getter_(this);
1897 1897
1898 @DomName('SVGFEImageElement.height') 1898 @DomName('SVGFEImageElement.height')
1899 @DocsEditable() 1899 @DocsEditable()
1900 AnimatedLength get height => _blink.BlinkSVGFEImageElement.height_Getter(this) ; 1900 AnimatedLength get height => _blink.BlinkSVGFEImageElement.instance.height_Get ter_(this);
1901 1901
1902 @DomName('SVGFEImageElement.result') 1902 @DomName('SVGFEImageElement.result')
1903 @DocsEditable() 1903 @DocsEditable()
1904 AnimatedString get result => _blink.BlinkSVGFEImageElement.result_Getter(this) ; 1904 AnimatedString get result => _blink.BlinkSVGFEImageElement.instance.result_Get ter_(this);
1905 1905
1906 @DomName('SVGFEImageElement.width') 1906 @DomName('SVGFEImageElement.width')
1907 @DocsEditable() 1907 @DocsEditable()
1908 AnimatedLength get width => _blink.BlinkSVGFEImageElement.width_Getter(this); 1908 AnimatedLength get width => _blink.BlinkSVGFEImageElement.instance.width_Gette r_(this);
1909 1909
1910 @DomName('SVGFEImageElement.x') 1910 @DomName('SVGFEImageElement.x')
1911 @DocsEditable() 1911 @DocsEditable()
1912 AnimatedLength get x => _blink.BlinkSVGFEImageElement.x_Getter(this); 1912 AnimatedLength get x => _blink.BlinkSVGFEImageElement.instance.x_Getter_(this) ;
1913 1913
1914 @DomName('SVGFEImageElement.y') 1914 @DomName('SVGFEImageElement.y')
1915 @DocsEditable() 1915 @DocsEditable()
1916 AnimatedLength get y => _blink.BlinkSVGFEImageElement.y_Getter(this); 1916 AnimatedLength get y => _blink.BlinkSVGFEImageElement.instance.y_Getter_(this) ;
1917 1917
1918 @DomName('SVGFEImageElement.href') 1918 @DomName('SVGFEImageElement.href')
1919 @DocsEditable() 1919 @DocsEditable()
1920 AnimatedString get href => _blink.BlinkSVGFEImageElement.href_Getter(this); 1920 AnimatedString get href => _blink.BlinkSVGFEImageElement.instance.href_Getter_ (this);
1921 1921
1922 } 1922 }
1923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1924 // for details. All rights reserved. Use of this source code is governed by a 1924 // for details. All rights reserved. Use of this source code is governed by a
1925 // BSD-style license that can be found in the LICENSE file. 1925 // BSD-style license that can be found in the LICENSE file.
1926 1926
1927 // WARNING: Do not edit - generated code. 1927 // WARNING: Do not edit - generated code.
1928 1928
1929 1929
1930 @DocsEditable() 1930 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1946 * 1946 *
1947 * This can only be called by subclasses from their created constructor. 1947 * This can only be called by subclasses from their created constructor.
1948 */ 1948 */
1949 FEMergeElement.created() : super.created(); 1949 FEMergeElement.created() : super.created();
1950 1950
1951 /// Checks if this type is supported on the current platform. 1951 /// Checks if this type is supported on the current platform.
1952 static bool get supported => true; 1952 static bool get supported => true;
1953 1953
1954 @DomName('SVGFEMergeElement.height') 1954 @DomName('SVGFEMergeElement.height')
1955 @DocsEditable() 1955 @DocsEditable()
1956 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.height_Getter(this) ; 1956 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.instance.height_Get ter_(this);
1957 1957
1958 @DomName('SVGFEMergeElement.result') 1958 @DomName('SVGFEMergeElement.result')
1959 @DocsEditable() 1959 @DocsEditable()
1960 AnimatedString get result => _blink.BlinkSVGFEMergeElement.result_Getter(this) ; 1960 AnimatedString get result => _blink.BlinkSVGFEMergeElement.instance.result_Get ter_(this);
1961 1961
1962 @DomName('SVGFEMergeElement.width') 1962 @DomName('SVGFEMergeElement.width')
1963 @DocsEditable() 1963 @DocsEditable()
1964 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.width_Getter(this); 1964 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.instance.width_Gette r_(this);
1965 1965
1966 @DomName('SVGFEMergeElement.x') 1966 @DomName('SVGFEMergeElement.x')
1967 @DocsEditable() 1967 @DocsEditable()
1968 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.x_Getter(this); 1968 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.instance.x_Getter_(this) ;
1969 1969
1970 @DomName('SVGFEMergeElement.y') 1970 @DomName('SVGFEMergeElement.y')
1971 @DocsEditable() 1971 @DocsEditable()
1972 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.y_Getter(this); 1972 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.instance.y_Getter_(this) ;
1973 1973
1974 } 1974 }
1975 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1975 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1976 // for details. All rights reserved. Use of this source code is governed by a 1976 // for details. All rights reserved. Use of this source code is governed by a
1977 // BSD-style license that can be found in the LICENSE file. 1977 // BSD-style license that can be found in the LICENSE file.
1978 1978
1979 // WARNING: Do not edit - generated code. 1979 // WARNING: Do not edit - generated code.
1980 1980
1981 1981
1982 @DocsEditable() 1982 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1998 * 1998 *
1999 * This can only be called by subclasses from their created constructor. 1999 * This can only be called by subclasses from their created constructor.
2000 */ 2000 */
2001 FEMergeNodeElement.created() : super.created(); 2001 FEMergeNodeElement.created() : super.created();
2002 2002
2003 /// Checks if this type is supported on the current platform. 2003 /// Checks if this type is supported on the current platform.
2004 static bool get supported => true; 2004 static bool get supported => true;
2005 2005
2006 @DomName('SVGFEMergeNodeElement.in1') 2006 @DomName('SVGFEMergeNodeElement.in1')
2007 @DocsEditable() 2007 @DocsEditable()
2008 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.in1_Getter(this); 2008 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.instance.in1_Gette r_(this);
2009 2009
2010 } 2010 }
2011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2012 // for details. All rights reserved. Use of this source code is governed by a 2012 // for details. All rights reserved. Use of this source code is governed by a
2013 // BSD-style license that can be found in the LICENSE file. 2013 // BSD-style license that can be found in the LICENSE file.
2014 2014
2015 // WARNING: Do not edit - generated code. 2015 // WARNING: Do not edit - generated code.
2016 2016
2017 2017
2018 @DocsEditable() 2018 @DocsEditable()
(...skipping 20 matching lines...) Expand all
2039 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2039 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2040 @DocsEditable() 2040 @DocsEditable()
2041 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2041 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2042 2042
2043 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2043 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
2044 @DocsEditable() 2044 @DocsEditable()
2045 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2045 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2046 2046
2047 @DomName('SVGFEMorphologyElement.in1') 2047 @DomName('SVGFEMorphologyElement.in1')
2048 @DocsEditable() 2048 @DocsEditable()
2049 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.in1_Getter(this); 2049 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.instance.in1_Gett er_(this);
2050 2050
2051 @DomName('SVGFEMorphologyElement.operator') 2051 @DomName('SVGFEMorphologyElement.operator')
2052 @DocsEditable() 2052 @DocsEditable()
2053 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.operato r_Getter(this); 2053 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.instanc e.operator_Getter_(this);
2054 2054
2055 @DomName('SVGFEMorphologyElement.radiusX') 2055 @DomName('SVGFEMorphologyElement.radiusX')
2056 @DocsEditable() 2056 @DocsEditable()
2057 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.radiusX_Gette r(this); 2057 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.instance.radi usX_Getter_(this);
2058 2058
2059 @DomName('SVGFEMorphologyElement.radiusY') 2059 @DomName('SVGFEMorphologyElement.radiusY')
2060 @DocsEditable() 2060 @DocsEditable()
2061 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.radiusY_Gette r(this); 2061 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.instance.radi usY_Getter_(this);
2062 2062
2063 @DomName('SVGFEMorphologyElement.height') 2063 @DomName('SVGFEMorphologyElement.height')
2064 @DocsEditable() 2064 @DocsEditable()
2065 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.height_Getter( this); 2065 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.instance.heigh t_Getter_(this);
2066 2066
2067 @DomName('SVGFEMorphologyElement.result') 2067 @DomName('SVGFEMorphologyElement.result')
2068 @DocsEditable() 2068 @DocsEditable()
2069 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.result_Getter( this); 2069 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.instance.resul t_Getter_(this);
2070 2070
2071 @DomName('SVGFEMorphologyElement.width') 2071 @DomName('SVGFEMorphologyElement.width')
2072 @DocsEditable() 2072 @DocsEditable()
2073 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.width_Getter(th is); 2073 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.instance.width_ Getter_(this);
2074 2074
2075 @DomName('SVGFEMorphologyElement.x') 2075 @DomName('SVGFEMorphologyElement.x')
2076 @DocsEditable() 2076 @DocsEditable()
2077 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.x_Getter(this); 2077 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.instance.x_Getter_( this);
2078 2078
2079 @DomName('SVGFEMorphologyElement.y') 2079 @DomName('SVGFEMorphologyElement.y')
2080 @DocsEditable() 2080 @DocsEditable()
2081 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.y_Getter(this); 2081 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.instance.y_Getter_( this);
2082 2082
2083 } 2083 }
2084 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2084 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2085 // for details. All rights reserved. Use of this source code is governed by a 2085 // for details. All rights reserved. Use of this source code is governed by a
2086 // BSD-style license that can be found in the LICENSE file. 2086 // BSD-style license that can be found in the LICENSE file.
2087 2087
2088 // WARNING: Do not edit - generated code. 2088 // WARNING: Do not edit - generated code.
2089 2089
2090 2090
2091 @DocsEditable() 2091 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2107 * 2107 *
2108 * This can only be called by subclasses from their created constructor. 2108 * This can only be called by subclasses from their created constructor.
2109 */ 2109 */
2110 FEOffsetElement.created() : super.created(); 2110 FEOffsetElement.created() : super.created();
2111 2111
2112 /// Checks if this type is supported on the current platform. 2112 /// Checks if this type is supported on the current platform.
2113 static bool get supported => true; 2113 static bool get supported => true;
2114 2114
2115 @DomName('SVGFEOffsetElement.dx') 2115 @DomName('SVGFEOffsetElement.dx')
2116 @DocsEditable() 2116 @DocsEditable()
2117 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.dx_Getter(this); 2117 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.instance.dx_Getter_(th is);
2118 2118
2119 @DomName('SVGFEOffsetElement.dy') 2119 @DomName('SVGFEOffsetElement.dy')
2120 @DocsEditable() 2120 @DocsEditable()
2121 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.dy_Getter(this); 2121 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.instance.dy_Getter_(th is);
2122 2122
2123 @DomName('SVGFEOffsetElement.in1') 2123 @DomName('SVGFEOffsetElement.in1')
2124 @DocsEditable() 2124 @DocsEditable()
2125 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.in1_Getter(this); 2125 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.instance.in1_Getter_( this);
2126 2126
2127 @DomName('SVGFEOffsetElement.height') 2127 @DomName('SVGFEOffsetElement.height')
2128 @DocsEditable() 2128 @DocsEditable()
2129 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.height_Getter(this ); 2129 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.instance.height_Ge tter_(this);
2130 2130
2131 @DomName('SVGFEOffsetElement.result') 2131 @DomName('SVGFEOffsetElement.result')
2132 @DocsEditable() 2132 @DocsEditable()
2133 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.result_Getter(this ); 2133 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.instance.result_Ge tter_(this);
2134 2134
2135 @DomName('SVGFEOffsetElement.width') 2135 @DomName('SVGFEOffsetElement.width')
2136 @DocsEditable() 2136 @DocsEditable()
2137 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.width_Getter(this); 2137 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.instance.width_Gett er_(this);
2138 2138
2139 @DomName('SVGFEOffsetElement.x') 2139 @DomName('SVGFEOffsetElement.x')
2140 @DocsEditable() 2140 @DocsEditable()
2141 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.x_Getter(this); 2141 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.instance.x_Getter_(this );
2142 2142
2143 @DomName('SVGFEOffsetElement.y') 2143 @DomName('SVGFEOffsetElement.y')
2144 @DocsEditable() 2144 @DocsEditable()
2145 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.y_Getter(this); 2145 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.instance.y_Getter_(this );
2146 2146
2147 } 2147 }
2148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2149 // for details. All rights reserved. Use of this source code is governed by a 2149 // for details. All rights reserved. Use of this source code is governed by a
2150 // BSD-style license that can be found in the LICENSE file. 2150 // BSD-style license that can be found in the LICENSE file.
2151 2151
2152 // WARNING: Do not edit - generated code. 2152 // WARNING: Do not edit - generated code.
2153 2153
2154 2154
2155 @DocsEditable() 2155 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2171 * 2171 *
2172 * This can only be called by subclasses from their created constructor. 2172 * This can only be called by subclasses from their created constructor.
2173 */ 2173 */
2174 FEPointLightElement.created() : super.created(); 2174 FEPointLightElement.created() : super.created();
2175 2175
2176 /// Checks if this type is supported on the current platform. 2176 /// Checks if this type is supported on the current platform.
2177 static bool get supported => true; 2177 static bool get supported => true;
2178 2178
2179 @DomName('SVGFEPointLightElement.x') 2179 @DomName('SVGFEPointLightElement.x')
2180 @DocsEditable() 2180 @DocsEditable()
2181 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.x_Getter(this); 2181 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.instance.x_Getter_( this);
2182 2182
2183 @DomName('SVGFEPointLightElement.y') 2183 @DomName('SVGFEPointLightElement.y')
2184 @DocsEditable() 2184 @DocsEditable()
2185 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.y_Getter(this); 2185 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.instance.y_Getter_( this);
2186 2186
2187 @DomName('SVGFEPointLightElement.z') 2187 @DomName('SVGFEPointLightElement.z')
2188 @DocsEditable() 2188 @DocsEditable()
2189 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.z_Getter(this); 2189 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.instance.z_Getter_( this);
2190 2190
2191 } 2191 }
2192 // 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
2193 // 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
2194 // BSD-style license that can be found in the LICENSE file. 2194 // BSD-style license that can be found in the LICENSE file.
2195 2195
2196 // WARNING: Do not edit - generated code. 2196 // WARNING: Do not edit - generated code.
2197 2197
2198 2198
2199 @DocsEditable() 2199 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2215 * 2215 *
2216 * This can only be called by subclasses from their created constructor. 2216 * This can only be called by subclasses from their created constructor.
2217 */ 2217 */
2218 FESpecularLightingElement.created() : super.created(); 2218 FESpecularLightingElement.created() : super.created();
2219 2219
2220 /// Checks if this type is supported on the current platform. 2220 /// Checks if this type is supported on the current platform.
2221 static bool get supported => true; 2221 static bool get supported => true;
2222 2222
2223 @DomName('SVGFESpecularLightingElement.in1') 2223 @DomName('SVGFESpecularLightingElement.in1')
2224 @DocsEditable() 2224 @DocsEditable()
2225 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.in1_Getter( this); 2225 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.instance.in 1_Getter_(this);
2226 2226
2227 @DomName('SVGFESpecularLightingElement.specularConstant') 2227 @DomName('SVGFESpecularLightingElement.specularConstant')
2228 @DocsEditable() 2228 @DocsEditable()
2229 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen t.specularConstant_Getter(this); 2229 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen t.instance.specularConstant_Getter_(this);
2230 2230
2231 @DomName('SVGFESpecularLightingElement.specularExponent') 2231 @DomName('SVGFESpecularLightingElement.specularExponent')
2232 @DocsEditable() 2232 @DocsEditable()
2233 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen t.specularExponent_Getter(this); 2233 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen t.instance.specularExponent_Getter_(this);
2234 2234
2235 @DomName('SVGFESpecularLightingElement.surfaceScale') 2235 @DomName('SVGFESpecularLightingElement.surfaceScale')
2236 @DocsEditable() 2236 @DocsEditable()
2237 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.su rfaceScale_Getter(this); 2237 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.in stance.surfaceScale_Getter_(this);
2238 2238
2239 @DomName('SVGFESpecularLightingElement.height') 2239 @DomName('SVGFESpecularLightingElement.height')
2240 @DocsEditable() 2240 @DocsEditable()
2241 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.height_G etter(this); 2241 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.instance .height_Getter_(this);
2242 2242
2243 @DomName('SVGFESpecularLightingElement.result') 2243 @DomName('SVGFESpecularLightingElement.result')
2244 @DocsEditable() 2244 @DocsEditable()
2245 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.result_G etter(this); 2245 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.instance .result_Getter_(this);
2246 2246
2247 @DomName('SVGFESpecularLightingElement.width') 2247 @DomName('SVGFESpecularLightingElement.width')
2248 @DocsEditable() 2248 @DocsEditable()
2249 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.width_Get ter(this); 2249 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.instance. width_Getter_(this);
2250 2250
2251 @DomName('SVGFESpecularLightingElement.x') 2251 @DomName('SVGFESpecularLightingElement.x')
2252 @DocsEditable() 2252 @DocsEditable()
2253 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.x_Getter(this ); 2253 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.instance.x_Ge tter_(this);
2254 2254
2255 @DomName('SVGFESpecularLightingElement.y') 2255 @DomName('SVGFESpecularLightingElement.y')
2256 @DocsEditable() 2256 @DocsEditable()
2257 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.y_Getter(this ); 2257 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.instance.y_Ge tter_(this);
2258 2258
2259 } 2259 }
2260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2261 // for details. All rights reserved. Use of this source code is governed by a 2261 // for details. All rights reserved. Use of this source code is governed by a
2262 // BSD-style license that can be found in the LICENSE file. 2262 // BSD-style license that can be found in the LICENSE file.
2263 2263
2264 // WARNING: Do not edit - generated code. 2264 // WARNING: Do not edit - generated code.
2265 2265
2266 2266
2267 @DocsEditable() 2267 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2283 * 2283 *
2284 * This can only be called by subclasses from their created constructor. 2284 * This can only be called by subclasses from their created constructor.
2285 */ 2285 */
2286 FESpotLightElement.created() : super.created(); 2286 FESpotLightElement.created() : super.created();
2287 2287
2288 /// Checks if this type is supported on the current platform. 2288 /// Checks if this type is supported on the current platform.
2289 static bool get supported => true; 2289 static bool get supported => true;
2290 2290
2291 @DomName('SVGFESpotLightElement.limitingConeAngle') 2291 @DomName('SVGFESpotLightElement.limitingConeAngle')
2292 @DocsEditable() 2292 @DocsEditable()
2293 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.limi tingConeAngle_Getter(this); 2293 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.inst ance.limitingConeAngle_Getter_(this);
2294 2294
2295 @DomName('SVGFESpotLightElement.pointsAtX') 2295 @DomName('SVGFESpotLightElement.pointsAtX')
2296 @DocsEditable() 2296 @DocsEditable()
2297 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.pointsAtX_Ge tter(this); 2297 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtX_Getter_(this);
2298 2298
2299 @DomName('SVGFESpotLightElement.pointsAtY') 2299 @DomName('SVGFESpotLightElement.pointsAtY')
2300 @DocsEditable() 2300 @DocsEditable()
2301 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.pointsAtY_Ge tter(this); 2301 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtY_Getter_(this);
2302 2302
2303 @DomName('SVGFESpotLightElement.pointsAtZ') 2303 @DomName('SVGFESpotLightElement.pointsAtZ')
2304 @DocsEditable() 2304 @DocsEditable()
2305 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.pointsAtZ_Ge tter(this); 2305 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtZ_Getter_(this);
2306 2306
2307 @DomName('SVGFESpotLightElement.specularExponent') 2307 @DomName('SVGFESpotLightElement.specularExponent')
2308 @DocsEditable() 2308 @DocsEditable()
2309 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.specu larExponent_Getter(this); 2309 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.insta nce.specularExponent_Getter_(this);
2310 2310
2311 @DomName('SVGFESpotLightElement.x') 2311 @DomName('SVGFESpotLightElement.x')
2312 @DocsEditable() 2312 @DocsEditable()
2313 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.x_Getter(this); 2313 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.instance.x_Getter_(t his);
2314 2314
2315 @DomName('SVGFESpotLightElement.y') 2315 @DomName('SVGFESpotLightElement.y')
2316 @DocsEditable() 2316 @DocsEditable()
2317 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.y_Getter(this); 2317 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.instance.y_Getter_(t his);
2318 2318
2319 @DomName('SVGFESpotLightElement.z') 2319 @DomName('SVGFESpotLightElement.z')
2320 @DocsEditable() 2320 @DocsEditable()
2321 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.z_Getter(this); 2321 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.instance.z_Getter_(t his);
2322 2322
2323 } 2323 }
2324 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2324 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2325 // for details. All rights reserved. Use of this source code is governed by a 2325 // for details. All rights reserved. Use of this source code is governed by a
2326 // BSD-style license that can be found in the LICENSE file. 2326 // BSD-style license that can be found in the LICENSE file.
2327 2327
2328 // WARNING: Do not edit - generated code. 2328 // WARNING: Do not edit - generated code.
2329 2329
2330 2330
2331 @DocsEditable() 2331 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2347 * 2347 *
2348 * This can only be called by subclasses from their created constructor. 2348 * This can only be called by subclasses from their created constructor.
2349 */ 2349 */
2350 FETileElement.created() : super.created(); 2350 FETileElement.created() : super.created();
2351 2351
2352 /// Checks if this type is supported on the current platform. 2352 /// Checks if this type is supported on the current platform.
2353 static bool get supported => true; 2353 static bool get supported => true;
2354 2354
2355 @DomName('SVGFETileElement.in1') 2355 @DomName('SVGFETileElement.in1')
2356 @DocsEditable() 2356 @DocsEditable()
2357 AnimatedString get in1 => _blink.BlinkSVGFETileElement.in1_Getter(this); 2357 AnimatedString get in1 => _blink.BlinkSVGFETileElement.instance.in1_Getter_(th is);
2358 2358
2359 @DomName('SVGFETileElement.height') 2359 @DomName('SVGFETileElement.height')
2360 @DocsEditable() 2360 @DocsEditable()
2361 AnimatedLength get height => _blink.BlinkSVGFETileElement.height_Getter(this); 2361 AnimatedLength get height => _blink.BlinkSVGFETileElement.instance.height_Gett er_(this);
2362 2362
2363 @DomName('SVGFETileElement.result') 2363 @DomName('SVGFETileElement.result')
2364 @DocsEditable() 2364 @DocsEditable()
2365 AnimatedString get result => _blink.BlinkSVGFETileElement.result_Getter(this); 2365 AnimatedString get result => _blink.BlinkSVGFETileElement.instance.result_Gett er_(this);
2366 2366
2367 @DomName('SVGFETileElement.width') 2367 @DomName('SVGFETileElement.width')
2368 @DocsEditable() 2368 @DocsEditable()
2369 AnimatedLength get width => _blink.BlinkSVGFETileElement.width_Getter(this); 2369 AnimatedLength get width => _blink.BlinkSVGFETileElement.instance.width_Getter _(this);
2370 2370
2371 @DomName('SVGFETileElement.x') 2371 @DomName('SVGFETileElement.x')
2372 @DocsEditable() 2372 @DocsEditable()
2373 AnimatedLength get x => _blink.BlinkSVGFETileElement.x_Getter(this); 2373 AnimatedLength get x => _blink.BlinkSVGFETileElement.instance.x_Getter_(this);
2374 2374
2375 @DomName('SVGFETileElement.y') 2375 @DomName('SVGFETileElement.y')
2376 @DocsEditable() 2376 @DocsEditable()
2377 AnimatedLength get y => _blink.BlinkSVGFETileElement.y_Getter(this); 2377 AnimatedLength get y => _blink.BlinkSVGFETileElement.instance.y_Getter_(this);
2378 2378
2379 } 2379 }
2380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2381 // for details. All rights reserved. Use of this source code is governed by a 2381 // for details. All rights reserved. Use of this source code is governed by a
2382 // BSD-style license that can be found in the LICENSE file. 2382 // BSD-style license that can be found in the LICENSE file.
2383 2383
2384 // WARNING: Do not edit - generated code. 2384 // WARNING: Do not edit - generated code.
2385 2385
2386 2386
2387 @DocsEditable() 2387 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE') 2427 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
2428 @DocsEditable() 2428 @DocsEditable()
2429 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 2429 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
2430 2430
2431 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN') 2431 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
2432 @DocsEditable() 2432 @DocsEditable()
2433 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 2433 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
2434 2434
2435 @DomName('SVGFETurbulenceElement.baseFrequencyX') 2435 @DomName('SVGFETurbulenceElement.baseFrequencyX')
2436 @DocsEditable() 2436 @DocsEditable()
2437 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.baseFr equencyX_Getter(this); 2437 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.instan ce.baseFrequencyX_Getter_(this);
2438 2438
2439 @DomName('SVGFETurbulenceElement.baseFrequencyY') 2439 @DomName('SVGFETurbulenceElement.baseFrequencyY')
2440 @DocsEditable() 2440 @DocsEditable()
2441 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.baseFr equencyY_Getter(this); 2441 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.instan ce.baseFrequencyY_Getter_(this);
2442 2442
2443 @DomName('SVGFETurbulenceElement.numOctaves') 2443 @DomName('SVGFETurbulenceElement.numOctaves')
2444 @DocsEditable() 2444 @DocsEditable()
2445 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.numOctave s_Getter(this); 2445 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.instance. numOctaves_Getter_(this);
2446 2446
2447 @DomName('SVGFETurbulenceElement.seed') 2447 @DomName('SVGFETurbulenceElement.seed')
2448 @DocsEditable() 2448 @DocsEditable()
2449 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.seed_Getter(this ); 2449 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.instance.seed_Ge tter_(this);
2450 2450
2451 @DomName('SVGFETurbulenceElement.stitchTiles') 2451 @DomName('SVGFETurbulenceElement.stitchTiles')
2452 @DocsEditable() 2452 @DocsEditable()
2453 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.stit chTiles_Getter(this); 2453 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.inst ance.stitchTiles_Getter_(this);
2454 2454
2455 @DomName('SVGFETurbulenceElement.type') 2455 @DomName('SVGFETurbulenceElement.type')
2456 @DocsEditable() 2456 @DocsEditable()
2457 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.type_Getter (this); 2457 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.instance.ty pe_Getter_(this);
2458 2458
2459 @DomName('SVGFETurbulenceElement.height') 2459 @DomName('SVGFETurbulenceElement.height')
2460 @DocsEditable() 2460 @DocsEditable()
2461 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.height_Getter( this); 2461 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.instance.heigh t_Getter_(this);
2462 2462
2463 @DomName('SVGFETurbulenceElement.result') 2463 @DomName('SVGFETurbulenceElement.result')
2464 @DocsEditable() 2464 @DocsEditable()
2465 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.result_Getter( this); 2465 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.instance.resul t_Getter_(this);
2466 2466
2467 @DomName('SVGFETurbulenceElement.width') 2467 @DomName('SVGFETurbulenceElement.width')
2468 @DocsEditable() 2468 @DocsEditable()
2469 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.width_Getter(th is); 2469 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.instance.width_ Getter_(this);
2470 2470
2471 @DomName('SVGFETurbulenceElement.x') 2471 @DomName('SVGFETurbulenceElement.x')
2472 @DocsEditable() 2472 @DocsEditable()
2473 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.x_Getter(this); 2473 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.instance.x_Getter_( this);
2474 2474
2475 @DomName('SVGFETurbulenceElement.y') 2475 @DomName('SVGFETurbulenceElement.y')
2476 @DocsEditable() 2476 @DocsEditable()
2477 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.y_Getter(this); 2477 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.instance.y_Getter_( this);
2478 2478
2479 } 2479 }
2480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2481 // for details. All rights reserved. Use of this source code is governed by a 2481 // for details. All rights reserved. Use of this source code is governed by a
2482 // BSD-style license that can be found in the LICENSE file. 2482 // BSD-style license that can be found in the LICENSE file.
2483 2483
2484 // WARNING: Do not edit - generated code. 2484 // WARNING: Do not edit - generated code.
2485 2485
2486 2486
2487 @DocsEditable() 2487 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2503 * 2503 *
2504 * This can only be called by subclasses from their created constructor. 2504 * This can only be called by subclasses from their created constructor.
2505 */ 2505 */
2506 FilterElement.created() : super.created(); 2506 FilterElement.created() : super.created();
2507 2507
2508 /// Checks if this type is supported on the current platform. 2508 /// Checks if this type is supported on the current platform.
2509 static bool get supported => true; 2509 static bool get supported => true;
2510 2510
2511 @DomName('SVGFilterElement.filterResX') 2511 @DomName('SVGFilterElement.filterResX')
2512 @DocsEditable() 2512 @DocsEditable()
2513 AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.filterResX_Gett er(this); 2513 AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.instance.filter ResX_Getter_(this);
2514 2514
2515 @DomName('SVGFilterElement.filterResY') 2515 @DomName('SVGFilterElement.filterResY')
2516 @DocsEditable() 2516 @DocsEditable()
2517 AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.filterResY_Gett er(this); 2517 AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.instance.filter ResY_Getter_(this);
2518 2518
2519 @DomName('SVGFilterElement.filterUnits') 2519 @DomName('SVGFilterElement.filterUnits')
2520 @DocsEditable() 2520 @DocsEditable()
2521 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.filterUnit s_Getter(this); 2521 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.instance.f ilterUnits_Getter_(this);
2522 2522
2523 @DomName('SVGFilterElement.height') 2523 @DomName('SVGFilterElement.height')
2524 @DocsEditable() 2524 @DocsEditable()
2525 AnimatedLength get height => _blink.BlinkSVGFilterElement.height_Getter(this); 2525 AnimatedLength get height => _blink.BlinkSVGFilterElement.instance.height_Gett er_(this);
2526 2526
2527 @DomName('SVGFilterElement.primitiveUnits') 2527 @DomName('SVGFilterElement.primitiveUnits')
2528 @DocsEditable() 2528 @DocsEditable()
2529 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.primiti veUnits_Getter(this); 2529 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.instanc e.primitiveUnits_Getter_(this);
2530 2530
2531 @DomName('SVGFilterElement.width') 2531 @DomName('SVGFilterElement.width')
2532 @DocsEditable() 2532 @DocsEditable()
2533 AnimatedLength get width => _blink.BlinkSVGFilterElement.width_Getter(this); 2533 AnimatedLength get width => _blink.BlinkSVGFilterElement.instance.width_Getter _(this);
2534 2534
2535 @DomName('SVGFilterElement.x') 2535 @DomName('SVGFilterElement.x')
2536 @DocsEditable() 2536 @DocsEditable()
2537 AnimatedLength get x => _blink.BlinkSVGFilterElement.x_Getter(this); 2537 AnimatedLength get x => _blink.BlinkSVGFilterElement.instance.x_Getter_(this);
2538 2538
2539 @DomName('SVGFilterElement.y') 2539 @DomName('SVGFilterElement.y')
2540 @DocsEditable() 2540 @DocsEditable()
2541 AnimatedLength get y => _blink.BlinkSVGFilterElement.y_Getter(this); 2541 AnimatedLength get y => _blink.BlinkSVGFilterElement.instance.y_Getter_(this);
2542 2542
2543 @DomName('SVGFilterElement.setFilterRes') 2543 @DomName('SVGFilterElement.setFilterRes')
2544 @DocsEditable() 2544 @DocsEditable()
2545 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem ent.setFilterRes_Callback_2(this, filterResX, filterResY); 2545 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem ent.instance.setFilterRes_Callback_2_(this, filterResX, filterResY);
2546 2546
2547 @DomName('SVGFilterElement.href') 2547 @DomName('SVGFilterElement.href')
2548 @DocsEditable() 2548 @DocsEditable()
2549 AnimatedString get href => _blink.BlinkSVGFilterElement.href_Getter(this); 2549 AnimatedString get href => _blink.BlinkSVGFilterElement.instance.href_Getter_( this);
2550 2550
2551 } 2551 }
2552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2553 // for details. All rights reserved. Use of this source code is governed by a 2553 // for details. All rights reserved. Use of this source code is governed by a
2554 // BSD-style license that can be found in the LICENSE file. 2554 // BSD-style license that can be found in the LICENSE file.
2555 2555
2556 // WARNING: Do not edit - generated code. 2556 // WARNING: Do not edit - generated code.
2557 2557
2558 2558
2559 @DocsEditable() 2559 @DocsEditable()
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
2632 * 2632 *
2633 * This can only be called by subclasses from their created constructor. 2633 * This can only be called by subclasses from their created constructor.
2634 */ 2634 */
2635 ForeignObjectElement.created() : super.created(); 2635 ForeignObjectElement.created() : super.created();
2636 2636
2637 /// Checks if this type is supported on the current platform. 2637 /// Checks if this type is supported on the current platform.
2638 static bool get supported => true; 2638 static bool get supported => true;
2639 2639
2640 @DomName('SVGForeignObjectElement.height') 2640 @DomName('SVGForeignObjectElement.height')
2641 @DocsEditable() 2641 @DocsEditable()
2642 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.height_Getter (this); 2642 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.instance.heig ht_Getter_(this);
2643 2643
2644 @DomName('SVGForeignObjectElement.width') 2644 @DomName('SVGForeignObjectElement.width')
2645 @DocsEditable() 2645 @DocsEditable()
2646 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.width_Getter(t his); 2646 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.instance.width _Getter_(this);
2647 2647
2648 @DomName('SVGForeignObjectElement.x') 2648 @DomName('SVGForeignObjectElement.x')
2649 @DocsEditable() 2649 @DocsEditable()
2650 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.x_Getter(this); 2650 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.instance.x_Getter_ (this);
2651 2651
2652 @DomName('SVGForeignObjectElement.y') 2652 @DomName('SVGForeignObjectElement.y')
2653 @DocsEditable() 2653 @DocsEditable()
2654 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.y_Getter(this); 2654 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.instance.y_Getter_ (this);
2655 2655
2656 } 2656 }
2657 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2657 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2658 // for details. All rights reserved. Use of this source code is governed by a 2658 // for details. All rights reserved. Use of this source code is governed by a
2659 // BSD-style license that can be found in the LICENSE file. 2659 // BSD-style license that can be found in the LICENSE file.
2660 2660
2661 // WARNING: Do not edit - generated code. 2661 // WARNING: Do not edit - generated code.
2662 2662
2663 2663
2664 @DocsEditable() 2664 @DocsEditable()
(...skipping 30 matching lines...) Expand all
2695 /** 2695 /**
2696 * Constructor instantiated by the DOM when a custom element has been created. 2696 * Constructor instantiated by the DOM when a custom element has been created.
2697 * 2697 *
2698 * This can only be called by subclasses from their created constructor. 2698 * This can only be called by subclasses from their created constructor.
2699 */ 2699 */
2700 GeometryElement.created() : super.created(); 2700 GeometryElement.created() : super.created();
2701 2701
2702 @DomName('SVGGeometryElement.isPointInFill') 2702 @DomName('SVGGeometryElement.isPointInFill')
2703 @DocsEditable() 2703 @DocsEditable()
2704 @Experimental() // untriaged 2704 @Experimental() // untriaged
2705 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.isPointInFil l_Callback_1(this, point); 2705 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isP ointInFill_Callback_1_(this, point);
2706 2706
2707 @DomName('SVGGeometryElement.isPointInStroke') 2707 @DomName('SVGGeometryElement.isPointInStroke')
2708 @DocsEditable() 2708 @DocsEditable()
2709 @Experimental() // untriaged 2709 @Experimental() // untriaged
2710 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.isPointInS troke_Callback_1(this, point); 2710 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.i sPointInStroke_Callback_1_(this, point);
2711 2711
2712 } 2712 }
2713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2714 // for details. All rights reserved. Use of this source code is governed by a 2714 // for details. All rights reserved. Use of this source code is governed by a
2715 // BSD-style license that can be found in the LICENSE file. 2715 // BSD-style license that can be found in the LICENSE file.
2716 2716
2717 // WARNING: Do not edit - generated code. 2717 // WARNING: Do not edit - generated code.
2718 2718
2719 2719
2720 @DocsEditable() 2720 @DocsEditable()
2721 @DomName('SVGGraphicsElement') 2721 @DomName('SVGGraphicsElement')
2722 @Experimental() // untriaged 2722 @Experimental() // untriaged
2723 class GraphicsElement extends SvgElement implements Tests { 2723 class GraphicsElement extends SvgElement implements Tests {
2724 // To suppress missing implicit constructor warnings. 2724 // To suppress missing implicit constructor warnings.
2725 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 2725 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
2726 /** 2726 /**
2727 * Constructor instantiated by the DOM when a custom element has been created. 2727 * Constructor instantiated by the DOM when a custom element has been created.
2728 * 2728 *
2729 * This can only be called by subclasses from their created constructor. 2729 * This can only be called by subclasses from their created constructor.
2730 */ 2730 */
2731 GraphicsElement.created() : super.created(); 2731 GraphicsElement.created() : super.created();
2732 2732
2733 @DomName('SVGGraphicsElement.farthestViewportElement') 2733 @DomName('SVGGraphicsElement.farthestViewportElement')
2734 @DocsEditable() 2734 @DocsEditable()
2735 @Experimental() // untriaged 2735 @Experimental() // untriaged
2736 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.farth estViewportElement_Getter(this); 2736 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.insta nce.farthestViewportElement_Getter_(this);
2737 2737
2738 @DomName('SVGGraphicsElement.nearestViewportElement') 2738 @DomName('SVGGraphicsElement.nearestViewportElement')
2739 @DocsEditable() 2739 @DocsEditable()
2740 @Experimental() // untriaged 2740 @Experimental() // untriaged
2741 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.neares tViewportElement_Getter(this); 2741 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.instan ce.nearestViewportElement_Getter_(this);
2742 2742
2743 @DomName('SVGGraphicsElement.transform') 2743 @DomName('SVGGraphicsElement.transform')
2744 @DocsEditable() 2744 @DocsEditable()
2745 @Experimental() // untriaged 2745 @Experimental() // untriaged
2746 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.transfor m_Getter(this); 2746 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.instance .transform_Getter_(this);
2747 2747
2748 @DomName('SVGGraphicsElement.getBBox') 2748 @DomName('SVGGraphicsElement.getBBox')
2749 @DocsEditable() 2749 @DocsEditable()
2750 @Experimental() // untriaged 2750 @Experimental() // untriaged
2751 Rect getBBox() => _blink.BlinkSVGGraphicsElement.getBBox_Callback_0(this); 2751 Rect getBBox() => _blink.BlinkSVGGraphicsElement.instance.getBBox_Callback_0_( this);
2752 2752
2753 @DomName('SVGGraphicsElement.getCTM') 2753 @DomName('SVGGraphicsElement.getCTM')
2754 @DocsEditable() 2754 @DocsEditable()
2755 @Experimental() // untriaged 2755 @Experimental() // untriaged
2756 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.getCTM_Callback_0(this); 2756 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_( this);
2757 2757
2758 @DomName('SVGGraphicsElement.getScreenCTM') 2758 @DomName('SVGGraphicsElement.getScreenCTM')
2759 @DocsEditable() 2759 @DocsEditable()
2760 @Experimental() // untriaged 2760 @Experimental() // untriaged
2761 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.getScreenCTM_Callback_ 0(this); 2761 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_ Callback_0_(this);
2762 2762
2763 @DomName('SVGGraphicsElement.getTransformToElement') 2763 @DomName('SVGGraphicsElement.getTransformToElement')
2764 @DocsEditable() 2764 @DocsEditable()
2765 @Experimental() // untriaged 2765 @Experimental() // untriaged
2766 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle ment.getTransformToElement_Callback_1(this, element); 2766 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle ment.instance.getTransformToElement_Callback_1_(this, element);
2767 2767
2768 @DomName('SVGGraphicsElement.requiredExtensions') 2768 @DomName('SVGGraphicsElement.requiredExtensions')
2769 @DocsEditable() 2769 @DocsEditable()
2770 @Experimental() // untriaged 2770 @Experimental() // untriaged
2771 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.requiredEx tensions_Getter(this); 2771 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.instance.r equiredExtensions_Getter_(this);
2772 2772
2773 @DomName('SVGGraphicsElement.requiredFeatures') 2773 @DomName('SVGGraphicsElement.requiredFeatures')
2774 @DocsEditable() 2774 @DocsEditable()
2775 @Experimental() // untriaged 2775 @Experimental() // untriaged
2776 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.requiredFeat ures_Getter(this); 2776 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.instance.req uiredFeatures_Getter_(this);
2777 2777
2778 @DomName('SVGGraphicsElement.systemLanguage') 2778 @DomName('SVGGraphicsElement.systemLanguage')
2779 @DocsEditable() 2779 @DocsEditable()
2780 @Experimental() // untriaged 2780 @Experimental() // untriaged
2781 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.systemLanguage _Getter(this); 2781 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.instance.syste mLanguage_Getter_(this);
2782 2782
2783 @DomName('SVGGraphicsElement.hasExtension') 2783 @DomName('SVGGraphicsElement.hasExtension')
2784 @DocsEditable() 2784 @DocsEditable()
2785 @Experimental() // untriaged 2785 @Experimental() // untriaged
2786 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.hasExten sion_Callback_1(this, extension); 2786 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance .hasExtension_Callback_1_(this, extension);
2787 2787
2788 } 2788 }
2789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2790 // for details. All rights reserved. Use of this source code is governed by a 2790 // for details. All rights reserved. Use of this source code is governed by a
2791 // BSD-style license that can be found in the LICENSE file. 2791 // BSD-style license that can be found in the LICENSE file.
2792 2792
2793 // WARNING: Do not edit - generated code. 2793 // WARNING: Do not edit - generated code.
2794 2794
2795 2795
2796 @DocsEditable() 2796 @DocsEditable()
2797 @DomName('SVGImageElement') 2797 @DomName('SVGImageElement')
2798 @Unstable() 2798 @Unstable()
2799 class ImageElement extends GraphicsElement implements UriReference { 2799 class ImageElement extends GraphicsElement implements UriReference {
2800 // To suppress missing implicit constructor warnings. 2800 // To suppress missing implicit constructor warnings.
2801 factory ImageElement._() { throw new UnsupportedError("Not supported"); } 2801 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
2802 2802
2803 @DomName('SVGImageElement.SVGImageElement') 2803 @DomName('SVGImageElement.SVGImageElement')
2804 @DocsEditable() 2804 @DocsEditable()
2805 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 2805 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
2806 /** 2806 /**
2807 * Constructor instantiated by the DOM when a custom element has been created. 2807 * Constructor instantiated by the DOM when a custom element has been created.
2808 * 2808 *
2809 * This can only be called by subclasses from their created constructor. 2809 * This can only be called by subclasses from their created constructor.
2810 */ 2810 */
2811 ImageElement.created() : super.created(); 2811 ImageElement.created() : super.created();
2812 2812
2813 @DomName('SVGImageElement.height') 2813 @DomName('SVGImageElement.height')
2814 @DocsEditable() 2814 @DocsEditable()
2815 AnimatedLength get height => _blink.BlinkSVGImageElement.height_Getter(this); 2815 AnimatedLength get height => _blink.BlinkSVGImageElement.instance.height_Gette r_(this);
2816 2816
2817 @DomName('SVGImageElement.preserveAspectRatio') 2817 @DomName('SVGImageElement.preserveAspectRatio')
2818 @DocsEditable() 2818 @DocsEditable()
2819 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle ment.preserveAspectRatio_Getter(this); 2819 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle ment.instance.preserveAspectRatio_Getter_(this);
2820 2820
2821 @DomName('SVGImageElement.width') 2821 @DomName('SVGImageElement.width')
2822 @DocsEditable() 2822 @DocsEditable()
2823 AnimatedLength get width => _blink.BlinkSVGImageElement.width_Getter(this); 2823 AnimatedLength get width => _blink.BlinkSVGImageElement.instance.width_Getter_ (this);
2824 2824
2825 @DomName('SVGImageElement.x') 2825 @DomName('SVGImageElement.x')
2826 @DocsEditable() 2826 @DocsEditable()
2827 AnimatedLength get x => _blink.BlinkSVGImageElement.x_Getter(this); 2827 AnimatedLength get x => _blink.BlinkSVGImageElement.instance.x_Getter_(this);
2828 2828
2829 @DomName('SVGImageElement.y') 2829 @DomName('SVGImageElement.y')
2830 @DocsEditable() 2830 @DocsEditable()
2831 AnimatedLength get y => _blink.BlinkSVGImageElement.y_Getter(this); 2831 AnimatedLength get y => _blink.BlinkSVGImageElement.instance.y_Getter_(this);
2832 2832
2833 @DomName('SVGImageElement.href') 2833 @DomName('SVGImageElement.href')
2834 @DocsEditable() 2834 @DocsEditable()
2835 AnimatedString get href => _blink.BlinkSVGImageElement.href_Getter(this); 2835 AnimatedString get href => _blink.BlinkSVGImageElement.instance.href_Getter_(t his);
2836 2836
2837 } 2837 }
2838 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2838 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2839 // for details. All rights reserved. Use of this source code is governed by a 2839 // for details. All rights reserved. Use of this source code is governed by a
2840 // BSD-style license that can be found in the LICENSE file. 2840 // BSD-style license that can be found in the LICENSE file.
2841 2841
2842 // WARNING: Do not edit - generated code. 2842 // WARNING: Do not edit - generated code.
2843 2843
2844 2844
2845 @DocsEditable() 2845 @DocsEditable()
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
2888 @DomName('SVGLength.SVG_LENGTHTYPE_PX') 2888 @DomName('SVGLength.SVG_LENGTHTYPE_PX')
2889 @DocsEditable() 2889 @DocsEditable()
2890 static const int SVG_LENGTHTYPE_PX = 5; 2890 static const int SVG_LENGTHTYPE_PX = 5;
2891 2891
2892 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN') 2892 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
2893 @DocsEditable() 2893 @DocsEditable()
2894 static const int SVG_LENGTHTYPE_UNKNOWN = 0; 2894 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
2895 2895
2896 @DomName('SVGLength.unitType') 2896 @DomName('SVGLength.unitType')
2897 @DocsEditable() 2897 @DocsEditable()
2898 int get unitType => _blink.BlinkSVGLength.unitType_Getter(this); 2898 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(this);
2899 2899
2900 @DomName('SVGLength.value') 2900 @DomName('SVGLength.value')
2901 @DocsEditable() 2901 @DocsEditable()
2902 num get value => _blink.BlinkSVGLength.value_Getter(this); 2902 num get value => _blink.BlinkSVGLength.instance.value_Getter_(this);
2903 2903
2904 @DomName('SVGLength.value') 2904 @DomName('SVGLength.value')
2905 @DocsEditable() 2905 @DocsEditable()
2906 void set value(num value) => _blink.BlinkSVGLength.value_Setter(this, value); 2906 void set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(this , value);
2907 2907
2908 @DomName('SVGLength.valueAsString') 2908 @DomName('SVGLength.valueAsString')
2909 @DocsEditable() 2909 @DocsEditable()
2910 String get valueAsString => _blink.BlinkSVGLength.valueAsString_Getter(this); 2910 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette r_(this);
2911 2911
2912 @DomName('SVGLength.valueAsString') 2912 @DomName('SVGLength.valueAsString')
2913 @DocsEditable() 2913 @DocsEditable()
2914 void set valueAsString(String value) => _blink.BlinkSVGLength.valueAsString_Se tter(this, value); 2914 void set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAs String_Setter_(this, value);
2915 2915
2916 @DomName('SVGLength.valueInSpecifiedUnits') 2916 @DomName('SVGLength.valueInSpecifiedUnits')
2917 @DocsEditable() 2917 @DocsEditable()
2918 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.valueInSpecifiedUnits_G etter(this); 2918 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi edUnits_Getter_(this);
2919 2919
2920 @DomName('SVGLength.valueInSpecifiedUnits') 2920 @DomName('SVGLength.valueInSpecifiedUnits')
2921 @DocsEditable() 2921 @DocsEditable()
2922 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.valueInSpec ifiedUnits_Setter(this, value); 2922 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.va lueInSpecifiedUnits_Setter_(this, value);
2923 2923
2924 @DomName('SVGLength.convertToSpecifiedUnits') 2924 @DomName('SVGLength.convertToSpecifiedUnits')
2925 @DocsEditable() 2925 @DocsEditable()
2926 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.convertToS pecifiedUnits_Callback_1(this, unitType); 2926 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c onvertToSpecifiedUnits_Callback_1_(this, unitType);
2927 2927
2928 @DomName('SVGLength.newValueSpecifiedUnits') 2928 @DomName('SVGLength.newValueSpecifiedUnits')
2929 @DocsEditable() 2929 @DocsEditable()
2930 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.newValueSpecifiedUnits_Callback_2(this, unitType, valueInSpecifi edUnits); 2930 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, valu eInSpecifiedUnits);
2931 2931
2932 } 2932 }
2933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2934 // for details. All rights reserved. Use of this source code is governed by a 2934 // for details. All rights reserved. Use of this source code is governed by a
2935 // BSD-style license that can be found in the LICENSE file. 2935 // BSD-style license that can be found in the LICENSE file.
2936 2936
2937 // WARNING: Do not edit - generated code. 2937 // WARNING: Do not edit - generated code.
2938 2938
2939 2939
2940 @DocsEditable() 2940 @DocsEditable()
2941 @DomName('SVGLengthList') 2941 @DomName('SVGLengthList')
2942 @Unstable() 2942 @Unstable()
2943 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> { 2943 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> {
2944 // To suppress missing implicit constructor warnings. 2944 // To suppress missing implicit constructor warnings.
2945 factory LengthList._() { throw new UnsupportedError("Not supported"); } 2945 factory LengthList._() { throw new UnsupportedError("Not supported"); }
2946 2946
2947 @DomName('SVGLengthList.length') 2947 @DomName('SVGLengthList.length')
2948 @DocsEditable() 2948 @DocsEditable()
2949 @Experimental() // untriaged 2949 @Experimental() // untriaged
2950 int get length => _blink.BlinkSVGLengthList.length_Getter(this); 2950 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(this);
2951 2951
2952 @DomName('SVGLengthList.numberOfItems') 2952 @DomName('SVGLengthList.numberOfItems')
2953 @DocsEditable() 2953 @DocsEditable()
2954 int get numberOfItems => _blink.BlinkSVGLengthList.numberOfItems_Getter(this); 2954 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett er_(this);
2955 2955
2956 Length operator[](int index) { 2956 Length operator[](int index) {
2957 if (index < 0 || index >= length) 2957 if (index < 0 || index >= length)
2958 throw new RangeError.range(index, 0, length); 2958 throw new RangeError.range(index, 0, length);
2959 return getItem(index); 2959 return getItem(index);
2960 } 2960 }
2961 2961
2962 void operator[]=(int index, Length value) { 2962 void operator[]=(int index, Length value) {
2963 throw new UnsupportedError("Cannot assign element of immutable List."); 2963 throw new UnsupportedError("Cannot assign element of immutable List.");
2964 } 2964 }
(...skipping 28 matching lines...) Expand all
2993 if (len == 0) throw new StateError("No elements"); 2993 if (len == 0) throw new StateError("No elements");
2994 throw new StateError("More than one element"); 2994 throw new StateError("More than one element");
2995 } 2995 }
2996 2996
2997 Length elementAt(int index) => this[index]; 2997 Length elementAt(int index) => this[index];
2998 // -- end List<Length> mixins. 2998 // -- end List<Length> mixins.
2999 2999
3000 @DomName('SVGLengthList.__setter__') 3000 @DomName('SVGLengthList.__setter__')
3001 @DocsEditable() 3001 @DocsEditable()
3002 @Experimental() // untriaged 3002 @Experimental() // untriaged
3003 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.$__sette r___Callback_2(this, index, value); 3003 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance .$__setter___Callback_2_(this, index, value);
3004 3004
3005 @DomName('SVGLengthList.appendItem') 3005 @DomName('SVGLengthList.appendItem')
3006 @DocsEditable() 3006 @DocsEditable()
3007 Length appendItem(Length item) => _blink.BlinkSVGLengthList.appendItem_Callbac k_1(this, item); 3007 Length appendItem(Length item) => _blink.BlinkSVGLengthList.instance.appendIte m_Callback_1_(this, item);
3008 3008
3009 @DomName('SVGLengthList.clear') 3009 @DomName('SVGLengthList.clear')
3010 @DocsEditable() 3010 @DocsEditable()
3011 void clear() => _blink.BlinkSVGLengthList.clear_Callback_0(this); 3011 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(this);
3012 3012
3013 @DomName('SVGLengthList.getItem') 3013 @DomName('SVGLengthList.getItem')
3014 @DocsEditable() 3014 @DocsEditable()
3015 Length getItem(int index) => _blink.BlinkSVGLengthList.getItem_Callback_1(this , index); 3015 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba ck_1_(this, index);
3016 3016
3017 @DomName('SVGLengthList.initialize') 3017 @DomName('SVGLengthList.initialize')
3018 @DocsEditable() 3018 @DocsEditable()
3019 Length initialize(Length item) => _blink.BlinkSVGLengthList.initialize_Callbac k_1(this, item); 3019 Length initialize(Length item) => _blink.BlinkSVGLengthList.instance.initializ e_Callback_1_(this, item);
3020 3020
3021 @DomName('SVGLengthList.insertItemBefore') 3021 @DomName('SVGLengthList.insertItemBefore')
3022 @DocsEditable() 3022 @DocsEditable()
3023 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i nsertItemBefore_Callback_2(this, item, index); 3023 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i nstance.insertItemBefore_Callback_2_(this, item, index);
3024 3024
3025 @DomName('SVGLengthList.removeItem') 3025 @DomName('SVGLengthList.removeItem')
3026 @DocsEditable() 3026 @DocsEditable()
3027 Length removeItem(int index) => _blink.BlinkSVGLengthList.removeItem_Callback_ 1(this, index); 3027 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_ Callback_1_(this, index);
3028 3028
3029 @DomName('SVGLengthList.replaceItem') 3029 @DomName('SVGLengthList.replaceItem')
3030 @DocsEditable() 3030 @DocsEditable()
3031 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.replac eItem_Callback_2(this, item, index); 3031 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.instan ce.replaceItem_Callback_2_(this, item, index);
3032 3032
3033 } 3033 }
3034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3035 // for details. All rights reserved. Use of this source code is governed by a 3035 // for details. All rights reserved. Use of this source code is governed by a
3036 // BSD-style license that can be found in the LICENSE file. 3036 // BSD-style license that can be found in the LICENSE file.
3037 3037
3038 // WARNING: Do not edit - generated code. 3038 // WARNING: Do not edit - generated code.
3039 3039
3040 3040
3041 @DocsEditable() 3041 @DocsEditable()
3042 @DomName('SVGLineElement') 3042 @DomName('SVGLineElement')
3043 @Unstable() 3043 @Unstable()
3044 class LineElement extends GeometryElement { 3044 class LineElement extends GeometryElement {
3045 // To suppress missing implicit constructor warnings. 3045 // To suppress missing implicit constructor warnings.
3046 factory LineElement._() { throw new UnsupportedError("Not supported"); } 3046 factory LineElement._() { throw new UnsupportedError("Not supported"); }
3047 3047
3048 @DomName('SVGLineElement.SVGLineElement') 3048 @DomName('SVGLineElement.SVGLineElement')
3049 @DocsEditable() 3049 @DocsEditable()
3050 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3050 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3051 /** 3051 /**
3052 * Constructor instantiated by the DOM when a custom element has been created. 3052 * Constructor instantiated by the DOM when a custom element has been created.
3053 * 3053 *
3054 * This can only be called by subclasses from their created constructor. 3054 * This can only be called by subclasses from their created constructor.
3055 */ 3055 */
3056 LineElement.created() : super.created(); 3056 LineElement.created() : super.created();
3057 3057
3058 @DomName('SVGLineElement.x1') 3058 @DomName('SVGLineElement.x1')
3059 @DocsEditable() 3059 @DocsEditable()
3060 AnimatedLength get x1 => _blink.BlinkSVGLineElement.x1_Getter(this); 3060 AnimatedLength get x1 => _blink.BlinkSVGLineElement.instance.x1_Getter_(this);
3061 3061
3062 @DomName('SVGLineElement.x2') 3062 @DomName('SVGLineElement.x2')
3063 @DocsEditable() 3063 @DocsEditable()
3064 AnimatedLength get x2 => _blink.BlinkSVGLineElement.x2_Getter(this); 3064 AnimatedLength get x2 => _blink.BlinkSVGLineElement.instance.x2_Getter_(this);
3065 3065
3066 @DomName('SVGLineElement.y1') 3066 @DomName('SVGLineElement.y1')
3067 @DocsEditable() 3067 @DocsEditable()
3068 AnimatedLength get y1 => _blink.BlinkSVGLineElement.y1_Getter(this); 3068 AnimatedLength get y1 => _blink.BlinkSVGLineElement.instance.y1_Getter_(this);
3069 3069
3070 @DomName('SVGLineElement.y2') 3070 @DomName('SVGLineElement.y2')
3071 @DocsEditable() 3071 @DocsEditable()
3072 AnimatedLength get y2 => _blink.BlinkSVGLineElement.y2_Getter(this); 3072 AnimatedLength get y2 => _blink.BlinkSVGLineElement.instance.y2_Getter_(this);
3073 3073
3074 } 3074 }
3075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3075 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3076 // for details. All rights reserved. Use of this source code is governed by a 3076 // for details. All rights reserved. Use of this source code is governed by a
3077 // BSD-style license that can be found in the LICENSE file. 3077 // BSD-style license that can be found in the LICENSE file.
3078 3078
3079 // WARNING: Do not edit - generated code. 3079 // WARNING: Do not edit - generated code.
3080 3080
3081 3081
3082 @DocsEditable() 3082 @DocsEditable()
3083 @DomName('SVGLinearGradientElement') 3083 @DomName('SVGLinearGradientElement')
3084 @Unstable() 3084 @Unstable()
3085 class LinearGradientElement extends _GradientElement { 3085 class LinearGradientElement extends _GradientElement {
3086 // To suppress missing implicit constructor warnings. 3086 // To suppress missing implicit constructor warnings.
3087 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); } 3087 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); }
3088 3088
3089 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3089 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
3090 @DocsEditable() 3090 @DocsEditable()
3091 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3091 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3092 /** 3092 /**
3093 * Constructor instantiated by the DOM when a custom element has been created. 3093 * Constructor instantiated by the DOM when a custom element has been created.
3094 * 3094 *
3095 * This can only be called by subclasses from their created constructor. 3095 * This can only be called by subclasses from their created constructor.
3096 */ 3096 */
3097 LinearGradientElement.created() : super.created(); 3097 LinearGradientElement.created() : super.created();
3098 3098
3099 @DomName('SVGLinearGradientElement.x1') 3099 @DomName('SVGLinearGradientElement.x1')
3100 @DocsEditable() 3100 @DocsEditable()
3101 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.x1_Getter(this); 3101 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.instance.x1_Gett er_(this);
3102 3102
3103 @DomName('SVGLinearGradientElement.x2') 3103 @DomName('SVGLinearGradientElement.x2')
3104 @DocsEditable() 3104 @DocsEditable()
3105 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.x2_Getter(this); 3105 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.instance.x2_Gett er_(this);
3106 3106
3107 @DomName('SVGLinearGradientElement.y1') 3107 @DomName('SVGLinearGradientElement.y1')
3108 @DocsEditable() 3108 @DocsEditable()
3109 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.y1_Getter(this); 3109 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.instance.y1_Gett er_(this);
3110 3110
3111 @DomName('SVGLinearGradientElement.y2') 3111 @DomName('SVGLinearGradientElement.y2')
3112 @DocsEditable() 3112 @DocsEditable()
3113 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.y2_Getter(this); 3113 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.instance.y2_Gett er_(this);
3114 3114
3115 } 3115 }
3116 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3116 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3117 // for details. All rights reserved. Use of this source code is governed by a 3117 // for details. All rights reserved. Use of this source code is governed by a
3118 // BSD-style license that can be found in the LICENSE file. 3118 // BSD-style license that can be found in the LICENSE file.
3119 3119
3120 // WARNING: Do not edit - generated code. 3120 // WARNING: Do not edit - generated code.
3121 3121
3122 3122
3123 @DocsEditable() 3123 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO') 3156 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO')
3157 @DocsEditable() 3157 @DocsEditable()
3158 static const int SVG_MARKER_ORIENT_AUTO = 1; 3158 static const int SVG_MARKER_ORIENT_AUTO = 1;
3159 3159
3160 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN') 3160 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN')
3161 @DocsEditable() 3161 @DocsEditable()
3162 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 3162 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
3163 3163
3164 @DomName('SVGMarkerElement.markerHeight') 3164 @DomName('SVGMarkerElement.markerHeight')
3165 @DocsEditable() 3165 @DocsEditable()
3166 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.markerHeight_G etter(this); 3166 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.instance.marke rHeight_Getter_(this);
3167 3167
3168 @DomName('SVGMarkerElement.markerUnits') 3168 @DomName('SVGMarkerElement.markerUnits')
3169 @DocsEditable() 3169 @DocsEditable()
3170 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.markerUnit s_Getter(this); 3170 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.instance.m arkerUnits_Getter_(this);
3171 3171
3172 @DomName('SVGMarkerElement.markerWidth') 3172 @DomName('SVGMarkerElement.markerWidth')
3173 @DocsEditable() 3173 @DocsEditable()
3174 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.markerWidth_Get ter(this); 3174 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.instance.marker Width_Getter_(this);
3175 3175
3176 @DomName('SVGMarkerElement.orientAngle') 3176 @DomName('SVGMarkerElement.orientAngle')
3177 @DocsEditable() 3177 @DocsEditable()
3178 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.orientAngle_Gett er(this); 3178 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.instance.orientA ngle_Getter_(this);
3179 3179
3180 @DomName('SVGMarkerElement.orientType') 3180 @DomName('SVGMarkerElement.orientType')
3181 @DocsEditable() 3181 @DocsEditable()
3182 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.orientType_ Getter(this); 3182 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.instance.or ientType_Getter_(this);
3183 3183
3184 @DomName('SVGMarkerElement.refX') 3184 @DomName('SVGMarkerElement.refX')
3185 @DocsEditable() 3185 @DocsEditable()
3186 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.refX_Getter(this); 3186 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.instance.refX_Getter_( this);
3187 3187
3188 @DomName('SVGMarkerElement.refY') 3188 @DomName('SVGMarkerElement.refY')
3189 @DocsEditable() 3189 @DocsEditable()
3190 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.refY_Getter(this); 3190 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.instance.refY_Getter_( this);
3191 3191
3192 @DomName('SVGMarkerElement.setOrientToAngle') 3192 @DomName('SVGMarkerElement.setOrientToAngle')
3193 @DocsEditable() 3193 @DocsEditable()
3194 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.setOrientTo Angle_Callback_1(this, angle); 3194 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.se tOrientToAngle_Callback_1_(this, angle);
3195 3195
3196 @DomName('SVGMarkerElement.setOrientToAuto') 3196 @DomName('SVGMarkerElement.setOrientToAuto')
3197 @DocsEditable() 3197 @DocsEditable()
3198 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.setOrientToAuto_Callbac k_0(this); 3198 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAut o_Callback_0_(this);
3199 3199
3200 @DomName('SVGMarkerElement.preserveAspectRatio') 3200 @DomName('SVGMarkerElement.preserveAspectRatio')
3201 @DocsEditable() 3201 @DocsEditable()
3202 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl ement.preserveAspectRatio_Getter(this); 3202 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl ement.instance.preserveAspectRatio_Getter_(this);
3203 3203
3204 @DomName('SVGMarkerElement.viewBox') 3204 @DomName('SVGMarkerElement.viewBox')
3205 @DocsEditable() 3205 @DocsEditable()
3206 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.viewBox_Getter(this); 3206 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.instance.viewBox_Gett er_(this);
3207 3207
3208 } 3208 }
3209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3210 // for details. All rights reserved. Use of this source code is governed by a 3210 // for details. All rights reserved. Use of this source code is governed by a
3211 // BSD-style license that can be found in the LICENSE file. 3211 // BSD-style license that can be found in the LICENSE file.
3212 3212
3213 // WARNING: Do not edit - generated code. 3213 // WARNING: Do not edit - generated code.
3214 3214
3215 3215
3216 @DocsEditable() 3216 @DocsEditable()
3217 @DomName('SVGMaskElement') 3217 @DomName('SVGMaskElement')
3218 @Unstable() 3218 @Unstable()
3219 class MaskElement extends SvgElement implements Tests { 3219 class MaskElement extends SvgElement implements Tests {
3220 // To suppress missing implicit constructor warnings. 3220 // To suppress missing implicit constructor warnings.
3221 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3221 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3222 3222
3223 @DomName('SVGMaskElement.SVGMaskElement') 3223 @DomName('SVGMaskElement.SVGMaskElement')
3224 @DocsEditable() 3224 @DocsEditable()
3225 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3225 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3226 /** 3226 /**
3227 * Constructor instantiated by the DOM when a custom element has been created. 3227 * Constructor instantiated by the DOM when a custom element has been created.
3228 * 3228 *
3229 * This can only be called by subclasses from their created constructor. 3229 * This can only be called by subclasses from their created constructor.
3230 */ 3230 */
3231 MaskElement.created() : super.created(); 3231 MaskElement.created() : super.created();
3232 3232
3233 @DomName('SVGMaskElement.height') 3233 @DomName('SVGMaskElement.height')
3234 @DocsEditable() 3234 @DocsEditable()
3235 AnimatedLength get height => _blink.BlinkSVGMaskElement.height_Getter(this); 3235 AnimatedLength get height => _blink.BlinkSVGMaskElement.instance.height_Getter _(this);
3236 3236
3237 @DomName('SVGMaskElement.maskContentUnits') 3237 @DomName('SVGMaskElement.maskContentUnits')
3238 @DocsEditable() 3238 @DocsEditable()
3239 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.maskCon tentUnits_Getter(this); 3239 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.instanc e.maskContentUnits_Getter_(this);
3240 3240
3241 @DomName('SVGMaskElement.maskUnits') 3241 @DomName('SVGMaskElement.maskUnits')
3242 @DocsEditable() 3242 @DocsEditable()
3243 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.maskUnits_Gett er(this); 3243 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.instance.maskU nits_Getter_(this);
3244 3244
3245 @DomName('SVGMaskElement.width') 3245 @DomName('SVGMaskElement.width')
3246 @DocsEditable() 3246 @DocsEditable()
3247 AnimatedLength get width => _blink.BlinkSVGMaskElement.width_Getter(this); 3247 AnimatedLength get width => _blink.BlinkSVGMaskElement.instance.width_Getter_( this);
3248 3248
3249 @DomName('SVGMaskElement.x') 3249 @DomName('SVGMaskElement.x')
3250 @DocsEditable() 3250 @DocsEditable()
3251 AnimatedLength get x => _blink.BlinkSVGMaskElement.x_Getter(this); 3251 AnimatedLength get x => _blink.BlinkSVGMaskElement.instance.x_Getter_(this);
3252 3252
3253 @DomName('SVGMaskElement.y') 3253 @DomName('SVGMaskElement.y')
3254 @DocsEditable() 3254 @DocsEditable()
3255 AnimatedLength get y => _blink.BlinkSVGMaskElement.y_Getter(this); 3255 AnimatedLength get y => _blink.BlinkSVGMaskElement.instance.y_Getter_(this);
3256 3256
3257 @DomName('SVGMaskElement.requiredExtensions') 3257 @DomName('SVGMaskElement.requiredExtensions')
3258 @DocsEditable() 3258 @DocsEditable()
3259 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.requiredExtens ions_Getter(this); 3259 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.instance.requi redExtensions_Getter_(this);
3260 3260
3261 @DomName('SVGMaskElement.requiredFeatures') 3261 @DomName('SVGMaskElement.requiredFeatures')
3262 @DocsEditable() 3262 @DocsEditable()
3263 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.requiredFeatures _Getter(this); 3263 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.instance.require dFeatures_Getter_(this);
3264 3264
3265 @DomName('SVGMaskElement.systemLanguage') 3265 @DomName('SVGMaskElement.systemLanguage')
3266 @DocsEditable() 3266 @DocsEditable()
3267 StringList get systemLanguage => _blink.BlinkSVGMaskElement.systemLanguage_Get ter(this); 3267 StringList get systemLanguage => _blink.BlinkSVGMaskElement.instance.systemLan guage_Getter_(this);
3268 3268
3269 @DomName('SVGMaskElement.hasExtension') 3269 @DomName('SVGMaskElement.hasExtension')
3270 @DocsEditable() 3270 @DocsEditable()
3271 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.hasExtension _Callback_1(this, extension); 3271 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.has Extension_Callback_1_(this, extension);
3272 3272
3273 } 3273 }
3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3275 // for details. All rights reserved. Use of this source code is governed by a 3275 // for details. All rights reserved. Use of this source code is governed by a
3276 // BSD-style license that can be found in the LICENSE file. 3276 // BSD-style license that can be found in the LICENSE file.
3277 3277
3278 // WARNING: Do not edit - generated code. 3278 // WARNING: Do not edit - generated code.
3279 3279
3280 3280
3281 @DocsEditable() 3281 @DocsEditable()
3282 @DomName('SVGMatrix') 3282 @DomName('SVGMatrix')
3283 @Unstable() 3283 @Unstable()
3284 class Matrix extends NativeFieldWrapperClass2 { 3284 class Matrix extends NativeFieldWrapperClass2 {
3285 // To suppress missing implicit constructor warnings. 3285 // To suppress missing implicit constructor warnings.
3286 factory Matrix._() { throw new UnsupportedError("Not supported"); } 3286 factory Matrix._() { throw new UnsupportedError("Not supported"); }
3287 3287
3288 @DomName('SVGMatrix.a') 3288 @DomName('SVGMatrix.a')
3289 @DocsEditable() 3289 @DocsEditable()
3290 num get a => _blink.BlinkSVGMatrix.a_Getter(this); 3290 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(this);
3291 3291
3292 @DomName('SVGMatrix.a') 3292 @DomName('SVGMatrix.a')
3293 @DocsEditable() 3293 @DocsEditable()
3294 void set a(num value) => _blink.BlinkSVGMatrix.a_Setter(this, value); 3294 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(this, value) ;
3295 3295
3296 @DomName('SVGMatrix.b') 3296 @DomName('SVGMatrix.b')
3297 @DocsEditable() 3297 @DocsEditable()
3298 num get b => _blink.BlinkSVGMatrix.b_Getter(this); 3298 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(this);
3299 3299
3300 @DomName('SVGMatrix.b') 3300 @DomName('SVGMatrix.b')
3301 @DocsEditable() 3301 @DocsEditable()
3302 void set b(num value) => _blink.BlinkSVGMatrix.b_Setter(this, value); 3302 void set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(this, value) ;
3303 3303
3304 @DomName('SVGMatrix.c') 3304 @DomName('SVGMatrix.c')
3305 @DocsEditable() 3305 @DocsEditable()
3306 num get c => _blink.BlinkSVGMatrix.c_Getter(this); 3306 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(this);
3307 3307
3308 @DomName('SVGMatrix.c') 3308 @DomName('SVGMatrix.c')
3309 @DocsEditable() 3309 @DocsEditable()
3310 void set c(num value) => _blink.BlinkSVGMatrix.c_Setter(this, value); 3310 void set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(this, value) ;
3311 3311
3312 @DomName('SVGMatrix.d') 3312 @DomName('SVGMatrix.d')
3313 @DocsEditable() 3313 @DocsEditable()
3314 num get d => _blink.BlinkSVGMatrix.d_Getter(this); 3314 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(this);
3315 3315
3316 @DomName('SVGMatrix.d') 3316 @DomName('SVGMatrix.d')
3317 @DocsEditable() 3317 @DocsEditable()
3318 void set d(num value) => _blink.BlinkSVGMatrix.d_Setter(this, value); 3318 void set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(this, value) ;
3319 3319
3320 @DomName('SVGMatrix.e') 3320 @DomName('SVGMatrix.e')
3321 @DocsEditable() 3321 @DocsEditable()
3322 num get e => _blink.BlinkSVGMatrix.e_Getter(this); 3322 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(this);
3323 3323
3324 @DomName('SVGMatrix.e') 3324 @DomName('SVGMatrix.e')
3325 @DocsEditable() 3325 @DocsEditable()
3326 void set e(num value) => _blink.BlinkSVGMatrix.e_Setter(this, value); 3326 void set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(this, value) ;
3327 3327
3328 @DomName('SVGMatrix.f') 3328 @DomName('SVGMatrix.f')
3329 @DocsEditable() 3329 @DocsEditable()
3330 num get f => _blink.BlinkSVGMatrix.f_Getter(this); 3330 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(this);
3331 3331
3332 @DomName('SVGMatrix.f') 3332 @DomName('SVGMatrix.f')
3333 @DocsEditable() 3333 @DocsEditable()
3334 void set f(num value) => _blink.BlinkSVGMatrix.f_Setter(this, value); 3334 void set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(this, value) ;
3335 3335
3336 @DomName('SVGMatrix.flipX') 3336 @DomName('SVGMatrix.flipX')
3337 @DocsEditable() 3337 @DocsEditable()
3338 Matrix flipX() => _blink.BlinkSVGMatrix.flipX_Callback_0(this); 3338 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(this);
3339 3339
3340 @DomName('SVGMatrix.flipY') 3340 @DomName('SVGMatrix.flipY')
3341 @DocsEditable() 3341 @DocsEditable()
3342 Matrix flipY() => _blink.BlinkSVGMatrix.flipY_Callback_0(this); 3342 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(this);
3343 3343
3344 @DomName('SVGMatrix.inverse') 3344 @DomName('SVGMatrix.inverse')
3345 @DocsEditable() 3345 @DocsEditable()
3346 Matrix inverse() => _blink.BlinkSVGMatrix.inverse_Callback_0(this); 3346 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(this);
3347 3347
3348 @DomName('SVGMatrix.multiply') 3348 @DomName('SVGMatrix.multiply')
3349 @DocsEditable() 3349 @DocsEditable()
3350 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.multiply_Callbac k_1(this, secondMatrix); 3350 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl y_Callback_1_(this, secondMatrix);
3351 3351
3352 @DomName('SVGMatrix.rotate') 3352 @DomName('SVGMatrix.rotate')
3353 @DocsEditable() 3353 @DocsEditable()
3354 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.rotate_Callback_1(this, angl e); 3354 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_( this, angle);
3355 3355
3356 @DomName('SVGMatrix.rotateFromVector') 3356 @DomName('SVGMatrix.rotateFromVector')
3357 @DocsEditable() 3357 @DocsEditable()
3358 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.rotateFromVecto r_Callback_2(this, x, y); 3358 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate FromVector_Callback_2_(this, x, y);
3359 3359
3360 @DomName('SVGMatrix.scale') 3360 @DomName('SVGMatrix.scale')
3361 @DocsEditable() 3361 @DocsEditable()
3362 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.scale_Callback_1(this, scaleFactor); 3362 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback _1_(this, scaleFactor);
3363 3363
3364 @DomName('SVGMatrix.scaleNonUniform') 3364 @DomName('SVGMatrix.scaleNonUniform')
3365 @DocsEditable() 3365 @DocsEditable()
3366 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM atrix.scaleNonUniform_Callback_2(this, scaleFactorX, scaleFactorY); 3366 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM atrix.instance.scaleNonUniform_Callback_2_(this, scaleFactorX, scaleFactorY);
3367 3367
3368 @DomName('SVGMatrix.skewX') 3368 @DomName('SVGMatrix.skewX')
3369 @DocsEditable() 3369 @DocsEditable()
3370 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.skewX_Callback_1(this, angle) ; 3370 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(th is, angle);
3371 3371
3372 @DomName('SVGMatrix.skewY') 3372 @DomName('SVGMatrix.skewY')
3373 @DocsEditable() 3373 @DocsEditable()
3374 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.skewY_Callback_1(this, angle) ; 3374 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(th is, angle);
3375 3375
3376 @DomName('SVGMatrix.translate') 3376 @DomName('SVGMatrix.translate')
3377 @DocsEditable() 3377 @DocsEditable()
3378 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.translate_Callback_2(t his, x, y); 3378 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal lback_2_(this, x, y);
3379 3379
3380 } 3380 }
3381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3382 // for details. All rights reserved. Use of this source code is governed by a 3382 // for details. All rights reserved. Use of this source code is governed by a
3383 // BSD-style license that can be found in the LICENSE file. 3383 // BSD-style license that can be found in the LICENSE file.
3384 3384
3385 // WARNING: Do not edit - generated code. 3385 // WARNING: Do not edit - generated code.
3386 3386
3387 3387
3388 @DocsEditable() 3388 @DocsEditable()
(...skipping 19 matching lines...) Expand all
3408 3408
3409 @DocsEditable() 3409 @DocsEditable()
3410 @DomName('SVGNumber') 3410 @DomName('SVGNumber')
3411 @Unstable() 3411 @Unstable()
3412 class Number extends NativeFieldWrapperClass2 { 3412 class Number extends NativeFieldWrapperClass2 {
3413 // To suppress missing implicit constructor warnings. 3413 // To suppress missing implicit constructor warnings.
3414 factory Number._() { throw new UnsupportedError("Not supported"); } 3414 factory Number._() { throw new UnsupportedError("Not supported"); }
3415 3415
3416 @DomName('SVGNumber.value') 3416 @DomName('SVGNumber.value')
3417 @DocsEditable() 3417 @DocsEditable()
3418 num get value => _blink.BlinkSVGNumber.value_Getter(this); 3418 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(this);
3419 3419
3420 @DomName('SVGNumber.value') 3420 @DomName('SVGNumber.value')
3421 @DocsEditable() 3421 @DocsEditable()
3422 void set value(num value) => _blink.BlinkSVGNumber.value_Setter(this, value); 3422 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(this , value);
3423 3423
3424 } 3424 }
3425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3426 // for details. All rights reserved. Use of this source code is governed by a 3426 // for details. All rights reserved. Use of this source code is governed by a
3427 // BSD-style license that can be found in the LICENSE file. 3427 // BSD-style license that can be found in the LICENSE file.
3428 3428
3429 // WARNING: Do not edit - generated code. 3429 // WARNING: Do not edit - generated code.
3430 3430
3431 3431
3432 @DocsEditable() 3432 @DocsEditable()
3433 @DomName('SVGNumberList') 3433 @DomName('SVGNumberList')
3434 @Unstable() 3434 @Unstable()
3435 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> { 3435 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> {
3436 // To suppress missing implicit constructor warnings. 3436 // To suppress missing implicit constructor warnings.
3437 factory NumberList._() { throw new UnsupportedError("Not supported"); } 3437 factory NumberList._() { throw new UnsupportedError("Not supported"); }
3438 3438
3439 @DomName('SVGNumberList.length') 3439 @DomName('SVGNumberList.length')
3440 @DocsEditable() 3440 @DocsEditable()
3441 @Experimental() // untriaged 3441 @Experimental() // untriaged
3442 int get length => _blink.BlinkSVGNumberList.length_Getter(this); 3442 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(this);
3443 3443
3444 @DomName('SVGNumberList.numberOfItems') 3444 @DomName('SVGNumberList.numberOfItems')
3445 @DocsEditable() 3445 @DocsEditable()
3446 int get numberOfItems => _blink.BlinkSVGNumberList.numberOfItems_Getter(this); 3446 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett er_(this);
3447 3447
3448 Number operator[](int index) { 3448 Number operator[](int index) {
3449 if (index < 0 || index >= length) 3449 if (index < 0 || index >= length)
3450 throw new RangeError.range(index, 0, length); 3450 throw new RangeError.range(index, 0, length);
3451 return getItem(index); 3451 return getItem(index);
3452 } 3452 }
3453 3453
3454 void operator[]=(int index, Number value) { 3454 void operator[]=(int index, Number value) {
3455 throw new UnsupportedError("Cannot assign element of immutable List."); 3455 throw new UnsupportedError("Cannot assign element of immutable List.");
3456 } 3456 }
(...skipping 28 matching lines...) Expand all
3485 if (len == 0) throw new StateError("No elements"); 3485 if (len == 0) throw new StateError("No elements");
3486 throw new StateError("More than one element"); 3486 throw new StateError("More than one element");
3487 } 3487 }
3488 3488
3489 Number elementAt(int index) => this[index]; 3489 Number elementAt(int index) => this[index];
3490 // -- end List<Number> mixins. 3490 // -- end List<Number> mixins.
3491 3491
3492 @DomName('SVGNumberList.__setter__') 3492 @DomName('SVGNumberList.__setter__')
3493 @DocsEditable() 3493 @DocsEditable()
3494 @Experimental() // untriaged 3494 @Experimental() // untriaged
3495 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.$__sette r___Callback_2(this, index, value); 3495 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance .$__setter___Callback_2_(this, index, value);
3496 3496
3497 @DomName('SVGNumberList.appendItem') 3497 @DomName('SVGNumberList.appendItem')
3498 @DocsEditable() 3498 @DocsEditable()
3499 Number appendItem(Number item) => _blink.BlinkSVGNumberList.appendItem_Callbac k_1(this, item); 3499 Number appendItem(Number item) => _blink.BlinkSVGNumberList.instance.appendIte m_Callback_1_(this, item);
3500 3500
3501 @DomName('SVGNumberList.clear') 3501 @DomName('SVGNumberList.clear')
3502 @DocsEditable() 3502 @DocsEditable()
3503 void clear() => _blink.BlinkSVGNumberList.clear_Callback_0(this); 3503 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(this);
3504 3504
3505 @DomName('SVGNumberList.getItem') 3505 @DomName('SVGNumberList.getItem')
3506 @DocsEditable() 3506 @DocsEditable()
3507 Number getItem(int index) => _blink.BlinkSVGNumberList.getItem_Callback_1(this , index); 3507 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba ck_1_(this, index);
3508 3508
3509 @DomName('SVGNumberList.initialize') 3509 @DomName('SVGNumberList.initialize')
3510 @DocsEditable() 3510 @DocsEditable()
3511 Number initialize(Number item) => _blink.BlinkSVGNumberList.initialize_Callbac k_1(this, item); 3511 Number initialize(Number item) => _blink.BlinkSVGNumberList.instance.initializ e_Callback_1_(this, item);
3512 3512
3513 @DomName('SVGNumberList.insertItemBefore') 3513 @DomName('SVGNumberList.insertItemBefore')
3514 @DocsEditable() 3514 @DocsEditable()
3515 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i nsertItemBefore_Callback_2(this, item, index); 3515 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i nstance.insertItemBefore_Callback_2_(this, item, index);
3516 3516
3517 @DomName('SVGNumberList.removeItem') 3517 @DomName('SVGNumberList.removeItem')
3518 @DocsEditable() 3518 @DocsEditable()
3519 Number removeItem(int index) => _blink.BlinkSVGNumberList.removeItem_Callback_ 1(this, index); 3519 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_ Callback_1_(this, index);
3520 3520
3521 @DomName('SVGNumberList.replaceItem') 3521 @DomName('SVGNumberList.replaceItem')
3522 @DocsEditable() 3522 @DocsEditable()
3523 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.replac eItem_Callback_2(this, item, index); 3523 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.instan ce.replaceItem_Callback_2_(this, item, index);
3524 3524
3525 } 3525 }
3526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3527 // for details. All rights reserved. Use of this source code is governed by a 3527 // for details. All rights reserved. Use of this source code is governed by a
3528 // BSD-style license that can be found in the LICENSE file. 3528 // BSD-style license that can be found in the LICENSE file.
3529 3529
3530 // WARNING: Do not edit - generated code. 3530 // WARNING: Do not edit - generated code.
3531 3531
3532 3532
3533 @DocsEditable() 3533 @DocsEditable()
3534 @DomName('SVGPathElement') 3534 @DomName('SVGPathElement')
3535 @Unstable() 3535 @Unstable()
3536 class PathElement extends GeometryElement { 3536 class PathElement extends GeometryElement {
3537 // To suppress missing implicit constructor warnings. 3537 // To suppress missing implicit constructor warnings.
3538 factory PathElement._() { throw new UnsupportedError("Not supported"); } 3538 factory PathElement._() { throw new UnsupportedError("Not supported"); }
3539 3539
3540 @DomName('SVGPathElement.SVGPathElement') 3540 @DomName('SVGPathElement.SVGPathElement')
3541 @DocsEditable() 3541 @DocsEditable()
3542 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 3542 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
3543 /** 3543 /**
3544 * Constructor instantiated by the DOM when a custom element has been created. 3544 * Constructor instantiated by the DOM when a custom element has been created.
3545 * 3545 *
3546 * This can only be called by subclasses from their created constructor. 3546 * This can only be called by subclasses from their created constructor.
3547 */ 3547 */
3548 PathElement.created() : super.created(); 3548 PathElement.created() : super.created();
3549 3549
3550 @DomName('SVGPathElement.animatedNormalizedPathSegList') 3550 @DomName('SVGPathElement.animatedNormalizedPathSegList')
3551 @DocsEditable() 3551 @DocsEditable()
3552 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.an imatedNormalizedPathSegList_Getter(this); 3552 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.in stance.animatedNormalizedPathSegList_Getter_(this);
3553 3553
3554 @DomName('SVGPathElement.animatedPathSegList') 3554 @DomName('SVGPathElement.animatedPathSegList')
3555 @DocsEditable() 3555 @DocsEditable()
3556 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.animatedPath SegList_Getter(this); 3556 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.instance.ani matedPathSegList_Getter_(this);
3557 3557
3558 @DomName('SVGPathElement.normalizedPathSegList') 3558 @DomName('SVGPathElement.normalizedPathSegList')
3559 @DocsEditable() 3559 @DocsEditable()
3560 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.normalized PathSegList_Getter(this); 3560 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.instance.n ormalizedPathSegList_Getter_(this);
3561 3561
3562 @DomName('SVGPathElement.pathLength') 3562 @DomName('SVGPathElement.pathLength')
3563 @DocsEditable() 3563 @DocsEditable()
3564 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.pathLength_Getter( this); 3564 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.instance.pathLengt h_Getter_(this);
3565 3565
3566 @DomName('SVGPathElement.pathSegList') 3566 @DomName('SVGPathElement.pathSegList')
3567 @DocsEditable() 3567 @DocsEditable()
3568 PathSegList get pathSegList => _blink.BlinkSVGPathElement.pathSegList_Getter(t his); 3568 PathSegList get pathSegList => _blink.BlinkSVGPathElement.instance.pathSegList _Getter_(this);
3569 3569
3570 @DomName('SVGPathElement.createSVGPathSegArcAbs') 3570 @DomName('SVGPathElement.createSVGPathSegArcAbs')
3571 @DocsEditable() 3571 @DocsEditable()
3572 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe gArcAbs_Callback_7(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); 3572 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create SVGPathSegArcAbs_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag) ;
3573 3573
3574 @DomName('SVGPathElement.createSVGPathSegArcRel') 3574 @DomName('SVGPathElement.createSVGPathSegArcRel')
3575 @DocsEditable() 3575 @DocsEditable()
3576 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe gArcRel_Callback_7(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); 3576 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create SVGPathSegArcRel_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag) ;
3577 3577
3578 @DomName('SVGPathElement.createSVGPathSegClosePath') 3578 @DomName('SVGPathElement.createSVGPathSegClosePath')
3579 @DocsEditable() 3579 @DocsEditable()
3580 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.cre ateSVGPathSegClosePath_Callback_0(this); 3580 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins tance.createSVGPathSegClosePath_Callback_0_(this);
3581 3581
3582 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') 3582 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
3583 @DocsEditable() 3583 @DocsEditable()
3584 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi cAbs_Callback_6(this, x, y, x1, y1, x2, y2); 3584 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu rvetoCubicAbs_Callback_6_(this, x, y, x1, y1, x2, y2);
3585 3585
3586 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') 3586 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
3587 @DocsEditable() 3587 @DocsEditable()
3588 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi cRel_Callback_6(this, x, y, x1, y1, x2, y2); 3588 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu rvetoCubicRel_Callback_6_(this, x, y, x1, y1, x2, y2);
3589 3589
3590 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') 3590 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
3591 @DocsEditable() 3591 @DocsEditable()
3592 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo othAbs_Callback_4(this, x, y, x2, y2); 3592 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet oCubicSmoothAbs_Callback_4_(this, x, y, x2, y2);
3593 3593
3594 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') 3594 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
3595 @DocsEditable() 3595 @DocsEditable()
3596 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo othRel_Callback_4(this, x, y, x2, y2); 3596 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet oCubicSmoothRel_Callback_4_(this, x, y, x2, y2);
3597 3597
3598 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') 3598 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
3599 @DocsEditable() 3599 @DocsEditable()
3600 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticAbs _Callback_4(this, x, y, x1, y1); 3600 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua draticAbs_Callback_4_(this, x, y, x1, y1);
3601 3601
3602 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') 3602 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
3603 @DocsEditable() 3603 @DocsEditable()
3604 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticRel _Callback_4(this, x, y, x1, y1); 3604 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua draticRel_Callback_4_(this, x, y, x1, y1);
3605 3605
3606 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') 3606 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
3607 @DocsEditable() 3607 @DocsEditable()
3608 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothA bs_Callback_2(this, x, y); 3608 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat icSmoothAbs_Callback_2_(this, x, y);
3609 3609
3610 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') 3610 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
3611 @DocsEditable() 3611 @DocsEditable()
3612 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothR el_Callback_2(this, x, y); 3612 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat icSmoothRel_Callback_2_(this, x, y);
3613 3613
3614 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') 3614 @DomName('SVGPathElement.createSVGPathSegLinetoAbs')
3615 @DocsEditable() 3615 @DocsEditable()
3616 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegLinetoAbs_Callback_2(this, x, y); 3616 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(this, x, y);
3617 3617
3618 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') 3618 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
3619 @DocsEditable() 3619 @DocsEditable()
3620 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalAbs_Callback_1(this, x); 3620 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(t his, x);
3621 3621
3622 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') 3622 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
3623 @DocsEditable() 3623 @DocsEditable()
3624 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalRel_Callback_1(this, x); 3624 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(t his, x);
3625 3625
3626 @DomName('SVGPathElement.createSVGPathSegLinetoRel') 3626 @DomName('SVGPathElement.createSVGPathSegLinetoRel')
3627 @DocsEditable() 3627 @DocsEditable()
3628 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegLinetoRel_Callback_2(this, x, y); 3628 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegLinetoRel_Callback_2_(this, x, y);
3629 3629
3630 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') 3630 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
3631 @DocsEditable() 3631 @DocsEditable()
3632 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl inkSVGPathElement.createSVGPathSegLinetoVerticalAbs_Callback_1(this, y); 3632 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(this, y );
3633 3633
3634 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') 3634 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
3635 @DocsEditable() 3635 @DocsEditable()
3636 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl inkSVGPathElement.createSVGPathSegLinetoVerticalRel_Callback_1(this, y); 3636 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(this, y );
3637 3637
3638 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') 3638 @DomName('SVGPathElement.createSVGPathSegMovetoAbs')
3639 @DocsEditable() 3639 @DocsEditable()
3640 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegMovetoAbs_Callback_2(this, x, y); 3640 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(this, x, y);
3641 3641
3642 @DomName('SVGPathElement.createSVGPathSegMovetoRel') 3642 @DomName('SVGPathElement.createSVGPathSegMovetoRel')
3643 @DocsEditable() 3643 @DocsEditable()
3644 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegMovetoRel_Callback_2(this, x, y); 3644 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegMovetoRel_Callback_2_(this, x, y);
3645 3645
3646 @DomName('SVGPathElement.getPathSegAtLength') 3646 @DomName('SVGPathElement.getPathSegAtLength')
3647 @DocsEditable() 3647 @DocsEditable()
3648 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.getPathSegA tLength_Callback_1(this, distance); 3648 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge tPathSegAtLength_Callback_1_(this, distance);
3649 3649
3650 @DomName('SVGPathElement.getPointAtLength') 3650 @DomName('SVGPathElement.getPointAtLength')
3651 @DocsEditable() 3651 @DocsEditable()
3652 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.getPointAtL ength_Callback_1(this, distance); 3652 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge tPointAtLength_Callback_1_(this, distance);
3653 3653
3654 @DomName('SVGPathElement.getTotalLength') 3654 @DomName('SVGPathElement.getTotalLength')
3655 @DocsEditable() 3655 @DocsEditable()
3656 double getTotalLength() => _blink.BlinkSVGPathElement.getTotalLength_Callback_ 0(this); 3656 double getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_ Callback_0_(this);
3657 3657
3658 } 3658 }
3659 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3659 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3660 // for details. All rights reserved. Use of this source code is governed by a 3660 // for details. All rights reserved. Use of this source code is governed by a
3661 // BSD-style license that can be found in the LICENSE file. 3661 // BSD-style license that can be found in the LICENSE file.
3662 3662
3663 // WARNING: Do not edit - generated code. 3663 // WARNING: Do not edit - generated code.
3664 3664
3665 3665
3666 @DocsEditable() 3666 @DocsEditable()
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
3745 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL') 3745 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL')
3746 @DocsEditable() 3746 @DocsEditable()
3747 static const int PATHSEG_MOVETO_REL = 3; 3747 static const int PATHSEG_MOVETO_REL = 3;
3748 3748
3749 @DomName('SVGPathSeg.PATHSEG_UNKNOWN') 3749 @DomName('SVGPathSeg.PATHSEG_UNKNOWN')
3750 @DocsEditable() 3750 @DocsEditable()
3751 static const int PATHSEG_UNKNOWN = 0; 3751 static const int PATHSEG_UNKNOWN = 0;
3752 3752
3753 @DomName('SVGPathSeg.pathSegType') 3753 @DomName('SVGPathSeg.pathSegType')
3754 @DocsEditable() 3754 @DocsEditable()
3755 int get pathSegType => _blink.BlinkSVGPathSeg.pathSegType_Getter(this); 3755 int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(thi s);
3756 3756
3757 @DomName('SVGPathSeg.pathSegTypeAsLetter') 3757 @DomName('SVGPathSeg.pathSegTypeAsLetter')
3758 @DocsEditable() 3758 @DocsEditable()
3759 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.pathSegTypeAsLetter_G etter(this); 3759 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeA sLetter_Getter_(this);
3760 3760
3761 } 3761 }
3762 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3762 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3763 // for details. All rights reserved. Use of this source code is governed by a 3763 // for details. All rights reserved. Use of this source code is governed by a
3764 // BSD-style license that can be found in the LICENSE file. 3764 // BSD-style license that can be found in the LICENSE file.
3765 3765
3766 // WARNING: Do not edit - generated code. 3766 // WARNING: Do not edit - generated code.
3767 3767
3768 3768
3769 @DocsEditable() 3769 @DocsEditable()
3770 @DomName('SVGPathSegArcAbs') 3770 @DomName('SVGPathSegArcAbs')
3771 @Unstable() 3771 @Unstable()
3772 class PathSegArcAbs extends PathSeg { 3772 class PathSegArcAbs extends PathSeg {
3773 // To suppress missing implicit constructor warnings. 3773 // To suppress missing implicit constructor warnings.
3774 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } 3774 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); }
3775 3775
3776 @DomName('SVGPathSegArcAbs.angle') 3776 @DomName('SVGPathSegArcAbs.angle')
3777 @DocsEditable() 3777 @DocsEditable()
3778 num get angle => _blink.BlinkSVGPathSegArcAbs.angle_Getter(this); 3778 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(this);
3779 3779
3780 @DomName('SVGPathSegArcAbs.angle') 3780 @DomName('SVGPathSegArcAbs.angle')
3781 @DocsEditable() 3781 @DocsEditable()
3782 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.angle_Setter(this, v alue); 3782 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette r_(this, value);
3783 3783
3784 @DomName('SVGPathSegArcAbs.largeArcFlag') 3784 @DomName('SVGPathSegArcAbs.largeArcFlag')
3785 @DocsEditable() 3785 @DocsEditable()
3786 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.largeArcFlag_Getter(this ); 3786 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge tter_(this);
3787 3787
3788 @DomName('SVGPathSegArcAbs.largeArcFlag') 3788 @DomName('SVGPathSegArcAbs.largeArcFlag')
3789 @DocsEditable() 3789 @DocsEditable()
3790 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.largeArcFlag _Setter(this, value); 3790 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.lar geArcFlag_Setter_(this, value);
3791 3791
3792 @DomName('SVGPathSegArcAbs.r1') 3792 @DomName('SVGPathSegArcAbs.r1')
3793 @DocsEditable() 3793 @DocsEditable()
3794 num get r1 => _blink.BlinkSVGPathSegArcAbs.r1_Getter(this); 3794 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(this);
3795 3795
3796 @DomName('SVGPathSegArcAbs.r1') 3796 @DomName('SVGPathSegArcAbs.r1')
3797 @DocsEditable() 3797 @DocsEditable()
3798 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.r1_Setter(this, value); 3798 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(thi s, value);
3799 3799
3800 @DomName('SVGPathSegArcAbs.r2') 3800 @DomName('SVGPathSegArcAbs.r2')
3801 @DocsEditable() 3801 @DocsEditable()
3802 num get r2 => _blink.BlinkSVGPathSegArcAbs.r2_Getter(this); 3802 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(this);
3803 3803
3804 @DomName('SVGPathSegArcAbs.r2') 3804 @DomName('SVGPathSegArcAbs.r2')
3805 @DocsEditable() 3805 @DocsEditable()
3806 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.r2_Setter(this, value); 3806 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(thi s, value);
3807 3807
3808 @DomName('SVGPathSegArcAbs.sweepFlag') 3808 @DomName('SVGPathSegArcAbs.sweepFlag')
3809 @DocsEditable() 3809 @DocsEditable()
3810 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Getter(this); 3810 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_( this);
3811 3811
3812 @DomName('SVGPathSegArcAbs.sweepFlag') 3812 @DomName('SVGPathSegArcAbs.sweepFlag')
3813 @DocsEditable() 3813 @DocsEditable()
3814 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Sette r(this, value); 3814 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepF lag_Setter_(this, value);
3815 3815
3816 @DomName('SVGPathSegArcAbs.x') 3816 @DomName('SVGPathSegArcAbs.x')
3817 @DocsEditable() 3817 @DocsEditable()
3818 num get x => _blink.BlinkSVGPathSegArcAbs.x_Getter(this); 3818 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(this);
3819 3819
3820 @DomName('SVGPathSegArcAbs.x') 3820 @DomName('SVGPathSegArcAbs.x')
3821 @DocsEditable() 3821 @DocsEditable()
3822 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.x_Setter(this, value); 3822 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(this, value);
3823 3823
3824 @DomName('SVGPathSegArcAbs.y') 3824 @DomName('SVGPathSegArcAbs.y')
3825 @DocsEditable() 3825 @DocsEditable()
3826 num get y => _blink.BlinkSVGPathSegArcAbs.y_Getter(this); 3826 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(this);
3827 3827
3828 @DomName('SVGPathSegArcAbs.y') 3828 @DomName('SVGPathSegArcAbs.y')
3829 @DocsEditable() 3829 @DocsEditable()
3830 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.y_Setter(this, value); 3830 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(this, value);
3831 3831
3832 } 3832 }
3833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3834 // for details. All rights reserved. Use of this source code is governed by a 3834 // for details. All rights reserved. Use of this source code is governed by a
3835 // BSD-style license that can be found in the LICENSE file. 3835 // BSD-style license that can be found in the LICENSE file.
3836 3836
3837 // WARNING: Do not edit - generated code. 3837 // WARNING: Do not edit - generated code.
3838 3838
3839 3839
3840 @DocsEditable() 3840 @DocsEditable()
3841 @DomName('SVGPathSegArcRel') 3841 @DomName('SVGPathSegArcRel')
3842 @Unstable() 3842 @Unstable()
3843 class PathSegArcRel extends PathSeg { 3843 class PathSegArcRel extends PathSeg {
3844 // To suppress missing implicit constructor warnings. 3844 // To suppress missing implicit constructor warnings.
3845 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } 3845 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); }
3846 3846
3847 @DomName('SVGPathSegArcRel.angle') 3847 @DomName('SVGPathSegArcRel.angle')
3848 @DocsEditable() 3848 @DocsEditable()
3849 num get angle => _blink.BlinkSVGPathSegArcRel.angle_Getter(this); 3849 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(this);
3850 3850
3851 @DomName('SVGPathSegArcRel.angle') 3851 @DomName('SVGPathSegArcRel.angle')
3852 @DocsEditable() 3852 @DocsEditable()
3853 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.angle_Setter(this, v alue); 3853 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette r_(this, value);
3854 3854
3855 @DomName('SVGPathSegArcRel.largeArcFlag') 3855 @DomName('SVGPathSegArcRel.largeArcFlag')
3856 @DocsEditable() 3856 @DocsEditable()
3857 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.largeArcFlag_Getter(this ); 3857 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge tter_(this);
3858 3858
3859 @DomName('SVGPathSegArcRel.largeArcFlag') 3859 @DomName('SVGPathSegArcRel.largeArcFlag')
3860 @DocsEditable() 3860 @DocsEditable()
3861 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.largeArcFlag _Setter(this, value); 3861 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.lar geArcFlag_Setter_(this, value);
3862 3862
3863 @DomName('SVGPathSegArcRel.r1') 3863 @DomName('SVGPathSegArcRel.r1')
3864 @DocsEditable() 3864 @DocsEditable()
3865 num get r1 => _blink.BlinkSVGPathSegArcRel.r1_Getter(this); 3865 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(this);
3866 3866
3867 @DomName('SVGPathSegArcRel.r1') 3867 @DomName('SVGPathSegArcRel.r1')
3868 @DocsEditable() 3868 @DocsEditable()
3869 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.r1_Setter(this, value); 3869 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(thi s, value);
3870 3870
3871 @DomName('SVGPathSegArcRel.r2') 3871 @DomName('SVGPathSegArcRel.r2')
3872 @DocsEditable() 3872 @DocsEditable()
3873 num get r2 => _blink.BlinkSVGPathSegArcRel.r2_Getter(this); 3873 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(this);
3874 3874
3875 @DomName('SVGPathSegArcRel.r2') 3875 @DomName('SVGPathSegArcRel.r2')
3876 @DocsEditable() 3876 @DocsEditable()
3877 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.r2_Setter(this, value); 3877 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(thi s, value);
3878 3878
3879 @DomName('SVGPathSegArcRel.sweepFlag') 3879 @DomName('SVGPathSegArcRel.sweepFlag')
3880 @DocsEditable() 3880 @DocsEditable()
3881 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.sweepFlag_Getter(this); 3881 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_( this);
3882 3882
3883 @DomName('SVGPathSegArcRel.sweepFlag') 3883 @DomName('SVGPathSegArcRel.sweepFlag')
3884 @DocsEditable() 3884 @DocsEditable()
3885 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.sweepFlag_Sette r(this, value); 3885 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepF lag_Setter_(this, value);
3886 3886
3887 @DomName('SVGPathSegArcRel.x') 3887 @DomName('SVGPathSegArcRel.x')
3888 @DocsEditable() 3888 @DocsEditable()
3889 num get x => _blink.BlinkSVGPathSegArcRel.x_Getter(this); 3889 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(this);
3890 3890
3891 @DomName('SVGPathSegArcRel.x') 3891 @DomName('SVGPathSegArcRel.x')
3892 @DocsEditable() 3892 @DocsEditable()
3893 void set x(num value) => _blink.BlinkSVGPathSegArcRel.x_Setter(this, value); 3893 void set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(this, value);
3894 3894
3895 @DomName('SVGPathSegArcRel.y') 3895 @DomName('SVGPathSegArcRel.y')
3896 @DocsEditable() 3896 @DocsEditable()
3897 num get y => _blink.BlinkSVGPathSegArcRel.y_Getter(this); 3897 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(this);
3898 3898
3899 @DomName('SVGPathSegArcRel.y') 3899 @DomName('SVGPathSegArcRel.y')
3900 @DocsEditable() 3900 @DocsEditable()
3901 void set y(num value) => _blink.BlinkSVGPathSegArcRel.y_Setter(this, value); 3901 void set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(this, value);
3902 3902
3903 } 3903 }
3904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3905 // for details. All rights reserved. Use of this source code is governed by a 3905 // for details. All rights reserved. Use of this source code is governed by a
3906 // BSD-style license that can be found in the LICENSE file. 3906 // BSD-style license that can be found in the LICENSE file.
3907 3907
3908 // WARNING: Do not edit - generated code. 3908 // WARNING: Do not edit - generated code.
3909 3909
3910 3910
3911 @DocsEditable() 3911 @DocsEditable()
(...skipping 13 matching lines...) Expand all
3925 3925
3926 @DocsEditable() 3926 @DocsEditable()
3927 @DomName('SVGPathSegCurvetoCubicAbs') 3927 @DomName('SVGPathSegCurvetoCubicAbs')
3928 @Unstable() 3928 @Unstable()
3929 class PathSegCurvetoCubicAbs extends PathSeg { 3929 class PathSegCurvetoCubicAbs extends PathSeg {
3930 // To suppress missing implicit constructor warnings. 3930 // To suppress missing implicit constructor warnings.
3931 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); } 3931 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); }
3932 3932
3933 @DomName('SVGPathSegCurvetoCubicAbs.x') 3933 @DomName('SVGPathSegCurvetoCubicAbs.x')
3934 @DocsEditable() 3934 @DocsEditable()
3935 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Getter(this); 3935 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(this);
3936 3936
3937 @DomName('SVGPathSegCurvetoCubicAbs.x') 3937 @DomName('SVGPathSegCurvetoCubicAbs.x')
3938 @DocsEditable() 3938 @DocsEditable()
3939 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Setter(this, value); 3939 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett er_(this, value);
3940 3940
3941 @DomName('SVGPathSegCurvetoCubicAbs.x1') 3941 @DomName('SVGPathSegCurvetoCubicAbs.x1')
3942 @DocsEditable() 3942 @DocsEditable()
3943 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Getter(this); 3943 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(this);
3944 3944
3945 @DomName('SVGPathSegCurvetoCubicAbs.x1') 3945 @DomName('SVGPathSegCurvetoCubicAbs.x1')
3946 @DocsEditable() 3946 @DocsEditable()
3947 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Setter(this , value); 3947 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Se tter_(this, value);
3948 3948
3949 @DomName('SVGPathSegCurvetoCubicAbs.x2') 3949 @DomName('SVGPathSegCurvetoCubicAbs.x2')
3950 @DocsEditable() 3950 @DocsEditable()
3951 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Getter(this); 3951 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(this);
3952 3952
3953 @DomName('SVGPathSegCurvetoCubicAbs.x2') 3953 @DomName('SVGPathSegCurvetoCubicAbs.x2')
3954 @DocsEditable() 3954 @DocsEditable()
3955 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Setter(this , value); 3955 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Se tter_(this, value);
3956 3956
3957 @DomName('SVGPathSegCurvetoCubicAbs.y') 3957 @DomName('SVGPathSegCurvetoCubicAbs.y')
3958 @DocsEditable() 3958 @DocsEditable()
3959 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Getter(this); 3959 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(this);
3960 3960
3961 @DomName('SVGPathSegCurvetoCubicAbs.y') 3961 @DomName('SVGPathSegCurvetoCubicAbs.y')
3962 @DocsEditable() 3962 @DocsEditable()
3963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Setter(this, value); 3963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Sett er_(this, value);
3964 3964
3965 @DomName('SVGPathSegCurvetoCubicAbs.y1') 3965 @DomName('SVGPathSegCurvetoCubicAbs.y1')
3966 @DocsEditable() 3966 @DocsEditable()
3967 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Getter(this); 3967 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(this);
3968 3968
3969 @DomName('SVGPathSegCurvetoCubicAbs.y1') 3969 @DomName('SVGPathSegCurvetoCubicAbs.y1')
3970 @DocsEditable() 3970 @DocsEditable()
3971 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Setter(this , value); 3971 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Se tter_(this, value);
3972 3972
3973 @DomName('SVGPathSegCurvetoCubicAbs.y2') 3973 @DomName('SVGPathSegCurvetoCubicAbs.y2')
3974 @DocsEditable() 3974 @DocsEditable()
3975 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Getter(this); 3975 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(this);
3976 3976
3977 @DomName('SVGPathSegCurvetoCubicAbs.y2') 3977 @DomName('SVGPathSegCurvetoCubicAbs.y2')
3978 @DocsEditable() 3978 @DocsEditable()
3979 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Setter(this , value); 3979 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Se tter_(this, value);
3980 3980
3981 } 3981 }
3982 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3982 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3983 // for details. All rights reserved. Use of this source code is governed by a 3983 // for details. All rights reserved. Use of this source code is governed by a
3984 // BSD-style license that can be found in the LICENSE file. 3984 // BSD-style license that can be found in the LICENSE file.
3985 3985
3986 // WARNING: Do not edit - generated code. 3986 // WARNING: Do not edit - generated code.
3987 3987
3988 3988
3989 @DocsEditable() 3989 @DocsEditable()
3990 @DomName('SVGPathSegCurvetoCubicRel') 3990 @DomName('SVGPathSegCurvetoCubicRel')
3991 @Unstable() 3991 @Unstable()
3992 class PathSegCurvetoCubicRel extends PathSeg { 3992 class PathSegCurvetoCubicRel extends PathSeg {
3993 // To suppress missing implicit constructor warnings. 3993 // To suppress missing implicit constructor warnings.
3994 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); } 3994 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); }
3995 3995
3996 @DomName('SVGPathSegCurvetoCubicRel.x') 3996 @DomName('SVGPathSegCurvetoCubicRel.x')
3997 @DocsEditable() 3997 @DocsEditable()
3998 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Getter(this); 3998 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(this);
3999 3999
4000 @DomName('SVGPathSegCurvetoCubicRel.x') 4000 @DomName('SVGPathSegCurvetoCubicRel.x')
4001 @DocsEditable() 4001 @DocsEditable()
4002 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Setter(this, value); 4002 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett er_(this, value);
4003 4003
4004 @DomName('SVGPathSegCurvetoCubicRel.x1') 4004 @DomName('SVGPathSegCurvetoCubicRel.x1')
4005 @DocsEditable() 4005 @DocsEditable()
4006 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Getter(this); 4006 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(this);
4007 4007
4008 @DomName('SVGPathSegCurvetoCubicRel.x1') 4008 @DomName('SVGPathSegCurvetoCubicRel.x1')
4009 @DocsEditable() 4009 @DocsEditable()
4010 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Setter(this , value); 4010 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Se tter_(this, value);
4011 4011
4012 @DomName('SVGPathSegCurvetoCubicRel.x2') 4012 @DomName('SVGPathSegCurvetoCubicRel.x2')
4013 @DocsEditable() 4013 @DocsEditable()
4014 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Getter(this); 4014 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(this);
4015 4015
4016 @DomName('SVGPathSegCurvetoCubicRel.x2') 4016 @DomName('SVGPathSegCurvetoCubicRel.x2')
4017 @DocsEditable() 4017 @DocsEditable()
4018 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Setter(this , value); 4018 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Se tter_(this, value);
4019 4019
4020 @DomName('SVGPathSegCurvetoCubicRel.y') 4020 @DomName('SVGPathSegCurvetoCubicRel.y')
4021 @DocsEditable() 4021 @DocsEditable()
4022 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Getter(this); 4022 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(this);
4023 4023
4024 @DomName('SVGPathSegCurvetoCubicRel.y') 4024 @DomName('SVGPathSegCurvetoCubicRel.y')
4025 @DocsEditable() 4025 @DocsEditable()
4026 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Setter(this, value); 4026 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Sett er_(this, value);
4027 4027
4028 @DomName('SVGPathSegCurvetoCubicRel.y1') 4028 @DomName('SVGPathSegCurvetoCubicRel.y1')
4029 @DocsEditable() 4029 @DocsEditable()
4030 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Getter(this); 4030 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(this);
4031 4031
4032 @DomName('SVGPathSegCurvetoCubicRel.y1') 4032 @DomName('SVGPathSegCurvetoCubicRel.y1')
4033 @DocsEditable() 4033 @DocsEditable()
4034 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Setter(this , value); 4034 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Se tter_(this, value);
4035 4035
4036 @DomName('SVGPathSegCurvetoCubicRel.y2') 4036 @DomName('SVGPathSegCurvetoCubicRel.y2')
4037 @DocsEditable() 4037 @DocsEditable()
4038 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Getter(this); 4038 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(this);
4039 4039
4040 @DomName('SVGPathSegCurvetoCubicRel.y2') 4040 @DomName('SVGPathSegCurvetoCubicRel.y2')
4041 @DocsEditable() 4041 @DocsEditable()
4042 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Setter(this , value); 4042 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Se tter_(this, value);
4043 4043
4044 } 4044 }
4045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4046 // for details. All rights reserved. Use of this source code is governed by a 4046 // for details. All rights reserved. Use of this source code is governed by a
4047 // BSD-style license that can be found in the LICENSE file. 4047 // BSD-style license that can be found in the LICENSE file.
4048 4048
4049 // WARNING: Do not edit - generated code. 4049 // WARNING: Do not edit - generated code.
4050 4050
4051 4051
4052 @DocsEditable() 4052 @DocsEditable()
4053 @DomName('SVGPathSegCurvetoCubicSmoothAbs') 4053 @DomName('SVGPathSegCurvetoCubicSmoothAbs')
4054 @Unstable() 4054 @Unstable()
4055 class PathSegCurvetoCubicSmoothAbs extends PathSeg { 4055 class PathSegCurvetoCubicSmoothAbs extends PathSeg {
4056 // To suppress missing implicit constructor warnings. 4056 // To suppress missing implicit constructor warnings.
4057 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); } 4057 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); }
4058 4058
4059 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4059 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4060 @DocsEditable() 4060 @DocsEditable()
4061 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Getter(this); 4061 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(th is);
4062 4062
4063 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4063 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4064 @DocsEditable() 4064 @DocsEditable()
4065 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Setter( this, value); 4065 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance. x_Setter_(this, value);
4066 4066
4067 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 4067 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
4068 @DocsEditable() 4068 @DocsEditable()
4069 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Getter(this); 4069 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_( this);
4070 4070
4071 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 4071 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
4072 @DocsEditable() 4072 @DocsEditable()
4073 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Sette r(this, value); 4073 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance .x2_Setter_(this, value);
4074 4074
4075 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 4075 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
4076 @DocsEditable() 4076 @DocsEditable()
4077 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Getter(this); 4077 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(th is);
4078 4078
4079 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 4079 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
4080 @DocsEditable() 4080 @DocsEditable()
4081 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Setter( this, value); 4081 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance. y_Setter_(this, value);
4082 4082
4083 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 4083 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
4084 @DocsEditable() 4084 @DocsEditable()
4085 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Getter(this); 4085 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_( this);
4086 4086
4087 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 4087 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
4088 @DocsEditable() 4088 @DocsEditable()
4089 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Sette r(this, value); 4089 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance .y2_Setter_(this, value);
4090 4090
4091 } 4091 }
4092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4093 // for details. All rights reserved. Use of this source code is governed by a 4093 // for details. All rights reserved. Use of this source code is governed by a
4094 // BSD-style license that can be found in the LICENSE file. 4094 // BSD-style license that can be found in the LICENSE file.
4095 4095
4096 // WARNING: Do not edit - generated code. 4096 // WARNING: Do not edit - generated code.
4097 4097
4098 4098
4099 @DocsEditable() 4099 @DocsEditable()
4100 @DomName('SVGPathSegCurvetoCubicSmoothRel') 4100 @DomName('SVGPathSegCurvetoCubicSmoothRel')
4101 @Unstable() 4101 @Unstable()
4102 class PathSegCurvetoCubicSmoothRel extends PathSeg { 4102 class PathSegCurvetoCubicSmoothRel extends PathSeg {
4103 // To suppress missing implicit constructor warnings. 4103 // To suppress missing implicit constructor warnings.
4104 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); } 4104 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); }
4105 4105
4106 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4106 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4107 @DocsEditable() 4107 @DocsEditable()
4108 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Getter(this); 4108 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(th is);
4109 4109
4110 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4110 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4111 @DocsEditable() 4111 @DocsEditable()
4112 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Setter( this, value); 4112 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance. x_Setter_(this, value);
4113 4113
4114 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 4114 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
4115 @DocsEditable() 4115 @DocsEditable()
4116 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Getter(this); 4116 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_( this);
4117 4117
4118 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 4118 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
4119 @DocsEditable() 4119 @DocsEditable()
4120 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Sette r(this, value); 4120 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance .x2_Setter_(this, value);
4121 4121
4122 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 4122 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
4123 @DocsEditable() 4123 @DocsEditable()
4124 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Getter(this); 4124 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(th is);
4125 4125
4126 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 4126 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
4127 @DocsEditable() 4127 @DocsEditable()
4128 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Setter( this, value); 4128 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance. y_Setter_(this, value);
4129 4129
4130 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 4130 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
4131 @DocsEditable() 4131 @DocsEditable()
4132 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Getter(this); 4132 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_( this);
4133 4133
4134 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 4134 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
4135 @DocsEditable() 4135 @DocsEditable()
4136 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Sette r(this, value); 4136 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance .y2_Setter_(this, value);
4137 4137
4138 } 4138 }
4139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4140 // for details. All rights reserved. Use of this source code is governed by a 4140 // for details. All rights reserved. Use of this source code is governed by a
4141 // BSD-style license that can be found in the LICENSE file. 4141 // BSD-style license that can be found in the LICENSE file.
4142 4142
4143 // WARNING: Do not edit - generated code. 4143 // WARNING: Do not edit - generated code.
4144 4144
4145 4145
4146 @DocsEditable() 4146 @DocsEditable()
4147 @DomName('SVGPathSegCurvetoQuadraticAbs') 4147 @DomName('SVGPathSegCurvetoQuadraticAbs')
4148 @Unstable() 4148 @Unstable()
4149 class PathSegCurvetoQuadraticAbs extends PathSeg { 4149 class PathSegCurvetoQuadraticAbs extends PathSeg {
4150 // To suppress missing implicit constructor warnings. 4150 // To suppress missing implicit constructor warnings.
4151 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); } 4151 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); }
4152 4152
4153 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4153 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4154 @DocsEditable() 4154 @DocsEditable()
4155 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Getter(this); 4155 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(this );
4156 4156
4157 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4157 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4158 @DocsEditable() 4158 @DocsEditable()
4159 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Setter(th is, value); 4159 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_ Setter_(this, value);
4160 4160
4161 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 4161 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
4162 @DocsEditable() 4162 @DocsEditable()
4163 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Getter(this); 4163 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(th is);
4164 4164
4165 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 4165 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
4166 @DocsEditable() 4166 @DocsEditable()
4167 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Setter( this, value); 4167 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x 1_Setter_(this, value);
4168 4168
4169 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 4169 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
4170 @DocsEditable() 4170 @DocsEditable()
4171 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Getter(this); 4171 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(this );
4172 4172
4173 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 4173 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
4174 @DocsEditable() 4174 @DocsEditable()
4175 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Setter(th is, value); 4175 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_ Setter_(this, value);
4176 4176
4177 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 4177 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
4178 @DocsEditable() 4178 @DocsEditable()
4179 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Getter(this); 4179 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(th is);
4180 4180
4181 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 4181 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
4182 @DocsEditable() 4182 @DocsEditable()
4183 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Setter( this, value); 4183 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y 1_Setter_(this, value);
4184 4184
4185 } 4185 }
4186 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4186 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4187 // for details. All rights reserved. Use of this source code is governed by a 4187 // for details. All rights reserved. Use of this source code is governed by a
4188 // BSD-style license that can be found in the LICENSE file. 4188 // BSD-style license that can be found in the LICENSE file.
4189 4189
4190 // WARNING: Do not edit - generated code. 4190 // WARNING: Do not edit - generated code.
4191 4191
4192 4192
4193 @DocsEditable() 4193 @DocsEditable()
4194 @DomName('SVGPathSegCurvetoQuadraticRel') 4194 @DomName('SVGPathSegCurvetoQuadraticRel')
4195 @Unstable() 4195 @Unstable()
4196 class PathSegCurvetoQuadraticRel extends PathSeg { 4196 class PathSegCurvetoQuadraticRel extends PathSeg {
4197 // To suppress missing implicit constructor warnings. 4197 // To suppress missing implicit constructor warnings.
4198 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); } 4198 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); }
4199 4199
4200 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4200 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4201 @DocsEditable() 4201 @DocsEditable()
4202 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Getter(this); 4202 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(this );
4203 4203
4204 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4204 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4205 @DocsEditable() 4205 @DocsEditable()
4206 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Setter(th is, value); 4206 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_ Setter_(this, value);
4207 4207
4208 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 4208 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
4209 @DocsEditable() 4209 @DocsEditable()
4210 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Getter(this); 4210 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(th is);
4211 4211
4212 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 4212 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
4213 @DocsEditable() 4213 @DocsEditable()
4214 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Setter( this, value); 4214 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x 1_Setter_(this, value);
4215 4215
4216 @DomName('SVGPathSegCurvetoQuadraticRel.y') 4216 @DomName('SVGPathSegCurvetoQuadraticRel.y')
4217 @DocsEditable() 4217 @DocsEditable()
4218 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Getter(this); 4218 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(this );
4219 4219
4220 @DomName('SVGPathSegCurvetoQuadraticRel.y') 4220 @DomName('SVGPathSegCurvetoQuadraticRel.y')
4221 @DocsEditable() 4221 @DocsEditable()
4222 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Setter(th is, value); 4222 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_ Setter_(this, value);
4223 4223
4224 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 4224 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
4225 @DocsEditable() 4225 @DocsEditable()
4226 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Getter(this); 4226 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(th is);
4227 4227
4228 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 4228 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
4229 @DocsEditable() 4229 @DocsEditable()
4230 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Setter( this, value); 4230 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y 1_Setter_(this, value);
4231 4231
4232 } 4232 }
4233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4234 // for details. All rights reserved. Use of this source code is governed by a 4234 // for details. All rights reserved. Use of this source code is governed by a
4235 // BSD-style license that can be found in the LICENSE file. 4235 // BSD-style license that can be found in the LICENSE file.
4236 4236
4237 // WARNING: Do not edit - generated code. 4237 // WARNING: Do not edit - generated code.
4238 4238
4239 4239
4240 @DocsEditable() 4240 @DocsEditable()
4241 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') 4241 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs')
4242 @Unstable() 4242 @Unstable()
4243 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { 4243 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
4244 // To suppress missing implicit constructor warnings. 4244 // To suppress missing implicit constructor warnings.
4245 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); } 4245 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); }
4246 4246
4247 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4247 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4248 @DocsEditable() 4248 @DocsEditable()
4249 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Getter(this); 4249 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter _(this);
4250 4250
4251 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4251 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4252 @DocsEditable() 4252 @DocsEditable()
4253 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Set ter(this, value); 4253 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta nce.x_Setter_(this, value);
4254 4254
4255 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4255 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4256 @DocsEditable() 4256 @DocsEditable()
4257 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Getter(this); 4257 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter _(this);
4258 4258
4259 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4259 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4260 @DocsEditable() 4260 @DocsEditable()
4261 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Set ter(this, value); 4261 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta nce.y_Setter_(this, value);
4262 4262
4263 } 4263 }
4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4265 // for details. All rights reserved. Use of this source code is governed by a 4265 // for details. All rights reserved. Use of this source code is governed by a
4266 // BSD-style license that can be found in the LICENSE file. 4266 // BSD-style license that can be found in the LICENSE file.
4267 4267
4268 // WARNING: Do not edit - generated code. 4268 // WARNING: Do not edit - generated code.
4269 4269
4270 4270
4271 @DocsEditable() 4271 @DocsEditable()
4272 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') 4272 @DomName('SVGPathSegCurvetoQuadraticSmoothRel')
4273 @Unstable() 4273 @Unstable()
4274 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { 4274 class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
4275 // To suppress missing implicit constructor warnings. 4275 // To suppress missing implicit constructor warnings.
4276 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); } 4276 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); }
4277 4277
4278 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4278 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4279 @DocsEditable() 4279 @DocsEditable()
4280 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Getter(this); 4280 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter _(this);
4281 4281
4282 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4282 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4283 @DocsEditable() 4283 @DocsEditable()
4284 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Set ter(this, value); 4284 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta nce.x_Setter_(this, value);
4285 4285
4286 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4286 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4287 @DocsEditable() 4287 @DocsEditable()
4288 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Getter(this); 4288 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter _(this);
4289 4289
4290 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4290 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4291 @DocsEditable() 4291 @DocsEditable()
4292 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Set ter(this, value); 4292 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta nce.y_Setter_(this, value);
4293 4293
4294 } 4294 }
4295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4296 // for details. All rights reserved. Use of this source code is governed by a 4296 // for details. All rights reserved. Use of this source code is governed by a
4297 // BSD-style license that can be found in the LICENSE file. 4297 // BSD-style license that can be found in the LICENSE file.
4298 4298
4299 // WARNING: Do not edit - generated code. 4299 // WARNING: Do not edit - generated code.
4300 4300
4301 4301
4302 @DocsEditable() 4302 @DocsEditable()
4303 @DomName('SVGPathSegLinetoAbs') 4303 @DomName('SVGPathSegLinetoAbs')
4304 @Unstable() 4304 @Unstable()
4305 class PathSegLinetoAbs extends PathSeg { 4305 class PathSegLinetoAbs extends PathSeg {
4306 // To suppress missing implicit constructor warnings. 4306 // To suppress missing implicit constructor warnings.
4307 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } 4307 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); }
4308 4308
4309 @DomName('SVGPathSegLinetoAbs.x') 4309 @DomName('SVGPathSegLinetoAbs.x')
4310 @DocsEditable() 4310 @DocsEditable()
4311 num get x => _blink.BlinkSVGPathSegLinetoAbs.x_Getter(this); 4311 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(this);
4312 4312
4313 @DomName('SVGPathSegLinetoAbs.x') 4313 @DomName('SVGPathSegLinetoAbs.x')
4314 @DocsEditable() 4314 @DocsEditable()
4315 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.x_Setter(this, value) ; 4315 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(th is, value);
4316 4316
4317 @DomName('SVGPathSegLinetoAbs.y') 4317 @DomName('SVGPathSegLinetoAbs.y')
4318 @DocsEditable() 4318 @DocsEditable()
4319 num get y => _blink.BlinkSVGPathSegLinetoAbs.y_Getter(this); 4319 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(this);
4320 4320
4321 @DomName('SVGPathSegLinetoAbs.y') 4321 @DomName('SVGPathSegLinetoAbs.y')
4322 @DocsEditable() 4322 @DocsEditable()
4323 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.y_Setter(this, value) ; 4323 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(th is, value);
4324 4324
4325 } 4325 }
4326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4327 // for details. All rights reserved. Use of this source code is governed by a 4327 // for details. All rights reserved. Use of this source code is governed by a
4328 // BSD-style license that can be found in the LICENSE file. 4328 // BSD-style license that can be found in the LICENSE file.
4329 4329
4330 // WARNING: Do not edit - generated code. 4330 // WARNING: Do not edit - generated code.
4331 4331
4332 4332
4333 @DocsEditable() 4333 @DocsEditable()
4334 @DomName('SVGPathSegLinetoHorizontalAbs') 4334 @DomName('SVGPathSegLinetoHorizontalAbs')
4335 @Unstable() 4335 @Unstable()
4336 class PathSegLinetoHorizontalAbs extends PathSeg { 4336 class PathSegLinetoHorizontalAbs extends PathSeg {
4337 // To suppress missing implicit constructor warnings. 4337 // To suppress missing implicit constructor warnings.
4338 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); } 4338 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); }
4339 4339
4340 @DomName('SVGPathSegLinetoHorizontalAbs.x') 4340 @DomName('SVGPathSegLinetoHorizontalAbs.x')
4341 @DocsEditable() 4341 @DocsEditable()
4342 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Getter(this); 4342 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(this );
4343 4343
4344 @DomName('SVGPathSegLinetoHorizontalAbs.x') 4344 @DomName('SVGPathSegLinetoHorizontalAbs.x')
4345 @DocsEditable() 4345 @DocsEditable()
4346 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Setter(th is, value); 4346 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_ Setter_(this, value);
4347 4347
4348 } 4348 }
4349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4350 // for details. All rights reserved. Use of this source code is governed by a 4350 // for details. All rights reserved. Use of this source code is governed by a
4351 // BSD-style license that can be found in the LICENSE file. 4351 // BSD-style license that can be found in the LICENSE file.
4352 4352
4353 // WARNING: Do not edit - generated code. 4353 // WARNING: Do not edit - generated code.
4354 4354
4355 4355
4356 @DocsEditable() 4356 @DocsEditable()
4357 @DomName('SVGPathSegLinetoHorizontalRel') 4357 @DomName('SVGPathSegLinetoHorizontalRel')
4358 @Unstable() 4358 @Unstable()
4359 class PathSegLinetoHorizontalRel extends PathSeg { 4359 class PathSegLinetoHorizontalRel extends PathSeg {
4360 // To suppress missing implicit constructor warnings. 4360 // To suppress missing implicit constructor warnings.
4361 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); } 4361 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); }
4362 4362
4363 @DomName('SVGPathSegLinetoHorizontalRel.x') 4363 @DomName('SVGPathSegLinetoHorizontalRel.x')
4364 @DocsEditable() 4364 @DocsEditable()
4365 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Getter(this); 4365 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(this );
4366 4366
4367 @DomName('SVGPathSegLinetoHorizontalRel.x') 4367 @DomName('SVGPathSegLinetoHorizontalRel.x')
4368 @DocsEditable() 4368 @DocsEditable()
4369 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Setter(th is, value); 4369 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_ Setter_(this, value);
4370 4370
4371 } 4371 }
4372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4373 // for details. All rights reserved. Use of this source code is governed by a 4373 // for details. All rights reserved. Use of this source code is governed by a
4374 // BSD-style license that can be found in the LICENSE file. 4374 // BSD-style license that can be found in the LICENSE file.
4375 4375
4376 // WARNING: Do not edit - generated code. 4376 // WARNING: Do not edit - generated code.
4377 4377
4378 4378
4379 @DocsEditable() 4379 @DocsEditable()
4380 @DomName('SVGPathSegLinetoRel') 4380 @DomName('SVGPathSegLinetoRel')
4381 @Unstable() 4381 @Unstable()
4382 class PathSegLinetoRel extends PathSeg { 4382 class PathSegLinetoRel extends PathSeg {
4383 // To suppress missing implicit constructor warnings. 4383 // To suppress missing implicit constructor warnings.
4384 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } 4384 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); }
4385 4385
4386 @DomName('SVGPathSegLinetoRel.x') 4386 @DomName('SVGPathSegLinetoRel.x')
4387 @DocsEditable() 4387 @DocsEditable()
4388 num get x => _blink.BlinkSVGPathSegLinetoRel.x_Getter(this); 4388 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(this);
4389 4389
4390 @DomName('SVGPathSegLinetoRel.x') 4390 @DomName('SVGPathSegLinetoRel.x')
4391 @DocsEditable() 4391 @DocsEditable()
4392 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.x_Setter(this, value) ; 4392 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(th is, value);
4393 4393
4394 @DomName('SVGPathSegLinetoRel.y') 4394 @DomName('SVGPathSegLinetoRel.y')
4395 @DocsEditable() 4395 @DocsEditable()
4396 num get y => _blink.BlinkSVGPathSegLinetoRel.y_Getter(this); 4396 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(this);
4397 4397
4398 @DomName('SVGPathSegLinetoRel.y') 4398 @DomName('SVGPathSegLinetoRel.y')
4399 @DocsEditable() 4399 @DocsEditable()
4400 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.y_Setter(this, value) ; 4400 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(th is, value);
4401 4401
4402 } 4402 }
4403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4404 // for details. All rights reserved. Use of this source code is governed by a 4404 // for details. All rights reserved. Use of this source code is governed by a
4405 // BSD-style license that can be found in the LICENSE file. 4405 // BSD-style license that can be found in the LICENSE file.
4406 4406
4407 // WARNING: Do not edit - generated code. 4407 // WARNING: Do not edit - generated code.
4408 4408
4409 4409
4410 @DocsEditable() 4410 @DocsEditable()
4411 @DomName('SVGPathSegLinetoVerticalAbs') 4411 @DomName('SVGPathSegLinetoVerticalAbs')
4412 @Unstable() 4412 @Unstable()
4413 class PathSegLinetoVerticalAbs extends PathSeg { 4413 class PathSegLinetoVerticalAbs extends PathSeg {
4414 // To suppress missing implicit constructor warnings. 4414 // To suppress missing implicit constructor warnings.
4415 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); } 4415 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); }
4416 4416
4417 @DomName('SVGPathSegLinetoVerticalAbs.y') 4417 @DomName('SVGPathSegLinetoVerticalAbs.y')
4418 @DocsEditable() 4418 @DocsEditable()
4419 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Getter(this); 4419 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(this);
4420 4420
4421 @DomName('SVGPathSegLinetoVerticalAbs.y') 4421 @DomName('SVGPathSegLinetoVerticalAbs.y')
4422 @DocsEditable() 4422 @DocsEditable()
4423 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Setter(this , value); 4423 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se tter_(this, value);
4424 4424
4425 } 4425 }
4426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4427 // for details. All rights reserved. Use of this source code is governed by a 4427 // for details. All rights reserved. Use of this source code is governed by a
4428 // BSD-style license that can be found in the LICENSE file. 4428 // BSD-style license that can be found in the LICENSE file.
4429 4429
4430 // WARNING: Do not edit - generated code. 4430 // WARNING: Do not edit - generated code.
4431 4431
4432 4432
4433 @DocsEditable() 4433 @DocsEditable()
4434 @DomName('SVGPathSegLinetoVerticalRel') 4434 @DomName('SVGPathSegLinetoVerticalRel')
4435 @Unstable() 4435 @Unstable()
4436 class PathSegLinetoVerticalRel extends PathSeg { 4436 class PathSegLinetoVerticalRel extends PathSeg {
4437 // To suppress missing implicit constructor warnings. 4437 // To suppress missing implicit constructor warnings.
4438 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); } 4438 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); }
4439 4439
4440 @DomName('SVGPathSegLinetoVerticalRel.y') 4440 @DomName('SVGPathSegLinetoVerticalRel.y')
4441 @DocsEditable() 4441 @DocsEditable()
4442 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Getter(this); 4442 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(this);
4443 4443
4444 @DomName('SVGPathSegLinetoVerticalRel.y') 4444 @DomName('SVGPathSegLinetoVerticalRel.y')
4445 @DocsEditable() 4445 @DocsEditable()
4446 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Setter(this , value); 4446 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se tter_(this, value);
4447 4447
4448 } 4448 }
4449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4450 // for details. All rights reserved. Use of this source code is governed by a 4450 // for details. All rights reserved. Use of this source code is governed by a
4451 // BSD-style license that can be found in the LICENSE file. 4451 // BSD-style license that can be found in the LICENSE file.
4452 4452
4453 // WARNING: Do not edit - generated code. 4453 // WARNING: Do not edit - generated code.
4454 4454
4455 4455
4456 @DocsEditable() 4456 @DocsEditable()
4457 @DomName('SVGPathSegList') 4457 @DomName('SVGPathSegList')
4458 @Unstable() 4458 @Unstable()
4459 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> { 4459 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> {
4460 // To suppress missing implicit constructor warnings. 4460 // To suppress missing implicit constructor warnings.
4461 factory PathSegList._() { throw new UnsupportedError("Not supported"); } 4461 factory PathSegList._() { throw new UnsupportedError("Not supported"); }
4462 4462
4463 @DomName('SVGPathSegList.length') 4463 @DomName('SVGPathSegList.length')
4464 @DocsEditable() 4464 @DocsEditable()
4465 @Experimental() // untriaged 4465 @Experimental() // untriaged
4466 int get length => _blink.BlinkSVGPathSegList.length_Getter(this); 4466 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(this);
4467 4467
4468 @DomName('SVGPathSegList.numberOfItems') 4468 @DomName('SVGPathSegList.numberOfItems')
4469 @DocsEditable() 4469 @DocsEditable()
4470 int get numberOfItems => _blink.BlinkSVGPathSegList.numberOfItems_Getter(this) ; 4470 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get ter_(this);
4471 4471
4472 PathSeg operator[](int index) { 4472 PathSeg operator[](int index) {
4473 if (index < 0 || index >= length) 4473 if (index < 0 || index >= length)
4474 throw new RangeError.range(index, 0, length); 4474 throw new RangeError.range(index, 0, length);
4475 return getItem(index); 4475 return getItem(index);
4476 } 4476 }
4477 4477
4478 void operator[]=(int index, PathSeg value) { 4478 void operator[]=(int index, PathSeg value) {
4479 throw new UnsupportedError("Cannot assign element of immutable List."); 4479 throw new UnsupportedError("Cannot assign element of immutable List.");
4480 } 4480 }
(...skipping 28 matching lines...) Expand all
4509 if (len == 0) throw new StateError("No elements"); 4509 if (len == 0) throw new StateError("No elements");
4510 throw new StateError("More than one element"); 4510 throw new StateError("More than one element");
4511 } 4511 }
4512 4512
4513 PathSeg elementAt(int index) => this[index]; 4513 PathSeg elementAt(int index) => this[index];
4514 // -- end List<PathSeg> mixins. 4514 // -- end List<PathSeg> mixins.
4515 4515
4516 @DomName('SVGPathSegList.__setter__') 4516 @DomName('SVGPathSegList.__setter__')
4517 @DocsEditable() 4517 @DocsEditable()
4518 @Experimental() // untriaged 4518 @Experimental() // untriaged
4519 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.$__set ter___Callback_2(this, index, value); 4519 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan ce.$__setter___Callback_2_(this, index, value);
4520 4520
4521 @DomName('SVGPathSegList.appendItem') 4521 @DomName('SVGPathSegList.appendItem')
4522 @DocsEditable() 4522 @DocsEditable()
4523 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.appendItem_C allback_1(this, newItem); 4523 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app endItem_Callback_1_(this, newItem);
4524 4524
4525 @DomName('SVGPathSegList.clear') 4525 @DomName('SVGPathSegList.clear')
4526 @DocsEditable() 4526 @DocsEditable()
4527 void clear() => _blink.BlinkSVGPathSegList.clear_Callback_0(this); 4527 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(this);
4528 4528
4529 @DomName('SVGPathSegList.getItem') 4529 @DomName('SVGPathSegList.getItem')
4530 @DocsEditable() 4530 @DocsEditable()
4531 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.getItem_Callback_1(th is, index); 4531 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call back_1_(this, index);
4532 4532
4533 @DomName('SVGPathSegList.initialize') 4533 @DomName('SVGPathSegList.initialize')
4534 @DocsEditable() 4534 @DocsEditable()
4535 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.initialize_C allback_1(this, newItem); 4535 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini tialize_Callback_1_(this, newItem);
4536 4536
4537 @DomName('SVGPathSegList.insertItemBefore') 4537 @DomName('SVGPathSegList.insertItemBefore')
4538 @DocsEditable() 4538 @DocsEditable()
4539 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg List.insertItemBefore_Callback_2(this, newItem, index); 4539 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg List.instance.insertItemBefore_Callback_2_(this, newItem, index);
4540 4540
4541 @DomName('SVGPathSegList.removeItem') 4541 @DomName('SVGPathSegList.removeItem')
4542 @DocsEditable() 4542 @DocsEditable()
4543 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.removeItem_Callbac k_1(this, index); 4543 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte m_Callback_1_(this, index);
4544 4544
4545 @DomName('SVGPathSegList.replaceItem') 4545 @DomName('SVGPathSegList.replaceItem')
4546 @DocsEditable() 4546 @DocsEditable()
4547 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList. replaceItem_Callback_2(this, newItem, index); 4547 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList. instance.replaceItem_Callback_2_(this, newItem, index);
4548 4548
4549 } 4549 }
4550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4551 // for details. All rights reserved. Use of this source code is governed by a 4551 // for details. All rights reserved. Use of this source code is governed by a
4552 // BSD-style license that can be found in the LICENSE file. 4552 // BSD-style license that can be found in the LICENSE file.
4553 4553
4554 // WARNING: Do not edit - generated code. 4554 // WARNING: Do not edit - generated code.
4555 4555
4556 4556
4557 @DocsEditable() 4557 @DocsEditable()
4558 @DomName('SVGPathSegMovetoAbs') 4558 @DomName('SVGPathSegMovetoAbs')
4559 @Unstable() 4559 @Unstable()
4560 class PathSegMovetoAbs extends PathSeg { 4560 class PathSegMovetoAbs extends PathSeg {
4561 // To suppress missing implicit constructor warnings. 4561 // To suppress missing implicit constructor warnings.
4562 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } 4562 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); }
4563 4563
4564 @DomName('SVGPathSegMovetoAbs.x') 4564 @DomName('SVGPathSegMovetoAbs.x')
4565 @DocsEditable() 4565 @DocsEditable()
4566 num get x => _blink.BlinkSVGPathSegMovetoAbs.x_Getter(this); 4566 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(this);
4567 4567
4568 @DomName('SVGPathSegMovetoAbs.x') 4568 @DomName('SVGPathSegMovetoAbs.x')
4569 @DocsEditable() 4569 @DocsEditable()
4570 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.x_Setter(this, value) ; 4570 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(th is, value);
4571 4571
4572 @DomName('SVGPathSegMovetoAbs.y') 4572 @DomName('SVGPathSegMovetoAbs.y')
4573 @DocsEditable() 4573 @DocsEditable()
4574 num get y => _blink.BlinkSVGPathSegMovetoAbs.y_Getter(this); 4574 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(this);
4575 4575
4576 @DomName('SVGPathSegMovetoAbs.y') 4576 @DomName('SVGPathSegMovetoAbs.y')
4577 @DocsEditable() 4577 @DocsEditable()
4578 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.y_Setter(this, value) ; 4578 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(th is, value);
4579 4579
4580 } 4580 }
4581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4582 // for details. All rights reserved. Use of this source code is governed by a 4582 // for details. All rights reserved. Use of this source code is governed by a
4583 // BSD-style license that can be found in the LICENSE file. 4583 // BSD-style license that can be found in the LICENSE file.
4584 4584
4585 // WARNING: Do not edit - generated code. 4585 // WARNING: Do not edit - generated code.
4586 4586
4587 4587
4588 @DocsEditable() 4588 @DocsEditable()
4589 @DomName('SVGPathSegMovetoRel') 4589 @DomName('SVGPathSegMovetoRel')
4590 @Unstable() 4590 @Unstable()
4591 class PathSegMovetoRel extends PathSeg { 4591 class PathSegMovetoRel extends PathSeg {
4592 // To suppress missing implicit constructor warnings. 4592 // To suppress missing implicit constructor warnings.
4593 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } 4593 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); }
4594 4594
4595 @DomName('SVGPathSegMovetoRel.x') 4595 @DomName('SVGPathSegMovetoRel.x')
4596 @DocsEditable() 4596 @DocsEditable()
4597 num get x => _blink.BlinkSVGPathSegMovetoRel.x_Getter(this); 4597 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(this);
4598 4598
4599 @DomName('SVGPathSegMovetoRel.x') 4599 @DomName('SVGPathSegMovetoRel.x')
4600 @DocsEditable() 4600 @DocsEditable()
4601 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.x_Setter(this, value) ; 4601 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(th is, value);
4602 4602
4603 @DomName('SVGPathSegMovetoRel.y') 4603 @DomName('SVGPathSegMovetoRel.y')
4604 @DocsEditable() 4604 @DocsEditable()
4605 num get y => _blink.BlinkSVGPathSegMovetoRel.y_Getter(this); 4605 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(this);
4606 4606
4607 @DomName('SVGPathSegMovetoRel.y') 4607 @DomName('SVGPathSegMovetoRel.y')
4608 @DocsEditable() 4608 @DocsEditable()
4609 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.y_Setter(this, value) ; 4609 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(th is, value);
4610 4610
4611 } 4611 }
4612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4613 // for details. All rights reserved. Use of this source code is governed by a 4613 // for details. All rights reserved. Use of this source code is governed by a
4614 // BSD-style license that can be found in the LICENSE file. 4614 // BSD-style license that can be found in the LICENSE file.
4615 4615
4616 // WARNING: Do not edit - generated code. 4616 // WARNING: Do not edit - generated code.
4617 4617
4618 4618
4619 @DocsEditable() 4619 @DocsEditable()
4620 @DomName('SVGPatternElement') 4620 @DomName('SVGPatternElement')
4621 @Unstable() 4621 @Unstable()
4622 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T ests { 4622 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T ests {
4623 // To suppress missing implicit constructor warnings. 4623 // To suppress missing implicit constructor warnings.
4624 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 4624 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
4625 4625
4626 @DomName('SVGPatternElement.SVGPatternElement') 4626 @DomName('SVGPatternElement.SVGPatternElement')
4627 @DocsEditable() 4627 @DocsEditable()
4628 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 4628 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
4629 /** 4629 /**
4630 * Constructor instantiated by the DOM when a custom element has been created. 4630 * Constructor instantiated by the DOM when a custom element has been created.
4631 * 4631 *
4632 * This can only be called by subclasses from their created constructor. 4632 * This can only be called by subclasses from their created constructor.
4633 */ 4633 */
4634 PatternElement.created() : super.created(); 4634 PatternElement.created() : super.created();
4635 4635
4636 @DomName('SVGPatternElement.height') 4636 @DomName('SVGPatternElement.height')
4637 @DocsEditable() 4637 @DocsEditable()
4638 AnimatedLength get height => _blink.BlinkSVGPatternElement.height_Getter(this) ; 4638 AnimatedLength get height => _blink.BlinkSVGPatternElement.instance.height_Get ter_(this);
4639 4639
4640 @DomName('SVGPatternElement.patternContentUnits') 4640 @DomName('SVGPatternElement.patternContentUnits')
4641 @DocsEditable() 4641 @DocsEditable()
4642 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.p atternContentUnits_Getter(this); 4642 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.i nstance.patternContentUnits_Getter_(this);
4643 4643
4644 @DomName('SVGPatternElement.patternTransform') 4644 @DomName('SVGPatternElement.patternTransform')
4645 @DocsEditable() 4645 @DocsEditable()
4646 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.pa tternTransform_Getter(this); 4646 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.in stance.patternTransform_Getter_(this);
4647 4647
4648 @DomName('SVGPatternElement.patternUnits') 4648 @DomName('SVGPatternElement.patternUnits')
4649 @DocsEditable() 4649 @DocsEditable()
4650 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.patternU nits_Getter(this); 4650 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.instance .patternUnits_Getter_(this);
4651 4651
4652 @DomName('SVGPatternElement.width') 4652 @DomName('SVGPatternElement.width')
4653 @DocsEditable() 4653 @DocsEditable()
4654 AnimatedLength get width => _blink.BlinkSVGPatternElement.width_Getter(this); 4654 AnimatedLength get width => _blink.BlinkSVGPatternElement.instance.width_Gette r_(this);
4655 4655
4656 @DomName('SVGPatternElement.x') 4656 @DomName('SVGPatternElement.x')
4657 @DocsEditable() 4657 @DocsEditable()
4658 AnimatedLength get x => _blink.BlinkSVGPatternElement.x_Getter(this); 4658 AnimatedLength get x => _blink.BlinkSVGPatternElement.instance.x_Getter_(this) ;
4659 4659
4660 @DomName('SVGPatternElement.y') 4660 @DomName('SVGPatternElement.y')
4661 @DocsEditable() 4661 @DocsEditable()
4662 AnimatedLength get y => _blink.BlinkSVGPatternElement.y_Getter(this); 4662 AnimatedLength get y => _blink.BlinkSVGPatternElement.instance.y_Getter_(this) ;
4663 4663
4664 @DomName('SVGPatternElement.preserveAspectRatio') 4664 @DomName('SVGPatternElement.preserveAspectRatio')
4665 @DocsEditable() 4665 @DocsEditable()
4666 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE lement.preserveAspectRatio_Getter(this); 4666 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE lement.instance.preserveAspectRatio_Getter_(this);
4667 4667
4668 @DomName('SVGPatternElement.viewBox') 4668 @DomName('SVGPatternElement.viewBox')
4669 @DocsEditable() 4669 @DocsEditable()
4670 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.viewBox_Getter(this) ; 4670 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.instance.viewBox_Get ter_(this);
4671 4671
4672 @DomName('SVGPatternElement.requiredExtensions') 4672 @DomName('SVGPatternElement.requiredExtensions')
4673 @DocsEditable() 4673 @DocsEditable()
4674 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.requiredExt ensions_Getter(this); 4674 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.instance.re quiredExtensions_Getter_(this);
4675 4675
4676 @DomName('SVGPatternElement.requiredFeatures') 4676 @DomName('SVGPatternElement.requiredFeatures')
4677 @DocsEditable() 4677 @DocsEditable()
4678 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.requiredFeatu res_Getter(this); 4678 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.instance.requ iredFeatures_Getter_(this);
4679 4679
4680 @DomName('SVGPatternElement.systemLanguage') 4680 @DomName('SVGPatternElement.systemLanguage')
4681 @DocsEditable() 4681 @DocsEditable()
4682 StringList get systemLanguage => _blink.BlinkSVGPatternElement.systemLanguage_ Getter(this); 4682 StringList get systemLanguage => _blink.BlinkSVGPatternElement.instance.system Language_Getter_(this);
4683 4683
4684 @DomName('SVGPatternElement.hasExtension') 4684 @DomName('SVGPatternElement.hasExtension')
4685 @DocsEditable() 4685 @DocsEditable()
4686 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.hasExtens ion_Callback_1(this, extension); 4686 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance. hasExtension_Callback_1_(this, extension);
4687 4687
4688 @DomName('SVGPatternElement.href') 4688 @DomName('SVGPatternElement.href')
4689 @DocsEditable() 4689 @DocsEditable()
4690 AnimatedString get href => _blink.BlinkSVGPatternElement.href_Getter(this); 4690 AnimatedString get href => _blink.BlinkSVGPatternElement.instance.href_Getter_ (this);
4691 4691
4692 } 4692 }
4693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4693 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4694 // for details. All rights reserved. Use of this source code is governed by a 4694 // for details. All rights reserved. Use of this source code is governed by a
4695 // BSD-style license that can be found in the LICENSE file. 4695 // BSD-style license that can be found in the LICENSE file.
4696 4696
4697 // WARNING: Do not edit - generated code. 4697 // WARNING: Do not edit - generated code.
4698 4698
4699 4699
4700 @DocsEditable() 4700 @DocsEditable()
4701 @DomName('SVGPoint') 4701 @DomName('SVGPoint')
4702 @Unstable() 4702 @Unstable()
4703 class Point extends NativeFieldWrapperClass2 { 4703 class Point extends NativeFieldWrapperClass2 {
4704 // To suppress missing implicit constructor warnings. 4704 // To suppress missing implicit constructor warnings.
4705 factory Point._() { throw new UnsupportedError("Not supported"); } 4705 factory Point._() { throw new UnsupportedError("Not supported"); }
4706 4706
4707 @DomName('SVGPoint.x') 4707 @DomName('SVGPoint.x')
4708 @DocsEditable() 4708 @DocsEditable()
4709 num get x => _blink.BlinkSVGPoint.x_Getter(this); 4709 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(this);
4710 4710
4711 @DomName('SVGPoint.x') 4711 @DomName('SVGPoint.x')
4712 @DocsEditable() 4712 @DocsEditable()
4713 void set x(num value) => _blink.BlinkSVGPoint.x_Setter(this, value); 4713 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(this, value);
4714 4714
4715 @DomName('SVGPoint.y') 4715 @DomName('SVGPoint.y')
4716 @DocsEditable() 4716 @DocsEditable()
4717 num get y => _blink.BlinkSVGPoint.y_Getter(this); 4717 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(this);
4718 4718
4719 @DomName('SVGPoint.y') 4719 @DomName('SVGPoint.y')
4720 @DocsEditable() 4720 @DocsEditable()
4721 void set y(num value) => _blink.BlinkSVGPoint.y_Setter(this, value); 4721 void set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(this, value);
4722 4722
4723 @DomName('SVGPoint.matrixTransform') 4723 @DomName('SVGPoint.matrixTransform')
4724 @DocsEditable() 4724 @DocsEditable()
4725 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.matrixTransform_C allback_1(this, matrix); 4725 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr ansform_Callback_1_(this, matrix);
4726 4726
4727 } 4727 }
4728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4729 // for details. All rights reserved. Use of this source code is governed by a 4729 // for details. All rights reserved. Use of this source code is governed by a
4730 // BSD-style license that can be found in the LICENSE file. 4730 // BSD-style license that can be found in the LICENSE file.
4731 4731
4732 // WARNING: Do not edit - generated code. 4732 // WARNING: Do not edit - generated code.
4733 4733
4734 4734
4735 @DocsEditable() 4735 @DocsEditable()
4736 @DomName('SVGPointList') 4736 @DomName('SVGPointList')
4737 @Unstable() 4737 @Unstable()
4738 class PointList extends NativeFieldWrapperClass2 { 4738 class PointList extends NativeFieldWrapperClass2 {
4739 // To suppress missing implicit constructor warnings. 4739 // To suppress missing implicit constructor warnings.
4740 factory PointList._() { throw new UnsupportedError("Not supported"); } 4740 factory PointList._() { throw new UnsupportedError("Not supported"); }
4741 4741
4742 @DomName('SVGPointList.length') 4742 @DomName('SVGPointList.length')
4743 @DocsEditable() 4743 @DocsEditable()
4744 @Experimental() // untriaged 4744 @Experimental() // untriaged
4745 int get length => _blink.BlinkSVGPointList.length_Getter(this); 4745 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(this);
4746 4746
4747 @DomName('SVGPointList.numberOfItems') 4747 @DomName('SVGPointList.numberOfItems')
4748 @DocsEditable() 4748 @DocsEditable()
4749 int get numberOfItems => _blink.BlinkSVGPointList.numberOfItems_Getter(this); 4749 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette r_(this);
4750 4750
4751 @DomName('SVGPointList.__setter__') 4751 @DomName('SVGPointList.__setter__')
4752 @DocsEditable() 4752 @DocsEditable()
4753 @Experimental() // untriaged 4753 @Experimental() // untriaged
4754 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.$__setter_ __Callback_2(this, index, value); 4754 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$ __setter___Callback_2_(this, index, value);
4755 4755
4756 @DomName('SVGPointList.appendItem') 4756 @DomName('SVGPointList.appendItem')
4757 @DocsEditable() 4757 @DocsEditable()
4758 Point appendItem(Point item) => _blink.BlinkSVGPointList.appendItem_Callback_1 (this, item); 4758 Point appendItem(Point item) => _blink.BlinkSVGPointList.instance.appendItem_C allback_1_(this, item);
4759 4759
4760 @DomName('SVGPointList.clear') 4760 @DomName('SVGPointList.clear')
4761 @DocsEditable() 4761 @DocsEditable()
4762 void clear() => _blink.BlinkSVGPointList.clear_Callback_0(this); 4762 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(this);
4763 4763
4764 @DomName('SVGPointList.getItem') 4764 @DomName('SVGPointList.getItem')
4765 @DocsEditable() 4765 @DocsEditable()
4766 Point getItem(int index) => _blink.BlinkSVGPointList.getItem_Callback_1(this, index); 4766 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback _1_(this, index);
4767 4767
4768 @DomName('SVGPointList.initialize') 4768 @DomName('SVGPointList.initialize')
4769 @DocsEditable() 4769 @DocsEditable()
4770 Point initialize(Point item) => _blink.BlinkSVGPointList.initialize_Callback_1 (this, item); 4770 Point initialize(Point item) => _blink.BlinkSVGPointList.instance.initialize_C allback_1_(this, item);
4771 4771
4772 @DomName('SVGPointList.insertItemBefore') 4772 @DomName('SVGPointList.insertItemBefore')
4773 @DocsEditable() 4773 @DocsEditable()
4774 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inse rtItemBefore_Callback_2(this, item, index); 4774 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inst ance.insertItemBefore_Callback_2_(this, item, index);
4775 4775
4776 @DomName('SVGPointList.removeItem') 4776 @DomName('SVGPointList.removeItem')
4777 @DocsEditable() 4777 @DocsEditable()
4778 Point removeItem(int index) => _blink.BlinkSVGPointList.removeItem_Callback_1( this, index); 4778 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca llback_1_(this, index);
4779 4779
4780 @DomName('SVGPointList.replaceItem') 4780 @DomName('SVGPointList.replaceItem')
4781 @DocsEditable() 4781 @DocsEditable()
4782 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.replaceIt em_Callback_2(this, item, index); 4782 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.instance. replaceItem_Callback_2_(this, item, index);
4783 4783
4784 } 4784 }
4785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4786 // for details. All rights reserved. Use of this source code is governed by a 4786 // for details. All rights reserved. Use of this source code is governed by a
4787 // BSD-style license that can be found in the LICENSE file. 4787 // BSD-style license that can be found in the LICENSE file.
4788 4788
4789 // WARNING: Do not edit - generated code. 4789 // WARNING: Do not edit - generated code.
4790 4790
4791 4791
4792 @DocsEditable() 4792 @DocsEditable()
4793 @DomName('SVGPolygonElement') 4793 @DomName('SVGPolygonElement')
4794 @Unstable() 4794 @Unstable()
4795 class PolygonElement extends GeometryElement { 4795 class PolygonElement extends GeometryElement {
4796 // To suppress missing implicit constructor warnings. 4796 // To suppress missing implicit constructor warnings.
4797 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } 4797 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
4798 4798
4799 @DomName('SVGPolygonElement.SVGPolygonElement') 4799 @DomName('SVGPolygonElement.SVGPolygonElement')
4800 @DocsEditable() 4800 @DocsEditable()
4801 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 4801 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
4802 /** 4802 /**
4803 * Constructor instantiated by the DOM when a custom element has been created. 4803 * Constructor instantiated by the DOM when a custom element has been created.
4804 * 4804 *
4805 * This can only be called by subclasses from their created constructor. 4805 * This can only be called by subclasses from their created constructor.
4806 */ 4806 */
4807 PolygonElement.created() : super.created(); 4807 PolygonElement.created() : super.created();
4808 4808
4809 @DomName('SVGPolygonElement.animatedPoints') 4809 @DomName('SVGPolygonElement.animatedPoints')
4810 @DocsEditable() 4810 @DocsEditable()
4811 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.animatedPoints_G etter(this); 4811 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.instance.animate dPoints_Getter_(this);
4812 4812
4813 @DomName('SVGPolygonElement.points') 4813 @DomName('SVGPolygonElement.points')
4814 @DocsEditable() 4814 @DocsEditable()
4815 PointList get points => _blink.BlinkSVGPolygonElement.points_Getter(this); 4815 PointList get points => _blink.BlinkSVGPolygonElement.instance.points_Getter_( this);
4816 4816
4817 } 4817 }
4818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4819 // 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
4820 // BSD-style license that can be found in the LICENSE file. 4820 // BSD-style license that can be found in the LICENSE file.
4821 4821
4822 // WARNING: Do not edit - generated code. 4822 // WARNING: Do not edit - generated code.
4823 4823
4824 4824
4825 @DocsEditable() 4825 @DocsEditable()
4826 @DomName('SVGPolylineElement') 4826 @DomName('SVGPolylineElement')
4827 @Unstable() 4827 @Unstable()
4828 class PolylineElement extends GeometryElement { 4828 class PolylineElement extends GeometryElement {
4829 // To suppress missing implicit constructor warnings. 4829 // To suppress missing implicit constructor warnings.
4830 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } 4830 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
4831 4831
4832 @DomName('SVGPolylineElement.SVGPolylineElement') 4832 @DomName('SVGPolylineElement.SVGPolylineElement')
4833 @DocsEditable() 4833 @DocsEditable()
4834 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 4834 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
4835 /** 4835 /**
4836 * Constructor instantiated by the DOM when a custom element has been created. 4836 * Constructor instantiated by the DOM when a custom element has been created.
4837 * 4837 *
4838 * This can only be called by subclasses from their created constructor. 4838 * This can only be called by subclasses from their created constructor.
4839 */ 4839 */
4840 PolylineElement.created() : super.created(); 4840 PolylineElement.created() : super.created();
4841 4841
4842 @DomName('SVGPolylineElement.animatedPoints') 4842 @DomName('SVGPolylineElement.animatedPoints')
4843 @DocsEditable() 4843 @DocsEditable()
4844 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.animatedPoints_ Getter(this); 4844 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.instance.animat edPoints_Getter_(this);
4845 4845
4846 @DomName('SVGPolylineElement.points') 4846 @DomName('SVGPolylineElement.points')
4847 @DocsEditable() 4847 @DocsEditable()
4848 PointList get points => _blink.BlinkSVGPolylineElement.points_Getter(this); 4848 PointList get points => _blink.BlinkSVGPolylineElement.instance.points_Getter_ (this);
4849 4849
4850 } 4850 }
4851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4852 // for details. All rights reserved. Use of this source code is governed by a 4852 // for details. All rights reserved. Use of this source code is governed by a
4853 // BSD-style license that can be found in the LICENSE file. 4853 // BSD-style license that can be found in the LICENSE file.
4854 4854
4855 // WARNING: Do not edit - generated code. 4855 // WARNING: Do not edit - generated code.
4856 4856
4857 4857
4858 @DocsEditable() 4858 @DocsEditable()
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
4913 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID') 4913 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID')
4914 @DocsEditable() 4914 @DocsEditable()
4915 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 4915 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
4916 4916
4917 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') 4917 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN')
4918 @DocsEditable() 4918 @DocsEditable()
4919 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 4919 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
4920 4920
4921 @DomName('SVGPreserveAspectRatio.align') 4921 @DomName('SVGPreserveAspectRatio.align')
4922 @DocsEditable() 4922 @DocsEditable()
4923 int get align => _blink.BlinkSVGPreserveAspectRatio.align_Getter(this); 4923 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(thi s);
4924 4924
4925 @DomName('SVGPreserveAspectRatio.align') 4925 @DomName('SVGPreserveAspectRatio.align')
4926 @DocsEditable() 4926 @DocsEditable()
4927 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.align_Setter(t his, value); 4927 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align _Setter_(this, value);
4928 4928
4929 @DomName('SVGPreserveAspectRatio.meetOrSlice') 4929 @DomName('SVGPreserveAspectRatio.meetOrSlice')
4930 @DocsEditable() 4930 @DocsEditable()
4931 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.meetOrSlice_Getter(t his); 4931 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice _Getter_(this);
4932 4932
4933 @DomName('SVGPreserveAspectRatio.meetOrSlice') 4933 @DomName('SVGPreserveAspectRatio.meetOrSlice')
4934 @DocsEditable() 4934 @DocsEditable()
4935 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.meetOrSl ice_Setter(this, value); 4935 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance .meetOrSlice_Setter_(this, value);
4936 4936
4937 } 4937 }
4938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4939 // for details. All rights reserved. Use of this source code is governed by a 4939 // for details. All rights reserved. Use of this source code is governed by a
4940 // BSD-style license that can be found in the LICENSE file. 4940 // BSD-style license that can be found in the LICENSE file.
4941 4941
4942 // WARNING: Do not edit - generated code. 4942 // WARNING: Do not edit - generated code.
4943 4943
4944 4944
4945 @DocsEditable() 4945 @DocsEditable()
4946 @DomName('SVGRadialGradientElement') 4946 @DomName('SVGRadialGradientElement')
4947 @Unstable() 4947 @Unstable()
4948 class RadialGradientElement extends _GradientElement { 4948 class RadialGradientElement extends _GradientElement {
4949 // To suppress missing implicit constructor warnings. 4949 // To suppress missing implicit constructor warnings.
4950 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); } 4950 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); }
4951 4951
4952 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 4952 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
4953 @DocsEditable() 4953 @DocsEditable()
4954 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 4954 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
4955 /** 4955 /**
4956 * Constructor instantiated by the DOM when a custom element has been created. 4956 * Constructor instantiated by the DOM when a custom element has been created.
4957 * 4957 *
4958 * This can only be called by subclasses from their created constructor. 4958 * This can only be called by subclasses from their created constructor.
4959 */ 4959 */
4960 RadialGradientElement.created() : super.created(); 4960 RadialGradientElement.created() : super.created();
4961 4961
4962 @DomName('SVGRadialGradientElement.cx') 4962 @DomName('SVGRadialGradientElement.cx')
4963 @DocsEditable() 4963 @DocsEditable()
4964 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.cx_Getter(this); 4964 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.instance.cx_Gett er_(this);
4965 4965
4966 @DomName('SVGRadialGradientElement.cy') 4966 @DomName('SVGRadialGradientElement.cy')
4967 @DocsEditable() 4967 @DocsEditable()
4968 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.cy_Getter(this); 4968 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.instance.cy_Gett er_(this);
4969 4969
4970 @DomName('SVGRadialGradientElement.fr') 4970 @DomName('SVGRadialGradientElement.fr')
4971 @DocsEditable() 4971 @DocsEditable()
4972 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.fr_Getter(this); 4972 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.instance.fr_Gett er_(this);
4973 4973
4974 @DomName('SVGRadialGradientElement.fx') 4974 @DomName('SVGRadialGradientElement.fx')
4975 @DocsEditable() 4975 @DocsEditable()
4976 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.fx_Getter(this); 4976 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.instance.fx_Gett er_(this);
4977 4977
4978 @DomName('SVGRadialGradientElement.fy') 4978 @DomName('SVGRadialGradientElement.fy')
4979 @DocsEditable() 4979 @DocsEditable()
4980 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.fy_Getter(this); 4980 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.instance.fy_Gett er_(this);
4981 4981
4982 @DomName('SVGRadialGradientElement.r') 4982 @DomName('SVGRadialGradientElement.r')
4983 @DocsEditable() 4983 @DocsEditable()
4984 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.r_Getter(this); 4984 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.instance.r_Getter _(this);
4985 4985
4986 } 4986 }
4987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4988 // for details. All rights reserved. Use of this source code is governed by a 4988 // for details. All rights reserved. Use of this source code is governed by a
4989 // BSD-style license that can be found in the LICENSE file. 4989 // BSD-style license that can be found in the LICENSE file.
4990 4990
4991 // WARNING: Do not edit - generated code. 4991 // WARNING: Do not edit - generated code.
4992 4992
4993 4993
4994 @DocsEditable() 4994 @DocsEditable()
4995 @DomName('SVGRect') 4995 @DomName('SVGRect')
4996 @Unstable() 4996 @Unstable()
4997 class Rect extends NativeFieldWrapperClass2 { 4997 class Rect extends NativeFieldWrapperClass2 {
4998 // To suppress missing implicit constructor warnings. 4998 // To suppress missing implicit constructor warnings.
4999 factory Rect._() { throw new UnsupportedError("Not supported"); } 4999 factory Rect._() { throw new UnsupportedError("Not supported"); }
5000 5000
5001 @DomName('SVGRect.height') 5001 @DomName('SVGRect.height')
5002 @DocsEditable() 5002 @DocsEditable()
5003 num get height => _blink.BlinkSVGRect.height_Getter(this); 5003 num get height => _blink.BlinkSVGRect.instance.height_Getter_(this);
5004 5004
5005 @DomName('SVGRect.height') 5005 @DomName('SVGRect.height')
5006 @DocsEditable() 5006 @DocsEditable()
5007 void set height(num value) => _blink.BlinkSVGRect.height_Setter(this, value); 5007 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(this , value);
5008 5008
5009 @DomName('SVGRect.width') 5009 @DomName('SVGRect.width')
5010 @DocsEditable() 5010 @DocsEditable()
5011 num get width => _blink.BlinkSVGRect.width_Getter(this); 5011 num get width => _blink.BlinkSVGRect.instance.width_Getter_(this);
5012 5012
5013 @DomName('SVGRect.width') 5013 @DomName('SVGRect.width')
5014 @DocsEditable() 5014 @DocsEditable()
5015 void set width(num value) => _blink.BlinkSVGRect.width_Setter(this, value); 5015 void set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(this, value);
5016 5016
5017 @DomName('SVGRect.x') 5017 @DomName('SVGRect.x')
5018 @DocsEditable() 5018 @DocsEditable()
5019 num get x => _blink.BlinkSVGRect.x_Getter(this); 5019 num get x => _blink.BlinkSVGRect.instance.x_Getter_(this);
5020 5020
5021 @DomName('SVGRect.x') 5021 @DomName('SVGRect.x')
5022 @DocsEditable() 5022 @DocsEditable()
5023 void set x(num value) => _blink.BlinkSVGRect.x_Setter(this, value); 5023 void set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(this, value);
5024 5024
5025 @DomName('SVGRect.y') 5025 @DomName('SVGRect.y')
5026 @DocsEditable() 5026 @DocsEditable()
5027 num get y => _blink.BlinkSVGRect.y_Getter(this); 5027 num get y => _blink.BlinkSVGRect.instance.y_Getter_(this);
5028 5028
5029 @DomName('SVGRect.y') 5029 @DomName('SVGRect.y')
5030 @DocsEditable() 5030 @DocsEditable()
5031 void set y(num value) => _blink.BlinkSVGRect.y_Setter(this, value); 5031 void set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(this, value);
5032 5032
5033 } 5033 }
5034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5035 // for details. All rights reserved. Use of this source code is governed by a 5035 // for details. All rights reserved. Use of this source code is governed by a
5036 // BSD-style license that can be found in the LICENSE file. 5036 // BSD-style license that can be found in the LICENSE file.
5037 5037
5038 // WARNING: Do not edit - generated code. 5038 // WARNING: Do not edit - generated code.
5039 5039
5040 5040
5041 @DocsEditable() 5041 @DocsEditable()
5042 @DomName('SVGRectElement') 5042 @DomName('SVGRectElement')
5043 @Unstable() 5043 @Unstable()
5044 class RectElement extends GeometryElement { 5044 class RectElement extends GeometryElement {
5045 // To suppress missing implicit constructor warnings. 5045 // To suppress missing implicit constructor warnings.
5046 factory RectElement._() { throw new UnsupportedError("Not supported"); } 5046 factory RectElement._() { throw new UnsupportedError("Not supported"); }
5047 5047
5048 @DomName('SVGRectElement.SVGRectElement') 5048 @DomName('SVGRectElement.SVGRectElement')
5049 @DocsEditable() 5049 @DocsEditable()
5050 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 5050 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5051 /** 5051 /**
5052 * Constructor instantiated by the DOM when a custom element has been created. 5052 * Constructor instantiated by the DOM when a custom element has been created.
5053 * 5053 *
5054 * This can only be called by subclasses from their created constructor. 5054 * This can only be called by subclasses from their created constructor.
5055 */ 5055 */
5056 RectElement.created() : super.created(); 5056 RectElement.created() : super.created();
5057 5057
5058 @DomName('SVGRectElement.height') 5058 @DomName('SVGRectElement.height')
5059 @DocsEditable() 5059 @DocsEditable()
5060 AnimatedLength get height => _blink.BlinkSVGRectElement.height_Getter(this); 5060 AnimatedLength get height => _blink.BlinkSVGRectElement.instance.height_Getter _(this);
5061 5061
5062 @DomName('SVGRectElement.rx') 5062 @DomName('SVGRectElement.rx')
5063 @DocsEditable() 5063 @DocsEditable()
5064 AnimatedLength get rx => _blink.BlinkSVGRectElement.rx_Getter(this); 5064 AnimatedLength get rx => _blink.BlinkSVGRectElement.instance.rx_Getter_(this);
5065 5065
5066 @DomName('SVGRectElement.ry') 5066 @DomName('SVGRectElement.ry')
5067 @DocsEditable() 5067 @DocsEditable()
5068 AnimatedLength get ry => _blink.BlinkSVGRectElement.ry_Getter(this); 5068 AnimatedLength get ry => _blink.BlinkSVGRectElement.instance.ry_Getter_(this);
5069 5069
5070 @DomName('SVGRectElement.width') 5070 @DomName('SVGRectElement.width')
5071 @DocsEditable() 5071 @DocsEditable()
5072 AnimatedLength get width => _blink.BlinkSVGRectElement.width_Getter(this); 5072 AnimatedLength get width => _blink.BlinkSVGRectElement.instance.width_Getter_( this);
5073 5073
5074 @DomName('SVGRectElement.x') 5074 @DomName('SVGRectElement.x')
5075 @DocsEditable() 5075 @DocsEditable()
5076 AnimatedLength get x => _blink.BlinkSVGRectElement.x_Getter(this); 5076 AnimatedLength get x => _blink.BlinkSVGRectElement.instance.x_Getter_(this);
5077 5077
5078 @DomName('SVGRectElement.y') 5078 @DomName('SVGRectElement.y')
5079 @DocsEditable() 5079 @DocsEditable()
5080 AnimatedLength get y => _blink.BlinkSVGRectElement.y_Getter(this); 5080 AnimatedLength get y => _blink.BlinkSVGRectElement.instance.y_Getter_(this);
5081 5081
5082 } 5082 }
5083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5084 // for details. All rights reserved. Use of this source code is governed by a 5084 // for details. All rights reserved. Use of this source code is governed by a
5085 // BSD-style license that can be found in the LICENSE file. 5085 // BSD-style license that can be found in the LICENSE file.
5086 5086
5087 // WARNING: Do not edit - generated code. 5087 // WARNING: Do not edit - generated code.
5088 5088
5089 5089
5090 @DocsEditable() 5090 @DocsEditable()
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
5138 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 5138 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
5139 /** 5139 /**
5140 * Constructor instantiated by the DOM when a custom element has been created. 5140 * Constructor instantiated by the DOM when a custom element has been created.
5141 * 5141 *
5142 * This can only be called by subclasses from their created constructor. 5142 * This can only be called by subclasses from their created constructor.
5143 */ 5143 */
5144 ScriptElement.created() : super.created(); 5144 ScriptElement.created() : super.created();
5145 5145
5146 @DomName('SVGScriptElement.type') 5146 @DomName('SVGScriptElement.type')
5147 @DocsEditable() 5147 @DocsEditable()
5148 String get type => _blink.BlinkSVGScriptElement.type_Getter(this); 5148 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(this);
5149 5149
5150 @DomName('SVGScriptElement.type') 5150 @DomName('SVGScriptElement.type')
5151 @DocsEditable() 5151 @DocsEditable()
5152 void set type(String value) => _blink.BlinkSVGScriptElement.type_Setter(this, value); 5152 void set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Sett er_(this, value);
5153 5153
5154 @DomName('SVGScriptElement.href') 5154 @DomName('SVGScriptElement.href')
5155 @DocsEditable() 5155 @DocsEditable()
5156 AnimatedString get href => _blink.BlinkSVGScriptElement.href_Getter(this); 5156 AnimatedString get href => _blink.BlinkSVGScriptElement.instance.href_Getter_( this);
5157 5157
5158 } 5158 }
5159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5160 // for details. All rights reserved. Use of this source code is governed by a 5160 // for details. All rights reserved. Use of this source code is governed by a
5161 // BSD-style license that can be found in the LICENSE file. 5161 // BSD-style license that can be found in the LICENSE file.
5162 5162
5163 // WARNING: Do not edit - generated code. 5163 // WARNING: Do not edit - generated code.
5164 5164
5165 5165
5166 @DocsEditable() 5166 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
5206 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 5206 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
5207 /** 5207 /**
5208 * Constructor instantiated by the DOM when a custom element has been created. 5208 * Constructor instantiated by the DOM when a custom element has been created.
5209 * 5209 *
5210 * This can only be called by subclasses from their created constructor. 5210 * This can only be called by subclasses from their created constructor.
5211 */ 5211 */
5212 StopElement.created() : super.created(); 5212 StopElement.created() : super.created();
5213 5213
5214 @DomName('SVGStopElement.offset') 5214 @DomName('SVGStopElement.offset')
5215 @DocsEditable() 5215 @DocsEditable()
5216 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.offset_Getter( this); 5216 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.instance.offse t_Getter_(this);
5217 5217
5218 } 5218 }
5219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5220 // for details. All rights reserved. Use of this source code is governed by a 5220 // for details. All rights reserved. Use of this source code is governed by a
5221 // BSD-style license that can be found in the LICENSE file. 5221 // BSD-style license that can be found in the LICENSE file.
5222 5222
5223 // WARNING: Do not edit - generated code. 5223 // WARNING: Do not edit - generated code.
5224 5224
5225 5225
5226 @DocsEditable() 5226 @DocsEditable()
5227 @DomName('SVGStringList') 5227 @DomName('SVGStringList')
5228 @Unstable() 5228 @Unstable()
5229 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> { 5229 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> {
5230 // To suppress missing implicit constructor warnings. 5230 // To suppress missing implicit constructor warnings.
5231 factory StringList._() { throw new UnsupportedError("Not supported"); } 5231 factory StringList._() { throw new UnsupportedError("Not supported"); }
5232 5232
5233 @DomName('SVGStringList.length') 5233 @DomName('SVGStringList.length')
5234 @DocsEditable() 5234 @DocsEditable()
5235 @Experimental() // untriaged 5235 @Experimental() // untriaged
5236 int get length => _blink.BlinkSVGStringList.length_Getter(this); 5236 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(this);
5237 5237
5238 @DomName('SVGStringList.numberOfItems') 5238 @DomName('SVGStringList.numberOfItems')
5239 @DocsEditable() 5239 @DocsEditable()
5240 int get numberOfItems => _blink.BlinkSVGStringList.numberOfItems_Getter(this); 5240 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett er_(this);
5241 5241
5242 String operator[](int index) { 5242 String operator[](int index) {
5243 if (index < 0 || index >= length) 5243 if (index < 0 || index >= length)
5244 throw new RangeError.range(index, 0, length); 5244 throw new RangeError.range(index, 0, length);
5245 return getItem(index); 5245 return getItem(index);
5246 } 5246 }
5247 5247
5248 void operator[]=(int index, String value) { 5248 void operator[]=(int index, String value) {
5249 throw new UnsupportedError("Cannot assign element of immutable List."); 5249 throw new UnsupportedError("Cannot assign element of immutable List.");
5250 } 5250 }
(...skipping 28 matching lines...) Expand all
5279 if (len == 0) throw new StateError("No elements"); 5279 if (len == 0) throw new StateError("No elements");
5280 throw new StateError("More than one element"); 5280 throw new StateError("More than one element");
5281 } 5281 }
5282 5282
5283 String elementAt(int index) => this[index]; 5283 String elementAt(int index) => this[index];
5284 // -- end List<String> mixins. 5284 // -- end List<String> mixins.
5285 5285
5286 @DomName('SVGStringList.__setter__') 5286 @DomName('SVGStringList.__setter__')
5287 @DocsEditable() 5287 @DocsEditable()
5288 @Experimental() // untriaged 5288 @Experimental() // untriaged
5289 void __setter__(int index, String value) => _blink.BlinkSVGStringList.$__sette r___Callback_2(this, index, value); 5289 void __setter__(int index, String value) => _blink.BlinkSVGStringList.instance .$__setter___Callback_2_(this, index, value);
5290 5290
5291 @DomName('SVGStringList.appendItem') 5291 @DomName('SVGStringList.appendItem')
5292 @DocsEditable() 5292 @DocsEditable()
5293 String appendItem(String item) => _blink.BlinkSVGStringList.appendItem_Callbac k_1(this, item); 5293 String appendItem(String item) => _blink.BlinkSVGStringList.instance.appendIte m_Callback_1_(this, item);
5294 5294
5295 @DomName('SVGStringList.clear') 5295 @DomName('SVGStringList.clear')
5296 @DocsEditable() 5296 @DocsEditable()
5297 void clear() => _blink.BlinkSVGStringList.clear_Callback_0(this); 5297 void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(this);
5298 5298
5299 @DomName('SVGStringList.getItem') 5299 @DomName('SVGStringList.getItem')
5300 @DocsEditable() 5300 @DocsEditable()
5301 String getItem(int index) => _blink.BlinkSVGStringList.getItem_Callback_1(this , index); 5301 String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callba ck_1_(this, index);
5302 5302
5303 @DomName('SVGStringList.initialize') 5303 @DomName('SVGStringList.initialize')
5304 @DocsEditable() 5304 @DocsEditable()
5305 String initialize(String item) => _blink.BlinkSVGStringList.initialize_Callbac k_1(this, item); 5305 String initialize(String item) => _blink.BlinkSVGStringList.instance.initializ e_Callback_1_(this, item);
5306 5306
5307 @DomName('SVGStringList.insertItemBefore') 5307 @DomName('SVGStringList.insertItemBefore')
5308 @DocsEditable() 5308 @DocsEditable()
5309 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i nsertItemBefore_Callback_2(this, item, index); 5309 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i nstance.insertItemBefore_Callback_2_(this, item, index);
5310 5310
5311 @DomName('SVGStringList.removeItem') 5311 @DomName('SVGStringList.removeItem')
5312 @DocsEditable() 5312 @DocsEditable()
5313 String removeItem(int index) => _blink.BlinkSVGStringList.removeItem_Callback_ 1(this, index); 5313 String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_ Callback_1_(this, index);
5314 5314
5315 @DomName('SVGStringList.replaceItem') 5315 @DomName('SVGStringList.replaceItem')
5316 @DocsEditable() 5316 @DocsEditable()
5317 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.replac eItem_Callback_2(this, item, index); 5317 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.instan ce.replaceItem_Callback_2_(this, item, index);
5318 5318
5319 } 5319 }
5320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5321 // for details. All rights reserved. Use of this source code is governed by a 5321 // for details. All rights reserved. Use of this source code is governed by a
5322 // BSD-style license that can be found in the LICENSE file. 5322 // BSD-style license that can be found in the LICENSE file.
5323 5323
5324 // WARNING: Do not edit - generated code. 5324 // WARNING: Do not edit - generated code.
5325 5325
5326 5326
5327 @DocsEditable() 5327 @DocsEditable()
5328 @DomName('SVGStyleElement') 5328 @DomName('SVGStyleElement')
5329 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 5329 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
5330 @Experimental() // nonstandard 5330 @Experimental() // nonstandard
5331 class StyleElement extends SvgElement { 5331 class StyleElement extends SvgElement {
5332 // To suppress missing implicit constructor warnings. 5332 // To suppress missing implicit constructor warnings.
5333 factory StyleElement._() { throw new UnsupportedError("Not supported"); } 5333 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
5334 5334
5335 @DomName('SVGStyleElement.SVGStyleElement') 5335 @DomName('SVGStyleElement.SVGStyleElement')
5336 @DocsEditable() 5336 @DocsEditable()
5337 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 5337 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
5338 /** 5338 /**
5339 * Constructor instantiated by the DOM when a custom element has been created. 5339 * Constructor instantiated by the DOM when a custom element has been created.
5340 * 5340 *
5341 * This can only be called by subclasses from their created constructor. 5341 * This can only be called by subclasses from their created constructor.
5342 */ 5342 */
5343 StyleElement.created() : super.created(); 5343 StyleElement.created() : super.created();
5344 5344
5345 @DomName('SVGStyleElement.disabled') 5345 @DomName('SVGStyleElement.disabled')
5346 @DocsEditable() 5346 @DocsEditable()
5347 bool get disabled => _blink.BlinkSVGStyleElement.disabled_Getter(this); 5347 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(thi s);
5348 5348
5349 @DomName('SVGStyleElement.disabled') 5349 @DomName('SVGStyleElement.disabled')
5350 @DocsEditable() 5350 @DocsEditable()
5351 void set disabled(bool value) => _blink.BlinkSVGStyleElement.disabled_Setter(t his, value); 5351 void set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled _Setter_(this, value);
5352 5352
5353 @DomName('SVGStyleElement.media') 5353 @DomName('SVGStyleElement.media')
5354 @DocsEditable() 5354 @DocsEditable()
5355 String get media => _blink.BlinkSVGStyleElement.media_Getter(this); 5355 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(this);
5356 5356
5357 @DomName('SVGStyleElement.media') 5357 @DomName('SVGStyleElement.media')
5358 @DocsEditable() 5358 @DocsEditable()
5359 void set media(String value) => _blink.BlinkSVGStyleElement.media_Setter(this, value); 5359 void set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Set ter_(this, value);
5360 5360
5361 @DomName('SVGStyleElement.sheet') 5361 @DomName('SVGStyleElement.sheet')
5362 @DocsEditable() 5362 @DocsEditable()
5363 @Experimental() // untriaged 5363 @Experimental() // untriaged
5364 StyleSheet get sheet => _blink.BlinkSVGStyleElement.sheet_Getter(this); 5364 StyleSheet get sheet => _blink.BlinkSVGStyleElement.instance.sheet_Getter_(thi s);
5365 5365
5366 @DomName('SVGStyleElement.title') 5366 @DomName('SVGStyleElement.title')
5367 @DocsEditable() 5367 @DocsEditable()
5368 String get title => _blink.BlinkSVGStyleElement.title_Getter(this); 5368 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(this);
5369 5369
5370 @DomName('SVGStyleElement.title') 5370 @DomName('SVGStyleElement.title')
5371 @DocsEditable() 5371 @DocsEditable()
5372 void set title(String value) => _blink.BlinkSVGStyleElement.title_Setter(this, value); 5372 void set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Set ter_(this, value);
5373 5373
5374 @DomName('SVGStyleElement.type') 5374 @DomName('SVGStyleElement.type')
5375 @DocsEditable() 5375 @DocsEditable()
5376 String get type => _blink.BlinkSVGStyleElement.type_Getter(this); 5376 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(this);
5377 5377
5378 @DomName('SVGStyleElement.type') 5378 @DomName('SVGStyleElement.type')
5379 @DocsEditable() 5379 @DocsEditable()
5380 void set type(String value) => _blink.BlinkSVGStyleElement.type_Setter(this, v alue); 5380 void set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Sette r_(this, value);
5381 5381
5382 } 5382 }
5383 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 5383 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5384 // for details. All rights reserved. Use of this source code is governed by a 5384 // for details. All rights reserved. Use of this source code is governed by a
5385 // BSD-style license that can be found in the LICENSE file. 5385 // BSD-style license that can be found in the LICENSE file.
5386 5386
5387 5387
5388 class _AttributeClassSet extends CssClassSetImpl { 5388 class _AttributeClassSet extends CssClassSetImpl {
5389 final Element _element; 5389 final Element _element;
5390 5390
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
5796 /** 5796 /**
5797 * Constructor instantiated by the DOM when a custom element has been created. 5797 * Constructor instantiated by the DOM when a custom element has been created.
5798 * 5798 *
5799 * This can only be called by subclasses from their created constructor. 5799 * This can only be called by subclasses from their created constructor.
5800 */ 5800 */
5801 SvgElement.created() : super.created(); 5801 SvgElement.created() : super.created();
5802 5802
5803 @DomName('SVGElement.className') 5803 @DomName('SVGElement.className')
5804 @DocsEditable() 5804 @DocsEditable()
5805 @Experimental() // untriaged 5805 @Experimental() // untriaged
5806 AnimatedString get _svgClassName => _blink.BlinkSVGElement.className_Getter(th is); 5806 AnimatedString get _svgClassName => _blink.BlinkSVGElement.instance.className_ Getter_(this);
5807 5807
5808 @DomName('SVGElement.ownerSVGElement') 5808 @DomName('SVGElement.ownerSVGElement')
5809 @DocsEditable() 5809 @DocsEditable()
5810 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.ownerSVGElement_Ge tter(this); 5810 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.instance.ownerSVGE lement_Getter_(this);
5811 5811
5812 @DomName('SVGElement.style') 5812 @DomName('SVGElement.style')
5813 @DocsEditable() 5813 @DocsEditable()
5814 @Experimental() // untriaged 5814 @Experimental() // untriaged
5815 CssStyleDeclaration get style => _blink.BlinkSVGElement.style_Getter(this); 5815 CssStyleDeclaration get style => _blink.BlinkSVGElement.instance.style_Getter_ (this);
5816 5816
5817 @DomName('SVGElement.tabIndex') 5817 @DomName('SVGElement.tabIndex')
5818 @DocsEditable() 5818 @DocsEditable()
5819 @Experimental() // untriaged 5819 @Experimental() // untriaged
5820 int get tabIndex => _blink.BlinkSVGElement.tabIndex_Getter(this); 5820 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(this);
5821 5821
5822 @DomName('SVGElement.tabIndex') 5822 @DomName('SVGElement.tabIndex')
5823 @DocsEditable() 5823 @DocsEditable()
5824 @Experimental() // untriaged 5824 @Experimental() // untriaged
5825 void set tabIndex(int value) => _blink.BlinkSVGElement.tabIndex_Setter(this, v alue); 5825 void set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Sette r_(this, value);
5826 5826
5827 @DomName('SVGElement.viewportElement') 5827 @DomName('SVGElement.viewportElement')
5828 @DocsEditable() 5828 @DocsEditable()
5829 SvgElement get viewportElement => _blink.BlinkSVGElement.viewportElement_Gette r(this); 5829 SvgElement get viewportElement => _blink.BlinkSVGElement.instance.viewportElem ent_Getter_(this);
5830 5830
5831 @DomName('SVGElement.xmlbase') 5831 @DomName('SVGElement.xmlbase')
5832 @DocsEditable() 5832 @DocsEditable()
5833 String get xmlbase => _blink.BlinkSVGElement.xmlbase_Getter(this); 5833 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(this);
5834 5834
5835 @DomName('SVGElement.xmlbase') 5835 @DomName('SVGElement.xmlbase')
5836 @DocsEditable() 5836 @DocsEditable()
5837 void set xmlbase(String value) => _blink.BlinkSVGElement.xmlbase_Setter(this, value); 5837 void set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Sett er_(this, value);
5838 5838
5839 @DomName('SVGElement.xmllang') 5839 @DomName('SVGElement.xmllang')
5840 @DocsEditable() 5840 @DocsEditable()
5841 @Experimental() // untriaged 5841 @Experimental() // untriaged
5842 String get xmllang => _blink.BlinkSVGElement.xmllang_Getter(this); 5842 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(this);
5843 5843
5844 @DomName('SVGElement.xmllang') 5844 @DomName('SVGElement.xmllang')
5845 @DocsEditable() 5845 @DocsEditable()
5846 @Experimental() // untriaged 5846 @Experimental() // untriaged
5847 void set xmllang(String value) => _blink.BlinkSVGElement.xmllang_Setter(this, value); 5847 void set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Sett er_(this, value);
5848 5848
5849 @DomName('SVGElement.xmlspace') 5849 @DomName('SVGElement.xmlspace')
5850 @DocsEditable() 5850 @DocsEditable()
5851 @Experimental() // untriaged 5851 @Experimental() // untriaged
5852 String get xmlspace => _blink.BlinkSVGElement.xmlspace_Getter(this); 5852 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(this);
5853 5853
5854 @DomName('SVGElement.xmlspace') 5854 @DomName('SVGElement.xmlspace')
5855 @DocsEditable() 5855 @DocsEditable()
5856 @Experimental() // untriaged 5856 @Experimental() // untriaged
5857 void set xmlspace(String value) => _blink.BlinkSVGElement.xmlspace_Setter(this , value); 5857 void set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Se tter_(this, value);
5858 5858
5859 @DomName('SVGElement.onabort') 5859 @DomName('SVGElement.onabort')
5860 @DocsEditable() 5860 @DocsEditable()
5861 @Experimental() // untriaged 5861 @Experimental() // untriaged
5862 ElementStream<Event> get onAbort => abortEvent.forElement(this); 5862 ElementStream<Event> get onAbort => abortEvent.forElement(this);
5863 5863
5864 @DomName('SVGElement.onblur') 5864 @DomName('SVGElement.onblur')
5865 @DocsEditable() 5865 @DocsEditable()
5866 @Experimental() // untriaged 5866 @Experimental() // untriaged
5867 ElementStream<Event> get onBlur => blurEvent.forElement(this); 5867 ElementStream<Event> get onBlur => blurEvent.forElement(this);
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
6136 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 6136 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
6137 /** 6137 /**
6138 * Constructor instantiated by the DOM when a custom element has been created. 6138 * Constructor instantiated by the DOM when a custom element has been created.
6139 * 6139 *
6140 * This can only be called by subclasses from their created constructor. 6140 * This can only be called by subclasses from their created constructor.
6141 */ 6141 */
6142 SvgSvgElement.created() : super.created(); 6142 SvgSvgElement.created() : super.created();
6143 6143
6144 @DomName('SVGSVGElement.currentScale') 6144 @DomName('SVGSVGElement.currentScale')
6145 @DocsEditable() 6145 @DocsEditable()
6146 num get currentScale => _blink.BlinkSVGSVGElement.currentScale_Getter(this); 6146 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter _(this);
6147 6147
6148 @DomName('SVGSVGElement.currentScale') 6148 @DomName('SVGSVGElement.currentScale')
6149 @DocsEditable() 6149 @DocsEditable()
6150 void set currentScale(num value) => _blink.BlinkSVGSVGElement.currentScale_Set ter(this, value); 6150 void set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.current Scale_Setter_(this, value);
6151 6151
6152 @DomName('SVGSVGElement.currentTranslate') 6152 @DomName('SVGSVGElement.currentTranslate')
6153 @DocsEditable() 6153 @DocsEditable()
6154 Point get currentTranslate => _blink.BlinkSVGSVGElement.currentTranslate_Gette r(this); 6154 Point get currentTranslate => _blink.BlinkSVGSVGElement.instance.currentTransl ate_Getter_(this);
6155 6155
6156 @DomName('SVGSVGElement.currentView') 6156 @DomName('SVGSVGElement.currentView')
6157 @DocsEditable() 6157 @DocsEditable()
6158 ViewSpec get currentView => _blink.BlinkSVGSVGElement.currentView_Getter(this) ; 6158 ViewSpec get currentView => _blink.BlinkSVGSVGElement.instance.currentView_Get ter_(this);
6159 6159
6160 @DomName('SVGSVGElement.height') 6160 @DomName('SVGSVGElement.height')
6161 @DocsEditable() 6161 @DocsEditable()
6162 AnimatedLength get height => _blink.BlinkSVGSVGElement.height_Getter(this); 6162 AnimatedLength get height => _blink.BlinkSVGSVGElement.instance.height_Getter_ (this);
6163 6163
6164 @DomName('SVGSVGElement.pixelUnitToMillimeterX') 6164 @DomName('SVGSVGElement.pixelUnitToMillimeterX')
6165 @DocsEditable() 6165 @DocsEditable()
6166 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.pixelUnitToMill imeterX_Getter(this); 6166 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelU nitToMillimeterX_Getter_(this);
6167 6167
6168 @DomName('SVGSVGElement.pixelUnitToMillimeterY') 6168 @DomName('SVGSVGElement.pixelUnitToMillimeterY')
6169 @DocsEditable() 6169 @DocsEditable()
6170 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.pixelUnitToMill imeterY_Getter(this); 6170 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelU nitToMillimeterY_Getter_(this);
6171 6171
6172 @DomName('SVGSVGElement.screenPixelToMillimeterX') 6172 @DomName('SVGSVGElement.screenPixelToMillimeterX')
6173 @DocsEditable() 6173 @DocsEditable()
6174 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.screenPixelTo MillimeterX_Getter(this); 6174 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.scre enPixelToMillimeterX_Getter_(this);
6175 6175
6176 @DomName('SVGSVGElement.screenPixelToMillimeterY') 6176 @DomName('SVGSVGElement.screenPixelToMillimeterY')
6177 @DocsEditable() 6177 @DocsEditable()
6178 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.screenPixelTo MillimeterY_Getter(this); 6178 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.scre enPixelToMillimeterY_Getter_(this);
6179 6179
6180 @DomName('SVGSVGElement.useCurrentView') 6180 @DomName('SVGSVGElement.useCurrentView')
6181 @DocsEditable() 6181 @DocsEditable()
6182 bool get useCurrentView => _blink.BlinkSVGSVGElement.useCurrentView_Getter(thi s); 6182 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G etter_(this);
6183 6183
6184 @DomName('SVGSVGElement.viewport') 6184 @DomName('SVGSVGElement.viewport')
6185 @DocsEditable() 6185 @DocsEditable()
6186 Rect get viewport => _blink.BlinkSVGSVGElement.viewport_Getter(this); 6186 Rect get viewport => _blink.BlinkSVGSVGElement.instance.viewport_Getter_(this) ;
6187 6187
6188 @DomName('SVGSVGElement.width') 6188 @DomName('SVGSVGElement.width')
6189 @DocsEditable() 6189 @DocsEditable()
6190 AnimatedLength get width => _blink.BlinkSVGSVGElement.width_Getter(this); 6190 AnimatedLength get width => _blink.BlinkSVGSVGElement.instance.width_Getter_(t his);
6191 6191
6192 @DomName('SVGSVGElement.x') 6192 @DomName('SVGSVGElement.x')
6193 @DocsEditable() 6193 @DocsEditable()
6194 AnimatedLength get x => _blink.BlinkSVGSVGElement.x_Getter(this); 6194 AnimatedLength get x => _blink.BlinkSVGSVGElement.instance.x_Getter_(this);
6195 6195
6196 @DomName('SVGSVGElement.y') 6196 @DomName('SVGSVGElement.y')
6197 @DocsEditable() 6197 @DocsEditable()
6198 AnimatedLength get y => _blink.BlinkSVGSVGElement.y_Getter(this); 6198 AnimatedLength get y => _blink.BlinkSVGSVGElement.instance.y_Getter_(this);
6199 6199
6200 @DomName('SVGSVGElement.animationsPaused') 6200 @DomName('SVGSVGElement.animationsPaused')
6201 @DocsEditable() 6201 @DocsEditable()
6202 bool animationsPaused() => _blink.BlinkSVGSVGElement.animationsPaused_Callback _0(this); 6202 bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused _Callback_0_(this);
6203 6203
6204 @DomName('SVGSVGElement.checkEnclosure') 6204 @DomName('SVGSVGElement.checkEnclosure')
6205 @DocsEditable() 6205 @DocsEditable()
6206 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.checkEnclosure_Callback_2(this, element, rect); 6206 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.instance.checkEnclosure_Callback_2_(this, element, rect);
6207 6207
6208 @DomName('SVGSVGElement.checkIntersection') 6208 @DomName('SVGSVGElement.checkIntersection')
6209 @DocsEditable() 6209 @DocsEditable()
6210 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.checkIntersection_Callback_2(this, element, rect); 6210 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.instance.checkIntersection_Callback_2_(this, element, rect);
6211 6211
6212 @DomName('SVGSVGElement.createSVGAngle') 6212 @DomName('SVGSVGElement.createSVGAngle')
6213 @DocsEditable() 6213 @DocsEditable()
6214 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.createSVGAngle_Callback_0( this); 6214 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca llback_0_(this);
6215 6215
6216 @DomName('SVGSVGElement.createSVGLength') 6216 @DomName('SVGSVGElement.createSVGLength')
6217 @DocsEditable() 6217 @DocsEditable()
6218 Length createSvgLength() => _blink.BlinkSVGSVGElement.createSVGLength_Callback _0(this); 6218 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength _Callback_0_(this);
6219 6219
6220 @DomName('SVGSVGElement.createSVGMatrix') 6220 @DomName('SVGSVGElement.createSVGMatrix')
6221 @DocsEditable() 6221 @DocsEditable()
6222 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.createSVGMatrix_Callback _0(this); 6222 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix _Callback_0_(this);
6223 6223
6224 @DomName('SVGSVGElement.createSVGNumber') 6224 @DomName('SVGSVGElement.createSVGNumber')
6225 @DocsEditable() 6225 @DocsEditable()
6226 Number createSvgNumber() => _blink.BlinkSVGSVGElement.createSVGNumber_Callback _0(this); 6226 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber _Callback_0_(this);
6227 6227
6228 @DomName('SVGSVGElement.createSVGPoint') 6228 @DomName('SVGSVGElement.createSVGPoint')
6229 @DocsEditable() 6229 @DocsEditable()
6230 Point createSvgPoint() => _blink.BlinkSVGSVGElement.createSVGPoint_Callback_0( this); 6230 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca llback_0_(this);
6231 6231
6232 @DomName('SVGSVGElement.createSVGRect') 6232 @DomName('SVGSVGElement.createSVGRect')
6233 @DocsEditable() 6233 @DocsEditable()
6234 Rect createSvgRect() => _blink.BlinkSVGSVGElement.createSVGRect_Callback_0(thi s); 6234 Rect createSvgRect() => _blink.BlinkSVGSVGElement.instance.createSVGRect_Callb ack_0_(this);
6235 6235
6236 @DomName('SVGSVGElement.createSVGTransform') 6236 @DomName('SVGSVGElement.createSVGTransform')
6237 @DocsEditable() 6237 @DocsEditable()
6238 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.createSVGTransform _Callback_0(this); 6238 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG Transform_Callback_0_(this);
6239 6239
6240 @DomName('SVGSVGElement.createSVGTransformFromMatrix') 6240 @DomName('SVGSVGElement.createSVGTransformFromMatrix')
6241 @DocsEditable() 6241 @DocsEditable()
6242 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle ment.createSVGTransformFromMatrix_Callback_1(this, matrix); 6242 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle ment.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
6243 6243
6244 @DomName('SVGSVGElement.deselectAll') 6244 @DomName('SVGSVGElement.deselectAll')
6245 @DocsEditable() 6245 @DocsEditable()
6246 void deselectAll() => _blink.BlinkSVGSVGElement.deselectAll_Callback_0(this); 6246 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_ 0_(this);
6247 6247
6248 @DomName('SVGSVGElement.forceRedraw') 6248 @DomName('SVGSVGElement.forceRedraw')
6249 @DocsEditable() 6249 @DocsEditable()
6250 void forceRedraw() => _blink.BlinkSVGSVGElement.forceRedraw_Callback_0(this); 6250 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_ 0_(this);
6251 6251
6252 @DomName('SVGSVGElement.getCurrentTime') 6252 @DomName('SVGSVGElement.getCurrentTime')
6253 @DocsEditable() 6253 @DocsEditable()
6254 double getCurrentTime() => _blink.BlinkSVGSVGElement.getCurrentTime_Callback_0 (this); 6254 double getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_C allback_0_(this);
6255 6255
6256 @DomName('SVGSVGElement.getElementById') 6256 @DomName('SVGSVGElement.getElementById')
6257 @DocsEditable() 6257 @DocsEditable()
6258 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.getEleme ntById_Callback_1(this, elementId); 6258 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.instance .getElementById_Callback_1_(this, elementId);
6259 6259
6260 @DomName('SVGSVGElement.getEnclosureList') 6260 @DomName('SVGSVGElement.getEnclosureList')
6261 @DocsEditable() 6261 @DocsEditable()
6262 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink. BlinkSVGSVGElement.getEnclosureList_Callback_2(this, rect, referenceElement); 6262 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink. BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(this, rect, referenceEl ement);
6263 6263
6264 @DomName('SVGSVGElement.getIntersectionList') 6264 @DomName('SVGSVGElement.getIntersectionList')
6265 @DocsEditable() 6265 @DocsEditable()
6266 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli nk.BlinkSVGSVGElement.getIntersectionList_Callback_2(this, rect, referenceElemen t); 6266 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli nk.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(this, rect, refer enceElement);
6267 6267
6268 @DomName('SVGSVGElement.pauseAnimations') 6268 @DomName('SVGSVGElement.pauseAnimations')
6269 @DocsEditable() 6269 @DocsEditable()
6270 void pauseAnimations() => _blink.BlinkSVGSVGElement.pauseAnimations_Callback_0 (this); 6270 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C allback_0_(this);
6271 6271
6272 @DomName('SVGSVGElement.setCurrentTime') 6272 @DomName('SVGSVGElement.setCurrentTime')
6273 @DocsEditable() 6273 @DocsEditable()
6274 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.setCurrentTime_C allback_1(this, seconds); 6274 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr entTime_Callback_1_(this, seconds);
6275 6275
6276 @DomName('SVGSVGElement.suspendRedraw') 6276 @DomName('SVGSVGElement.suspendRedraw')
6277 @DocsEditable() 6277 @DocsEditable()
6278 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.suspen dRedraw_Callback_1(this, maxWaitMilliseconds); 6278 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instan ce.suspendRedraw_Callback_1_(this, maxWaitMilliseconds);
6279 6279
6280 @DomName('SVGSVGElement.unpauseAnimations') 6280 @DomName('SVGSVGElement.unpauseAnimations')
6281 @DocsEditable() 6281 @DocsEditable()
6282 void unpauseAnimations() => _blink.BlinkSVGSVGElement.unpauseAnimations_Callba ck_0(this); 6282 void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimatio ns_Callback_0_(this);
6283 6283
6284 @DomName('SVGSVGElement.unsuspendRedraw') 6284 @DomName('SVGSVGElement.unsuspendRedraw')
6285 @DocsEditable() 6285 @DocsEditable()
6286 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.unsuspe ndRedraw_Callback_1(this, suspendHandleId); 6286 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instanc e.unsuspendRedraw_Callback_1_(this, suspendHandleId);
6287 6287
6288 @DomName('SVGSVGElement.unsuspendRedrawAll') 6288 @DomName('SVGSVGElement.unsuspendRedrawAll')
6289 @DocsEditable() 6289 @DocsEditable()
6290 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.unsuspendRedrawAll_Call back_0(this); 6290 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedra wAll_Callback_0_(this);
6291 6291
6292 @DomName('SVGSVGElement.preserveAspectRatio') 6292 @DomName('SVGSVGElement.preserveAspectRatio')
6293 @DocsEditable() 6293 @DocsEditable()
6294 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme nt.preserveAspectRatio_Getter(this); 6294 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme nt.instance.preserveAspectRatio_Getter_(this);
6295 6295
6296 @DomName('SVGSVGElement.viewBox') 6296 @DomName('SVGSVGElement.viewBox')
6297 @DocsEditable() 6297 @DocsEditable()
6298 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.viewBox_Getter(this); 6298 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.instance.viewBox_Getter_ (this);
6299 6299
6300 @DomName('SVGSVGElement.zoomAndPan') 6300 @DomName('SVGSVGElement.zoomAndPan')
6301 @DocsEditable() 6301 @DocsEditable()
6302 int get zoomAndPan => _blink.BlinkSVGSVGElement.zoomAndPan_Getter(this); 6302 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(th is);
6303 6303
6304 @DomName('SVGSVGElement.zoomAndPan') 6304 @DomName('SVGSVGElement.zoomAndPan')
6305 @DocsEditable() 6305 @DocsEditable()
6306 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.zoomAndPan_Setter( this, value); 6306 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPa n_Setter_(this, value);
6307 6307
6308 } 6308 }
6309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6310 // for details. All rights reserved. Use of this source code is governed by a 6310 // for details. All rights reserved. Use of this source code is governed by a
6311 // BSD-style license that can be found in the LICENSE file. 6311 // BSD-style license that can be found in the LICENSE file.
6312 6312
6313 // WARNING: Do not edit - generated code. 6313 // WARNING: Do not edit - generated code.
6314 6314
6315 6315
6316 @DocsEditable() 6316 @DocsEditable()
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
6350 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 6350 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6351 /** 6351 /**
6352 * Constructor instantiated by the DOM when a custom element has been created. 6352 * Constructor instantiated by the DOM when a custom element has been created.
6353 * 6353 *
6354 * This can only be called by subclasses from their created constructor. 6354 * This can only be called by subclasses from their created constructor.
6355 */ 6355 */
6356 SymbolElement.created() : super.created(); 6356 SymbolElement.created() : super.created();
6357 6357
6358 @DomName('SVGSymbolElement.preserveAspectRatio') 6358 @DomName('SVGSymbolElement.preserveAspectRatio')
6359 @DocsEditable() 6359 @DocsEditable()
6360 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl ement.preserveAspectRatio_Getter(this); 6360 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl ement.instance.preserveAspectRatio_Getter_(this);
6361 6361
6362 @DomName('SVGSymbolElement.viewBox') 6362 @DomName('SVGSymbolElement.viewBox')
6363 @DocsEditable() 6363 @DocsEditable()
6364 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.viewBox_Getter(this); 6364 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.instance.viewBox_Gett er_(this);
6365 6365
6366 } 6366 }
6367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6368 // for details. All rights reserved. Use of this source code is governed by a 6368 // for details. All rights reserved. Use of this source code is governed by a
6369 // BSD-style license that can be found in the LICENSE file. 6369 // BSD-style license that can be found in the LICENSE file.
6370 6370
6371 // WARNING: Do not edit - generated code. 6371 // WARNING: Do not edit - generated code.
6372 6372
6373 6373
6374 @DocsEditable() 6374 @DocsEditable()
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
6447 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 6447 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
6448 @DocsEditable() 6448 @DocsEditable()
6449 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 6449 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
6450 6450
6451 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 6451 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
6452 @DocsEditable() 6452 @DocsEditable()
6453 static const int LENGTHADJUST_UNKNOWN = 0; 6453 static const int LENGTHADJUST_UNKNOWN = 0;
6454 6454
6455 @DomName('SVGTextContentElement.lengthAdjust') 6455 @DomName('SVGTextContentElement.lengthAdjust')
6456 @DocsEditable() 6456 @DocsEditable()
6457 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.leng thAdjust_Getter(this); 6457 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.inst ance.lengthAdjust_Getter_(this);
6458 6458
6459 @DomName('SVGTextContentElement.textLength') 6459 @DomName('SVGTextContentElement.textLength')
6460 @DocsEditable() 6460 @DocsEditable()
6461 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.textLength_ Getter(this); 6461 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.instance.te xtLength_Getter_(this);
6462 6462
6463 @DomName('SVGTextContentElement.getCharNumAtPosition') 6463 @DomName('SVGTextContentElement.getCharNumAtPosition')
6464 @DocsEditable() 6464 @DocsEditable()
6465 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.get CharNumAtPosition_Callback_1(this, point); 6465 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins tance.getCharNumAtPosition_Callback_1_(this, point);
6466 6466
6467 @DomName('SVGTextContentElement.getComputedTextLength') 6467 @DomName('SVGTextContentElement.getComputedTextLength')
6468 @DocsEditable() 6468 @DocsEditable()
6469 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.getCompute dTextLength_Callback_0(this); 6469 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.g etComputedTextLength_Callback_0_(this);
6470 6470
6471 @DomName('SVGTextContentElement.getEndPositionOfChar') 6471 @DomName('SVGTextContentElement.getEndPositionOfChar')
6472 @DocsEditable() 6472 @DocsEditable()
6473 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.ge tEndPositionOfChar_Callback_1(this, offset); 6473 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.in stance.getEndPositionOfChar_Callback_1_(this, offset);
6474 6474
6475 @DomName('SVGTextContentElement.getExtentOfChar') 6475 @DomName('SVGTextContentElement.getExtentOfChar')
6476 @DocsEditable() 6476 @DocsEditable()
6477 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.getExten tOfChar_Callback_1(this, offset); 6477 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.instance .getExtentOfChar_Callback_1_(this, offset);
6478 6478
6479 @DomName('SVGTextContentElement.getNumberOfChars') 6479 @DomName('SVGTextContentElement.getNumberOfChars')
6480 @DocsEditable() 6480 @DocsEditable()
6481 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.getNumberOfChars_C allback_0(this); 6481 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber OfChars_Callback_0_(this);
6482 6482
6483 @DomName('SVGTextContentElement.getRotationOfChar') 6483 @DomName('SVGTextContentElement.getRotationOfChar')
6484 @DocsEditable() 6484 @DocsEditable()
6485 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.getR otationOfChar_Callback_1(this, offset); 6485 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.inst ance.getRotationOfChar_Callback_1_(this, offset);
6486 6486
6487 @DomName('SVGTextContentElement.getStartPositionOfChar') 6487 @DomName('SVGTextContentElement.getStartPositionOfChar')
6488 @DocsEditable() 6488 @DocsEditable()
6489 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement. getStartPositionOfChar_Callback_1(this, offset); 6489 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement. instance.getStartPositionOfChar_Callback_1_(this, offset);
6490 6490
6491 @DomName('SVGTextContentElement.getSubStringLength') 6491 @DomName('SVGTextContentElement.getSubStringLength')
6492 @DocsEditable() 6492 @DocsEditable()
6493 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten tElement.getSubStringLength_Callback_2(this, offset, length); 6493 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten tElement.instance.getSubStringLength_Callback_2_(this, offset, length);
6494 6494
6495 @DomName('SVGTextContentElement.selectSubString') 6495 @DomName('SVGTextContentElement.selectSubString')
6496 @DocsEditable() 6496 @DocsEditable()
6497 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem ent.selectSubString_Callback_2(this, offset, length); 6497 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem ent.instance.selectSubString_Callback_2_(this, offset, length);
6498 6498
6499 } 6499 }
6500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6501 // for details. All rights reserved. Use of this source code is governed by a 6501 // for details. All rights reserved. Use of this source code is governed by a
6502 // BSD-style license that can be found in the LICENSE file. 6502 // BSD-style license that can be found in the LICENSE file.
6503 6503
6504 // WARNING: Do not edit - generated code. 6504 // WARNING: Do not edit - generated code.
6505 6505
6506 6506
6507 @DocsEditable() 6507 @DocsEditable()
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
6561 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT') 6561 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT')
6562 @DocsEditable() 6562 @DocsEditable()
6563 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 6563 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
6564 6564
6565 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN') 6565 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN')
6566 @DocsEditable() 6566 @DocsEditable()
6567 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 6567 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
6568 6568
6569 @DomName('SVGTextPathElement.method') 6569 @DomName('SVGTextPathElement.method')
6570 @DocsEditable() 6570 @DocsEditable()
6571 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.method_Getter (this); 6571 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.instance.meth od_Getter_(this);
6572 6572
6573 @DomName('SVGTextPathElement.spacing') 6573 @DomName('SVGTextPathElement.spacing')
6574 @DocsEditable() 6574 @DocsEditable()
6575 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.spacing_Gett er(this); 6575 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.instance.spa cing_Getter_(this);
6576 6576
6577 @DomName('SVGTextPathElement.startOffset') 6577 @DomName('SVGTextPathElement.startOffset')
6578 @DocsEditable() 6578 @DocsEditable()
6579 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.startOffset_G etter(this); 6579 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.instance.star tOffset_Getter_(this);
6580 6580
6581 @DomName('SVGTextPathElement.href') 6581 @DomName('SVGTextPathElement.href')
6582 @DocsEditable() 6582 @DocsEditable()
6583 AnimatedString get href => _blink.BlinkSVGTextPathElement.href_Getter(this); 6583 AnimatedString get href => _blink.BlinkSVGTextPathElement.instance.href_Getter _(this);
6584 6584
6585 } 6585 }
6586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6586 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6587 // for details. All rights reserved. Use of this source code is governed by a 6587 // for details. All rights reserved. Use of this source code is governed by a
6588 // BSD-style license that can be found in the LICENSE file. 6588 // BSD-style license that can be found in the LICENSE file.
6589 6589
6590 // WARNING: Do not edit - generated code. 6590 // WARNING: Do not edit - generated code.
6591 6591
6592 6592
6593 @DocsEditable() 6593 @DocsEditable()
6594 @DomName('SVGTextPositioningElement') 6594 @DomName('SVGTextPositioningElement')
6595 @Unstable() 6595 @Unstable()
6596 class TextPositioningElement extends TextContentElement { 6596 class TextPositioningElement extends TextContentElement {
6597 // To suppress missing implicit constructor warnings. 6597 // To suppress missing implicit constructor warnings.
6598 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); } 6598 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
6599 /** 6599 /**
6600 * Constructor instantiated by the DOM when a custom element has been created. 6600 * Constructor instantiated by the DOM when a custom element has been created.
6601 * 6601 *
6602 * This can only be called by subclasses from their created constructor. 6602 * This can only be called by subclasses from their created constructor.
6603 */ 6603 */
6604 TextPositioningElement.created() : super.created(); 6604 TextPositioningElement.created() : super.created();
6605 6605
6606 @DomName('SVGTextPositioningElement.dx') 6606 @DomName('SVGTextPositioningElement.dx')
6607 @DocsEditable() 6607 @DocsEditable()
6608 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.dx_Getter(t his); 6608 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.instance.dx _Getter_(this);
6609 6609
6610 @DomName('SVGTextPositioningElement.dy') 6610 @DomName('SVGTextPositioningElement.dy')
6611 @DocsEditable() 6611 @DocsEditable()
6612 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.dy_Getter(t his); 6612 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.instance.dy _Getter_(this);
6613 6613
6614 @DomName('SVGTextPositioningElement.rotate') 6614 @DomName('SVGTextPositioningElement.rotate')
6615 @DocsEditable() 6615 @DocsEditable()
6616 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.rotate_ Getter(this); 6616 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.instanc e.rotate_Getter_(this);
6617 6617
6618 @DomName('SVGTextPositioningElement.x') 6618 @DomName('SVGTextPositioningElement.x')
6619 @DocsEditable() 6619 @DocsEditable()
6620 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.x_Getter(thi s); 6620 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.instance.x_G etter_(this);
6621 6621
6622 @DomName('SVGTextPositioningElement.y') 6622 @DomName('SVGTextPositioningElement.y')
6623 @DocsEditable() 6623 @DocsEditable()
6624 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.y_Getter(thi s); 6624 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.instance.y_G etter_(this);
6625 6625
6626 } 6626 }
6627 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6627 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6628 // for details. All rights reserved. Use of this source code is governed by a 6628 // for details. All rights reserved. Use of this source code is governed by a
6629 // BSD-style license that can be found in the LICENSE file. 6629 // BSD-style license that can be found in the LICENSE file.
6630 6630
6631 // WARNING: Do not edit - generated code. 6631 // WARNING: Do not edit - generated code.
6632 6632
6633 6633
6634 @DocsEditable() 6634 @DocsEditable()
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
6686 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') 6686 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE')
6687 @DocsEditable() 6687 @DocsEditable()
6688 static const int SVG_TRANSFORM_TRANSLATE = 2; 6688 static const int SVG_TRANSFORM_TRANSLATE = 2;
6689 6689
6690 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') 6690 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN')
6691 @DocsEditable() 6691 @DocsEditable()
6692 static const int SVG_TRANSFORM_UNKNOWN = 0; 6692 static const int SVG_TRANSFORM_UNKNOWN = 0;
6693 6693
6694 @DomName('SVGTransform.angle') 6694 @DomName('SVGTransform.angle')
6695 @DocsEditable() 6695 @DocsEditable()
6696 double get angle => _blink.BlinkSVGTransform.angle_Getter(this); 6696 double get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(this);
6697 6697
6698 @DomName('SVGTransform.matrix') 6698 @DomName('SVGTransform.matrix')
6699 @DocsEditable() 6699 @DocsEditable()
6700 Matrix get matrix => _blink.BlinkSVGTransform.matrix_Getter(this); 6700 Matrix get matrix => _blink.BlinkSVGTransform.instance.matrix_Getter_(this);
6701 6701
6702 @DomName('SVGTransform.type') 6702 @DomName('SVGTransform.type')
6703 @DocsEditable() 6703 @DocsEditable()
6704 int get type => _blink.BlinkSVGTransform.type_Getter(this); 6704 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(this);
6705 6705
6706 @DomName('SVGTransform.setMatrix') 6706 @DomName('SVGTransform.setMatrix')
6707 @DocsEditable() 6707 @DocsEditable()
6708 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.setMatrix_Callback_1 (this, matrix); 6708 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_C allback_1_(this, matrix);
6709 6709
6710 @DomName('SVGTransform.setRotate') 6710 @DomName('SVGTransform.setRotate')
6711 @DocsEditable() 6711 @DocsEditable()
6712 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.setRotat e_Callback_3(this, angle, cx, cy); 6712 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance .setRotate_Callback_3_(this, angle, cx, cy);
6713 6713
6714 @DomName('SVGTransform.setScale') 6714 @DomName('SVGTransform.setScale')
6715 @DocsEditable() 6715 @DocsEditable()
6716 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.setScale_Callback_2( this, sx, sy); 6716 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Ca llback_2_(this, sx, sy);
6717 6717
6718 @DomName('SVGTransform.setSkewX') 6718 @DomName('SVGTransform.setSkewX')
6719 @DocsEditable() 6719 @DocsEditable()
6720 void setSkewX(num angle) => _blink.BlinkSVGTransform.setSkewX_Callback_1(this, angle); 6720 void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callbac k_1_(this, angle);
6721 6721
6722 @DomName('SVGTransform.setSkewY') 6722 @DomName('SVGTransform.setSkewY')
6723 @DocsEditable() 6723 @DocsEditable()
6724 void setSkewY(num angle) => _blink.BlinkSVGTransform.setSkewY_Callback_1(this, angle); 6724 void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callbac k_1_(this, angle);
6725 6725
6726 @DomName('SVGTransform.setTranslate') 6726 @DomName('SVGTransform.setTranslate')
6727 @DocsEditable() 6727 @DocsEditable()
6728 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.setTranslate_Cal lback_2(this, tx, ty); 6728 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTran slate_Callback_2_(this, tx, ty);
6729 6729
6730 } 6730 }
6731 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6731 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6732 // for details. All rights reserved. Use of this source code is governed by a 6732 // for details. All rights reserved. Use of this source code is governed by a
6733 // BSD-style license that can be found in the LICENSE file. 6733 // BSD-style license that can be found in the LICENSE file.
6734 6734
6735 // WARNING: Do not edit - generated code. 6735 // WARNING: Do not edit - generated code.
6736 6736
6737 6737
6738 @DocsEditable() 6738 @DocsEditable()
6739 @DomName('SVGTransformList') 6739 @DomName('SVGTransformList')
6740 @Unstable() 6740 @Unstable()
6741 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> { 6741 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> {
6742 // To suppress missing implicit constructor warnings. 6742 // To suppress missing implicit constructor warnings.
6743 factory TransformList._() { throw new UnsupportedError("Not supported"); } 6743 factory TransformList._() { throw new UnsupportedError("Not supported"); }
6744 6744
6745 @DomName('SVGTransformList.length') 6745 @DomName('SVGTransformList.length')
6746 @DocsEditable() 6746 @DocsEditable()
6747 @Experimental() // untriaged 6747 @Experimental() // untriaged
6748 int get length => _blink.BlinkSVGTransformList.length_Getter(this); 6748 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(this);
6749 6749
6750 @DomName('SVGTransformList.numberOfItems') 6750 @DomName('SVGTransformList.numberOfItems')
6751 @DocsEditable() 6751 @DocsEditable()
6752 int get numberOfItems => _blink.BlinkSVGTransformList.numberOfItems_Getter(thi s); 6752 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G etter_(this);
6753 6753
6754 Transform operator[](int index) { 6754 Transform operator[](int index) {
6755 if (index < 0 || index >= length) 6755 if (index < 0 || index >= length)
6756 throw new RangeError.range(index, 0, length); 6756 throw new RangeError.range(index, 0, length);
6757 return getItem(index); 6757 return getItem(index);
6758 } 6758 }
6759 6759
6760 void operator[]=(int index, Transform value) { 6760 void operator[]=(int index, Transform value) {
6761 throw new UnsupportedError("Cannot assign element of immutable List."); 6761 throw new UnsupportedError("Cannot assign element of immutable List.");
6762 } 6762 }
(...skipping 28 matching lines...) Expand all
6791 if (len == 0) throw new StateError("No elements"); 6791 if (len == 0) throw new StateError("No elements");
6792 throw new StateError("More than one element"); 6792 throw new StateError("More than one element");
6793 } 6793 }
6794 6794
6795 Transform elementAt(int index) => this[index]; 6795 Transform elementAt(int index) => this[index];
6796 // -- end List<Transform> mixins. 6796 // -- end List<Transform> mixins.
6797 6797
6798 @DomName('SVGTransformList.__setter__') 6798 @DomName('SVGTransformList.__setter__')
6799 @DocsEditable() 6799 @DocsEditable()
6800 @Experimental() // untriaged 6800 @Experimental() // untriaged
6801 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.$_ _setter___Callback_2(this, index, value); 6801 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in stance.$__setter___Callback_2_(this, index, value);
6802 6802
6803 @DomName('SVGTransformList.appendItem') 6803 @DomName('SVGTransformList.appendItem')
6804 @DocsEditable() 6804 @DocsEditable()
6805 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.appendIte m_Callback_1(this, item); 6805 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.instance. appendItem_Callback_1_(this, item);
6806 6806
6807 @DomName('SVGTransformList.clear') 6807 @DomName('SVGTransformList.clear')
6808 @DocsEditable() 6808 @DocsEditable()
6809 void clear() => _blink.BlinkSVGTransformList.clear_Callback_0(this); 6809 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(this);
6810 6810
6811 @DomName('SVGTransformList.consolidate') 6811 @DomName('SVGTransformList.consolidate')
6812 @DocsEditable() 6812 @DocsEditable()
6813 Transform consolidate() => _blink.BlinkSVGTransformList.consolidate_Callback_0 (this); 6813 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C allback_0_(this);
6814 6814
6815 @DomName('SVGTransformList.createSVGTransformFromMatrix') 6815 @DomName('SVGTransformList.createSVGTransformFromMatrix')
6816 @DocsEditable() 6816 @DocsEditable()
6817 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf ormList.createSVGTransformFromMatrix_Callback_1(this, matrix); 6817 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf ormList.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
6818 6818
6819 @DomName('SVGTransformList.getItem') 6819 @DomName('SVGTransformList.getItem')
6820 @DocsEditable() 6820 @DocsEditable()
6821 Transform getItem(int index) => _blink.BlinkSVGTransformList.getItem_Callback_ 1(this, index); 6821 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_ Callback_1_(this, index);
6822 6822
6823 @DomName('SVGTransformList.initialize') 6823 @DomName('SVGTransformList.initialize')
6824 @DocsEditable() 6824 @DocsEditable()
6825 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.initializ e_Callback_1(this, item); 6825 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.instance. initialize_Callback_1_(this, item);
6826 6826
6827 @DomName('SVGTransformList.insertItemBefore') 6827 @DomName('SVGTransformList.insertItemBefore')
6828 @DocsEditable() 6828 @DocsEditable()
6829 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf ormList.insertItemBefore_Callback_2(this, item, index); 6829 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf ormList.instance.insertItemBefore_Callback_2_(this, item, index);
6830 6830
6831 @DomName('SVGTransformList.removeItem') 6831 @DomName('SVGTransformList.removeItem')
6832 @DocsEditable() 6832 @DocsEditable()
6833 Transform removeItem(int index) => _blink.BlinkSVGTransformList.removeItem_Cal lback_1(this, index); 6833 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov eItem_Callback_1_(this, index);
6834 6834
6835 @DomName('SVGTransformList.replaceItem') 6835 @DomName('SVGTransformList.replaceItem')
6836 @DocsEditable() 6836 @DocsEditable()
6837 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi st.replaceItem_Callback_2(this, item, index); 6837 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi st.instance.replaceItem_Callback_2_(this, item, index);
6838 6838
6839 } 6839 }
6840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6841 // for details. All rights reserved. Use of this source code is governed by a 6841 // for details. All rights reserved. Use of this source code is governed by a
6842 // BSD-style license that can be found in the LICENSE file. 6842 // BSD-style license that can be found in the LICENSE file.
6843 6843
6844 // WARNING: Do not edit - generated code. 6844 // WARNING: Do not edit - generated code.
6845 6845
6846 6846
6847 @DocsEditable() 6847 @DocsEditable()
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
6902 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 6902 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
6903 /** 6903 /**
6904 * Constructor instantiated by the DOM when a custom element has been created. 6904 * Constructor instantiated by the DOM when a custom element has been created.
6905 * 6905 *
6906 * This can only be called by subclasses from their created constructor. 6906 * This can only be called by subclasses from their created constructor.
6907 */ 6907 */
6908 UseElement.created() : super.created(); 6908 UseElement.created() : super.created();
6909 6909
6910 @DomName('SVGUseElement.height') 6910 @DomName('SVGUseElement.height')
6911 @DocsEditable() 6911 @DocsEditable()
6912 AnimatedLength get height => _blink.BlinkSVGUseElement.height_Getter(this); 6912 AnimatedLength get height => _blink.BlinkSVGUseElement.instance.height_Getter_ (this);
6913 6913
6914 @DomName('SVGUseElement.width') 6914 @DomName('SVGUseElement.width')
6915 @DocsEditable() 6915 @DocsEditable()
6916 AnimatedLength get width => _blink.BlinkSVGUseElement.width_Getter(this); 6916 AnimatedLength get width => _blink.BlinkSVGUseElement.instance.width_Getter_(t his);
6917 6917
6918 @DomName('SVGUseElement.x') 6918 @DomName('SVGUseElement.x')
6919 @DocsEditable() 6919 @DocsEditable()
6920 AnimatedLength get x => _blink.BlinkSVGUseElement.x_Getter(this); 6920 AnimatedLength get x => _blink.BlinkSVGUseElement.instance.x_Getter_(this);
6921 6921
6922 @DomName('SVGUseElement.y') 6922 @DomName('SVGUseElement.y')
6923 @DocsEditable() 6923 @DocsEditable()
6924 AnimatedLength get y => _blink.BlinkSVGUseElement.y_Getter(this); 6924 AnimatedLength get y => _blink.BlinkSVGUseElement.instance.y_Getter_(this);
6925 6925
6926 @DomName('SVGUseElement.href') 6926 @DomName('SVGUseElement.href')
6927 @DocsEditable() 6927 @DocsEditable()
6928 AnimatedString get href => _blink.BlinkSVGUseElement.href_Getter(this); 6928 AnimatedString get href => _blink.BlinkSVGUseElement.instance.href_Getter_(thi s);
6929 6929
6930 } 6930 }
6931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6932 // for details. All rights reserved. Use of this source code is governed by a 6932 // for details. All rights reserved. Use of this source code is governed by a
6933 // BSD-style license that can be found in the LICENSE file. 6933 // BSD-style license that can be found in the LICENSE file.
6934 6934
6935 // WARNING: Do not edit - generated code. 6935 // WARNING: Do not edit - generated code.
6936 6936
6937 6937
6938 @DocsEditable() 6938 @DocsEditable()
6939 @DomName('SVGViewElement') 6939 @DomName('SVGViewElement')
6940 @Unstable() 6940 @Unstable()
6941 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { 6941 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan {
6942 // To suppress missing implicit constructor warnings. 6942 // To suppress missing implicit constructor warnings.
6943 factory ViewElement._() { throw new UnsupportedError("Not supported"); } 6943 factory ViewElement._() { throw new UnsupportedError("Not supported"); }
6944 6944
6945 @DomName('SVGViewElement.SVGViewElement') 6945 @DomName('SVGViewElement.SVGViewElement')
6946 @DocsEditable() 6946 @DocsEditable()
6947 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 6947 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
6948 /** 6948 /**
6949 * Constructor instantiated by the DOM when a custom element has been created. 6949 * Constructor instantiated by the DOM when a custom element has been created.
6950 * 6950 *
6951 * This can only be called by subclasses from their created constructor. 6951 * This can only be called by subclasses from their created constructor.
6952 */ 6952 */
6953 ViewElement.created() : super.created(); 6953 ViewElement.created() : super.created();
6954 6954
6955 @DomName('SVGViewElement.viewTarget') 6955 @DomName('SVGViewElement.viewTarget')
6956 @DocsEditable() 6956 @DocsEditable()
6957 StringList get viewTarget => _blink.BlinkSVGViewElement.viewTarget_Getter(this ); 6957 StringList get viewTarget => _blink.BlinkSVGViewElement.instance.viewTarget_Ge tter_(this);
6958 6958
6959 @DomName('SVGViewElement.preserveAspectRatio') 6959 @DomName('SVGViewElement.preserveAspectRatio')
6960 @DocsEditable() 6960 @DocsEditable()
6961 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem ent.preserveAspectRatio_Getter(this); 6961 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem ent.instance.preserveAspectRatio_Getter_(this);
6962 6962
6963 @DomName('SVGViewElement.viewBox') 6963 @DomName('SVGViewElement.viewBox')
6964 @DocsEditable() 6964 @DocsEditable()
6965 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.viewBox_Getter(this); 6965 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.instance.viewBox_Getter _(this);
6966 6966
6967 @DomName('SVGViewElement.zoomAndPan') 6967 @DomName('SVGViewElement.zoomAndPan')
6968 @DocsEditable() 6968 @DocsEditable()
6969 int get zoomAndPan => _blink.BlinkSVGViewElement.zoomAndPan_Getter(this); 6969 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(t his);
6970 6970
6971 @DomName('SVGViewElement.zoomAndPan') 6971 @DomName('SVGViewElement.zoomAndPan')
6972 @DocsEditable() 6972 @DocsEditable()
6973 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.zoomAndPan_Setter (this, value); 6973 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndP an_Setter_(this, value);
6974 6974
6975 } 6975 }
6976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6977 // for details. All rights reserved. Use of this source code is governed by a 6977 // for details. All rights reserved. Use of this source code is governed by a
6978 // BSD-style license that can be found in the LICENSE file. 6978 // BSD-style license that can be found in the LICENSE file.
6979 6979
6980 // WARNING: Do not edit - generated code. 6980 // WARNING: Do not edit - generated code.
6981 6981
6982 6982
6983 @DocsEditable() 6983 @DocsEditable()
6984 @DomName('SVGViewSpec') 6984 @DomName('SVGViewSpec')
6985 @Unstable() 6985 @Unstable()
6986 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd Pan { 6986 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd Pan {
6987 // To suppress missing implicit constructor warnings. 6987 // To suppress missing implicit constructor warnings.
6988 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } 6988 factory ViewSpec._() { throw new UnsupportedError("Not supported"); }
6989 6989
6990 @DomName('SVGViewSpec.preserveAspectRatioString') 6990 @DomName('SVGViewSpec.preserveAspectRatioString')
6991 @DocsEditable() 6991 @DocsEditable()
6992 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.preserveAspect RatioString_Getter(this); 6992 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese rveAspectRatioString_Getter_(this);
6993 6993
6994 @DomName('SVGViewSpec.transform') 6994 @DomName('SVGViewSpec.transform')
6995 @DocsEditable() 6995 @DocsEditable()
6996 TransformList get transform => _blink.BlinkSVGViewSpec.transform_Getter(this); 6996 TransformList get transform => _blink.BlinkSVGViewSpec.instance.transform_Gett er_(this);
6997 6997
6998 @DomName('SVGViewSpec.transformString') 6998 @DomName('SVGViewSpec.transformString')
6999 @DocsEditable() 6999 @DocsEditable()
7000 String get transformString => _blink.BlinkSVGViewSpec.transformString_Getter(t his); 7000 String get transformString => _blink.BlinkSVGViewSpec.instance.transformString _Getter_(this);
7001 7001
7002 @DomName('SVGViewSpec.viewBoxString') 7002 @DomName('SVGViewSpec.viewBoxString')
7003 @DocsEditable() 7003 @DocsEditable()
7004 String get viewBoxString => _blink.BlinkSVGViewSpec.viewBoxString_Getter(this) ; 7004 String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Get ter_(this);
7005 7005
7006 @DomName('SVGViewSpec.viewTarget') 7006 @DomName('SVGViewSpec.viewTarget')
7007 @DocsEditable() 7007 @DocsEditable()
7008 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.viewTarget_Getter(this); 7008 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.instance.viewTarget_Gette r_(this);
7009 7009
7010 @DomName('SVGViewSpec.viewTargetString') 7010 @DomName('SVGViewSpec.viewTargetString')
7011 @DocsEditable() 7011 @DocsEditable()
7012 String get viewTargetString => _blink.BlinkSVGViewSpec.viewTargetString_Getter (this); 7012 String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetStri ng_Getter_(this);
7013 7013
7014 @DomName('SVGViewSpec.preserveAspectRatio') 7014 @DomName('SVGViewSpec.preserveAspectRatio')
7015 @DocsEditable() 7015 @DocsEditable()
7016 @Experimental() // nonstandard 7016 @Experimental() // nonstandard
7017 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec .preserveAspectRatio_Getter(this); 7017 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec .instance.preserveAspectRatio_Getter_(this);
7018 7018
7019 @DomName('SVGViewSpec.viewBox') 7019 @DomName('SVGViewSpec.viewBox')
7020 @DocsEditable() 7020 @DocsEditable()
7021 @Experimental() // nonstandard 7021 @Experimental() // nonstandard
7022 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.viewBox_Getter(this); 7022 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.instance.viewBox_Getter_(t his);
7023 7023
7024 @DomName('SVGViewSpec.zoomAndPan') 7024 @DomName('SVGViewSpec.zoomAndPan')
7025 @DocsEditable() 7025 @DocsEditable()
7026 @Experimental() // nonstandard 7026 @Experimental() // nonstandard
7027 int get zoomAndPan => _blink.BlinkSVGViewSpec.zoomAndPan_Getter(this); 7027 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(this );
7028 7028
7029 @DomName('SVGViewSpec.zoomAndPan') 7029 @DomName('SVGViewSpec.zoomAndPan')
7030 @DocsEditable() 7030 @DocsEditable()
7031 @Experimental() // nonstandard 7031 @Experimental() // nonstandard
7032 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.zoomAndPan_Setter(th is, value); 7032 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_ Setter_(this, value);
7033 7033
7034 } 7034 }
7035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7035 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7036 // for details. All rights reserved. Use of this source code is governed by a 7036 // for details. All rights reserved. Use of this source code is governed by a
7037 // BSD-style license that can be found in the LICENSE file. 7037 // BSD-style license that can be found in the LICENSE file.
7038 7038
7039 // WARNING: Do not edit - generated code. 7039 // WARNING: Do not edit - generated code.
7040 7040
7041 7041
7042 @DocsEditable() 7042 @DocsEditable()
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
7076 7076
7077 @DocsEditable() 7077 @DocsEditable()
7078 @DomName('SVGZoomEvent') 7078 @DomName('SVGZoomEvent')
7079 @Unstable() 7079 @Unstable()
7080 class ZoomEvent extends UIEvent { 7080 class ZoomEvent extends UIEvent {
7081 // To suppress missing implicit constructor warnings. 7081 // To suppress missing implicit constructor warnings.
7082 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } 7082 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); }
7083 7083
7084 @DomName('SVGZoomEvent.newScale') 7084 @DomName('SVGZoomEvent.newScale')
7085 @DocsEditable() 7085 @DocsEditable()
7086 double get newScale => _blink.BlinkSVGZoomEvent.newScale_Getter(this); 7086 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(this );
7087 7087
7088 @DomName('SVGZoomEvent.newTranslate') 7088 @DomName('SVGZoomEvent.newTranslate')
7089 @DocsEditable() 7089 @DocsEditable()
7090 Point get newTranslate => _blink.BlinkSVGZoomEvent.newTranslate_Getter(this); 7090 Point get newTranslate => _blink.BlinkSVGZoomEvent.instance.newTranslate_Gette r_(this);
7091 7091
7092 @DomName('SVGZoomEvent.previousScale') 7092 @DomName('SVGZoomEvent.previousScale')
7093 @DocsEditable() 7093 @DocsEditable()
7094 double get previousScale => _blink.BlinkSVGZoomEvent.previousScale_Getter(this ); 7094 double get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Ge tter_(this);
7095 7095
7096 @DomName('SVGZoomEvent.previousTranslate') 7096 @DomName('SVGZoomEvent.previousTranslate')
7097 @DocsEditable() 7097 @DocsEditable()
7098 Point get previousTranslate => _blink.BlinkSVGZoomEvent.previousTranslate_Gett er(this); 7098 Point get previousTranslate => _blink.BlinkSVGZoomEvent.instance.previousTrans late_Getter_(this);
7099 7099
7100 @DomName('SVGZoomEvent.zoomRectScreen') 7100 @DomName('SVGZoomEvent.zoomRectScreen')
7101 @DocsEditable() 7101 @DocsEditable()
7102 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.zoomRectScreen_Getter(this ); 7102 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.instance.zoomRectScreen_Ge tter_(this);
7103 7103
7104 } 7104 }
7105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7106 // for details. All rights reserved. Use of this source code is governed by a 7106 // for details. All rights reserved. Use of this source code is governed by a
7107 // BSD-style license that can be found in the LICENSE file. 7107 // BSD-style license that can be found in the LICENSE file.
7108 7108
7109 // WARNING: Do not edit - generated code. 7109 // WARNING: Do not edit - generated code.
7110 7110
7111 7111
7112 @DocsEditable() 7112 @DocsEditable()
(...skipping 20 matching lines...) Expand all
7133 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 7133 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
7134 @DocsEditable() 7134 @DocsEditable()
7135 static const int SVG_SPREADMETHOD_REPEAT = 3; 7135 static const int SVG_SPREADMETHOD_REPEAT = 3;
7136 7136
7137 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN') 7137 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN')
7138 @DocsEditable() 7138 @DocsEditable()
7139 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 7139 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
7140 7140
7141 @DomName('SVGGradientElement.gradientTransform') 7141 @DomName('SVGGradientElement.gradientTransform')
7142 @DocsEditable() 7142 @DocsEditable()
7143 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement. gradientTransform_Getter(this); 7143 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement. instance.gradientTransform_Getter_(this);
7144 7144
7145 @DomName('SVGGradientElement.gradientUnits') 7145 @DomName('SVGGradientElement.gradientUnits')
7146 @DocsEditable() 7146 @DocsEditable()
7147 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.gradie ntUnits_Getter(this); 7147 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.instan ce.gradientUnits_Getter_(this);
7148 7148
7149 @DomName('SVGGradientElement.spreadMethod') 7149 @DomName('SVGGradientElement.spreadMethod')
7150 @DocsEditable() 7150 @DocsEditable()
7151 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.spreadM ethod_Getter(this); 7151 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.instanc e.spreadMethod_Getter_(this);
7152 7152
7153 @DomName('SVGGradientElement.href') 7153 @DomName('SVGGradientElement.href')
7154 @DocsEditable() 7154 @DocsEditable()
7155 AnimatedString get href => _blink.BlinkSVGGradientElement.href_Getter(this); 7155 AnimatedString get href => _blink.BlinkSVGGradientElement.instance.href_Getter _(this);
7156 7156
7157 } 7157 }
7158 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7158 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7159 // for details. All rights reserved. Use of this source code is governed by a 7159 // for details. All rights reserved. Use of this source code is governed by a
7160 // BSD-style license that can be found in the LICENSE file. 7160 // BSD-style license that can be found in the LICENSE file.
7161 7161
7162 // WARNING: Do not edit - generated code. 7162 // WARNING: Do not edit - generated code.
7163 7163
7164 7164
7165 @DocsEditable() 7165 @DocsEditable()
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
7527 @DocsEditable() 7527 @DocsEditable()
7528 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7528 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7529 /** 7529 /**
7530 * Constructor instantiated by the DOM when a custom element has been created. 7530 * Constructor instantiated by the DOM when a custom element has been created.
7531 * 7531 *
7532 * This can only be called by subclasses from their created constructor. 7532 * This can only be called by subclasses from their created constructor.
7533 */ 7533 */
7534 _SVGVKernElement.created() : super.created(); 7534 _SVGVKernElement.created() : super.created();
7535 7535
7536 } 7536 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698