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

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

Issue 1832713002: Optimize dartium dart:html bindings so real world application performance is acceptable. Improves d… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * Scalable Vector Graphics: 2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation. 3 * Two-dimensional vector graphics with support for events and animation.
4 * 4 *
5 * For details about the features and syntax of SVG, a W3C standard, 5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the 6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */ 8 */
9 library dart.dom.svg; 9 library dart.dom.svg;
10 10
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 326
327 /** 327 /**
328 * Constructor instantiated by the DOM when a custom element has been created. 328 * Constructor instantiated by the DOM when a custom element has been created.
329 * 329 *
330 * This can only be called by subclasses from their created constructor. 330 * This can only be called by subclasses from their created constructor.
331 */ 331 */
332 AElement.created() : super.created(); 332 AElement.created() : super.created();
333 333
334 @DomName('SVGAElement.target') 334 @DomName('SVGAElement.target')
335 @DocsEditable() 335 @DocsEditable()
336 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_ Getter_(unwrap_jso(this))); 336 AnimatedString get target => _blink.BlinkSVGAElement.instance.target_Getter_(t his);
337 337
338 @DomName('SVGAElement.href') 338 @DomName('SVGAElement.href')
339 @DocsEditable() 339 @DocsEditable()
340 AnimatedString get href => wrap_jso(_blink.BlinkSVGAElement.instance.href_Gett er_(unwrap_jso(this))); 340 AnimatedString get href => _blink.BlinkSVGAElement.instance.href_Getter_(this) ;
341 341
342 } 342 }
343 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 343 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
344 // for details. All rights reserved. Use of this source code is governed by a 344 // for details. All rights reserved. Use of this source code is governed by a
345 // BSD-style license that can be found in the LICENSE file. 345 // BSD-style license that can be found in the LICENSE file.
346 346
347 // WARNING: Do not edit - generated code. 347 // WARNING: Do not edit - generated code.
348 348
349 349
350 @DocsEditable() 350 @DocsEditable()
351 @DomName('SVGAngle') 351 @DomName('SVGAngle')
352 @Unstable() 352 @Unstable()
353 class Angle extends DartHtmlDomObject { 353 class Angle extends DartHtmlDomObject {
354 // To suppress missing implicit constructor warnings. 354 // To suppress missing implicit constructor warnings.
355 factory Angle._() { throw new UnsupportedError("Not supported"); } 355 factory Angle._() { throw new UnsupportedError("Not supported"); }
356 356
357 @Deprecated("Internal Use Only") 357 @Deprecated("Internal Use Only")
358 static Angle internalCreateAngle() { 358 static Angle internalCreateAngle() {
359 return new Angle._internalWrap(); 359 return new Angle._internalWrap();
360 } 360 }
361 361
362 factory Angle._internalWrap() { 362 factory Angle._internalWrap() {
363 return new Angle.internal_(); 363 return new Angle.internal_();
364 } 364 }
365 365
366 @Deprecated("Internal Use Only") 366 @Deprecated("Internal Use Only")
367 Angle.internal_() { } 367 Angle.internal_() { }
368 368
369 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
370 int get hashCode => unwrap_jso(this).hashCode;
371
372 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') 369 @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
373 @DocsEditable() 370 @DocsEditable()
374 static const int SVG_ANGLETYPE_DEG = 2; 371 static const int SVG_ANGLETYPE_DEG = 2;
375 372
376 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') 373 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
377 @DocsEditable() 374 @DocsEditable()
378 static const int SVG_ANGLETYPE_GRAD = 4; 375 static const int SVG_ANGLETYPE_GRAD = 4;
379 376
380 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') 377 @DomName('SVGAngle.SVG_ANGLETYPE_RAD')
381 @DocsEditable() 378 @DocsEditable()
382 static const int SVG_ANGLETYPE_RAD = 3; 379 static const int SVG_ANGLETYPE_RAD = 3;
383 380
384 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN') 381 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
385 @DocsEditable() 382 @DocsEditable()
386 static const int SVG_ANGLETYPE_UNKNOWN = 0; 383 static const int SVG_ANGLETYPE_UNKNOWN = 0;
387 384
388 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED') 385 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
389 @DocsEditable() 386 @DocsEditable()
390 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 387 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
391 388
392 @DomName('SVGAngle.unitType') 389 @DomName('SVGAngle.unitType')
393 @DocsEditable() 390 @DocsEditable()
394 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso( this)); 391 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(this);
395 392
396 @DomName('SVGAngle.value') 393 @DomName('SVGAngle.value')
397 @DocsEditable() 394 @DocsEditable()
398 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this)) ; 395 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(this);
399 396
400 @DomName('SVGAngle.value') 397 @DomName('SVGAngle.value')
401 @DocsEditable() 398 @DocsEditable()
402 set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwrap_jso (this), value); 399 set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(this, valu e);
403 400
404 @DomName('SVGAngle.valueAsString') 401 @DomName('SVGAngle.valueAsString')
405 @DocsEditable() 402 @DocsEditable()
406 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter _(unwrap_jso(this)); 403 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter _(this);
407 404
408 @DomName('SVGAngle.valueAsString') 405 @DomName('SVGAngle.valueAsString')
409 @DocsEditable() 406 @DocsEditable()
410 set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString _Setter_(unwrap_jso(this), value); 407 set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString _Setter_(this, value);
411 408
412 @DomName('SVGAngle.valueInSpecifiedUnits') 409 @DomName('SVGAngle.valueInSpecifiedUnits')
413 @DocsEditable() 410 @DocsEditable()
414 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie dUnits_Getter_(unwrap_jso(this)); 411 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie dUnits_Getter_(this);
415 412
416 @DomName('SVGAngle.valueInSpecifiedUnits') 413 @DomName('SVGAngle.valueInSpecifiedUnits')
417 @DocsEditable() 414 @DocsEditable()
418 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInS pecifiedUnits_Setter_(unwrap_jso(this), value); 415 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInS pecifiedUnits_Setter_(this, value);
419 416
420 @DomName('SVGAngle.convertToSpecifiedUnits') 417 @DomName('SVGAngle.convertToSpecifiedUnits')
421 @DocsEditable() 418 @DocsEditable()
422 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); 419 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co nvertToSpecifiedUnits_Callback_1_(this, unitType);
423 420
424 @DomName('SVGAngle.newValueSpecifiedUnits') 421 @DomName('SVGAngle.newValueSpecifiedUnits')
425 @DocsEditable() 422 @DocsEditable()
426 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni tType, valueInSpecifiedUnits); 423 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, value InSpecifiedUnits);
427 424
428 } 425 }
429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
430 // for details. All rights reserved. Use of this source code is governed by a 427 // for details. All rights reserved. Use of this source code is governed by a
431 // BSD-style license that can be found in the LICENSE file. 428 // BSD-style license that can be found in the LICENSE file.
432 429
433 // WARNING: Do not edit - generated code. 430 // WARNING: Do not edit - generated code.
434 431
435 432
436 @DocsEditable() 433 @DocsEditable()
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 return new AnimatedAngle._internalWrap(); 571 return new AnimatedAngle._internalWrap();
575 } 572 }
576 573
577 factory AnimatedAngle._internalWrap() { 574 factory AnimatedAngle._internalWrap() {
578 return new AnimatedAngle.internal_(); 575 return new AnimatedAngle.internal_();
579 } 576 }
580 577
581 @Deprecated("Internal Use Only") 578 @Deprecated("Internal Use Only")
582 AnimatedAngle.internal_() { } 579 AnimatedAngle.internal_() { }
583 580
584 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
585 int get hashCode => unwrap_jso(this).hashCode;
586
587 @DomName('SVGAnimatedAngle.animVal') 581 @DomName('SVGAnimatedAngle.animVal')
588 @DocsEditable() 582 @DocsEditable()
589 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge tter_(unwrap_jso(this))); 583 Angle get animVal => _blink.BlinkSVGAnimatedAngle.instance.animVal_Getter_(thi s);
590 584
591 @DomName('SVGAnimatedAngle.baseVal') 585 @DomName('SVGAnimatedAngle.baseVal')
592 @DocsEditable() 586 @DocsEditable()
593 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge tter_(unwrap_jso(this))); 587 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.instance.baseVal_Getter_(thi s);
594 588
595 } 589 }
596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 590 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
597 // for details. All rights reserved. Use of this source code is governed by a 591 // for details. All rights reserved. Use of this source code is governed by a
598 // BSD-style license that can be found in the LICENSE file. 592 // BSD-style license that can be found in the LICENSE file.
599 593
600 // WARNING: Do not edit - generated code. 594 // WARNING: Do not edit - generated code.
601 595
602 596
603 @DocsEditable() 597 @DocsEditable()
604 @DomName('SVGAnimatedBoolean') 598 @DomName('SVGAnimatedBoolean')
605 @Unstable() 599 @Unstable()
606 class AnimatedBoolean extends DartHtmlDomObject { 600 class AnimatedBoolean extends DartHtmlDomObject {
607 // To suppress missing implicit constructor warnings. 601 // To suppress missing implicit constructor warnings.
608 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } 602 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); }
609 603
610 @Deprecated("Internal Use Only") 604 @Deprecated("Internal Use Only")
611 static AnimatedBoolean internalCreateAnimatedBoolean() { 605 static AnimatedBoolean internalCreateAnimatedBoolean() {
612 return new AnimatedBoolean._internalWrap(); 606 return new AnimatedBoolean._internalWrap();
613 } 607 }
614 608
615 factory AnimatedBoolean._internalWrap() { 609 factory AnimatedBoolean._internalWrap() {
616 return new AnimatedBoolean.internal_(); 610 return new AnimatedBoolean.internal_();
617 } 611 }
618 612
619 @Deprecated("Internal Use Only") 613 @Deprecated("Internal Use Only")
620 AnimatedBoolean.internal_() { } 614 AnimatedBoolean.internal_() { }
621 615
622 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
623 int get hashCode => unwrap_jso(this).hashCode;
624
625 @DomName('SVGAnimatedBoolean.animVal') 616 @DomName('SVGAnimatedBoolean.animVal')
626 @DocsEditable() 617 @DocsEditable()
627 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un wrap_jso(this)); 618 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(th is);
628 619
629 @DomName('SVGAnimatedBoolean.baseVal') 620 @DomName('SVGAnimatedBoolean.baseVal')
630 @DocsEditable() 621 @DocsEditable()
631 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un wrap_jso(this)); 622 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(th is);
632 623
633 @DomName('SVGAnimatedBoolean.baseVal') 624 @DomName('SVGAnimatedBoolean.baseVal')
634 @DocsEditable() 625 @DocsEditable()
635 set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Set ter_(unwrap_jso(this), value); 626 set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Set ter_(this, value);
636 627
637 } 628 }
638 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 629 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
639 // for details. All rights reserved. Use of this source code is governed by a 630 // for details. All rights reserved. Use of this source code is governed by a
640 // BSD-style license that can be found in the LICENSE file. 631 // BSD-style license that can be found in the LICENSE file.
641 632
642 // WARNING: Do not edit - generated code. 633 // WARNING: Do not edit - generated code.
643 634
644 635
645 @DocsEditable() 636 @DocsEditable()
646 @DomName('SVGAnimatedEnumeration') 637 @DomName('SVGAnimatedEnumeration')
647 @Unstable() 638 @Unstable()
648 class AnimatedEnumeration extends DartHtmlDomObject { 639 class AnimatedEnumeration extends DartHtmlDomObject {
649 // To suppress missing implicit constructor warnings. 640 // To suppress missing implicit constructor warnings.
650 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); } 641 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); }
651 642
652 @Deprecated("Internal Use Only") 643 @Deprecated("Internal Use Only")
653 static AnimatedEnumeration internalCreateAnimatedEnumeration() { 644 static AnimatedEnumeration internalCreateAnimatedEnumeration() {
654 return new AnimatedEnumeration._internalWrap(); 645 return new AnimatedEnumeration._internalWrap();
655 } 646 }
656 647
657 factory AnimatedEnumeration._internalWrap() { 648 factory AnimatedEnumeration._internalWrap() {
658 return new AnimatedEnumeration.internal_(); 649 return new AnimatedEnumeration.internal_();
659 } 650 }
660 651
661 @Deprecated("Internal Use Only") 652 @Deprecated("Internal Use Only")
662 AnimatedEnumeration.internal_() { } 653 AnimatedEnumeration.internal_() { }
663 654
664 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
665 int get hashCode => unwrap_jso(this).hashCode;
666
667 @DomName('SVGAnimatedEnumeration.animVal') 655 @DomName('SVGAnimatedEnumeration.animVal')
668 @DocsEditable() 656 @DocsEditable()
669 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_ (unwrap_jso(this)); 657 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_ (this);
670 658
671 @DomName('SVGAnimatedEnumeration.baseVal') 659 @DomName('SVGAnimatedEnumeration.baseVal')
672 @DocsEditable() 660 @DocsEditable()
673 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_ (unwrap_jso(this)); 661 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_ (this);
674 662
675 @DomName('SVGAnimatedEnumeration.baseVal') 663 @DomName('SVGAnimatedEnumeration.baseVal')
676 @DocsEditable() 664 @DocsEditable()
677 set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_ Setter_(unwrap_jso(this), value); 665 set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_ Setter_(this, value);
678 666
679 } 667 }
680 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 668 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
681 // for details. All rights reserved. Use of this source code is governed by a 669 // for details. All rights reserved. Use of this source code is governed by a
682 // BSD-style license that can be found in the LICENSE file. 670 // BSD-style license that can be found in the LICENSE file.
683 671
684 // WARNING: Do not edit - generated code. 672 // WARNING: Do not edit - generated code.
685 673
686 674
687 @DocsEditable() 675 @DocsEditable()
688 @DomName('SVGAnimatedInteger') 676 @DomName('SVGAnimatedInteger')
689 @Unstable() 677 @Unstable()
690 class AnimatedInteger extends DartHtmlDomObject { 678 class AnimatedInteger extends DartHtmlDomObject {
691 // To suppress missing implicit constructor warnings. 679 // To suppress missing implicit constructor warnings.
692 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } 680 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); }
693 681
694 @Deprecated("Internal Use Only") 682 @Deprecated("Internal Use Only")
695 static AnimatedInteger internalCreateAnimatedInteger() { 683 static AnimatedInteger internalCreateAnimatedInteger() {
696 return new AnimatedInteger._internalWrap(); 684 return new AnimatedInteger._internalWrap();
697 } 685 }
698 686
699 factory AnimatedInteger._internalWrap() { 687 factory AnimatedInteger._internalWrap() {
700 return new AnimatedInteger.internal_(); 688 return new AnimatedInteger.internal_();
701 } 689 }
702 690
703 @Deprecated("Internal Use Only") 691 @Deprecated("Internal Use Only")
704 AnimatedInteger.internal_() { } 692 AnimatedInteger.internal_() { }
705 693
706 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
707 int get hashCode => unwrap_jso(this).hashCode;
708
709 @DomName('SVGAnimatedInteger.animVal') 694 @DomName('SVGAnimatedInteger.animVal')
710 @DocsEditable() 695 @DocsEditable()
711 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw rap_jso(this)); 696 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(thi s);
712 697
713 @DomName('SVGAnimatedInteger.baseVal') 698 @DomName('SVGAnimatedInteger.baseVal')
714 @DocsEditable() 699 @DocsEditable()
715 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw rap_jso(this)); 700 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(thi s);
716 701
717 @DomName('SVGAnimatedInteger.baseVal') 702 @DomName('SVGAnimatedInteger.baseVal')
718 @DocsEditable() 703 @DocsEditable()
719 set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Sett er_(unwrap_jso(this), value); 704 set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Sett er_(this, value);
720 705
721 } 706 }
722 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 707 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
723 // for details. All rights reserved. Use of this source code is governed by a 708 // for details. All rights reserved. Use of this source code is governed by a
724 // BSD-style license that can be found in the LICENSE file. 709 // BSD-style license that can be found in the LICENSE file.
725 710
726 // WARNING: Do not edit - generated code. 711 // WARNING: Do not edit - generated code.
727 712
728 713
729 @DocsEditable() 714 @DocsEditable()
730 @DomName('SVGAnimatedLength') 715 @DomName('SVGAnimatedLength')
731 @Unstable() 716 @Unstable()
732 class AnimatedLength extends DartHtmlDomObject { 717 class AnimatedLength extends DartHtmlDomObject {
733 // To suppress missing implicit constructor warnings. 718 // To suppress missing implicit constructor warnings.
734 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } 719 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); }
735 720
736 @Deprecated("Internal Use Only") 721 @Deprecated("Internal Use Only")
737 static AnimatedLength internalCreateAnimatedLength() { 722 static AnimatedLength internalCreateAnimatedLength() {
738 return new AnimatedLength._internalWrap(); 723 return new AnimatedLength._internalWrap();
739 } 724 }
740 725
741 factory AnimatedLength._internalWrap() { 726 factory AnimatedLength._internalWrap() {
742 return new AnimatedLength.internal_(); 727 return new AnimatedLength.internal_();
743 } 728 }
744 729
745 @Deprecated("Internal Use Only") 730 @Deprecated("Internal Use Only")
746 AnimatedLength.internal_() { } 731 AnimatedLength.internal_() { }
747 732
748 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
749 int get hashCode => unwrap_jso(this).hashCode;
750
751 @DomName('SVGAnimatedLength.animVal') 733 @DomName('SVGAnimatedLength.animVal')
752 @DocsEditable() 734 @DocsEditable()
753 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_ Getter_(unwrap_jso(this))); 735 Length get animVal => _blink.BlinkSVGAnimatedLength.instance.animVal_Getter_(t his);
754 736
755 @DomName('SVGAnimatedLength.baseVal') 737 @DomName('SVGAnimatedLength.baseVal')
756 @DocsEditable() 738 @DocsEditable()
757 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_ Getter_(unwrap_jso(this))); 739 Length get baseVal => _blink.BlinkSVGAnimatedLength.instance.baseVal_Getter_(t his);
758 740
759 } 741 }
760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 742 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
761 // for details. All rights reserved. Use of this source code is governed by a 743 // for details. All rights reserved. Use of this source code is governed by a
762 // BSD-style license that can be found in the LICENSE file. 744 // BSD-style license that can be found in the LICENSE file.
763 745
764 // WARNING: Do not edit - generated code. 746 // WARNING: Do not edit - generated code.
765 747
766 748
767 @DocsEditable() 749 @DocsEditable()
768 @DomName('SVGAnimatedLengthList') 750 @DomName('SVGAnimatedLengthList')
769 @Unstable() 751 @Unstable()
770 class AnimatedLengthList extends DartHtmlDomObject { 752 class AnimatedLengthList extends DartHtmlDomObject {
771 // To suppress missing implicit constructor warnings. 753 // To suppress missing implicit constructor warnings.
772 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); } 754 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); }
773 755
774 @Deprecated("Internal Use Only") 756 @Deprecated("Internal Use Only")
775 static AnimatedLengthList internalCreateAnimatedLengthList() { 757 static AnimatedLengthList internalCreateAnimatedLengthList() {
776 return new AnimatedLengthList._internalWrap(); 758 return new AnimatedLengthList._internalWrap();
777 } 759 }
778 760
779 factory AnimatedLengthList._internalWrap() { 761 factory AnimatedLengthList._internalWrap() {
780 return new AnimatedLengthList.internal_(); 762 return new AnimatedLengthList.internal_();
781 } 763 }
782 764
783 @Deprecated("Internal Use Only") 765 @Deprecated("Internal Use Only")
784 AnimatedLengthList.internal_() { } 766 AnimatedLengthList.internal_() { }
785 767
786 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
787 int get hashCode => unwrap_jso(this).hashCode;
788
789 @DomName('SVGAnimatedLengthList.animVal') 768 @DomName('SVGAnimatedLengthList.animVal')
790 @DocsEditable() 769 @DocsEditable()
791 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. animVal_Getter_(unwrap_jso(this))); 770 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.instance.animVal_G etter_(this);
792 771
793 @DomName('SVGAnimatedLengthList.baseVal') 772 @DomName('SVGAnimatedLengthList.baseVal')
794 @DocsEditable() 773 @DocsEditable()
795 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. baseVal_Getter_(unwrap_jso(this))); 774 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.instance.baseVal_G etter_(this);
796 775
797 } 776 }
798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
799 // for details. All rights reserved. Use of this source code is governed by a 778 // for details. All rights reserved. Use of this source code is governed by a
800 // BSD-style license that can be found in the LICENSE file. 779 // BSD-style license that can be found in the LICENSE file.
801 780
802 // WARNING: Do not edit - generated code. 781 // WARNING: Do not edit - generated code.
803 782
804 783
805 @DocsEditable() 784 @DocsEditable()
806 @DomName('SVGAnimatedNumber') 785 @DomName('SVGAnimatedNumber')
807 @Unstable() 786 @Unstable()
808 class AnimatedNumber extends DartHtmlDomObject { 787 class AnimatedNumber extends DartHtmlDomObject {
809 // To suppress missing implicit constructor warnings. 788 // To suppress missing implicit constructor warnings.
810 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } 789 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); }
811 790
812 @Deprecated("Internal Use Only") 791 @Deprecated("Internal Use Only")
813 static AnimatedNumber internalCreateAnimatedNumber() { 792 static AnimatedNumber internalCreateAnimatedNumber() {
814 return new AnimatedNumber._internalWrap(); 793 return new AnimatedNumber._internalWrap();
815 } 794 }
816 795
817 factory AnimatedNumber._internalWrap() { 796 factory AnimatedNumber._internalWrap() {
818 return new AnimatedNumber.internal_(); 797 return new AnimatedNumber.internal_();
819 } 798 }
820 799
821 @Deprecated("Internal Use Only") 800 @Deprecated("Internal Use Only")
822 AnimatedNumber.internal_() { } 801 AnimatedNumber.internal_() { }
823 802
824 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
825 int get hashCode => unwrap_jso(this).hashCode;
826
827 @DomName('SVGAnimatedNumber.animVal') 803 @DomName('SVGAnimatedNumber.animVal')
828 @DocsEditable() 804 @DocsEditable()
829 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwr ap_jso(this)); 805 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(this );
830 806
831 @DomName('SVGAnimatedNumber.baseVal') 807 @DomName('SVGAnimatedNumber.baseVal')
832 @DocsEditable() 808 @DocsEditable()
833 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr ap_jso(this)); 809 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(this );
834 810
835 @DomName('SVGAnimatedNumber.baseVal') 811 @DomName('SVGAnimatedNumber.baseVal')
836 @DocsEditable() 812 @DocsEditable()
837 set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Sette r_(unwrap_jso(this), value); 813 set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Sette r_(this, value);
838 814
839 } 815 }
840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
841 // for details. All rights reserved. Use of this source code is governed by a 817 // for details. All rights reserved. Use of this source code is governed by a
842 // BSD-style license that can be found in the LICENSE file. 818 // BSD-style license that can be found in the LICENSE file.
843 819
844 // WARNING: Do not edit - generated code. 820 // WARNING: Do not edit - generated code.
845 821
846 822
847 @DocsEditable() 823 @DocsEditable()
848 @DomName('SVGAnimatedNumberList') 824 @DomName('SVGAnimatedNumberList')
849 @Unstable() 825 @Unstable()
850 class AnimatedNumberList extends DartHtmlDomObject { 826 class AnimatedNumberList extends DartHtmlDomObject {
851 // To suppress missing implicit constructor warnings. 827 // To suppress missing implicit constructor warnings.
852 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); } 828 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); }
853 829
854 @Deprecated("Internal Use Only") 830 @Deprecated("Internal Use Only")
855 static AnimatedNumberList internalCreateAnimatedNumberList() { 831 static AnimatedNumberList internalCreateAnimatedNumberList() {
856 return new AnimatedNumberList._internalWrap(); 832 return new AnimatedNumberList._internalWrap();
857 } 833 }
858 834
859 factory AnimatedNumberList._internalWrap() { 835 factory AnimatedNumberList._internalWrap() {
860 return new AnimatedNumberList.internal_(); 836 return new AnimatedNumberList.internal_();
861 } 837 }
862 838
863 @Deprecated("Internal Use Only") 839 @Deprecated("Internal Use Only")
864 AnimatedNumberList.internal_() { } 840 AnimatedNumberList.internal_() { }
865 841
866 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
867 int get hashCode => unwrap_jso(this).hashCode;
868
869 @DomName('SVGAnimatedNumberList.animVal') 842 @DomName('SVGAnimatedNumberList.animVal')
870 @DocsEditable() 843 @DocsEditable()
871 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. animVal_Getter_(unwrap_jso(this))); 844 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.instance.animVal_G etter_(this);
872 845
873 @DomName('SVGAnimatedNumberList.baseVal') 846 @DomName('SVGAnimatedNumberList.baseVal')
874 @DocsEditable() 847 @DocsEditable()
875 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. baseVal_Getter_(unwrap_jso(this))); 848 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.instance.baseVal_G etter_(this);
876 849
877 } 850 }
878 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 851 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
879 // for details. All rights reserved. Use of this source code is governed by a 852 // for details. All rights reserved. Use of this source code is governed by a
880 // BSD-style license that can be found in the LICENSE file. 853 // BSD-style license that can be found in the LICENSE file.
881 854
882 // WARNING: Do not edit - generated code. 855 // WARNING: Do not edit - generated code.
883 856
884 857
885 @DocsEditable() 858 @DocsEditable()
886 @DomName('SVGAnimatedPreserveAspectRatio') 859 @DomName('SVGAnimatedPreserveAspectRatio')
887 @Unstable() 860 @Unstable()
888 class AnimatedPreserveAspectRatio extends DartHtmlDomObject { 861 class AnimatedPreserveAspectRatio extends DartHtmlDomObject {
889 // To suppress missing implicit constructor warnings. 862 // To suppress missing implicit constructor warnings.
890 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); } 863 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); }
891 864
892 @Deprecated("Internal Use Only") 865 @Deprecated("Internal Use Only")
893 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio() { 866 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio() {
894 return new AnimatedPreserveAspectRatio._internalWrap(); 867 return new AnimatedPreserveAspectRatio._internalWrap();
895 } 868 }
896 869
897 factory AnimatedPreserveAspectRatio._internalWrap() { 870 factory AnimatedPreserveAspectRatio._internalWrap() {
898 return new AnimatedPreserveAspectRatio.internal_(); 871 return new AnimatedPreserveAspectRatio.internal_();
899 } 872 }
900 873
901 @Deprecated("Internal Use Only") 874 @Deprecated("Internal Use Only")
902 AnimatedPreserveAspectRatio.internal_() { } 875 AnimatedPreserveAspectRatio.internal_() { }
903 876
904 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
905 int get hashCode => unwrap_jso(this).hashCode;
906
907 @DomName('SVGAnimatedPreserveAspectRatio.animVal') 877 @DomName('SVGAnimatedPreserveAspectRatio.animVal')
908 @DocsEditable() 878 @DocsEditable()
909 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.animVal_Getter_(unwrap_jso(this))); 879 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. instance.animVal_Getter_(this);
910 880
911 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') 881 @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
912 @DocsEditable() 882 @DocsEditable()
913 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); 883 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. instance.baseVal_Getter_(this);
914 884
915 } 885 }
916 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 886 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
917 // for details. All rights reserved. Use of this source code is governed by a 887 // for details. All rights reserved. Use of this source code is governed by a
918 // BSD-style license that can be found in the LICENSE file. 888 // BSD-style license that can be found in the LICENSE file.
919 889
920 // WARNING: Do not edit - generated code. 890 // WARNING: Do not edit - generated code.
921 891
922 892
923 @DocsEditable() 893 @DocsEditable()
924 @DomName('SVGAnimatedRect') 894 @DomName('SVGAnimatedRect')
925 @Unstable() 895 @Unstable()
926 class AnimatedRect extends DartHtmlDomObject { 896 class AnimatedRect extends DartHtmlDomObject {
927 // To suppress missing implicit constructor warnings. 897 // To suppress missing implicit constructor warnings.
928 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } 898 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); }
929 899
930 @Deprecated("Internal Use Only") 900 @Deprecated("Internal Use Only")
931 static AnimatedRect internalCreateAnimatedRect() { 901 static AnimatedRect internalCreateAnimatedRect() {
932 return new AnimatedRect._internalWrap(); 902 return new AnimatedRect._internalWrap();
933 } 903 }
934 904
935 factory AnimatedRect._internalWrap() { 905 factory AnimatedRect._internalWrap() {
936 return new AnimatedRect.internal_(); 906 return new AnimatedRect.internal_();
937 } 907 }
938 908
939 @Deprecated("Internal Use Only") 909 @Deprecated("Internal Use Only")
940 AnimatedRect.internal_() { } 910 AnimatedRect.internal_() { }
941 911
942 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
943 int get hashCode => unwrap_jso(this).hashCode;
944
945 @DomName('SVGAnimatedRect.animVal') 912 @DomName('SVGAnimatedRect.animVal')
946 @DocsEditable() 913 @DocsEditable()
947 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett er_(unwrap_jso(this))); 914 Rect get animVal => _blink.BlinkSVGAnimatedRect.instance.animVal_Getter_(this) ;
948 915
949 @DomName('SVGAnimatedRect.baseVal') 916 @DomName('SVGAnimatedRect.baseVal')
950 @DocsEditable() 917 @DocsEditable()
951 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett er_(unwrap_jso(this))); 918 Rect get baseVal => _blink.BlinkSVGAnimatedRect.instance.baseVal_Getter_(this) ;
952 919
953 } 920 }
954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 921 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
955 // for details. All rights reserved. Use of this source code is governed by a 922 // for details. All rights reserved. Use of this source code is governed by a
956 // BSD-style license that can be found in the LICENSE file. 923 // BSD-style license that can be found in the LICENSE file.
957 924
958 // WARNING: Do not edit - generated code. 925 // WARNING: Do not edit - generated code.
959 926
960 927
961 @DocsEditable() 928 @DocsEditable()
962 @DomName('SVGAnimatedString') 929 @DomName('SVGAnimatedString')
963 @Unstable() 930 @Unstable()
964 class AnimatedString extends DartHtmlDomObject { 931 class AnimatedString extends DartHtmlDomObject {
965 // To suppress missing implicit constructor warnings. 932 // To suppress missing implicit constructor warnings.
966 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } 933 factory AnimatedString._() { throw new UnsupportedError("Not supported"); }
967 934
968 @Deprecated("Internal Use Only") 935 @Deprecated("Internal Use Only")
969 static AnimatedString internalCreateAnimatedString() { 936 static AnimatedString internalCreateAnimatedString() {
970 return new AnimatedString._internalWrap(); 937 return new AnimatedString._internalWrap();
971 } 938 }
972 939
973 factory AnimatedString._internalWrap() { 940 factory AnimatedString._internalWrap() {
974 return new AnimatedString.internal_(); 941 return new AnimatedString.internal_();
975 } 942 }
976 943
977 @Deprecated("Internal Use Only") 944 @Deprecated("Internal Use Only")
978 AnimatedString.internal_() { } 945 AnimatedString.internal_() { }
979 946
980 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
981 int get hashCode => unwrap_jso(this).hashCode;
982
983 @DomName('SVGAnimatedString.animVal') 947 @DomName('SVGAnimatedString.animVal')
984 @DocsEditable() 948 @DocsEditable()
985 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u nwrap_jso(this)); 949 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(t his);
986 950
987 @DomName('SVGAnimatedString.baseVal') 951 @DomName('SVGAnimatedString.baseVal')
988 @DocsEditable() 952 @DocsEditable()
989 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u nwrap_jso(this)); 953 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(t his);
990 954
991 @DomName('SVGAnimatedString.baseVal') 955 @DomName('SVGAnimatedString.baseVal')
992 @DocsEditable() 956 @DocsEditable()
993 set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Se tter_(unwrap_jso(this), value); 957 set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Se tter_(this, value);
994 958
995 } 959 }
996 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
997 // for details. All rights reserved. Use of this source code is governed by a 961 // for details. All rights reserved. Use of this source code is governed by a
998 // BSD-style license that can be found in the LICENSE file. 962 // BSD-style license that can be found in the LICENSE file.
999 963
1000 // WARNING: Do not edit - generated code. 964 // WARNING: Do not edit - generated code.
1001 965
1002 966
1003 @DocsEditable() 967 @DocsEditable()
1004 @DomName('SVGAnimatedTransformList') 968 @DomName('SVGAnimatedTransformList')
1005 @Unstable() 969 @Unstable()
1006 class AnimatedTransformList extends DartHtmlDomObject { 970 class AnimatedTransformList extends DartHtmlDomObject {
1007 // To suppress missing implicit constructor warnings. 971 // To suppress missing implicit constructor warnings.
1008 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); } 972 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); }
1009 973
1010 @Deprecated("Internal Use Only") 974 @Deprecated("Internal Use Only")
1011 static AnimatedTransformList internalCreateAnimatedTransformList() { 975 static AnimatedTransformList internalCreateAnimatedTransformList() {
1012 return new AnimatedTransformList._internalWrap(); 976 return new AnimatedTransformList._internalWrap();
1013 } 977 }
1014 978
1015 factory AnimatedTransformList._internalWrap() { 979 factory AnimatedTransformList._internalWrap() {
1016 return new AnimatedTransformList.internal_(); 980 return new AnimatedTransformList.internal_();
1017 } 981 }
1018 982
1019 @Deprecated("Internal Use Only") 983 @Deprecated("Internal Use Only")
1020 AnimatedTransformList.internal_() { } 984 AnimatedTransformList.internal_() { }
1021 985
1022 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1023 int get hashCode => unwrap_jso(this).hashCode;
1024
1025 @DomName('SVGAnimatedTransformList.animVal') 986 @DomName('SVGAnimatedTransformList.animVal')
1026 @DocsEditable() 987 @DocsEditable()
1027 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.animVal_Getter_(unwrap_jso(this))); 988 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.instance.ani mVal_Getter_(this);
1028 989
1029 @DomName('SVGAnimatedTransformList.baseVal') 990 @DomName('SVGAnimatedTransformList.baseVal')
1030 @DocsEditable() 991 @DocsEditable()
1031 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.baseVal_Getter_(unwrap_jso(this))); 992 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.instance.bas eVal_Getter_(this);
1032 993
1033 } 994 }
1034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 995 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1035 // for details. All rights reserved. Use of this source code is governed by a 996 // for details. All rights reserved. Use of this source code is governed by a
1036 // BSD-style license that can be found in the LICENSE file. 997 // BSD-style license that can be found in the LICENSE file.
1037 998
1038 // WARNING: Do not edit - generated code. 999 // WARNING: Do not edit - generated code.
1039 1000
1040 1001
1041 @DocsEditable() 1002 @DocsEditable()
(...skipping 20 matching lines...) Expand all
1062 1023
1063 /** 1024 /**
1064 * Constructor instantiated by the DOM when a custom element has been created. 1025 * Constructor instantiated by the DOM when a custom element has been created.
1065 * 1026 *
1066 * This can only be called by subclasses from their created constructor. 1027 * This can only be called by subclasses from their created constructor.
1067 */ 1028 */
1068 AnimationElement.created() : super.created(); 1029 AnimationElement.created() : super.created();
1069 1030
1070 @DomName('SVGAnimationElement.targetElement') 1031 @DomName('SVGAnimationElement.targetElement')
1071 @DocsEditable() 1032 @DocsEditable()
1072 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta nce.targetElement_Getter_(unwrap_jso(this))); 1033 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.instance.targe tElement_Getter_(this);
1073 1034
1074 @DomName('SVGAnimationElement.beginElement') 1035 @DomName('SVGAnimationElement.beginElement')
1075 @DocsEditable() 1036 @DocsEditable()
1076 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C allback_0_(unwrap_jso(this)); 1037 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C allback_0_(this);
1077 1038
1078 @DomName('SVGAnimationElement.beginElementAt') 1039 @DomName('SVGAnimationElement.beginElementAt')
1079 @DocsEditable() 1040 @DocsEditable()
1080 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be ginElementAt_Callback_1_(unwrap_jso(this), offset); 1041 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be ginElementAt_Callback_1_(this, offset);
1081 1042
1082 @DomName('SVGAnimationElement.endElement') 1043 @DomName('SVGAnimationElement.endElement')
1083 @DocsEditable() 1044 @DocsEditable()
1084 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb ack_0_(unwrap_jso(this)); 1045 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb ack_0_(this);
1085 1046
1086 @DomName('SVGAnimationElement.endElementAt') 1047 @DomName('SVGAnimationElement.endElementAt')
1087 @DocsEditable() 1048 @DocsEditable()
1088 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE lementAt_Callback_1_(unwrap_jso(this), offset); 1049 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE lementAt_Callback_1_(this, offset);
1089 1050
1090 @DomName('SVGAnimationElement.getCurrentTime') 1051 @DomName('SVGAnimationElement.getCurrentTime')
1091 @DocsEditable() 1052 @DocsEditable()
1092 num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTim e_Callback_0_(unwrap_jso(this)); 1053 num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTim e_Callback_0_(this);
1093 1054
1094 @DomName('SVGAnimationElement.getSimpleDuration') 1055 @DomName('SVGAnimationElement.getSimpleDuration')
1095 @DocsEditable() 1056 @DocsEditable()
1096 num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleD uration_Callback_0_(unwrap_jso(this)); 1057 num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleD uration_Callback_0_(this);
1097 1058
1098 @DomName('SVGAnimationElement.getStartTime') 1059 @DomName('SVGAnimationElement.getStartTime')
1099 @DocsEditable() 1060 @DocsEditable()
1100 num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Ca llback_0_(unwrap_jso(this)); 1061 num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Ca llback_0_(this);
1101 1062
1102 @DomName('SVGAnimationElement.requiredExtensions') 1063 @DomName('SVGAnimationElement.requiredExtensions')
1103 @DocsEditable() 1064 @DocsEditable()
1104 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement. instance.requiredExtensions_Getter_(unwrap_jso(this))); 1065 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.instance. requiredExtensions_Getter_(this);
1105 1066
1106 @DomName('SVGAnimationElement.requiredFeatures') 1067 @DomName('SVGAnimationElement.requiredFeatures')
1107 @DocsEditable() 1068 @DocsEditable()
1108 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in stance.requiredFeatures_Getter_(unwrap_jso(this))); 1069 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.instance.re quiredFeatures_Getter_(this);
1109 1070
1110 @DomName('SVGAnimationElement.systemLanguage') 1071 @DomName('SVGAnimationElement.systemLanguage')
1111 @DocsEditable() 1072 @DocsEditable()
1112 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGAnimationElement.inst ance.systemLanguage_Getter_(unwrap_jso(this))); 1073 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.instance.syst emLanguage_Getter_(this);
1113 1074
1114 @DomName('SVGAnimationElement.hasExtension') 1075 @DomName('SVGAnimationElement.hasExtension')
1115 @DocsEditable() 1076 @DocsEditable()
1116 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instanc e.hasExtension_Callback_1_(unwrap_jso(this), extension); 1077 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instanc e.hasExtension_Callback_1_(this, extension);
1117 1078
1118 } 1079 }
1119 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1080 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1120 // for details. All rights reserved. Use of this source code is governed by a 1081 // for details. All rights reserved. Use of this source code is governed by a
1121 // BSD-style license that can be found in the LICENSE file. 1082 // BSD-style license that can be found in the LICENSE file.
1122 1083
1123 // WARNING: Do not edit - generated code. 1084 // WARNING: Do not edit - generated code.
1124 1085
1125 1086
1126 @DocsEditable() 1087 @DocsEditable()
(...skipping 20 matching lines...) Expand all
1147 1108
1148 /** 1109 /**
1149 * Constructor instantiated by the DOM when a custom element has been created. 1110 * Constructor instantiated by the DOM when a custom element has been created.
1150 * 1111 *
1151 * This can only be called by subclasses from their created constructor. 1112 * This can only be called by subclasses from their created constructor.
1152 */ 1113 */
1153 CircleElement.created() : super.created(); 1114 CircleElement.created() : super.created();
1154 1115
1155 @DomName('SVGCircleElement.cx') 1116 @DomName('SVGCircleElement.cx')
1156 @DocsEditable() 1117 @DocsEditable()
1157 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get ter_(unwrap_jso(this))); 1118 AnimatedLength get cx => _blink.BlinkSVGCircleElement.instance.cx_Getter_(this );
1158 1119
1159 @DomName('SVGCircleElement.cy') 1120 @DomName('SVGCircleElement.cy')
1160 @DocsEditable() 1121 @DocsEditable()
1161 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGCircleElement.instance.cy_Get ter_(unwrap_jso(this))); 1122 AnimatedLength get cy => _blink.BlinkSVGCircleElement.instance.cy_Getter_(this );
1162 1123
1163 @DomName('SVGCircleElement.r') 1124 @DomName('SVGCircleElement.r')
1164 @DocsEditable() 1125 @DocsEditable()
1165 AnimatedLength get r => wrap_jso(_blink.BlinkSVGCircleElement.instance.r_Gette r_(unwrap_jso(this))); 1126 AnimatedLength get r => _blink.BlinkSVGCircleElement.instance.r_Getter_(this);
1166 1127
1167 } 1128 }
1168 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1129 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1169 // for details. All rights reserved. Use of this source code is governed by a 1130 // for details. All rights reserved. Use of this source code is governed by a
1170 // BSD-style license that can be found in the LICENSE file. 1131 // BSD-style license that can be found in the LICENSE file.
1171 1132
1172 // WARNING: Do not edit - generated code. 1133 // WARNING: Do not edit - generated code.
1173 1134
1174 1135
1175 @DocsEditable() 1136 @DocsEditable()
(...skipping 20 matching lines...) Expand all
1196 1157
1197 /** 1158 /**
1198 * Constructor instantiated by the DOM when a custom element has been created. 1159 * Constructor instantiated by the DOM when a custom element has been created.
1199 * 1160 *
1200 * This can only be called by subclasses from their created constructor. 1161 * This can only be called by subclasses from their created constructor.
1201 */ 1162 */
1202 ClipPathElement.created() : super.created(); 1163 ClipPathElement.created() : super.created();
1203 1164
1204 @DomName('SVGClipPathElement.clipPathUnits') 1165 @DomName('SVGClipPathElement.clipPathUnits')
1205 @DocsEditable() 1166 @DocsEditable()
1206 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); 1167 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.instan ce.clipPathUnits_Getter_(this);
1207 1168
1208 } 1169 }
1209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1170 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1210 // for details. All rights reserved. Use of this source code is governed by a 1171 // for details. All rights reserved. Use of this source code is governed by a
1211 // BSD-style license that can be found in the LICENSE file. 1172 // BSD-style license that can be found in the LICENSE file.
1212 1173
1213 // WARNING: Do not edit - generated code. 1174 // WARNING: Do not edit - generated code.
1214 1175
1215 1176
1216 @DocsEditable() 1177 @DocsEditable()
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1344 1305
1345 /** 1306 /**
1346 * Constructor instantiated by the DOM when a custom element has been created. 1307 * Constructor instantiated by the DOM when a custom element has been created.
1347 * 1308 *
1348 * This can only be called by subclasses from their created constructor. 1309 * This can only be called by subclasses from their created constructor.
1349 */ 1310 */
1350 EllipseElement.created() : super.created(); 1311 EllipseElement.created() : super.created();
1351 1312
1352 @DomName('SVGEllipseElement.cx') 1313 @DomName('SVGEllipseElement.cx')
1353 @DocsEditable() 1314 @DocsEditable()
1354 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge tter_(unwrap_jso(this))); 1315 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.instance.cx_Getter_(thi s);
1355 1316
1356 @DomName('SVGEllipseElement.cy') 1317 @DomName('SVGEllipseElement.cy')
1357 @DocsEditable() 1318 @DocsEditable()
1358 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cy_Ge tter_(unwrap_jso(this))); 1319 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.instance.cy_Getter_(thi s);
1359 1320
1360 @DomName('SVGEllipseElement.rx') 1321 @DomName('SVGEllipseElement.rx')
1361 @DocsEditable() 1322 @DocsEditable()
1362 AnimatedLength get rx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.rx_Ge tter_(unwrap_jso(this))); 1323 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.instance.rx_Getter_(thi s);
1363 1324
1364 @DomName('SVGEllipseElement.ry') 1325 @DomName('SVGEllipseElement.ry')
1365 @DocsEditable() 1326 @DocsEditable()
1366 AnimatedLength get ry => wrap_jso(_blink.BlinkSVGEllipseElement.instance.ry_Ge tter_(unwrap_jso(this))); 1327 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.instance.ry_Getter_(thi s);
1367 1328
1368 } 1329 }
1369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1370 // for details. All rights reserved. Use of this source code is governed by a 1331 // for details. All rights reserved. Use of this source code is governed by a
1371 // BSD-style license that can be found in the LICENSE file. 1332 // BSD-style license that can be found in the LICENSE file.
1372 1333
1373 // WARNING: Do not edit - generated code. 1334 // WARNING: Do not edit - generated code.
1374 1335
1375 1336
1376 @DocsEditable() 1337 @DocsEditable()
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1428 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN') 1389 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
1429 @DocsEditable() 1390 @DocsEditable()
1430 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1391 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1431 1392
1432 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN') 1393 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
1433 @DocsEditable() 1394 @DocsEditable()
1434 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1395 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1435 1396
1436 @DomName('SVGFEBlendElement.in1') 1397 @DomName('SVGFEBlendElement.in1')
1437 @DocsEditable() 1398 @DocsEditable()
1438 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in1_ Getter_(unwrap_jso(this))); 1399 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.instance.in1_Getter_(t his);
1439 1400
1440 @DomName('SVGFEBlendElement.in2') 1401 @DomName('SVGFEBlendElement.in2')
1441 @DocsEditable() 1402 @DocsEditable()
1442 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in2_ Getter_(unwrap_jso(this))); 1403 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.instance.in2_Getter_(t his);
1443 1404
1444 @DomName('SVGFEBlendElement.mode') 1405 @DomName('SVGFEBlendElement.mode')
1445 @DocsEditable() 1406 @DocsEditable()
1446 AnimatedEnumeration get mode => wrap_jso(_blink.BlinkSVGFEBlendElement.instanc e.mode_Getter_(unwrap_jso(this))); 1407 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.instance.mode_Ge tter_(this);
1447 1408
1448 @DomName('SVGFEBlendElement.height') 1409 @DomName('SVGFEBlendElement.height')
1449 @DocsEditable() 1410 @DocsEditable()
1450 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.h eight_Getter_(unwrap_jso(this))); 1411 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.instance.height_Get ter_(this);
1451 1412
1452 @DomName('SVGFEBlendElement.result') 1413 @DomName('SVGFEBlendElement.result')
1453 @DocsEditable() 1414 @DocsEditable()
1454 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.r esult_Getter_(unwrap_jso(this))); 1415 AnimatedString get result => _blink.BlinkSVGFEBlendElement.instance.result_Get ter_(this);
1455 1416
1456 @DomName('SVGFEBlendElement.width') 1417 @DomName('SVGFEBlendElement.width')
1457 @DocsEditable() 1418 @DocsEditable()
1458 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.wi dth_Getter_(unwrap_jso(this))); 1419 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.instance.width_Gette r_(this);
1459 1420
1460 @DomName('SVGFEBlendElement.x') 1421 @DomName('SVGFEBlendElement.x')
1461 @DocsEditable() 1422 @DocsEditable()
1462 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.x_Gett er_(unwrap_jso(this))); 1423 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.instance.x_Getter_(this) ;
1463 1424
1464 @DomName('SVGFEBlendElement.y') 1425 @DomName('SVGFEBlendElement.y')
1465 @DocsEditable() 1426 @DocsEditable()
1466 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.y_Gett er_(unwrap_jso(this))); 1427 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.instance.y_Getter_(this) ;
1467 1428
1468 } 1429 }
1469 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1430 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1470 // for details. All rights reserved. Use of this source code is governed by a 1431 // for details. All rights reserved. Use of this source code is governed by a
1471 // BSD-style license that can be found in the LICENSE file. 1432 // BSD-style license that can be found in the LICENSE file.
1472 1433
1473 // WARNING: Do not edit - generated code. 1434 // WARNING: Do not edit - generated code.
1474 1435
1475 1436
1476 @DocsEditable() 1437 @DocsEditable()
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
1524 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE') 1485 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
1525 @DocsEditable() 1486 @DocsEditable()
1526 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1487 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1527 1488
1528 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN') 1489 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
1529 @DocsEditable() 1490 @DocsEditable()
1530 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1491 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1531 1492
1532 @DomName('SVGFEColorMatrixElement.in1') 1493 @DomName('SVGFEColorMatrixElement.in1')
1533 @DocsEditable() 1494 @DocsEditable()
1534 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instanc e.in1_Getter_(unwrap_jso(this))); 1495 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.instance.in1_Get ter_(this);
1535 1496
1536 @DomName('SVGFEColorMatrixElement.type') 1497 @DomName('SVGFEColorMatrixElement.type')
1537 @DocsEditable() 1498 @DocsEditable()
1538 AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.i nstance.type_Getter_(unwrap_jso(this))); 1499 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.instance.t ype_Getter_(this);
1539 1500
1540 @DomName('SVGFEColorMatrixElement.values') 1501 @DomName('SVGFEColorMatrixElement.values')
1541 @DocsEditable() 1502 @DocsEditable()
1542 AnimatedNumberList get values => wrap_jso(_blink.BlinkSVGFEColorMatrixElement. instance.values_Getter_(unwrap_jso(this))); 1503 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.instance. values_Getter_(this);
1543 1504
1544 @DomName('SVGFEColorMatrixElement.height') 1505 @DomName('SVGFEColorMatrixElement.height')
1545 @DocsEditable() 1506 @DocsEditable()
1546 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.inst ance.height_Getter_(unwrap_jso(this))); 1507 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.instance.heig ht_Getter_(this);
1547 1508
1548 @DomName('SVGFEColorMatrixElement.result') 1509 @DomName('SVGFEColorMatrixElement.result')
1549 @DocsEditable() 1510 @DocsEditable()
1550 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.inst ance.result_Getter_(unwrap_jso(this))); 1511 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.instance.resu lt_Getter_(this);
1551 1512
1552 @DomName('SVGFEColorMatrixElement.width') 1513 @DomName('SVGFEColorMatrixElement.width')
1553 @DocsEditable() 1514 @DocsEditable()
1554 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.insta nce.width_Getter_(unwrap_jso(this))); 1515 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.instance.width _Getter_(this);
1555 1516
1556 @DomName('SVGFEColorMatrixElement.x') 1517 @DomName('SVGFEColorMatrixElement.x')
1557 @DocsEditable() 1518 @DocsEditable()
1558 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance. x_Getter_(unwrap_jso(this))); 1519 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.instance.x_Getter_ (this);
1559 1520
1560 @DomName('SVGFEColorMatrixElement.y') 1521 @DomName('SVGFEColorMatrixElement.y')
1561 @DocsEditable() 1522 @DocsEditable()
1562 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance. y_Getter_(unwrap_jso(this))); 1523 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.instance.y_Getter_ (this);
1563 1524
1564 } 1525 }
1565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1566 // for details. All rights reserved. Use of this source code is governed by a 1527 // for details. All rights reserved. Use of this source code is governed by a
1567 // BSD-style license that can be found in the LICENSE file. 1528 // BSD-style license that can be found in the LICENSE file.
1568 1529
1569 // WARNING: Do not edit - generated code. 1530 // WARNING: Do not edit - generated code.
1570 1531
1571 1532
1572 @DocsEditable() 1533 @DocsEditable()
(...skipping 27 matching lines...) Expand all
1600 * 1561 *
1601 * This can only be called by subclasses from their created constructor. 1562 * This can only be called by subclasses from their created constructor.
1602 */ 1563 */
1603 FEComponentTransferElement.created() : super.created(); 1564 FEComponentTransferElement.created() : super.created();
1604 1565
1605 /// Checks if this type is supported on the current platform. 1566 /// Checks if this type is supported on the current platform.
1606 static bool get supported => true; 1567 static bool get supported => true;
1607 1568
1608 @DomName('SVGFEComponentTransferElement.in1') 1569 @DomName('SVGFEComponentTransferElement.in1')
1609 @DocsEditable() 1570 @DocsEditable()
1610 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.i nstance.in1_Getter_(unwrap_jso(this))); 1571 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.instance.i n1_Getter_(this);
1611 1572
1612 @DomName('SVGFEComponentTransferElement.height') 1573 @DomName('SVGFEComponentTransferElement.height')
1613 @DocsEditable() 1574 @DocsEditable()
1614 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEComponentTransferElemen t.instance.height_Getter_(unwrap_jso(this))); 1575 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.instanc e.height_Getter_(this);
1615 1576
1616 @DomName('SVGFEComponentTransferElement.result') 1577 @DomName('SVGFEComponentTransferElement.result')
1617 @DocsEditable() 1578 @DocsEditable()
1618 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEComponentTransferElemen t.instance.result_Getter_(unwrap_jso(this))); 1579 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.instanc e.result_Getter_(this);
1619 1580
1620 @DomName('SVGFEComponentTransferElement.width') 1581 @DomName('SVGFEComponentTransferElement.width')
1621 @DocsEditable() 1582 @DocsEditable()
1622 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEComponentTransferElement .instance.width_Getter_(unwrap_jso(this))); 1583 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.instance .width_Getter_(this);
1623 1584
1624 @DomName('SVGFEComponentTransferElement.x') 1585 @DomName('SVGFEComponentTransferElement.x')
1625 @DocsEditable() 1586 @DocsEditable()
1626 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.ins tance.x_Getter_(unwrap_jso(this))); 1587 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.instance.x_G etter_(this);
1627 1588
1628 @DomName('SVGFEComponentTransferElement.y') 1589 @DomName('SVGFEComponentTransferElement.y')
1629 @DocsEditable() 1590 @DocsEditable()
1630 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.ins tance.y_Getter_(unwrap_jso(this))); 1591 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.instance.y_G etter_(this);
1631 1592
1632 } 1593 }
1633 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1594 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1634 // for details. All rights reserved. Use of this source code is governed by a 1595 // for details. All rights reserved. Use of this source code is governed by a
1635 // BSD-style license that can be found in the LICENSE file. 1596 // BSD-style license that can be found in the LICENSE file.
1636 1597
1637 // WARNING: Do not edit - generated code. 1598 // WARNING: Do not edit - generated code.
1638 1599
1639 1600
1640 @DocsEditable() 1601 @DocsEditable()
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1685 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN') 1646 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
1686 @DocsEditable() 1647 @DocsEditable()
1687 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1648 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1688 1649
1689 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR') 1650 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
1690 @DocsEditable() 1651 @DocsEditable()
1691 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1652 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1692 1653
1693 @DomName('SVGFECompositeElement.in1') 1654 @DomName('SVGFECompositeElement.in1')
1694 @DocsEditable() 1655 @DocsEditable()
1695 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance. in1_Getter_(unwrap_jso(this))); 1656 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.instance.in1_Gette r_(this);
1696 1657
1697 @DomName('SVGFECompositeElement.in2') 1658 @DomName('SVGFECompositeElement.in2')
1698 @DocsEditable() 1659 @DocsEditable()
1699 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance. in2_Getter_(unwrap_jso(this))); 1660 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.instance.in2_Gette r_(this);
1700 1661
1701 @DomName('SVGFECompositeElement.k1') 1662 @DomName('SVGFECompositeElement.k1')
1702 @DocsEditable() 1663 @DocsEditable()
1703 AnimatedNumber get k1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k 1_Getter_(unwrap_jso(this))); 1664 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.instance.k1_Getter_ (this);
1704 1665
1705 @DomName('SVGFECompositeElement.k2') 1666 @DomName('SVGFECompositeElement.k2')
1706 @DocsEditable() 1667 @DocsEditable()
1707 AnimatedNumber get k2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k 2_Getter_(unwrap_jso(this))); 1668 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.instance.k2_Getter_ (this);
1708 1669
1709 @DomName('SVGFECompositeElement.k3') 1670 @DomName('SVGFECompositeElement.k3')
1710 @DocsEditable() 1671 @DocsEditable()
1711 AnimatedNumber get k3 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k 3_Getter_(unwrap_jso(this))); 1672 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.instance.k3_Getter_ (this);
1712 1673
1713 @DomName('SVGFECompositeElement.k4') 1674 @DomName('SVGFECompositeElement.k4')
1714 @DocsEditable() 1675 @DocsEditable()
1715 AnimatedNumber get k4 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k 4_Getter_(unwrap_jso(this))); 1676 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.instance.k4_Getter_ (this);
1716 1677
1717 @DomName('SVGFECompositeElement.operator') 1678 @DomName('SVGFECompositeElement.operator')
1718 @DocsEditable() 1679 @DocsEditable()
1719 AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFECompositeElement .instance.operator_Getter_(unwrap_jso(this))); 1680 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.instance .operator_Getter_(this);
1720 1681
1721 @DomName('SVGFECompositeElement.height') 1682 @DomName('SVGFECompositeElement.height')
1722 @DocsEditable() 1683 @DocsEditable()
1723 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFECompositeElement.instan ce.height_Getter_(unwrap_jso(this))); 1684 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.instance.height _Getter_(this);
1724 1685
1725 @DomName('SVGFECompositeElement.result') 1686 @DomName('SVGFECompositeElement.result')
1726 @DocsEditable() 1687 @DocsEditable()
1727 AnimatedString get result => wrap_jso(_blink.BlinkSVGFECompositeElement.instan ce.result_Getter_(unwrap_jso(this))); 1688 AnimatedString get result => _blink.BlinkSVGFECompositeElement.instance.result _Getter_(this);
1728 1689
1729 @DomName('SVGFECompositeElement.width') 1690 @DomName('SVGFECompositeElement.width')
1730 @DocsEditable() 1691 @DocsEditable()
1731 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFECompositeElement.instanc e.width_Getter_(unwrap_jso(this))); 1692 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.instance.width_G etter_(this);
1732 1693
1733 @DomName('SVGFECompositeElement.x') 1694 @DomName('SVGFECompositeElement.x')
1734 @DocsEditable() 1695 @DocsEditable()
1735 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.x_ Getter_(unwrap_jso(this))); 1696 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.instance.x_Getter_(t his);
1736 1697
1737 @DomName('SVGFECompositeElement.y') 1698 @DomName('SVGFECompositeElement.y')
1738 @DocsEditable() 1699 @DocsEditable()
1739 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.y_ Getter_(unwrap_jso(this))); 1700 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.instance.y_Getter_(t his);
1740 1701
1741 } 1702 }
1742 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1743 // for details. All rights reserved. Use of this source code is governed by a 1704 // for details. All rights reserved. Use of this source code is governed by a
1744 // BSD-style license that can be found in the LICENSE file. 1705 // BSD-style license that can be found in the LICENSE file.
1745 1706
1746 // WARNING: Do not edit - generated code. 1707 // WARNING: Do not edit - generated code.
1747 1708
1748 1709
1749 @DocsEditable() 1710 @DocsEditable()
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1793 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN') 1754 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
1794 @DocsEditable() 1755 @DocsEditable()
1795 static const int SVG_EDGEMODE_UNKNOWN = 0; 1756 static const int SVG_EDGEMODE_UNKNOWN = 0;
1796 1757
1797 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP') 1758 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
1798 @DocsEditable() 1759 @DocsEditable()
1799 static const int SVG_EDGEMODE_WRAP = 2; 1760 static const int SVG_EDGEMODE_WRAP = 2;
1800 1761
1801 @DomName('SVGFEConvolveMatrixElement.bias') 1762 @DomName('SVGFEConvolveMatrixElement.bias')
1802 @DocsEditable() 1763 @DocsEditable()
1803 AnimatedNumber get bias => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.ins tance.bias_Getter_(unwrap_jso(this))); 1764 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.instance.bia s_Getter_(this);
1804 1765
1805 @DomName('SVGFEConvolveMatrixElement.divisor') 1766 @DomName('SVGFEConvolveMatrixElement.divisor')
1806 @DocsEditable() 1767 @DocsEditable()
1807 AnimatedNumber get divisor => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement. instance.divisor_Getter_(unwrap_jso(this))); 1768 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.instance. divisor_Getter_(this);
1808 1769
1809 @DomName('SVGFEConvolveMatrixElement.edgeMode') 1770 @DomName('SVGFEConvolveMatrixElement.edgeMode')
1810 @DocsEditable() 1771 @DocsEditable()
1811 AnimatedEnumeration get edgeMode => wrap_jso(_blink.BlinkSVGFEConvolveMatrixEl ement.instance.edgeMode_Getter_(unwrap_jso(this))); 1772 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.ins tance.edgeMode_Getter_(this);
1812 1773
1813 @DomName('SVGFEConvolveMatrixElement.in1') 1774 @DomName('SVGFEConvolveMatrixElement.in1')
1814 @DocsEditable() 1775 @DocsEditable()
1815 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.inst ance.in1_Getter_(unwrap_jso(this))); 1776 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.instance.in1_ Getter_(this);
1816 1777
1817 @DomName('SVGFEConvolveMatrixElement.kernelMatrix') 1778 @DomName('SVGFEConvolveMatrixElement.kernelMatrix')
1818 @DocsEditable() 1779 @DocsEditable()
1819 AnimatedNumberList get kernelMatrix => wrap_jso(_blink.BlinkSVGFEConvolveMatri xElement.instance.kernelMatrix_Getter_(unwrap_jso(this))); 1780 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement. instance.kernelMatrix_Getter_(this);
1820 1781
1821 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX') 1782 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
1822 @DocsEditable() 1783 @DocsEditable()
1823 AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEConvolveMatr ixElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this))); 1784 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement .instance.kernelUnitLengthX_Getter_(this);
1824 1785
1825 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY') 1786 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
1826 @DocsEditable() 1787 @DocsEditable()
1827 AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEConvolveMatr ixElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this))); 1788 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement .instance.kernelUnitLengthY_Getter_(this);
1828 1789
1829 @DomName('SVGFEConvolveMatrixElement.orderX') 1790 @DomName('SVGFEConvolveMatrixElement.orderX')
1830 @DocsEditable() 1791 @DocsEditable()
1831 AnimatedInteger get orderX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement. instance.orderX_Getter_(unwrap_jso(this))); 1792 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.instance. orderX_Getter_(this);
1832 1793
1833 @DomName('SVGFEConvolveMatrixElement.orderY') 1794 @DomName('SVGFEConvolveMatrixElement.orderY')
1834 @DocsEditable() 1795 @DocsEditable()
1835 AnimatedInteger get orderY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement. instance.orderY_Getter_(unwrap_jso(this))); 1796 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.instance. orderY_Getter_(this);
1836 1797
1837 @DomName('SVGFEConvolveMatrixElement.preserveAlpha') 1798 @DomName('SVGFEConvolveMatrixElement.preserveAlpha')
1838 @DocsEditable() 1799 @DocsEditable()
1839 AnimatedBoolean get preserveAlpha => wrap_jso(_blink.BlinkSVGFEConvolveMatrixE lement.instance.preserveAlpha_Getter_(unwrap_jso(this))); 1800 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.in stance.preserveAlpha_Getter_(this);
1840 1801
1841 @DomName('SVGFEConvolveMatrixElement.targetX') 1802 @DomName('SVGFEConvolveMatrixElement.targetX')
1842 @DocsEditable() 1803 @DocsEditable()
1843 AnimatedInteger get targetX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement .instance.targetX_Getter_(unwrap_jso(this))); 1804 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.instance .targetX_Getter_(this);
1844 1805
1845 @DomName('SVGFEConvolveMatrixElement.targetY') 1806 @DomName('SVGFEConvolveMatrixElement.targetY')
1846 @DocsEditable() 1807 @DocsEditable()
1847 AnimatedInteger get targetY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement .instance.targetY_Getter_(unwrap_jso(this))); 1808 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.instance .targetY_Getter_(this);
1848 1809
1849 @DomName('SVGFEConvolveMatrixElement.height') 1810 @DomName('SVGFEConvolveMatrixElement.height')
1850 @DocsEditable() 1811 @DocsEditable()
1851 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.i nstance.height_Getter_(unwrap_jso(this))); 1812 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.instance.h eight_Getter_(this);
1852 1813
1853 @DomName('SVGFEConvolveMatrixElement.result') 1814 @DomName('SVGFEConvolveMatrixElement.result')
1854 @DocsEditable() 1815 @DocsEditable()
1855 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.i nstance.result_Getter_(unwrap_jso(this))); 1816 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.instance.r esult_Getter_(this);
1856 1817
1857 @DomName('SVGFEConvolveMatrixElement.width') 1818 @DomName('SVGFEConvolveMatrixElement.width')
1858 @DocsEditable() 1819 @DocsEditable()
1859 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.in stance.width_Getter_(unwrap_jso(this))); 1820 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.instance.wi dth_Getter_(this);
1860 1821
1861 @DomName('SVGFEConvolveMatrixElement.x') 1822 @DomName('SVGFEConvolveMatrixElement.x')
1862 @DocsEditable() 1823 @DocsEditable()
1863 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instan ce.x_Getter_(unwrap_jso(this))); 1824 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.instance.x_Gett er_(this);
1864 1825
1865 @DomName('SVGFEConvolveMatrixElement.y') 1826 @DomName('SVGFEConvolveMatrixElement.y')
1866 @DocsEditable() 1827 @DocsEditable()
1867 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instan ce.y_Getter_(unwrap_jso(this))); 1828 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.instance.y_Gett er_(this);
1868 1829
1869 } 1830 }
1870 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1871 // for details. All rights reserved. Use of this source code is governed by a 1832 // for details. All rights reserved. Use of this source code is governed by a
1872 // BSD-style license that can be found in the LICENSE file. 1833 // BSD-style license that can be found in the LICENSE file.
1873 1834
1874 // WARNING: Do not edit - generated code. 1835 // WARNING: Do not edit - generated code.
1875 1836
1876 1837
1877 @DocsEditable() 1838 @DocsEditable()
(...skipping 27 matching lines...) Expand all
1905 * 1866 *
1906 * This can only be called by subclasses from their created constructor. 1867 * This can only be called by subclasses from their created constructor.
1907 */ 1868 */
1908 FEDiffuseLightingElement.created() : super.created(); 1869 FEDiffuseLightingElement.created() : super.created();
1909 1870
1910 /// Checks if this type is supported on the current platform. 1871 /// Checks if this type is supported on the current platform.
1911 static bool get supported => true; 1872 static bool get supported => true;
1912 1873
1913 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 1874 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
1914 @DocsEditable() 1875 @DocsEditable()
1915 AnimatedNumber get diffuseConstant => wrap_jso(_blink.BlinkSVGFEDiffuseLightin gElement.instance.diffuseConstant_Getter_(unwrap_jso(this))); 1876 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement. instance.diffuseConstant_Getter_(this);
1916 1877
1917 @DomName('SVGFEDiffuseLightingElement.in1') 1878 @DomName('SVGFEDiffuseLightingElement.in1')
1918 @DocsEditable() 1879 @DocsEditable()
1919 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.ins tance.in1_Getter_(unwrap_jso(this))); 1880 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.instance.in1 _Getter_(this);
1920 1881
1921 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX') 1882 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
1922 @DocsEditable() 1883 @DocsEditable()
1923 AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEDiffuseLight ingElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this))); 1884 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen t.instance.kernelUnitLengthX_Getter_(this);
1924 1885
1925 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY') 1886 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
1926 @DocsEditable() 1887 @DocsEditable()
1927 AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEDiffuseLight ingElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this))); 1888 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen t.instance.kernelUnitLengthY_Getter_(this);
1928 1889
1929 @DomName('SVGFEDiffuseLightingElement.surfaceScale') 1890 @DomName('SVGFEDiffuseLightingElement.surfaceScale')
1930 @DocsEditable() 1891 @DocsEditable()
1931 AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFEDiffuseLightingEl ement.instance.surfaceScale_Getter_(unwrap_jso(this))); 1892 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.ins tance.surfaceScale_Getter_(this);
1932 1893
1933 @DomName('SVGFEDiffuseLightingElement.height') 1894 @DomName('SVGFEDiffuseLightingElement.height')
1934 @DocsEditable() 1895 @DocsEditable()
1935 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement. instance.height_Getter_(unwrap_jso(this))); 1896 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.instance. height_Getter_(this);
1936 1897
1937 @DomName('SVGFEDiffuseLightingElement.result') 1898 @DomName('SVGFEDiffuseLightingElement.result')
1938 @DocsEditable() 1899 @DocsEditable()
1939 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement. instance.result_Getter_(unwrap_jso(this))); 1900 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.instance. result_Getter_(this);
1940 1901
1941 @DomName('SVGFEDiffuseLightingElement.width') 1902 @DomName('SVGFEDiffuseLightingElement.width')
1942 @DocsEditable() 1903 @DocsEditable()
1943 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.i nstance.width_Getter_(unwrap_jso(this))); 1904 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.instance.w idth_Getter_(this);
1944 1905
1945 @DomName('SVGFEDiffuseLightingElement.x') 1906 @DomName('SVGFEDiffuseLightingElement.x')
1946 @DocsEditable() 1907 @DocsEditable()
1947 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.insta nce.x_Getter_(unwrap_jso(this))); 1908 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.instance.x_Get ter_(this);
1948 1909
1949 @DomName('SVGFEDiffuseLightingElement.y') 1910 @DomName('SVGFEDiffuseLightingElement.y')
1950 @DocsEditable() 1911 @DocsEditable()
1951 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.insta nce.y_Getter_(unwrap_jso(this))); 1912 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.instance.y_Get ter_(this);
1952 1913
1953 } 1914 }
1954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1915 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1955 // for details. All rights reserved. Use of this source code is governed by a 1916 // for details. All rights reserved. Use of this source code is governed by a
1956 // BSD-style license that can be found in the LICENSE file. 1917 // BSD-style license that can be found in the LICENSE file.
1957 1918
1958 // WARNING: Do not edit - generated code. 1919 // WARNING: Do not edit - generated code.
1959 1920
1960 1921
1961 @DocsEditable() 1922 @DocsEditable()
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
2009 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R') 1970 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
2010 @DocsEditable() 1971 @DocsEditable()
2011 static const int SVG_CHANNEL_R = 1; 1972 static const int SVG_CHANNEL_R = 1;
2012 1973
2013 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN') 1974 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
2014 @DocsEditable() 1975 @DocsEditable()
2015 static const int SVG_CHANNEL_UNKNOWN = 0; 1976 static const int SVG_CHANNEL_UNKNOWN = 0;
2016 1977
2017 @DomName('SVGFEDisplacementMapElement.in1') 1978 @DomName('SVGFEDisplacementMapElement.in1')
2018 @DocsEditable() 1979 @DocsEditable()
2019 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.ins tance.in1_Getter_(unwrap_jso(this))); 1980 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.instance.in1 _Getter_(this);
2020 1981
2021 @DomName('SVGFEDisplacementMapElement.in2') 1982 @DomName('SVGFEDisplacementMapElement.in2')
2022 @DocsEditable() 1983 @DocsEditable()
2023 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.ins tance.in2_Getter_(unwrap_jso(this))); 1984 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.instance.in2 _Getter_(this);
2024 1985
2025 @DomName('SVGFEDisplacementMapElement.scale') 1986 @DomName('SVGFEDisplacementMapElement.scale')
2026 @DocsEditable() 1987 @DocsEditable()
2027 AnimatedNumber get scale => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.i nstance.scale_Getter_(unwrap_jso(this))); 1988 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.instance.s cale_Getter_(this);
2028 1989
2029 @DomName('SVGFEDisplacementMapElement.xChannelSelector') 1990 @DomName('SVGFEDisplacementMapElement.xChannelSelector')
2030 @DocsEditable() 1991 @DocsEditable()
2031 AnimatedEnumeration get xChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplace mentMapElement.instance.xChannelSelector_Getter_(unwrap_jso(this))); 1992 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.instance.xChannelSelector_Getter_(this);
2032 1993
2033 @DomName('SVGFEDisplacementMapElement.yChannelSelector') 1994 @DomName('SVGFEDisplacementMapElement.yChannelSelector')
2034 @DocsEditable() 1995 @DocsEditable()
2035 AnimatedEnumeration get yChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplace mentMapElement.instance.yChannelSelector_Getter_(unwrap_jso(this))); 1996 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.instance.yChannelSelector_Getter_(this);
2036 1997
2037 @DomName('SVGFEDisplacementMapElement.height') 1998 @DomName('SVGFEDisplacementMapElement.height')
2038 @DocsEditable() 1999 @DocsEditable()
2039 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement. instance.height_Getter_(unwrap_jso(this))); 2000 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.instance. height_Getter_(this);
2040 2001
2041 @DomName('SVGFEDisplacementMapElement.result') 2002 @DomName('SVGFEDisplacementMapElement.result')
2042 @DocsEditable() 2003 @DocsEditable()
2043 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement. instance.result_Getter_(unwrap_jso(this))); 2004 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.instance. result_Getter_(this);
2044 2005
2045 @DomName('SVGFEDisplacementMapElement.width') 2006 @DomName('SVGFEDisplacementMapElement.width')
2046 @DocsEditable() 2007 @DocsEditable()
2047 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.i nstance.width_Getter_(unwrap_jso(this))); 2008 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.instance.w idth_Getter_(this);
2048 2009
2049 @DomName('SVGFEDisplacementMapElement.x') 2010 @DomName('SVGFEDisplacementMapElement.x')
2050 @DocsEditable() 2011 @DocsEditable()
2051 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.insta nce.x_Getter_(unwrap_jso(this))); 2012 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.instance.x_Get ter_(this);
2052 2013
2053 @DomName('SVGFEDisplacementMapElement.y') 2014 @DomName('SVGFEDisplacementMapElement.y')
2054 @DocsEditable() 2015 @DocsEditable()
2055 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.insta nce.y_Getter_(unwrap_jso(this))); 2016 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.instance.y_Get ter_(this);
2056 2017
2057 } 2018 }
2058 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2019 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2059 // for details. All rights reserved. Use of this source code is governed by a 2020 // for details. All rights reserved. Use of this source code is governed by a
2060 // BSD-style license that can be found in the LICENSE file. 2021 // BSD-style license that can be found in the LICENSE file.
2061 2022
2062 // WARNING: Do not edit - generated code. 2023 // WARNING: Do not edit - generated code.
2063 2024
2064 2025
2065 @DocsEditable() 2026 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2093 * 2054 *
2094 * This can only be called by subclasses from their created constructor. 2055 * This can only be called by subclasses from their created constructor.
2095 */ 2056 */
2096 FEDistantLightElement.created() : super.created(); 2057 FEDistantLightElement.created() : super.created();
2097 2058
2098 /// Checks if this type is supported on the current platform. 2059 /// Checks if this type is supported on the current platform.
2099 static bool get supported => true; 2060 static bool get supported => true;
2100 2061
2101 @DomName('SVGFEDistantLightElement.azimuth') 2062 @DomName('SVGFEDistantLightElement.azimuth')
2102 @DocsEditable() 2063 @DocsEditable()
2103 AnimatedNumber get azimuth => wrap_jso(_blink.BlinkSVGFEDistantLightElement.in stance.azimuth_Getter_(unwrap_jso(this))); 2064 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.instance.az imuth_Getter_(this);
2104 2065
2105 @DomName('SVGFEDistantLightElement.elevation') 2066 @DomName('SVGFEDistantLightElement.elevation')
2106 @DocsEditable() 2067 @DocsEditable()
2107 AnimatedNumber get elevation => wrap_jso(_blink.BlinkSVGFEDistantLightElement. instance.elevation_Getter_(unwrap_jso(this))); 2068 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.instance. elevation_Getter_(this);
2108 2069
2109 } 2070 }
2110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2111 // for details. All rights reserved. Use of this source code is governed by a 2072 // for details. All rights reserved. Use of this source code is governed by a
2112 // BSD-style license that can be found in the LICENSE file. 2073 // BSD-style license that can be found in the LICENSE file.
2113 2074
2114 // WARNING: Do not edit - generated code. 2075 // WARNING: Do not edit - generated code.
2115 2076
2116 2077
2117 @DocsEditable() 2078 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2145 * 2106 *
2146 * This can only be called by subclasses from their created constructor. 2107 * This can only be called by subclasses from their created constructor.
2147 */ 2108 */
2148 FEFloodElement.created() : super.created(); 2109 FEFloodElement.created() : super.created();
2149 2110
2150 /// Checks if this type is supported on the current platform. 2111 /// Checks if this type is supported on the current platform.
2151 static bool get supported => true; 2112 static bool get supported => true;
2152 2113
2153 @DomName('SVGFEFloodElement.height') 2114 @DomName('SVGFEFloodElement.height')
2154 @DocsEditable() 2115 @DocsEditable()
2155 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.h eight_Getter_(unwrap_jso(this))); 2116 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.instance.height_Get ter_(this);
2156 2117
2157 @DomName('SVGFEFloodElement.result') 2118 @DomName('SVGFEFloodElement.result')
2158 @DocsEditable() 2119 @DocsEditable()
2159 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.r esult_Getter_(unwrap_jso(this))); 2120 AnimatedString get result => _blink.BlinkSVGFEFloodElement.instance.result_Get ter_(this);
2160 2121
2161 @DomName('SVGFEFloodElement.width') 2122 @DomName('SVGFEFloodElement.width')
2162 @DocsEditable() 2123 @DocsEditable()
2163 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.wi dth_Getter_(unwrap_jso(this))); 2124 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.instance.width_Gette r_(this);
2164 2125
2165 @DomName('SVGFEFloodElement.x') 2126 @DomName('SVGFEFloodElement.x')
2166 @DocsEditable() 2127 @DocsEditable()
2167 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.x_Gett er_(unwrap_jso(this))); 2128 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.instance.x_Getter_(this) ;
2168 2129
2169 @DomName('SVGFEFloodElement.y') 2130 @DomName('SVGFEFloodElement.y')
2170 @DocsEditable() 2131 @DocsEditable()
2171 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.y_Gett er_(unwrap_jso(this))); 2132 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.instance.y_Getter_(this) ;
2172 2133
2173 } 2134 }
2174 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2175 // for details. All rights reserved. Use of this source code is governed by a 2136 // for details. All rights reserved. Use of this source code is governed by a
2176 // BSD-style license that can be found in the LICENSE file. 2137 // BSD-style license that can be found in the LICENSE file.
2177 2138
2178 // WARNING: Do not edit - generated code. 2139 // WARNING: Do not edit - generated code.
2179 2140
2180 2141
2181 @DocsEditable() 2142 @DocsEditable()
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
2385 * 2346 *
2386 * This can only be called by subclasses from their created constructor. 2347 * This can only be called by subclasses from their created constructor.
2387 */ 2348 */
2388 FEGaussianBlurElement.created() : super.created(); 2349 FEGaussianBlurElement.created() : super.created();
2389 2350
2390 /// Checks if this type is supported on the current platform. 2351 /// Checks if this type is supported on the current platform.
2391 static bool get supported => true; 2352 static bool get supported => true;
2392 2353
2393 @DomName('SVGFEGaussianBlurElement.in1') 2354 @DomName('SVGFEGaussianBlurElement.in1')
2394 @DocsEditable() 2355 @DocsEditable()
2395 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instan ce.in1_Getter_(unwrap_jso(this))); 2356 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.instance.in1_Ge tter_(this);
2396 2357
2397 @DomName('SVGFEGaussianBlurElement.stdDeviationX') 2358 @DomName('SVGFEGaussianBlurElement.stdDeviationX')
2398 @DocsEditable() 2359 @DocsEditable()
2399 AnimatedNumber get stdDeviationX => wrap_jso(_blink.BlinkSVGFEGaussianBlurElem ent.instance.stdDeviationX_Getter_(unwrap_jso(this))); 2360 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.insta nce.stdDeviationX_Getter_(this);
2400 2361
2401 @DomName('SVGFEGaussianBlurElement.stdDeviationY') 2362 @DomName('SVGFEGaussianBlurElement.stdDeviationY')
2402 @DocsEditable() 2363 @DocsEditable()
2403 AnimatedNumber get stdDeviationY => wrap_jso(_blink.BlinkSVGFEGaussianBlurElem ent.instance.stdDeviationY_Getter_(unwrap_jso(this))); 2364 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.insta nce.stdDeviationY_Getter_(this);
2404 2365
2405 @DomName('SVGFEGaussianBlurElement.setStdDeviation') 2366 @DomName('SVGFEGaussianBlurElement.setStdDeviation')
2406 @DocsEditable() 2367 @DocsEditable()
2407 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.instance.setStdDeviation_Callback_2_(unwrap_jso(this), stdD eviationX, stdDeviationY); 2368 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.instance.setStdDeviation_Callback_2_(this, stdDeviationX, s tdDeviationY);
2408 2369
2409 @DomName('SVGFEGaussianBlurElement.height') 2370 @DomName('SVGFEGaussianBlurElement.height')
2410 @DocsEditable() 2371 @DocsEditable()
2411 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.ins tance.height_Getter_(unwrap_jso(this))); 2372 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.instance.hei ght_Getter_(this);
2412 2373
2413 @DomName('SVGFEGaussianBlurElement.result') 2374 @DomName('SVGFEGaussianBlurElement.result')
2414 @DocsEditable() 2375 @DocsEditable()
2415 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.ins tance.result_Getter_(unwrap_jso(this))); 2376 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.instance.res ult_Getter_(this);
2416 2377
2417 @DomName('SVGFEGaussianBlurElement.width') 2378 @DomName('SVGFEGaussianBlurElement.width')
2418 @DocsEditable() 2379 @DocsEditable()
2419 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.inst ance.width_Getter_(unwrap_jso(this))); 2380 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.instance.widt h_Getter_(this);
2420 2381
2421 @DomName('SVGFEGaussianBlurElement.x') 2382 @DomName('SVGFEGaussianBlurElement.x')
2422 @DocsEditable() 2383 @DocsEditable()
2423 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance .x_Getter_(unwrap_jso(this))); 2384 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.instance.x_Getter _(this);
2424 2385
2425 @DomName('SVGFEGaussianBlurElement.y') 2386 @DomName('SVGFEGaussianBlurElement.y')
2426 @DocsEditable() 2387 @DocsEditable()
2427 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance .y_Getter_(unwrap_jso(this))); 2388 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.instance.y_Getter _(this);
2428 2389
2429 } 2390 }
2430 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2391 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2431 // for details. All rights reserved. Use of this source code is governed by a 2392 // for details. All rights reserved. Use of this source code is governed by a
2432 // BSD-style license that can be found in the LICENSE file. 2393 // BSD-style license that can be found in the LICENSE file.
2433 2394
2434 // WARNING: Do not edit - generated code. 2395 // WARNING: Do not edit - generated code.
2435 2396
2436 2397
2437 @DocsEditable() 2398 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2465 * 2426 *
2466 * This can only be called by subclasses from their created constructor. 2427 * This can only be called by subclasses from their created constructor.
2467 */ 2428 */
2468 FEImageElement.created() : super.created(); 2429 FEImageElement.created() : super.created();
2469 2430
2470 /// Checks if this type is supported on the current platform. 2431 /// Checks if this type is supported on the current platform.
2471 static bool get supported => true; 2432 static bool get supported => true;
2472 2433
2473 @DomName('SVGFEImageElement.preserveAspectRatio') 2434 @DomName('SVGFEImageElement.preserveAspectRatio')
2474 @DocsEditable() 2435 @DocsEditable()
2475 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GFEImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 2436 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE lement.instance.preserveAspectRatio_Getter_(this);
2476 2437
2477 @DomName('SVGFEImageElement.height') 2438 @DomName('SVGFEImageElement.height')
2478 @DocsEditable() 2439 @DocsEditable()
2479 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEImageElement.instance.h eight_Getter_(unwrap_jso(this))); 2440 AnimatedLength get height => _blink.BlinkSVGFEImageElement.instance.height_Get ter_(this);
2480 2441
2481 @DomName('SVGFEImageElement.result') 2442 @DomName('SVGFEImageElement.result')
2482 @DocsEditable() 2443 @DocsEditable()
2483 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEImageElement.instance.r esult_Getter_(unwrap_jso(this))); 2444 AnimatedString get result => _blink.BlinkSVGFEImageElement.instance.result_Get ter_(this);
2484 2445
2485 @DomName('SVGFEImageElement.width') 2446 @DomName('SVGFEImageElement.width')
2486 @DocsEditable() 2447 @DocsEditable()
2487 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEImageElement.instance.wi dth_Getter_(unwrap_jso(this))); 2448 AnimatedLength get width => _blink.BlinkSVGFEImageElement.instance.width_Gette r_(this);
2488 2449
2489 @DomName('SVGFEImageElement.x') 2450 @DomName('SVGFEImageElement.x')
2490 @DocsEditable() 2451 @DocsEditable()
2491 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEImageElement.instance.x_Gett er_(unwrap_jso(this))); 2452 AnimatedLength get x => _blink.BlinkSVGFEImageElement.instance.x_Getter_(this) ;
2492 2453
2493 @DomName('SVGFEImageElement.y') 2454 @DomName('SVGFEImageElement.y')
2494 @DocsEditable() 2455 @DocsEditable()
2495 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEImageElement.instance.y_Gett er_(unwrap_jso(this))); 2456 AnimatedLength get y => _blink.BlinkSVGFEImageElement.instance.y_Getter_(this) ;
2496 2457
2497 @DomName('SVGFEImageElement.href') 2458 @DomName('SVGFEImageElement.href')
2498 @DocsEditable() 2459 @DocsEditable()
2499 AnimatedString get href => wrap_jso(_blink.BlinkSVGFEImageElement.instance.hre f_Getter_(unwrap_jso(this))); 2460 AnimatedString get href => _blink.BlinkSVGFEImageElement.instance.href_Getter_ (this);
2500 2461
2501 } 2462 }
2502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2463 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2503 // for details. All rights reserved. Use of this source code is governed by a 2464 // for details. All rights reserved. Use of this source code is governed by a
2504 // BSD-style license that can be found in the LICENSE file. 2465 // BSD-style license that can be found in the LICENSE file.
2505 2466
2506 // WARNING: Do not edit - generated code. 2467 // WARNING: Do not edit - generated code.
2507 2468
2508 2469
2509 @DocsEditable() 2470 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2537 * 2498 *
2538 * This can only be called by subclasses from their created constructor. 2499 * This can only be called by subclasses from their created constructor.
2539 */ 2500 */
2540 FEMergeElement.created() : super.created(); 2501 FEMergeElement.created() : super.created();
2541 2502
2542 /// Checks if this type is supported on the current platform. 2503 /// Checks if this type is supported on the current platform.
2543 static bool get supported => true; 2504 static bool get supported => true;
2544 2505
2545 @DomName('SVGFEMergeElement.height') 2506 @DomName('SVGFEMergeElement.height')
2546 @DocsEditable() 2507 @DocsEditable()
2547 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.h eight_Getter_(unwrap_jso(this))); 2508 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.instance.height_Get ter_(this);
2548 2509
2549 @DomName('SVGFEMergeElement.result') 2510 @DomName('SVGFEMergeElement.result')
2550 @DocsEditable() 2511 @DocsEditable()
2551 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.r esult_Getter_(unwrap_jso(this))); 2512 AnimatedString get result => _blink.BlinkSVGFEMergeElement.instance.result_Get ter_(this);
2552 2513
2553 @DomName('SVGFEMergeElement.width') 2514 @DomName('SVGFEMergeElement.width')
2554 @DocsEditable() 2515 @DocsEditable()
2555 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.wi dth_Getter_(unwrap_jso(this))); 2516 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.instance.width_Gette r_(this);
2556 2517
2557 @DomName('SVGFEMergeElement.x') 2518 @DomName('SVGFEMergeElement.x')
2558 @DocsEditable() 2519 @DocsEditable()
2559 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.x_Gett er_(unwrap_jso(this))); 2520 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.instance.x_Getter_(this) ;
2560 2521
2561 @DomName('SVGFEMergeElement.y') 2522 @DomName('SVGFEMergeElement.y')
2562 @DocsEditable() 2523 @DocsEditable()
2563 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.y_Gett er_(unwrap_jso(this))); 2524 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.instance.y_Getter_(this) ;
2564 2525
2565 } 2526 }
2566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2527 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2567 // for details. All rights reserved. Use of this source code is governed by a 2528 // for details. All rights reserved. Use of this source code is governed by a
2568 // BSD-style license that can be found in the LICENSE file. 2529 // BSD-style license that can be found in the LICENSE file.
2569 2530
2570 // WARNING: Do not edit - generated code. 2531 // WARNING: Do not edit - generated code.
2571 2532
2572 2533
2573 @DocsEditable() 2534 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2601 * 2562 *
2602 * This can only be called by subclasses from their created constructor. 2563 * This can only be called by subclasses from their created constructor.
2603 */ 2564 */
2604 FEMergeNodeElement.created() : super.created(); 2565 FEMergeNodeElement.created() : super.created();
2605 2566
2606 /// Checks if this type is supported on the current platform. 2567 /// Checks if this type is supported on the current platform.
2607 static bool get supported => true; 2568 static bool get supported => true;
2608 2569
2609 @DomName('SVGFEMergeNodeElement.in1') 2570 @DomName('SVGFEMergeNodeElement.in1')
2610 @DocsEditable() 2571 @DocsEditable()
2611 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMergeNodeElement.instance. in1_Getter_(unwrap_jso(this))); 2572 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.instance.in1_Gette r_(this);
2612 2573
2613 } 2574 }
2614 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2615 // for details. All rights reserved. Use of this source code is governed by a 2576 // for details. All rights reserved. Use of this source code is governed by a
2616 // BSD-style license that can be found in the LICENSE file. 2577 // BSD-style license that can be found in the LICENSE file.
2617 2578
2618 // WARNING: Do not edit - generated code. 2579 // WARNING: Do not edit - generated code.
2619 2580
2620 2581
2621 @DocsEditable() 2582 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
2654 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2615 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2655 @DocsEditable() 2616 @DocsEditable()
2656 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2617 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2657 2618
2658 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2619 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
2659 @DocsEditable() 2620 @DocsEditable()
2660 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2621 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2661 2622
2662 @DomName('SVGFEMorphologyElement.in1') 2623 @DomName('SVGFEMorphologyElement.in1')
2663 @DocsEditable() 2624 @DocsEditable()
2664 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance .in1_Getter_(unwrap_jso(this))); 2625 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.instance.in1_Gett er_(this);
2665 2626
2666 @DomName('SVGFEMorphologyElement.operator') 2627 @DomName('SVGFEMorphologyElement.operator')
2667 @DocsEditable() 2628 @DocsEditable()
2668 AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFEMorphologyElemen t.instance.operator_Getter_(unwrap_jso(this))); 2629 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.instanc e.operator_Getter_(this);
2669 2630
2670 @DomName('SVGFEMorphologyElement.radiusX') 2631 @DomName('SVGFEMorphologyElement.radiusX')
2671 @DocsEditable() 2632 @DocsEditable()
2672 AnimatedNumber get radiusX => wrap_jso(_blink.BlinkSVGFEMorphologyElement.inst ance.radiusX_Getter_(unwrap_jso(this))); 2633 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.instance.radi usX_Getter_(this);
2673 2634
2674 @DomName('SVGFEMorphologyElement.radiusY') 2635 @DomName('SVGFEMorphologyElement.radiusY')
2675 @DocsEditable() 2636 @DocsEditable()
2676 AnimatedNumber get radiusY => wrap_jso(_blink.BlinkSVGFEMorphologyElement.inst ance.radiusY_Getter_(unwrap_jso(this))); 2637 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.instance.radi usY_Getter_(this);
2677 2638
2678 @DomName('SVGFEMorphologyElement.height') 2639 @DomName('SVGFEMorphologyElement.height')
2679 @DocsEditable() 2640 @DocsEditable()
2680 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMorphologyElement.insta nce.height_Getter_(unwrap_jso(this))); 2641 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.instance.heigh t_Getter_(this);
2681 2642
2682 @DomName('SVGFEMorphologyElement.result') 2643 @DomName('SVGFEMorphologyElement.result')
2683 @DocsEditable() 2644 @DocsEditable()
2684 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMorphologyElement.insta nce.result_Getter_(unwrap_jso(this))); 2645 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.instance.resul t_Getter_(this);
2685 2646
2686 @DomName('SVGFEMorphologyElement.width') 2647 @DomName('SVGFEMorphologyElement.width')
2687 @DocsEditable() 2648 @DocsEditable()
2688 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instan ce.width_Getter_(unwrap_jso(this))); 2649 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.instance.width_ Getter_(this);
2689 2650
2690 @DomName('SVGFEMorphologyElement.x') 2651 @DomName('SVGFEMorphologyElement.x')
2691 @DocsEditable() 2652 @DocsEditable()
2692 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.x _Getter_(unwrap_jso(this))); 2653 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.instance.x_Getter_( this);
2693 2654
2694 @DomName('SVGFEMorphologyElement.y') 2655 @DomName('SVGFEMorphologyElement.y')
2695 @DocsEditable() 2656 @DocsEditable()
2696 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.y _Getter_(unwrap_jso(this))); 2657 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.instance.y_Getter_( this);
2697 2658
2698 } 2659 }
2699 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2660 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2700 // for details. All rights reserved. Use of this source code is governed by a 2661 // for details. All rights reserved. Use of this source code is governed by a
2701 // BSD-style license that can be found in the LICENSE file. 2662 // BSD-style license that can be found in the LICENSE file.
2702 2663
2703 // WARNING: Do not edit - generated code. 2664 // WARNING: Do not edit - generated code.
2704 2665
2705 2666
2706 @DocsEditable() 2667 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2734 * 2695 *
2735 * This can only be called by subclasses from their created constructor. 2696 * This can only be called by subclasses from their created constructor.
2736 */ 2697 */
2737 FEOffsetElement.created() : super.created(); 2698 FEOffsetElement.created() : super.created();
2738 2699
2739 /// Checks if this type is supported on the current platform. 2700 /// Checks if this type is supported on the current platform.
2740 static bool get supported => true; 2701 static bool get supported => true;
2741 2702
2742 @DomName('SVGFEOffsetElement.dx') 2703 @DomName('SVGFEOffsetElement.dx')
2743 @DocsEditable() 2704 @DocsEditable()
2744 AnimatedNumber get dx => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dx_G etter_(unwrap_jso(this))); 2705 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.instance.dx_Getter_(th is);
2745 2706
2746 @DomName('SVGFEOffsetElement.dy') 2707 @DomName('SVGFEOffsetElement.dy')
2747 @DocsEditable() 2708 @DocsEditable()
2748 AnimatedNumber get dy => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dy_G etter_(unwrap_jso(this))); 2709 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.instance.dy_Getter_(th is);
2749 2710
2750 @DomName('SVGFEOffsetElement.in1') 2711 @DomName('SVGFEOffsetElement.in1')
2751 @DocsEditable() 2712 @DocsEditable()
2752 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.in1 _Getter_(unwrap_jso(this))); 2713 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.instance.in1_Getter_( this);
2753 2714
2754 @DomName('SVGFEOffsetElement.height') 2715 @DomName('SVGFEOffsetElement.height')
2755 @DocsEditable() 2716 @DocsEditable()
2756 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance. height_Getter_(unwrap_jso(this))); 2717 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.instance.height_Ge tter_(this);
2757 2718
2758 @DomName('SVGFEOffsetElement.result') 2719 @DomName('SVGFEOffsetElement.result')
2759 @DocsEditable() 2720 @DocsEditable()
2760 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance. result_Getter_(unwrap_jso(this))); 2721 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.instance.result_Ge tter_(this);
2761 2722
2762 @DomName('SVGFEOffsetElement.width') 2723 @DomName('SVGFEOffsetElement.width')
2763 @DocsEditable() 2724 @DocsEditable()
2764 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.w idth_Getter_(unwrap_jso(this))); 2725 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.instance.width_Gett er_(this);
2765 2726
2766 @DomName('SVGFEOffsetElement.x') 2727 @DomName('SVGFEOffsetElement.x')
2767 @DocsEditable() 2728 @DocsEditable()
2768 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.x_Get ter_(unwrap_jso(this))); 2729 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.instance.x_Getter_(this );
2769 2730
2770 @DomName('SVGFEOffsetElement.y') 2731 @DomName('SVGFEOffsetElement.y')
2771 @DocsEditable() 2732 @DocsEditable()
2772 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.y_Get ter_(unwrap_jso(this))); 2733 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.instance.y_Getter_(this );
2773 2734
2774 } 2735 }
2775 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2776 // for details. All rights reserved. Use of this source code is governed by a 2737 // for details. All rights reserved. Use of this source code is governed by a
2777 // BSD-style license that can be found in the LICENSE file. 2738 // BSD-style license that can be found in the LICENSE file.
2778 2739
2779 // WARNING: Do not edit - generated code. 2740 // WARNING: Do not edit - generated code.
2780 2741
2781 2742
2782 @DocsEditable() 2743 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2810 * 2771 *
2811 * This can only be called by subclasses from their created constructor. 2772 * This can only be called by subclasses from their created constructor.
2812 */ 2773 */
2813 FEPointLightElement.created() : super.created(); 2774 FEPointLightElement.created() : super.created();
2814 2775
2815 /// Checks if this type is supported on the current platform. 2776 /// Checks if this type is supported on the current platform.
2816 static bool get supported => true; 2777 static bool get supported => true;
2817 2778
2818 @DomName('SVGFEPointLightElement.x') 2779 @DomName('SVGFEPointLightElement.x')
2819 @DocsEditable() 2780 @DocsEditable()
2820 AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.x _Getter_(unwrap_jso(this))); 2781 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.instance.x_Getter_( this);
2821 2782
2822 @DomName('SVGFEPointLightElement.y') 2783 @DomName('SVGFEPointLightElement.y')
2823 @DocsEditable() 2784 @DocsEditable()
2824 AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.y _Getter_(unwrap_jso(this))); 2785 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.instance.y_Getter_( this);
2825 2786
2826 @DomName('SVGFEPointLightElement.z') 2787 @DomName('SVGFEPointLightElement.z')
2827 @DocsEditable() 2788 @DocsEditable()
2828 AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.z _Getter_(unwrap_jso(this))); 2789 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.instance.z_Getter_( this);
2829 2790
2830 } 2791 }
2831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2792 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2832 // for details. All rights reserved. Use of this source code is governed by a 2793 // for details. All rights reserved. Use of this source code is governed by a
2833 // BSD-style license that can be found in the LICENSE file. 2794 // BSD-style license that can be found in the LICENSE file.
2834 2795
2835 // WARNING: Do not edit - generated code. 2796 // WARNING: Do not edit - generated code.
2836 2797
2837 2798
2838 @DocsEditable() 2799 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2866 * 2827 *
2867 * This can only be called by subclasses from their created constructor. 2828 * This can only be called by subclasses from their created constructor.
2868 */ 2829 */
2869 FESpecularLightingElement.created() : super.created(); 2830 FESpecularLightingElement.created() : super.created();
2870 2831
2871 /// Checks if this type is supported on the current platform. 2832 /// Checks if this type is supported on the current platform.
2872 static bool get supported => true; 2833 static bool get supported => true;
2873 2834
2874 @DomName('SVGFESpecularLightingElement.in1') 2835 @DomName('SVGFESpecularLightingElement.in1')
2875 @DocsEditable() 2836 @DocsEditable()
2876 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.in stance.in1_Getter_(unwrap_jso(this))); 2837 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.instance.in 1_Getter_(this);
2877 2838
2878 @DomName('SVGFESpecularLightingElement.kernelUnitLengthX') 2839 @DomName('SVGFESpecularLightingElement.kernelUnitLengthX')
2879 @DocsEditable() 2840 @DocsEditable()
2880 @Experimental() // untriaged 2841 @Experimental() // untriaged
2881 AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFESpecularLigh tingElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this))); 2842 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFESpecularLightingEleme nt.instance.kernelUnitLengthX_Getter_(this);
2882 2843
2883 @DomName('SVGFESpecularLightingElement.kernelUnitLengthY') 2844 @DomName('SVGFESpecularLightingElement.kernelUnitLengthY')
2884 @DocsEditable() 2845 @DocsEditable()
2885 @Experimental() // untriaged 2846 @Experimental() // untriaged
2886 AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFESpecularLigh tingElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this))); 2847 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFESpecularLightingEleme nt.instance.kernelUnitLengthY_Getter_(this);
2887 2848
2888 @DomName('SVGFESpecularLightingElement.specularConstant') 2849 @DomName('SVGFESpecularLightingElement.specularConstant')
2889 @DocsEditable() 2850 @DocsEditable()
2890 AnimatedNumber get specularConstant => wrap_jso(_blink.BlinkSVGFESpecularLight ingElement.instance.specularConstant_Getter_(unwrap_jso(this))); 2851 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen t.instance.specularConstant_Getter_(this);
2891 2852
2892 @DomName('SVGFESpecularLightingElement.specularExponent') 2853 @DomName('SVGFESpecularLightingElement.specularExponent')
2893 @DocsEditable() 2854 @DocsEditable()
2894 AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpecularLight ingElement.instance.specularExponent_Getter_(unwrap_jso(this))); 2855 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen t.instance.specularExponent_Getter_(this);
2895 2856
2896 @DomName('SVGFESpecularLightingElement.surfaceScale') 2857 @DomName('SVGFESpecularLightingElement.surfaceScale')
2897 @DocsEditable() 2858 @DocsEditable()
2898 AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFESpecularLightingE lement.instance.surfaceScale_Getter_(unwrap_jso(this))); 2859 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.in stance.surfaceScale_Getter_(this);
2899 2860
2900 @DomName('SVGFESpecularLightingElement.height') 2861 @DomName('SVGFESpecularLightingElement.height')
2901 @DocsEditable() 2862 @DocsEditable()
2902 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFESpecularLightingElement .instance.height_Getter_(unwrap_jso(this))); 2863 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.instance .height_Getter_(this);
2903 2864
2904 @DomName('SVGFESpecularLightingElement.result') 2865 @DomName('SVGFESpecularLightingElement.result')
2905 @DocsEditable() 2866 @DocsEditable()
2906 AnimatedString get result => wrap_jso(_blink.BlinkSVGFESpecularLightingElement .instance.result_Getter_(unwrap_jso(this))); 2867 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.instance .result_Getter_(this);
2907 2868
2908 @DomName('SVGFESpecularLightingElement.width') 2869 @DomName('SVGFESpecularLightingElement.width')
2909 @DocsEditable() 2870 @DocsEditable()
2910 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFESpecularLightingElement. instance.width_Getter_(unwrap_jso(this))); 2871 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.instance. width_Getter_(this);
2911 2872
2912 @DomName('SVGFESpecularLightingElement.x') 2873 @DomName('SVGFESpecularLightingElement.x')
2913 @DocsEditable() 2874 @DocsEditable()
2914 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.inst ance.x_Getter_(unwrap_jso(this))); 2875 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.instance.x_Ge tter_(this);
2915 2876
2916 @DomName('SVGFESpecularLightingElement.y') 2877 @DomName('SVGFESpecularLightingElement.y')
2917 @DocsEditable() 2878 @DocsEditable()
2918 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.inst ance.y_Getter_(unwrap_jso(this))); 2879 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.instance.y_Ge tter_(this);
2919 2880
2920 } 2881 }
2921 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2882 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2922 // for details. All rights reserved. Use of this source code is governed by a 2883 // for details. All rights reserved. Use of this source code is governed by a
2923 // BSD-style license that can be found in the LICENSE file. 2884 // BSD-style license that can be found in the LICENSE file.
2924 2885
2925 // WARNING: Do not edit - generated code. 2886 // WARNING: Do not edit - generated code.
2926 2887
2927 2888
2928 @DocsEditable() 2889 @DocsEditable()
(...skipping 27 matching lines...) Expand all
2956 * 2917 *
2957 * This can only be called by subclasses from their created constructor. 2918 * This can only be called by subclasses from their created constructor.
2958 */ 2919 */
2959 FESpotLightElement.created() : super.created(); 2920 FESpotLightElement.created() : super.created();
2960 2921
2961 /// Checks if this type is supported on the current platform. 2922 /// Checks if this type is supported on the current platform.
2962 static bool get supported => true; 2923 static bool get supported => true;
2963 2924
2964 @DomName('SVGFESpotLightElement.limitingConeAngle') 2925 @DomName('SVGFESpotLightElement.limitingConeAngle')
2965 @DocsEditable() 2926 @DocsEditable()
2966 AnimatedNumber get limitingConeAngle => wrap_jso(_blink.BlinkSVGFESpotLightEle ment.instance.limitingConeAngle_Getter_(unwrap_jso(this))); 2927 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.inst ance.limitingConeAngle_Getter_(this);
2967 2928
2968 @DomName('SVGFESpotLightElement.pointsAtX') 2929 @DomName('SVGFESpotLightElement.pointsAtX')
2969 @DocsEditable() 2930 @DocsEditable()
2970 AnimatedNumber get pointsAtX => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins tance.pointsAtX_Getter_(unwrap_jso(this))); 2931 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtX_Getter_(this);
2971 2932
2972 @DomName('SVGFESpotLightElement.pointsAtY') 2933 @DomName('SVGFESpotLightElement.pointsAtY')
2973 @DocsEditable() 2934 @DocsEditable()
2974 AnimatedNumber get pointsAtY => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins tance.pointsAtY_Getter_(unwrap_jso(this))); 2935 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtY_Getter_(this);
2975 2936
2976 @DomName('SVGFESpotLightElement.pointsAtZ') 2937 @DomName('SVGFESpotLightElement.pointsAtZ')
2977 @DocsEditable() 2938 @DocsEditable()
2978 AnimatedNumber get pointsAtZ => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins tance.pointsAtZ_Getter_(unwrap_jso(this))); 2939 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.instance.poi ntsAtZ_Getter_(this);
2979 2940
2980 @DomName('SVGFESpotLightElement.specularExponent') 2941 @DomName('SVGFESpotLightElement.specularExponent')
2981 @DocsEditable() 2942 @DocsEditable()
2982 AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpotLightElem ent.instance.specularExponent_Getter_(unwrap_jso(this))); 2943 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.insta nce.specularExponent_Getter_(this);
2983 2944
2984 @DomName('SVGFESpotLightElement.x') 2945 @DomName('SVGFESpotLightElement.x')
2985 @DocsEditable() 2946 @DocsEditable()
2986 AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.x_ Getter_(unwrap_jso(this))); 2947 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.instance.x_Getter_(t his);
2987 2948
2988 @DomName('SVGFESpotLightElement.y') 2949 @DomName('SVGFESpotLightElement.y')
2989 @DocsEditable() 2950 @DocsEditable()
2990 AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.y_ Getter_(unwrap_jso(this))); 2951 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.instance.y_Getter_(t his);
2991 2952
2992 @DomName('SVGFESpotLightElement.z') 2953 @DomName('SVGFESpotLightElement.z')
2993 @DocsEditable() 2954 @DocsEditable()
2994 AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.z_ Getter_(unwrap_jso(this))); 2955 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.instance.z_Getter_(t his);
2995 2956
2996 } 2957 }
2997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2958 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2998 // for details. All rights reserved. Use of this source code is governed by a 2959 // for details. All rights reserved. Use of this source code is governed by a
2999 // BSD-style license that can be found in the LICENSE file. 2960 // BSD-style license that can be found in the LICENSE file.
3000 2961
3001 // WARNING: Do not edit - generated code. 2962 // WARNING: Do not edit - generated code.
3002 2963
3003 2964
3004 @DocsEditable() 2965 @DocsEditable()
(...skipping 27 matching lines...) Expand all
3032 * 2993 *
3033 * This can only be called by subclasses from their created constructor. 2994 * This can only be called by subclasses from their created constructor.
3034 */ 2995 */
3035 FETileElement.created() : super.created(); 2996 FETileElement.created() : super.created();
3036 2997
3037 /// Checks if this type is supported on the current platform. 2998 /// Checks if this type is supported on the current platform.
3038 static bool get supported => true; 2999 static bool get supported => true;
3039 3000
3040 @DomName('SVGFETileElement.in1') 3001 @DomName('SVGFETileElement.in1')
3041 @DocsEditable() 3002 @DocsEditable()
3042 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFETileElement.instance.in1_G etter_(unwrap_jso(this))); 3003 AnimatedString get in1 => _blink.BlinkSVGFETileElement.instance.in1_Getter_(th is);
3043 3004
3044 @DomName('SVGFETileElement.height') 3005 @DomName('SVGFETileElement.height')
3045 @DocsEditable() 3006 @DocsEditable()
3046 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETileElement.instance.he ight_Getter_(unwrap_jso(this))); 3007 AnimatedLength get height => _blink.BlinkSVGFETileElement.instance.height_Gett er_(this);
3047 3008
3048 @DomName('SVGFETileElement.result') 3009 @DomName('SVGFETileElement.result')
3049 @DocsEditable() 3010 @DocsEditable()
3050 AnimatedString get result => wrap_jso(_blink.BlinkSVGFETileElement.instance.re sult_Getter_(unwrap_jso(this))); 3011 AnimatedString get result => _blink.BlinkSVGFETileElement.instance.result_Gett er_(this);
3051 3012
3052 @DomName('SVGFETileElement.width') 3013 @DomName('SVGFETileElement.width')
3053 @DocsEditable() 3014 @DocsEditable()
3054 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETileElement.instance.wid th_Getter_(unwrap_jso(this))); 3015 AnimatedLength get width => _blink.BlinkSVGFETileElement.instance.width_Getter _(this);
3055 3016
3056 @DomName('SVGFETileElement.x') 3017 @DomName('SVGFETileElement.x')
3057 @DocsEditable() 3018 @DocsEditable()
3058 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETileElement.instance.x_Gette r_(unwrap_jso(this))); 3019 AnimatedLength get x => _blink.BlinkSVGFETileElement.instance.x_Getter_(this);
3059 3020
3060 @DomName('SVGFETileElement.y') 3021 @DomName('SVGFETileElement.y')
3061 @DocsEditable() 3022 @DocsEditable()
3062 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETileElement.instance.y_Gette r_(unwrap_jso(this))); 3023 AnimatedLength get y => _blink.BlinkSVGFETileElement.instance.y_Getter_(this);
3063 3024
3064 } 3025 }
3065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3066 // for details. All rights reserved. Use of this source code is governed by a 3027 // for details. All rights reserved. Use of this source code is governed by a
3067 // BSD-style license that can be found in the LICENSE file. 3028 // BSD-style license that can be found in the LICENSE file.
3068 3029
3069 // WARNING: Do not edit - generated code. 3030 // WARNING: Do not edit - generated code.
3070 3031
3071 3032
3072 @DocsEditable() 3033 @DocsEditable()
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
3124 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE') 3085 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
3125 @DocsEditable() 3086 @DocsEditable()
3126 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 3087 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
3127 3088
3128 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN') 3089 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
3129 @DocsEditable() 3090 @DocsEditable()
3130 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 3091 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
3131 3092
3132 @DomName('SVGFETurbulenceElement.baseFrequencyX') 3093 @DomName('SVGFETurbulenceElement.baseFrequencyX')
3133 @DocsEditable() 3094 @DocsEditable()
3134 AnimatedNumber get baseFrequencyX => wrap_jso(_blink.BlinkSVGFETurbulenceEleme nt.instance.baseFrequencyX_Getter_(unwrap_jso(this))); 3095 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.instan ce.baseFrequencyX_Getter_(this);
3135 3096
3136 @DomName('SVGFETurbulenceElement.baseFrequencyY') 3097 @DomName('SVGFETurbulenceElement.baseFrequencyY')
3137 @DocsEditable() 3098 @DocsEditable()
3138 AnimatedNumber get baseFrequencyY => wrap_jso(_blink.BlinkSVGFETurbulenceEleme nt.instance.baseFrequencyY_Getter_(unwrap_jso(this))); 3099 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.instan ce.baseFrequencyY_Getter_(this);
3139 3100
3140 @DomName('SVGFETurbulenceElement.numOctaves') 3101 @DomName('SVGFETurbulenceElement.numOctaves')
3141 @DocsEditable() 3102 @DocsEditable()
3142 AnimatedInteger get numOctaves => wrap_jso(_blink.BlinkSVGFETurbulenceElement. instance.numOctaves_Getter_(unwrap_jso(this))); 3103 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.instance. numOctaves_Getter_(this);
3143 3104
3144 @DomName('SVGFETurbulenceElement.seed') 3105 @DomName('SVGFETurbulenceElement.seed')
3145 @DocsEditable() 3106 @DocsEditable()
3146 AnimatedNumber get seed => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instanc e.seed_Getter_(unwrap_jso(this))); 3107 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.instance.seed_Ge tter_(this);
3147 3108
3148 @DomName('SVGFETurbulenceElement.stitchTiles') 3109 @DomName('SVGFETurbulenceElement.stitchTiles')
3149 @DocsEditable() 3110 @DocsEditable()
3150 AnimatedEnumeration get stitchTiles => wrap_jso(_blink.BlinkSVGFETurbulenceEle ment.instance.stitchTiles_Getter_(unwrap_jso(this))); 3111 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.inst ance.stitchTiles_Getter_(this);
3151 3112
3152 @DomName('SVGFETurbulenceElement.type') 3113 @DomName('SVGFETurbulenceElement.type')
3153 @DocsEditable() 3114 @DocsEditable()
3154 AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFETurbulenceElement.in stance.type_Getter_(unwrap_jso(this))); 3115 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.instance.ty pe_Getter_(this);
3155 3116
3156 @DomName('SVGFETurbulenceElement.height') 3117 @DomName('SVGFETurbulenceElement.height')
3157 @DocsEditable() 3118 @DocsEditable()
3158 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETurbulenceElement.insta nce.height_Getter_(unwrap_jso(this))); 3119 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.instance.heigh t_Getter_(this);
3159 3120
3160 @DomName('SVGFETurbulenceElement.result') 3121 @DomName('SVGFETurbulenceElement.result')
3161 @DocsEditable() 3122 @DocsEditable()
3162 AnimatedString get result => wrap_jso(_blink.BlinkSVGFETurbulenceElement.insta nce.result_Getter_(unwrap_jso(this))); 3123 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.instance.resul t_Getter_(this);
3163 3124
3164 @DomName('SVGFETurbulenceElement.width') 3125 @DomName('SVGFETurbulenceElement.width')
3165 @DocsEditable() 3126 @DocsEditable()
3166 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instan ce.width_Getter_(unwrap_jso(this))); 3127 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.instance.width_ Getter_(this);
3167 3128
3168 @DomName('SVGFETurbulenceElement.x') 3129 @DomName('SVGFETurbulenceElement.x')
3169 @DocsEditable() 3130 @DocsEditable()
3170 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.x _Getter_(unwrap_jso(this))); 3131 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.instance.x_Getter_( this);
3171 3132
3172 @DomName('SVGFETurbulenceElement.y') 3133 @DomName('SVGFETurbulenceElement.y')
3173 @DocsEditable() 3134 @DocsEditable()
3174 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.y _Getter_(unwrap_jso(this))); 3135 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.instance.y_Getter_( this);
3175 3136
3176 } 3137 }
3177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3178 // for details. All rights reserved. Use of this source code is governed by a 3139 // for details. All rights reserved. Use of this source code is governed by a
3179 // BSD-style license that can be found in the LICENSE file. 3140 // BSD-style license that can be found in the LICENSE file.
3180 3141
3181 // WARNING: Do not edit - generated code. 3142 // WARNING: Do not edit - generated code.
3182 3143
3183 3144
3184 @DocsEditable() 3145 @DocsEditable()
(...skipping 27 matching lines...) Expand all
3212 * 3173 *
3213 * This can only be called by subclasses from their created constructor. 3174 * This can only be called by subclasses from their created constructor.
3214 */ 3175 */
3215 FilterElement.created() : super.created(); 3176 FilterElement.created() : super.created();
3216 3177
3217 /// Checks if this type is supported on the current platform. 3178 /// Checks if this type is supported on the current platform.
3218 static bool get supported => true; 3179 static bool get supported => true;
3219 3180
3220 @DomName('SVGFilterElement.filterUnits') 3181 @DomName('SVGFilterElement.filterUnits')
3221 @DocsEditable() 3182 @DocsEditable()
3222 AnimatedEnumeration get filterUnits => wrap_jso(_blink.BlinkSVGFilterElement.i nstance.filterUnits_Getter_(unwrap_jso(this))); 3183 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.instance.f ilterUnits_Getter_(this);
3223 3184
3224 @DomName('SVGFilterElement.height') 3185 @DomName('SVGFilterElement.height')
3225 @DocsEditable() 3186 @DocsEditable()
3226 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFilterElement.instance.he ight_Getter_(unwrap_jso(this))); 3187 AnimatedLength get height => _blink.BlinkSVGFilterElement.instance.height_Gett er_(this);
3227 3188
3228 @DomName('SVGFilterElement.primitiveUnits') 3189 @DomName('SVGFilterElement.primitiveUnits')
3229 @DocsEditable() 3190 @DocsEditable()
3230 AnimatedEnumeration get primitiveUnits => wrap_jso(_blink.BlinkSVGFilterElemen t.instance.primitiveUnits_Getter_(unwrap_jso(this))); 3191 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.instanc e.primitiveUnits_Getter_(this);
3231 3192
3232 @DomName('SVGFilterElement.width') 3193 @DomName('SVGFilterElement.width')
3233 @DocsEditable() 3194 @DocsEditable()
3234 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFilterElement.instance.wid th_Getter_(unwrap_jso(this))); 3195 AnimatedLength get width => _blink.BlinkSVGFilterElement.instance.width_Getter _(this);
3235 3196
3236 @DomName('SVGFilterElement.x') 3197 @DomName('SVGFilterElement.x')
3237 @DocsEditable() 3198 @DocsEditable()
3238 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFilterElement.instance.x_Gette r_(unwrap_jso(this))); 3199 AnimatedLength get x => _blink.BlinkSVGFilterElement.instance.x_Getter_(this);
3239 3200
3240 @DomName('SVGFilterElement.y') 3201 @DomName('SVGFilterElement.y')
3241 @DocsEditable() 3202 @DocsEditable()
3242 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFilterElement.instance.y_Gette r_(unwrap_jso(this))); 3203 AnimatedLength get y => _blink.BlinkSVGFilterElement.instance.y_Getter_(this);
3243 3204
3244 @DomName('SVGFilterElement.href') 3205 @DomName('SVGFilterElement.href')
3245 @DocsEditable() 3206 @DocsEditable()
3246 AnimatedString get href => wrap_jso(_blink.BlinkSVGFilterElement.instance.href _Getter_(unwrap_jso(this))); 3207 AnimatedString get href => _blink.BlinkSVGFilterElement.instance.href_Getter_( this);
3247 3208
3248 } 3209 }
3249 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3210 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3250 // for details. All rights reserved. Use of this source code is governed by a 3211 // for details. All rights reserved. Use of this source code is governed by a
3251 // BSD-style license that can be found in the LICENSE file. 3212 // BSD-style license that can be found in the LICENSE file.
3252 3213
3253 // WARNING: Do not edit - generated code. 3214 // WARNING: Do not edit - generated code.
3254 3215
3255 3216
3256 @DocsEditable() 3217 @DocsEditable()
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
3341 * 3302 *
3342 * This can only be called by subclasses from their created constructor. 3303 * This can only be called by subclasses from their created constructor.
3343 */ 3304 */
3344 ForeignObjectElement.created() : super.created(); 3305 ForeignObjectElement.created() : super.created();
3345 3306
3346 /// Checks if this type is supported on the current platform. 3307 /// Checks if this type is supported on the current platform.
3347 static bool get supported => true; 3308 static bool get supported => true;
3348 3309
3349 @DomName('SVGForeignObjectElement.height') 3310 @DomName('SVGForeignObjectElement.height')
3350 @DocsEditable() 3311 @DocsEditable()
3351 AnimatedLength get height => wrap_jso(_blink.BlinkSVGForeignObjectElement.inst ance.height_Getter_(unwrap_jso(this))); 3312 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.instance.heig ht_Getter_(this);
3352 3313
3353 @DomName('SVGForeignObjectElement.width') 3314 @DomName('SVGForeignObjectElement.width')
3354 @DocsEditable() 3315 @DocsEditable()
3355 AnimatedLength get width => wrap_jso(_blink.BlinkSVGForeignObjectElement.insta nce.width_Getter_(unwrap_jso(this))); 3316 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.instance.width _Getter_(this);
3356 3317
3357 @DomName('SVGForeignObjectElement.x') 3318 @DomName('SVGForeignObjectElement.x')
3358 @DocsEditable() 3319 @DocsEditable()
3359 AnimatedLength get x => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance. x_Getter_(unwrap_jso(this))); 3320 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.instance.x_Getter_ (this);
3360 3321
3361 @DomName('SVGForeignObjectElement.y') 3322 @DomName('SVGForeignObjectElement.y')
3362 @DocsEditable() 3323 @DocsEditable()
3363 AnimatedLength get y => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance. y_Getter_(unwrap_jso(this))); 3324 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.instance.y_Getter_ (this);
3364 3325
3365 } 3326 }
3366 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3327 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3367 // for details. All rights reserved. Use of this source code is governed by a 3328 // for details. All rights reserved. Use of this source code is governed by a
3368 // BSD-style license that can be found in the LICENSE file. 3329 // BSD-style license that can be found in the LICENSE file.
3369 3330
3370 // WARNING: Do not edit - generated code. 3331 // WARNING: Do not edit - generated code.
3371 3332
3372 3333
3373 @DocsEditable() 3334 @DocsEditable()
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
3428 /** 3389 /**
3429 * Constructor instantiated by the DOM when a custom element has been created. 3390 * Constructor instantiated by the DOM when a custom element has been created.
3430 * 3391 *
3431 * This can only be called by subclasses from their created constructor. 3392 * This can only be called by subclasses from their created constructor.
3432 */ 3393 */
3433 GeometryElement.created() : super.created(); 3394 GeometryElement.created() : super.created();
3434 3395
3435 @DomName('SVGGeometryElement.isPointInFill') 3396 @DomName('SVGGeometryElement.isPointInFill')
3436 @DocsEditable() 3397 @DocsEditable()
3437 @Experimental() // untriaged 3398 @Experimental() // untriaged
3438 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isP ointInFill_Callback_1_(unwrap_jso(this), unwrap_jso(point)); 3399 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isP ointInFill_Callback_1_(this, point);
3439 3400
3440 @DomName('SVGGeometryElement.isPointInStroke') 3401 @DomName('SVGGeometryElement.isPointInStroke')
3441 @DocsEditable() 3402 @DocsEditable()
3442 @Experimental() // untriaged 3403 @Experimental() // untriaged
3443 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.i sPointInStroke_Callback_1_(unwrap_jso(this), unwrap_jso(point)); 3404 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.i sPointInStroke_Callback_1_(this, point);
3444 3405
3445 } 3406 }
3446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3407 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3447 // for details. All rights reserved. Use of this source code is governed by a 3408 // for details. All rights reserved. Use of this source code is governed by a
3448 // BSD-style license that can be found in the LICENSE file. 3409 // BSD-style license that can be found in the LICENSE file.
3449 3410
3450 // WARNING: Do not edit - generated code. 3411 // WARNING: Do not edit - generated code.
3451 3412
3452 3413
3453 @DocsEditable() 3414 @DocsEditable()
(...skipping 17 matching lines...) Expand all
3471 /** 3432 /**
3472 * Constructor instantiated by the DOM when a custom element has been created. 3433 * Constructor instantiated by the DOM when a custom element has been created.
3473 * 3434 *
3474 * This can only be called by subclasses from their created constructor. 3435 * This can only be called by subclasses from their created constructor.
3475 */ 3436 */
3476 GraphicsElement.created() : super.created(); 3437 GraphicsElement.created() : super.created();
3477 3438
3478 @DomName('SVGGraphicsElement.farthestViewportElement') 3439 @DomName('SVGGraphicsElement.farthestViewportElement')
3479 @DocsEditable() 3440 @DocsEditable()
3480 @Experimental() // untriaged 3441 @Experimental() // untriaged
3481 SvgElement get farthestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsElem ent.instance.farthestViewportElement_Getter_(unwrap_jso(this))); 3442 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.insta nce.farthestViewportElement_Getter_(this);
3482 3443
3483 @DomName('SVGGraphicsElement.nearestViewportElement') 3444 @DomName('SVGGraphicsElement.nearestViewportElement')
3484 @DocsEditable() 3445 @DocsEditable()
3485 @Experimental() // untriaged 3446 @Experimental() // untriaged
3486 SvgElement get nearestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsEleme nt.instance.nearestViewportElement_Getter_(unwrap_jso(this))); 3447 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.instan ce.nearestViewportElement_Getter_(this);
3487 3448
3488 @DomName('SVGGraphicsElement.transform') 3449 @DomName('SVGGraphicsElement.transform')
3489 @DocsEditable() 3450 @DocsEditable()
3490 @Experimental() // untriaged 3451 @Experimental() // untriaged
3491 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement .instance.transform_Getter_(unwrap_jso(this))); 3452 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.instance .transform_Getter_(this);
3492 3453
3493 @DomName('SVGGraphicsElement.getBBox') 3454 @DomName('SVGGraphicsElement.getBBox')
3494 @DocsEditable() 3455 @DocsEditable()
3495 @Experimental() // untriaged 3456 @Experimental() // untriaged
3496 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal lback_0_(unwrap_jso(this))); 3457 Rect getBBox() => _blink.BlinkSVGGraphicsElement.instance.getBBox_Callback_0_( this);
3497 3458
3498 @DomName('SVGGraphicsElement.getCTM') 3459 @DomName('SVGGraphicsElement.getCTM')
3499 @DocsEditable() 3460 @DocsEditable()
3500 @Experimental() // untriaged 3461 @Experimental() // untriaged
3501 Matrix getCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getCTM_Cal lback_0_(unwrap_jso(this))); 3462 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_( this);
3502 3463
3503 @DomName('SVGGraphicsElement.getScreenCTM') 3464 @DomName('SVGGraphicsElement.getScreenCTM')
3504 @DocsEditable() 3465 @DocsEditable()
3505 @Experimental() // untriaged 3466 @Experimental() // untriaged
3506 Matrix getScreenCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getS creenCTM_Callback_0_(unwrap_jso(this))); 3467 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_ Callback_0_(this);
3507 3468
3508 @DomName('SVGGraphicsElement.getTransformToElement') 3469 @DomName('SVGGraphicsElement.getTransformToElement')
3509 @DocsEditable() 3470 @DocsEditable()
3510 @Experimental() // untriaged 3471 @Experimental() // untriaged
3511 Matrix getTransformToElement(SvgElement element) => wrap_jso(_blink.BlinkSVGGr aphicsElement.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwra p_jso(element))); 3472 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle ment.instance.getTransformToElement_Callback_1_(this, element);
3512 3473
3513 @DomName('SVGGraphicsElement.requiredExtensions') 3474 @DomName('SVGGraphicsElement.requiredExtensions')
3514 @DocsEditable() 3475 @DocsEditable()
3515 @Experimental() // untriaged 3476 @Experimental() // untriaged
3516 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i nstance.requiredExtensions_Getter_(unwrap_jso(this))); 3477 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.instance.r equiredExtensions_Getter_(this);
3517 3478
3518 @DomName('SVGGraphicsElement.requiredFeatures') 3479 @DomName('SVGGraphicsElement.requiredFeatures')
3519 @DocsEditable() 3480 @DocsEditable()
3520 @Experimental() // untriaged 3481 @Experimental() // untriaged
3521 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins tance.requiredFeatures_Getter_(unwrap_jso(this))); 3482 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.instance.req uiredFeatures_Getter_(this);
3522 3483
3523 @DomName('SVGGraphicsElement.systemLanguage') 3484 @DomName('SVGGraphicsElement.systemLanguage')
3524 @DocsEditable() 3485 @DocsEditable()
3525 @Experimental() // untriaged 3486 @Experimental() // untriaged
3526 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGGraphicsElement.insta nce.systemLanguage_Getter_(unwrap_jso(this))); 3487 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.instance.syste mLanguage_Getter_(this);
3527 3488
3528 @DomName('SVGGraphicsElement.hasExtension') 3489 @DomName('SVGGraphicsElement.hasExtension')
3529 @DocsEditable() 3490 @DocsEditable()
3530 @Experimental() // untriaged 3491 @Experimental() // untriaged
3531 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance .hasExtension_Callback_1_(unwrap_jso(this), extension); 3492 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance .hasExtension_Callback_1_(this, extension);
3532 3493
3533 } 3494 }
3534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3535 // for details. All rights reserved. Use of this source code is governed by a 3496 // for details. All rights reserved. Use of this source code is governed by a
3536 // BSD-style license that can be found in the LICENSE file. 3497 // BSD-style license that can be found in the LICENSE file.
3537 3498
3538 // WARNING: Do not edit - generated code. 3499 // WARNING: Do not edit - generated code.
3539 3500
3540 3501
3541 @DocsEditable() 3502 @DocsEditable()
(...skipping 20 matching lines...) Expand all
3562 3523
3563 /** 3524 /**
3564 * Constructor instantiated by the DOM when a custom element has been created. 3525 * Constructor instantiated by the DOM when a custom element has been created.
3565 * 3526 *
3566 * This can only be called by subclasses from their created constructor. 3527 * This can only be called by subclasses from their created constructor.
3567 */ 3528 */
3568 ImageElement.created() : super.created(); 3529 ImageElement.created() : super.created();
3569 3530
3570 @DomName('SVGImageElement.height') 3531 @DomName('SVGImageElement.height')
3571 @DocsEditable() 3532 @DocsEditable()
3572 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei ght_Getter_(unwrap_jso(this))); 3533 AnimatedLength get height => _blink.BlinkSVGImageElement.instance.height_Gette r_(this);
3573 3534
3574 @DomName('SVGImageElement.preserveAspectRatio') 3535 @DomName('SVGImageElement.preserveAspectRatio')
3575 @DocsEditable() 3536 @DocsEditable()
3576 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 3537 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle ment.instance.preserveAspectRatio_Getter_(this);
3577 3538
3578 @DomName('SVGImageElement.width') 3539 @DomName('SVGImageElement.width')
3579 @DocsEditable() 3540 @DocsEditable()
3580 AnimatedLength get width => wrap_jso(_blink.BlinkSVGImageElement.instance.widt h_Getter_(unwrap_jso(this))); 3541 AnimatedLength get width => _blink.BlinkSVGImageElement.instance.width_Getter_ (this);
3581 3542
3582 @DomName('SVGImageElement.x') 3543 @DomName('SVGImageElement.x')
3583 @DocsEditable() 3544 @DocsEditable()
3584 AnimatedLength get x => wrap_jso(_blink.BlinkSVGImageElement.instance.x_Getter _(unwrap_jso(this))); 3545 AnimatedLength get x => _blink.BlinkSVGImageElement.instance.x_Getter_(this);
3585 3546
3586 @DomName('SVGImageElement.y') 3547 @DomName('SVGImageElement.y')
3587 @DocsEditable() 3548 @DocsEditable()
3588 AnimatedLength get y => wrap_jso(_blink.BlinkSVGImageElement.instance.y_Getter _(unwrap_jso(this))); 3549 AnimatedLength get y => _blink.BlinkSVGImageElement.instance.y_Getter_(this);
3589 3550
3590 @DomName('SVGImageElement.href') 3551 @DomName('SVGImageElement.href')
3591 @DocsEditable() 3552 @DocsEditable()
3592 AnimatedString get href => wrap_jso(_blink.BlinkSVGImageElement.instance.href_ Getter_(unwrap_jso(this))); 3553 AnimatedString get href => _blink.BlinkSVGImageElement.instance.href_Getter_(t his);
3593 3554
3594 } 3555 }
3595 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3556 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3596 // for details. All rights reserved. Use of this source code is governed by a 3557 // for details. All rights reserved. Use of this source code is governed by a
3597 // BSD-style license that can be found in the LICENSE file. 3558 // BSD-style license that can be found in the LICENSE file.
3598 3559
3599 // WARNING: Do not edit - generated code. 3560 // WARNING: Do not edit - generated code.
3600 3561
3601 3562
3602 @DocsEditable() 3563 @DocsEditable()
3603 @DomName('SVGLength') 3564 @DomName('SVGLength')
3604 @Unstable() 3565 @Unstable()
3605 class Length extends DartHtmlDomObject { 3566 class Length extends DartHtmlDomObject {
3606 // To suppress missing implicit constructor warnings. 3567 // To suppress missing implicit constructor warnings.
3607 factory Length._() { throw new UnsupportedError("Not supported"); } 3568 factory Length._() { throw new UnsupportedError("Not supported"); }
3608 3569
3609 @Deprecated("Internal Use Only") 3570 @Deprecated("Internal Use Only")
3610 static Length internalCreateLength() { 3571 static Length internalCreateLength() {
3611 return new Length._internalWrap(); 3572 return new Length._internalWrap();
3612 } 3573 }
3613 3574
3614 factory Length._internalWrap() { 3575 factory Length._internalWrap() {
3615 return new Length.internal_(); 3576 return new Length.internal_();
3616 } 3577 }
3617 3578
3618 @Deprecated("Internal Use Only") 3579 @Deprecated("Internal Use Only")
3619 Length.internal_() { } 3580 Length.internal_() { }
3620 3581
3621 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3622 int get hashCode => unwrap_jso(this).hashCode;
3623
3624 @DomName('SVGLength.SVG_LENGTHTYPE_CM') 3582 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3625 @DocsEditable() 3583 @DocsEditable()
3626 static const int SVG_LENGTHTYPE_CM = 6; 3584 static const int SVG_LENGTHTYPE_CM = 6;
3627 3585
3628 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') 3586 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3629 @DocsEditable() 3587 @DocsEditable()
3630 static const int SVG_LENGTHTYPE_EMS = 3; 3588 static const int SVG_LENGTHTYPE_EMS = 3;
3631 3589
3632 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') 3590 @DomName('SVGLength.SVG_LENGTHTYPE_EXS')
3633 @DocsEditable() 3591 @DocsEditable()
(...skipping 26 matching lines...) Expand all
3660 @DomName('SVGLength.SVG_LENGTHTYPE_PX') 3618 @DomName('SVGLength.SVG_LENGTHTYPE_PX')
3661 @DocsEditable() 3619 @DocsEditable()
3662 static const int SVG_LENGTHTYPE_PX = 5; 3620 static const int SVG_LENGTHTYPE_PX = 5;
3663 3621
3664 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN') 3622 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
3665 @DocsEditable() 3623 @DocsEditable()
3666 static const int SVG_LENGTHTYPE_UNKNOWN = 0; 3624 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
3667 3625
3668 @DomName('SVGLength.unitType') 3626 @DomName('SVGLength.unitType')
3669 @DocsEditable() 3627 @DocsEditable()
3670 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso (this)); 3628 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(this);
3671 3629
3672 @DomName('SVGLength.value') 3630 @DomName('SVGLength.value')
3673 @DocsEditable() 3631 @DocsEditable()
3674 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this) ); 3632 num get value => _blink.BlinkSVGLength.instance.value_Getter_(this);
3675 3633
3676 @DomName('SVGLength.value') 3634 @DomName('SVGLength.value')
3677 @DocsEditable() 3635 @DocsEditable()
3678 set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwrap_js o(this), value); 3636 set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(this, val ue);
3679 3637
3680 @DomName('SVGLength.valueAsString') 3638 @DomName('SVGLength.valueAsString')
3681 @DocsEditable() 3639 @DocsEditable()
3682 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette r_(unwrap_jso(this)); 3640 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette r_(this);
3683 3641
3684 @DomName('SVGLength.valueAsString') 3642 @DomName('SVGLength.valueAsString')
3685 @DocsEditable() 3643 @DocsEditable()
3686 set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsStrin g_Setter_(unwrap_jso(this), value); 3644 set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsStrin g_Setter_(this, value);
3687 3645
3688 @DomName('SVGLength.valueInSpecifiedUnits') 3646 @DomName('SVGLength.valueInSpecifiedUnits')
3689 @DocsEditable() 3647 @DocsEditable()
3690 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi edUnits_Getter_(unwrap_jso(this)); 3648 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi edUnits_Getter_(this);
3691 3649
3692 @DomName('SVGLength.valueInSpecifiedUnits') 3650 @DomName('SVGLength.valueInSpecifiedUnits')
3693 @DocsEditable() 3651 @DocsEditable()
3694 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueIn SpecifiedUnits_Setter_(unwrap_jso(this), value); 3652 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueIn SpecifiedUnits_Setter_(this, value);
3695 3653
3696 @DomName('SVGLength.convertToSpecifiedUnits') 3654 @DomName('SVGLength.convertToSpecifiedUnits')
3697 @DocsEditable() 3655 @DocsEditable()
3698 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); 3656 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c onvertToSpecifiedUnits_Callback_1_(this, unitType);
3699 3657
3700 @DomName('SVGLength.newValueSpecifiedUnits') 3658 @DomName('SVGLength.newValueSpecifiedUnits')
3701 @DocsEditable() 3659 @DocsEditable()
3702 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un itType, valueInSpecifiedUnits); 3660 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, valu eInSpecifiedUnits);
3703 3661
3704 } 3662 }
3705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3663 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3706 // for details. All rights reserved. Use of this source code is governed by a 3664 // for details. All rights reserved. Use of this source code is governed by a
3707 // BSD-style license that can be found in the LICENSE file. 3665 // BSD-style license that can be found in the LICENSE file.
3708 3666
3709 // WARNING: Do not edit - generated code. 3667 // WARNING: Do not edit - generated code.
3710 3668
3711 3669
3712 @DocsEditable() 3670 @DocsEditable()
3713 @DomName('SVGLengthList') 3671 @DomName('SVGLengthList')
3714 @Unstable() 3672 @Unstable()
3715 class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList Mixin<Length> implements List<Length> { 3673 class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList Mixin<Length> implements List<Length> {
3716 // To suppress missing implicit constructor warnings. 3674 // To suppress missing implicit constructor warnings.
3717 factory LengthList._() { throw new UnsupportedError("Not supported"); } 3675 factory LengthList._() { throw new UnsupportedError("Not supported"); }
3718 3676
3719 @Deprecated("Internal Use Only") 3677 @Deprecated("Internal Use Only")
3720 static LengthList internalCreateLengthList() { 3678 static LengthList internalCreateLengthList() {
3721 return new LengthList._internalWrap(); 3679 return new LengthList._internalWrap();
3722 } 3680 }
3723 3681
3724 factory LengthList._internalWrap() { 3682 factory LengthList._internalWrap() {
3725 return new LengthList.internal_(); 3683 return new LengthList.internal_();
3726 } 3684 }
3727 3685
3728 @Deprecated("Internal Use Only") 3686 @Deprecated("Internal Use Only")
3729 LengthList.internal_() { } 3687 LengthList.internal_() { }
3730 3688
3731 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3732 int get hashCode => unwrap_jso(this).hashCode;
3733
3734 @DomName('SVGLengthList.length') 3689 @DomName('SVGLengthList.length')
3735 @DocsEditable() 3690 @DocsEditable()
3736 @Experimental() // untriaged 3691 @Experimental() // untriaged
3737 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso (this)); 3692 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(this);
3738 3693
3739 @DomName('SVGLengthList.numberOfItems') 3694 @DomName('SVGLengthList.numberOfItems')
3740 @DocsEditable() 3695 @DocsEditable()
3741 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 3696 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett er_(this);
3742 3697
3743 Length operator[](int index) { 3698 Length operator[](int index) {
3744 if (index < 0 || index >= length) 3699 if (index < 0 || index >= length)
3745 throw new RangeError.index(index, this); 3700 throw new RangeError.index(index, this);
3746 return getItem(index); 3701 return getItem(index);
3747 } 3702 }
3748 3703
3749 void operator[]=(int index, Length value) { 3704 void operator[]=(int index, Length value) {
3750 throw new UnsupportedError("Cannot assign element of immutable List."); 3705 throw new UnsupportedError("Cannot assign element of immutable List.");
3751 } 3706 }
(...skipping 28 matching lines...) Expand all
3780 if (len == 0) throw new StateError("No elements"); 3735 if (len == 0) throw new StateError("No elements");
3781 throw new StateError("More than one element"); 3736 throw new StateError("More than one element");
3782 } 3737 }
3783 3738
3784 Length elementAt(int index) => this[index]; 3739 Length elementAt(int index) => this[index];
3785 // -- end List<Length> mixins. 3740 // -- end List<Length> mixins.
3786 3741
3787 @DomName('SVGLengthList.__setter__') 3742 @DomName('SVGLengthList.__setter__')
3788 @DocsEditable() 3743 @DocsEditable()
3789 @Experimental() // untriaged 3744 @Experimental() // untriaged
3790 void __setter__(int index, Length newItem) => _blink.BlinkSVGLengthList.instan ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem)); 3745 void __setter__(int index, Length newItem) => _blink.BlinkSVGLengthList.instan ce.$__setter___Callback_2_(this, index, newItem);
3791 3746
3792 @DomName('SVGLengthList.appendItem') 3747 @DomName('SVGLengthList.appendItem')
3793 @DocsEditable() 3748 @DocsEditable()
3794 Length appendItem(Length newItem) => wrap_jso(_blink.BlinkSVGLengthList.instan ce.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 3749 Length appendItem(Length newItem) => _blink.BlinkSVGLengthList.instance.append Item_Callback_1_(this, newItem);
3795 3750
3796 @DomName('SVGLengthList.clear') 3751 @DomName('SVGLengthList.clear')
3797 @DocsEditable() 3752 @DocsEditable()
3798 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js o(this)); 3753 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(this);
3799 3754
3800 @DomName('SVGLengthList.getItem') 3755 @DomName('SVGLengthList.getItem')
3801 @DocsEditable() 3756 @DocsEditable()
3802 Length getItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.getIt em_Callback_1_(unwrap_jso(this), index)); 3757 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba ck_1_(this, index);
3803 3758
3804 @DomName('SVGLengthList.initialize') 3759 @DomName('SVGLengthList.initialize')
3805 @DocsEditable() 3760 @DocsEditable()
3806 Length initialize(Length newItem) => wrap_jso(_blink.BlinkSVGLengthList.instan ce.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 3761 Length initialize(Length newItem) => _blink.BlinkSVGLengthList.instance.initia lize_Callback_1_(this, newItem);
3807 3762
3808 @DomName('SVGLengthList.insertItemBefore') 3763 @DomName('SVGLengthList.insertItemBefore')
3809 @DocsEditable() 3764 @DocsEditable()
3810 Length insertItemBefore(Length newItem, int index) => wrap_jso(_blink.BlinkSVG LengthList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(ne wItem), index)); 3765 Length insertItemBefore(Length newItem, int index) => _blink.BlinkSVGLengthLis t.instance.insertItemBefore_Callback_2_(this, newItem, index);
3811 3766
3812 @DomName('SVGLengthList.removeItem') 3767 @DomName('SVGLengthList.removeItem')
3813 @DocsEditable() 3768 @DocsEditable()
3814 Length removeItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.re moveItem_Callback_1_(unwrap_jso(this), index)); 3769 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_ Callback_1_(this, index);
3815 3770
3816 @DomName('SVGLengthList.replaceItem') 3771 @DomName('SVGLengthList.replaceItem')
3817 @DocsEditable() 3772 @DocsEditable()
3818 Length replaceItem(Length newItem, int index) => wrap_jso(_blink.BlinkSVGLengt hList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), in dex)); 3773 Length replaceItem(Length newItem, int index) => _blink.BlinkSVGLengthList.ins tance.replaceItem_Callback_2_(this, newItem, index);
3819 3774
3820 } 3775 }
3821 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3776 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3822 // for details. All rights reserved. Use of this source code is governed by a 3777 // for details. All rights reserved. Use of this source code is governed by a
3823 // BSD-style license that can be found in the LICENSE file. 3778 // BSD-style license that can be found in the LICENSE file.
3824 3779
3825 // WARNING: Do not edit - generated code. 3780 // WARNING: Do not edit - generated code.
3826 3781
3827 3782
3828 @DocsEditable() 3783 @DocsEditable()
(...skipping 20 matching lines...) Expand all
3849 3804
3850 /** 3805 /**
3851 * Constructor instantiated by the DOM when a custom element has been created. 3806 * Constructor instantiated by the DOM when a custom element has been created.
3852 * 3807 *
3853 * This can only be called by subclasses from their created constructor. 3808 * This can only be called by subclasses from their created constructor.
3854 */ 3809 */
3855 LineElement.created() : super.created(); 3810 LineElement.created() : super.created();
3856 3811
3857 @DomName('SVGLineElement.x1') 3812 @DomName('SVGLineElement.x1')
3858 @DocsEditable() 3813 @DocsEditable()
3859 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette r_(unwrap_jso(this))); 3814 AnimatedLength get x1 => _blink.BlinkSVGLineElement.instance.x1_Getter_(this);
3860 3815
3861 @DomName('SVGLineElement.x2') 3816 @DomName('SVGLineElement.x2')
3862 @DocsEditable() 3817 @DocsEditable()
3863 AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLineElement.instance.x2_Gette r_(unwrap_jso(this))); 3818 AnimatedLength get x2 => _blink.BlinkSVGLineElement.instance.x2_Getter_(this);
3864 3819
3865 @DomName('SVGLineElement.y1') 3820 @DomName('SVGLineElement.y1')
3866 @DocsEditable() 3821 @DocsEditable()
3867 AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLineElement.instance.y1_Gette r_(unwrap_jso(this))); 3822 AnimatedLength get y1 => _blink.BlinkSVGLineElement.instance.y1_Getter_(this);
3868 3823
3869 @DomName('SVGLineElement.y2') 3824 @DomName('SVGLineElement.y2')
3870 @DocsEditable() 3825 @DocsEditable()
3871 AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLineElement.instance.y2_Gette r_(unwrap_jso(this))); 3826 AnimatedLength get y2 => _blink.BlinkSVGLineElement.instance.y2_Getter_(this);
3872 3827
3873 } 3828 }
3874 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3829 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3875 // for details. All rights reserved. Use of this source code is governed by a 3830 // for details. All rights reserved. Use of this source code is governed by a
3876 // BSD-style license that can be found in the LICENSE file. 3831 // BSD-style license that can be found in the LICENSE file.
3877 3832
3878 // WARNING: Do not edit - generated code. 3833 // WARNING: Do not edit - generated code.
3879 3834
3880 3835
3881 @DocsEditable() 3836 @DocsEditable()
(...skipping 20 matching lines...) Expand all
3902 3857
3903 /** 3858 /**
3904 * Constructor instantiated by the DOM when a custom element has been created. 3859 * Constructor instantiated by the DOM when a custom element has been created.
3905 * 3860 *
3906 * This can only be called by subclasses from their created constructor. 3861 * This can only be called by subclasses from their created constructor.
3907 */ 3862 */
3908 LinearGradientElement.created() : super.created(); 3863 LinearGradientElement.created() : super.created();
3909 3864
3910 @DomName('SVGLinearGradientElement.x1') 3865 @DomName('SVGLinearGradientElement.x1')
3911 @DocsEditable() 3866 @DocsEditable()
3912 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc e.x1_Getter_(unwrap_jso(this))); 3867 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.instance.x1_Gett er_(this);
3913 3868
3914 @DomName('SVGLinearGradientElement.x2') 3869 @DomName('SVGLinearGradientElement.x2')
3915 @DocsEditable() 3870 @DocsEditable()
3916 AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc e.x2_Getter_(unwrap_jso(this))); 3871 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.instance.x2_Gett er_(this);
3917 3872
3918 @DomName('SVGLinearGradientElement.y1') 3873 @DomName('SVGLinearGradientElement.y1')
3919 @DocsEditable() 3874 @DocsEditable()
3920 AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc e.y1_Getter_(unwrap_jso(this))); 3875 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.instance.y1_Gett er_(this);
3921 3876
3922 @DomName('SVGLinearGradientElement.y2') 3877 @DomName('SVGLinearGradientElement.y2')
3923 @DocsEditable() 3878 @DocsEditable()
3924 AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc e.y2_Getter_(unwrap_jso(this))); 3879 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.instance.y2_Gett er_(this);
3925 3880
3926 } 3881 }
3927 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3882 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3928 // for details. All rights reserved. Use of this source code is governed by a 3883 // for details. All rights reserved. Use of this source code is governed by a
3929 // BSD-style license that can be found in the LICENSE file. 3884 // BSD-style license that can be found in the LICENSE file.
3930 3885
3931 // WARNING: Do not edit - generated code. 3886 // WARNING: Do not edit - generated code.
3932 3887
3933 3888
3934 @DocsEditable() 3889 @DocsEditable()
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
3979 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO') 3934 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO')
3980 @DocsEditable() 3935 @DocsEditable()
3981 static const int SVG_MARKER_ORIENT_AUTO = 1; 3936 static const int SVG_MARKER_ORIENT_AUTO = 1;
3982 3937
3983 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN') 3938 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN')
3984 @DocsEditable() 3939 @DocsEditable()
3985 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 3940 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
3986 3941
3987 @DomName('SVGMarkerElement.markerHeight') 3942 @DomName('SVGMarkerElement.markerHeight')
3988 @DocsEditable() 3943 @DocsEditable()
3989 AnimatedLength get markerHeight => wrap_jso(_blink.BlinkSVGMarkerElement.insta nce.markerHeight_Getter_(unwrap_jso(this))); 3944 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.instance.marke rHeight_Getter_(this);
3990 3945
3991 @DomName('SVGMarkerElement.markerUnits') 3946 @DomName('SVGMarkerElement.markerUnits')
3992 @DocsEditable() 3947 @DocsEditable()
3993 AnimatedEnumeration get markerUnits => wrap_jso(_blink.BlinkSVGMarkerElement.i nstance.markerUnits_Getter_(unwrap_jso(this))); 3948 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.instance.m arkerUnits_Getter_(this);
3994 3949
3995 @DomName('SVGMarkerElement.markerWidth') 3950 @DomName('SVGMarkerElement.markerWidth')
3996 @DocsEditable() 3951 @DocsEditable()
3997 AnimatedLength get markerWidth => wrap_jso(_blink.BlinkSVGMarkerElement.instan ce.markerWidth_Getter_(unwrap_jso(this))); 3952 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.instance.marker Width_Getter_(this);
3998 3953
3999 @DomName('SVGMarkerElement.orientAngle') 3954 @DomName('SVGMarkerElement.orientAngle')
4000 @DocsEditable() 3955 @DocsEditable()
4001 AnimatedAngle get orientAngle => wrap_jso(_blink.BlinkSVGMarkerElement.instanc e.orientAngle_Getter_(unwrap_jso(this))); 3956 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.instance.orientA ngle_Getter_(this);
4002 3957
4003 @DomName('SVGMarkerElement.orientType') 3958 @DomName('SVGMarkerElement.orientType')
4004 @DocsEditable() 3959 @DocsEditable()
4005 AnimatedEnumeration get orientType => wrap_jso(_blink.BlinkSVGMarkerElement.in stance.orientType_Getter_(unwrap_jso(this))); 3960 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.instance.or ientType_Getter_(this);
4006 3961
4007 @DomName('SVGMarkerElement.refX') 3962 @DomName('SVGMarkerElement.refX')
4008 @DocsEditable() 3963 @DocsEditable()
4009 AnimatedLength get refX => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refX _Getter_(unwrap_jso(this))); 3964 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.instance.refX_Getter_( this);
4010 3965
4011 @DomName('SVGMarkerElement.refY') 3966 @DomName('SVGMarkerElement.refY')
4012 @DocsEditable() 3967 @DocsEditable()
4013 AnimatedLength get refY => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refY _Getter_(unwrap_jso(this))); 3968 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.instance.refY_Getter_( this);
4014 3969
4015 @DomName('SVGMarkerElement.setOrientToAngle') 3970 @DomName('SVGMarkerElement.setOrientToAngle')
4016 @DocsEditable() 3971 @DocsEditable()
4017 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.se tOrientToAngle_Callback_1_(unwrap_jso(this), unwrap_jso(angle)); 3972 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.se tOrientToAngle_Callback_1_(this, angle);
4018 3973
4019 @DomName('SVGMarkerElement.setOrientToAuto') 3974 @DomName('SVGMarkerElement.setOrientToAuto')
4020 @DocsEditable() 3975 @DocsEditable()
4021 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAut o_Callback_0_(unwrap_jso(this)); 3976 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAut o_Callback_0_(this);
4022 3977
4023 @DomName('SVGMarkerElement.preserveAspectRatio') 3978 @DomName('SVGMarkerElement.preserveAspectRatio')
4024 @DocsEditable() 3979 @DocsEditable()
4025 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GMarkerElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 3980 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl ement.instance.preserveAspectRatio_Getter_(this);
4026 3981
4027 @DomName('SVGMarkerElement.viewBox') 3982 @DomName('SVGMarkerElement.viewBox')
4028 @DocsEditable() 3983 @DocsEditable()
4029 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGMarkerElement.instance.vie wBox_Getter_(unwrap_jso(this))); 3984 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.instance.viewBox_Gett er_(this);
4030 3985
4031 } 3986 }
4032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3987 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4033 // for details. All rights reserved. Use of this source code is governed by a 3988 // for details. All rights reserved. Use of this source code is governed by a
4034 // BSD-style license that can be found in the LICENSE file. 3989 // BSD-style license that can be found in the LICENSE file.
4035 3990
4036 // WARNING: Do not edit - generated code. 3991 // WARNING: Do not edit - generated code.
4037 3992
4038 3993
4039 @DocsEditable() 3994 @DocsEditable()
(...skipping 20 matching lines...) Expand all
4060 4015
4061 /** 4016 /**
4062 * Constructor instantiated by the DOM when a custom element has been created. 4017 * Constructor instantiated by the DOM when a custom element has been created.
4063 * 4018 *
4064 * This can only be called by subclasses from their created constructor. 4019 * This can only be called by subclasses from their created constructor.
4065 */ 4020 */
4066 MaskElement.created() : super.created(); 4021 MaskElement.created() : super.created();
4067 4022
4068 @DomName('SVGMaskElement.height') 4023 @DomName('SVGMaskElement.height')
4069 @DocsEditable() 4024 @DocsEditable()
4070 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig ht_Getter_(unwrap_jso(this))); 4025 AnimatedLength get height => _blink.BlinkSVGMaskElement.instance.height_Getter _(this);
4071 4026
4072 @DomName('SVGMaskElement.maskContentUnits') 4027 @DomName('SVGMaskElement.maskContentUnits')
4073 @DocsEditable() 4028 @DocsEditable()
4074 AnimatedEnumeration get maskContentUnits => wrap_jso(_blink.BlinkSVGMaskElemen t.instance.maskContentUnits_Getter_(unwrap_jso(this))); 4029 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.instanc e.maskContentUnits_Getter_(this);
4075 4030
4076 @DomName('SVGMaskElement.maskUnits') 4031 @DomName('SVGMaskElement.maskUnits')
4077 @DocsEditable() 4032 @DocsEditable()
4078 AnimatedEnumeration get maskUnits => wrap_jso(_blink.BlinkSVGMaskElement.insta nce.maskUnits_Getter_(unwrap_jso(this))); 4033 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.instance.maskU nits_Getter_(this);
4079 4034
4080 @DomName('SVGMaskElement.width') 4035 @DomName('SVGMaskElement.width')
4081 @DocsEditable() 4036 @DocsEditable()
4082 AnimatedLength get width => wrap_jso(_blink.BlinkSVGMaskElement.instance.width _Getter_(unwrap_jso(this))); 4037 AnimatedLength get width => _blink.BlinkSVGMaskElement.instance.width_Getter_( this);
4083 4038
4084 @DomName('SVGMaskElement.x') 4039 @DomName('SVGMaskElement.x')
4085 @DocsEditable() 4040 @DocsEditable()
4086 AnimatedLength get x => wrap_jso(_blink.BlinkSVGMaskElement.instance.x_Getter_ (unwrap_jso(this))); 4041 AnimatedLength get x => _blink.BlinkSVGMaskElement.instance.x_Getter_(this);
4087 4042
4088 @DomName('SVGMaskElement.y') 4043 @DomName('SVGMaskElement.y')
4089 @DocsEditable() 4044 @DocsEditable()
4090 AnimatedLength get y => wrap_jso(_blink.BlinkSVGMaskElement.instance.y_Getter_ (unwrap_jso(this))); 4045 AnimatedLength get y => _blink.BlinkSVGMaskElement.instance.y_Getter_(this);
4091 4046
4092 @DomName('SVGMaskElement.requiredExtensions') 4047 @DomName('SVGMaskElement.requiredExtensions')
4093 @DocsEditable() 4048 @DocsEditable()
4094 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGMaskElement.insta nce.requiredExtensions_Getter_(unwrap_jso(this))); 4049 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.instance.requi redExtensions_Getter_(this);
4095 4050
4096 @DomName('SVGMaskElement.requiredFeatures') 4051 @DomName('SVGMaskElement.requiredFeatures')
4097 @DocsEditable() 4052 @DocsEditable()
4098 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGMaskElement.instanc e.requiredFeatures_Getter_(unwrap_jso(this))); 4053 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.instance.require dFeatures_Getter_(this);
4099 4054
4100 @DomName('SVGMaskElement.systemLanguage') 4055 @DomName('SVGMaskElement.systemLanguage')
4101 @DocsEditable() 4056 @DocsEditable()
4102 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGMaskElement.instance. systemLanguage_Getter_(unwrap_jso(this))); 4057 StringList get systemLanguage => _blink.BlinkSVGMaskElement.instance.systemLan guage_Getter_(this);
4103 4058
4104 @DomName('SVGMaskElement.hasExtension') 4059 @DomName('SVGMaskElement.hasExtension')
4105 @DocsEditable() 4060 @DocsEditable()
4106 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.has Extension_Callback_1_(unwrap_jso(this), extension); 4061 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.has Extension_Callback_1_(this, extension);
4107 4062
4108 } 4063 }
4109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4064 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4110 // for details. All rights reserved. Use of this source code is governed by a 4065 // for details. All rights reserved. Use of this source code is governed by a
4111 // BSD-style license that can be found in the LICENSE file. 4066 // BSD-style license that can be found in the LICENSE file.
4112 4067
4113 // WARNING: Do not edit - generated code. 4068 // WARNING: Do not edit - generated code.
4114 4069
4115 4070
4116 @DocsEditable() 4071 @DocsEditable()
4117 @DomName('SVGMatrix') 4072 @DomName('SVGMatrix')
4118 @Unstable() 4073 @Unstable()
4119 class Matrix extends DartHtmlDomObject { 4074 class Matrix extends DartHtmlDomObject {
4120 // To suppress missing implicit constructor warnings. 4075 // To suppress missing implicit constructor warnings.
4121 factory Matrix._() { throw new UnsupportedError("Not supported"); } 4076 factory Matrix._() { throw new UnsupportedError("Not supported"); }
4122 4077
4123 @Deprecated("Internal Use Only") 4078 @Deprecated("Internal Use Only")
4124 static Matrix internalCreateMatrix() { 4079 static Matrix internalCreateMatrix() {
4125 return new Matrix._internalWrap(); 4080 return new Matrix._internalWrap();
4126 } 4081 }
4127 4082
4128 factory Matrix._internalWrap() { 4083 factory Matrix._internalWrap() {
4129 return new Matrix.internal_(); 4084 return new Matrix.internal_();
4130 } 4085 }
4131 4086
4132 @Deprecated("Internal Use Only") 4087 @Deprecated("Internal Use Only")
4133 Matrix.internal_() { } 4088 Matrix.internal_() { }
4134 4089
4135 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4136 int get hashCode => unwrap_jso(this).hashCode;
4137
4138 @DomName('SVGMatrix.a') 4090 @DomName('SVGMatrix.a')
4139 @DocsEditable() 4091 @DocsEditable()
4140 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); 4092 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(this);
4141 4093
4142 @DomName('SVGMatrix.a') 4094 @DomName('SVGMatrix.a')
4143 @DocsEditable() 4095 @DocsEditable()
4144 set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(this), value); 4096 set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(this, value);
4145 4097
4146 @DomName('SVGMatrix.b') 4098 @DomName('SVGMatrix.b')
4147 @DocsEditable() 4099 @DocsEditable()
4148 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); 4100 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(this);
4149 4101
4150 @DomName('SVGMatrix.b') 4102 @DomName('SVGMatrix.b')
4151 @DocsEditable() 4103 @DocsEditable()
4152 set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(this), value); 4104 set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(this, value);
4153 4105
4154 @DomName('SVGMatrix.c') 4106 @DomName('SVGMatrix.c')
4155 @DocsEditable() 4107 @DocsEditable()
4156 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); 4108 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(this);
4157 4109
4158 @DomName('SVGMatrix.c') 4110 @DomName('SVGMatrix.c')
4159 @DocsEditable() 4111 @DocsEditable()
4160 set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(this), value); 4112 set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(this, value);
4161 4113
4162 @DomName('SVGMatrix.d') 4114 @DomName('SVGMatrix.d')
4163 @DocsEditable() 4115 @DocsEditable()
4164 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); 4116 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(this);
4165 4117
4166 @DomName('SVGMatrix.d') 4118 @DomName('SVGMatrix.d')
4167 @DocsEditable() 4119 @DocsEditable()
4168 set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(this), value); 4120 set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(this, value);
4169 4121
4170 @DomName('SVGMatrix.e') 4122 @DomName('SVGMatrix.e')
4171 @DocsEditable() 4123 @DocsEditable()
4172 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); 4124 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(this);
4173 4125
4174 @DomName('SVGMatrix.e') 4126 @DomName('SVGMatrix.e')
4175 @DocsEditable() 4127 @DocsEditable()
4176 set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(this), value); 4128 set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(this, value);
4177 4129
4178 @DomName('SVGMatrix.f') 4130 @DomName('SVGMatrix.f')
4179 @DocsEditable() 4131 @DocsEditable()
4180 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); 4132 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(this);
4181 4133
4182 @DomName('SVGMatrix.f') 4134 @DomName('SVGMatrix.f')
4183 @DocsEditable() 4135 @DocsEditable()
4184 set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(this), value); 4136 set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(this, value);
4185 4137
4186 @DomName('SVGMatrix.flipX') 4138 @DomName('SVGMatrix.flipX')
4187 @DocsEditable() 4139 @DocsEditable()
4188 Matrix flipX() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipX_Callback_0_(un wrap_jso(this))); 4140 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(this);
4189 4141
4190 @DomName('SVGMatrix.flipY') 4142 @DomName('SVGMatrix.flipY')
4191 @DocsEditable() 4143 @DocsEditable()
4192 Matrix flipY() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipY_Callback_0_(un wrap_jso(this))); 4144 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(this);
4193 4145
4194 @DomName('SVGMatrix.inverse') 4146 @DomName('SVGMatrix.inverse')
4195 @DocsEditable() 4147 @DocsEditable()
4196 Matrix inverse() => wrap_jso(_blink.BlinkSVGMatrix.instance.inverse_Callback_0 _(unwrap_jso(this))); 4148 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(this);
4197 4149
4198 @DomName('SVGMatrix.multiply') 4150 @DomName('SVGMatrix.multiply')
4199 @DocsEditable() 4151 @DocsEditable()
4200 Matrix multiply(Matrix secondMatrix) => wrap_jso(_blink.BlinkSVGMatrix.instanc e.multiply_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix))); 4152 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl y_Callback_1_(this, secondMatrix);
4201 4153
4202 @DomName('SVGMatrix.rotate') 4154 @DomName('SVGMatrix.rotate')
4203 @DocsEditable() 4155 @DocsEditable()
4204 Matrix rotate(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.rotate_Cal lback_1_(unwrap_jso(this), angle)); 4156 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_( this, angle);
4205 4157
4206 @DomName('SVGMatrix.rotateFromVector') 4158 @DomName('SVGMatrix.rotateFromVector')
4207 @DocsEditable() 4159 @DocsEditable()
4208 Matrix rotateFromVector(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instan ce.rotateFromVector_Callback_2_(unwrap_jso(this), x, y)); 4160 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate FromVector_Callback_2_(this, x, y);
4209 4161
4210 @DomName('SVGMatrix.scale') 4162 @DomName('SVGMatrix.scale')
4211 @DocsEditable() 4163 @DocsEditable()
4212 Matrix scale(num scaleFactor) => wrap_jso(_blink.BlinkSVGMatrix.instance.scale _Callback_1_(unwrap_jso(this), scaleFactor)); 4164 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback _1_(this, scaleFactor);
4213 4165
4214 @DomName('SVGMatrix.scaleNonUniform') 4166 @DomName('SVGMatrix.scaleNonUniform')
4215 @DocsEditable() 4167 @DocsEditable()
4216 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => wrap_jso(_blink. BlinkSVGMatrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFacto rX, scaleFactorY)); 4168 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM atrix.instance.scaleNonUniform_Callback_2_(this, scaleFactorX, scaleFactorY);
4217 4169
4218 @DomName('SVGMatrix.skewX') 4170 @DomName('SVGMatrix.skewX')
4219 @DocsEditable() 4171 @DocsEditable()
4220 Matrix skewX(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewX_Callb ack_1_(unwrap_jso(this), angle)); 4172 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(th is, angle);
4221 4173
4222 @DomName('SVGMatrix.skewY') 4174 @DomName('SVGMatrix.skewY')
4223 @DocsEditable() 4175 @DocsEditable()
4224 Matrix skewY(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewY_Callb ack_1_(unwrap_jso(this), angle)); 4176 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(th is, angle);
4225 4177
4226 @DomName('SVGMatrix.translate') 4178 @DomName('SVGMatrix.translate')
4227 @DocsEditable() 4179 @DocsEditable()
4228 Matrix translate(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instance.tran slate_Callback_2_(unwrap_jso(this), x, y)); 4180 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal lback_2_(this, x, y);
4229 4181
4230 } 4182 }
4231 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4232 // for details. All rights reserved. Use of this source code is governed by a 4184 // for details. All rights reserved. Use of this source code is governed by a
4233 // BSD-style license that can be found in the LICENSE file. 4185 // BSD-style license that can be found in the LICENSE file.
4234 4186
4235 // WARNING: Do not edit - generated code. 4187 // WARNING: Do not edit - generated code.
4236 4188
4237 4189
4238 @DocsEditable() 4190 @DocsEditable()
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
4280 return new Number._internalWrap(); 4232 return new Number._internalWrap();
4281 } 4233 }
4282 4234
4283 factory Number._internalWrap() { 4235 factory Number._internalWrap() {
4284 return new Number.internal_(); 4236 return new Number.internal_();
4285 } 4237 }
4286 4238
4287 @Deprecated("Internal Use Only") 4239 @Deprecated("Internal Use Only")
4288 Number.internal_() { } 4240 Number.internal_() { }
4289 4241
4290 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4291 int get hashCode => unwrap_jso(this).hashCode;
4292
4293 @DomName('SVGNumber.value') 4242 @DomName('SVGNumber.value')
4294 @DocsEditable() 4243 @DocsEditable()
4295 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this) ); 4244 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(this);
4296 4245
4297 @DomName('SVGNumber.value') 4246 @DomName('SVGNumber.value')
4298 @DocsEditable() 4247 @DocsEditable()
4299 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_js o(this), value); 4248 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(this, val ue);
4300 4249
4301 } 4250 }
4302 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4303 // for details. All rights reserved. Use of this source code is governed by a 4252 // for details. All rights reserved. Use of this source code is governed by a
4304 // BSD-style license that can be found in the LICENSE file. 4253 // BSD-style license that can be found in the LICENSE file.
4305 4254
4306 // WARNING: Do not edit - generated code. 4255 // WARNING: Do not edit - generated code.
4307 4256
4308 4257
4309 @DocsEditable() 4258 @DocsEditable()
4310 @DomName('SVGNumberList') 4259 @DomName('SVGNumberList')
4311 @Unstable() 4260 @Unstable()
4312 class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList Mixin<Number> implements List<Number> { 4261 class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList Mixin<Number> implements List<Number> {
4313 // To suppress missing implicit constructor warnings. 4262 // To suppress missing implicit constructor warnings.
4314 factory NumberList._() { throw new UnsupportedError("Not supported"); } 4263 factory NumberList._() { throw new UnsupportedError("Not supported"); }
4315 4264
4316 @Deprecated("Internal Use Only") 4265 @Deprecated("Internal Use Only")
4317 static NumberList internalCreateNumberList() { 4266 static NumberList internalCreateNumberList() {
4318 return new NumberList._internalWrap(); 4267 return new NumberList._internalWrap();
4319 } 4268 }
4320 4269
4321 factory NumberList._internalWrap() { 4270 factory NumberList._internalWrap() {
4322 return new NumberList.internal_(); 4271 return new NumberList.internal_();
4323 } 4272 }
4324 4273
4325 @Deprecated("Internal Use Only") 4274 @Deprecated("Internal Use Only")
4326 NumberList.internal_() { } 4275 NumberList.internal_() { }
4327 4276
4328 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4329 int get hashCode => unwrap_jso(this).hashCode;
4330
4331 @DomName('SVGNumberList.length') 4277 @DomName('SVGNumberList.length')
4332 @DocsEditable() 4278 @DocsEditable()
4333 @Experimental() // untriaged 4279 @Experimental() // untriaged
4334 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso (this)); 4280 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(this);
4335 4281
4336 @DomName('SVGNumberList.numberOfItems') 4282 @DomName('SVGNumberList.numberOfItems')
4337 @DocsEditable() 4283 @DocsEditable()
4338 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 4284 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett er_(this);
4339 4285
4340 Number operator[](int index) { 4286 Number operator[](int index) {
4341 if (index < 0 || index >= length) 4287 if (index < 0 || index >= length)
4342 throw new RangeError.index(index, this); 4288 throw new RangeError.index(index, this);
4343 return getItem(index); 4289 return getItem(index);
4344 } 4290 }
4345 4291
4346 void operator[]=(int index, Number value) { 4292 void operator[]=(int index, Number value) {
4347 throw new UnsupportedError("Cannot assign element of immutable List."); 4293 throw new UnsupportedError("Cannot assign element of immutable List.");
4348 } 4294 }
(...skipping 28 matching lines...) Expand all
4377 if (len == 0) throw new StateError("No elements"); 4323 if (len == 0) throw new StateError("No elements");
4378 throw new StateError("More than one element"); 4324 throw new StateError("More than one element");
4379 } 4325 }
4380 4326
4381 Number elementAt(int index) => this[index]; 4327 Number elementAt(int index) => this[index];
4382 // -- end List<Number> mixins. 4328 // -- end List<Number> mixins.
4383 4329
4384 @DomName('SVGNumberList.__setter__') 4330 @DomName('SVGNumberList.__setter__')
4385 @DocsEditable() 4331 @DocsEditable()
4386 @Experimental() // untriaged 4332 @Experimental() // untriaged
4387 void __setter__(int index, Number newItem) => _blink.BlinkSVGNumberList.instan ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem)); 4333 void __setter__(int index, Number newItem) => _blink.BlinkSVGNumberList.instan ce.$__setter___Callback_2_(this, index, newItem);
4388 4334
4389 @DomName('SVGNumberList.appendItem') 4335 @DomName('SVGNumberList.appendItem')
4390 @DocsEditable() 4336 @DocsEditable()
4391 Number appendItem(Number newItem) => wrap_jso(_blink.BlinkSVGNumberList.instan ce.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 4337 Number appendItem(Number newItem) => _blink.BlinkSVGNumberList.instance.append Item_Callback_1_(this, newItem);
4392 4338
4393 @DomName('SVGNumberList.clear') 4339 @DomName('SVGNumberList.clear')
4394 @DocsEditable() 4340 @DocsEditable()
4395 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js o(this)); 4341 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(this);
4396 4342
4397 @DomName('SVGNumberList.getItem') 4343 @DomName('SVGNumberList.getItem')
4398 @DocsEditable() 4344 @DocsEditable()
4399 Number getItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.getIt em_Callback_1_(unwrap_jso(this), index)); 4345 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba ck_1_(this, index);
4400 4346
4401 @DomName('SVGNumberList.initialize') 4347 @DomName('SVGNumberList.initialize')
4402 @DocsEditable() 4348 @DocsEditable()
4403 Number initialize(Number newItem) => wrap_jso(_blink.BlinkSVGNumberList.instan ce.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 4349 Number initialize(Number newItem) => _blink.BlinkSVGNumberList.instance.initia lize_Callback_1_(this, newItem);
4404 4350
4405 @DomName('SVGNumberList.insertItemBefore') 4351 @DomName('SVGNumberList.insertItemBefore')
4406 @DocsEditable() 4352 @DocsEditable()
4407 Number insertItemBefore(Number newItem, int index) => wrap_jso(_blink.BlinkSVG NumberList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(ne wItem), index)); 4353 Number insertItemBefore(Number newItem, int index) => _blink.BlinkSVGNumberLis t.instance.insertItemBefore_Callback_2_(this, newItem, index);
4408 4354
4409 @DomName('SVGNumberList.removeItem') 4355 @DomName('SVGNumberList.removeItem')
4410 @DocsEditable() 4356 @DocsEditable()
4411 Number removeItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.re moveItem_Callback_1_(unwrap_jso(this), index)); 4357 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_ Callback_1_(this, index);
4412 4358
4413 @DomName('SVGNumberList.replaceItem') 4359 @DomName('SVGNumberList.replaceItem')
4414 @DocsEditable() 4360 @DocsEditable()
4415 Number replaceItem(Number newItem, int index) => wrap_jso(_blink.BlinkSVGNumbe rList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), in dex)); 4361 Number replaceItem(Number newItem, int index) => _blink.BlinkSVGNumberList.ins tance.replaceItem_Callback_2_(this, newItem, index);
4416 4362
4417 } 4363 }
4418 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4364 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4419 // for details. All rights reserved. Use of this source code is governed by a 4365 // for details. All rights reserved. Use of this source code is governed by a
4420 // BSD-style license that can be found in the LICENSE file. 4366 // BSD-style license that can be found in the LICENSE file.
4421 4367
4422 // WARNING: Do not edit - generated code. 4368 // WARNING: Do not edit - generated code.
4423 4369
4424 4370
4425 @DocsEditable() 4371 @DocsEditable()
(...skipping 20 matching lines...) Expand all
4446 4392
4447 /** 4393 /**
4448 * Constructor instantiated by the DOM when a custom element has been created. 4394 * Constructor instantiated by the DOM when a custom element has been created.
4449 * 4395 *
4450 * This can only be called by subclasses from their created constructor. 4396 * This can only be called by subclasses from their created constructor.
4451 */ 4397 */
4452 PathElement.created() : super.created(); 4398 PathElement.created() : super.created();
4453 4399
4454 @DomName('SVGPathElement.animatedNormalizedPathSegList') 4400 @DomName('SVGPathElement.animatedNormalizedPathSegList')
4455 @DocsEditable() 4401 @DocsEditable()
4456 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); 4402 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.in stance.animatedNormalizedPathSegList_Getter_(this);
4457 4403
4458 @DomName('SVGPathElement.animatedPathSegList') 4404 @DomName('SVGPathElement.animatedPathSegList')
4459 @DocsEditable() 4405 @DocsEditable()
4460 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins tance.animatedPathSegList_Getter_(unwrap_jso(this))); 4406 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.instance.ani matedPathSegList_Getter_(this);
4461 4407
4462 @DomName('SVGPathElement.normalizedPathSegList') 4408 @DomName('SVGPathElement.normalizedPathSegList')
4463 @DocsEditable() 4409 @DocsEditable()
4464 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); 4410 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.instance.n ormalizedPathSegList_Getter_(this);
4465 4411
4466 @DomName('SVGPathElement.pathLength') 4412 @DomName('SVGPathElement.pathLength')
4467 @DocsEditable() 4413 @DocsEditable()
4468 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance. pathLength_Getter_(unwrap_jso(this))); 4414 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.instance.pathLengt h_Getter_(this);
4469 4415
4470 @DomName('SVGPathElement.pathSegList') 4416 @DomName('SVGPathElement.pathSegList')
4471 @DocsEditable() 4417 @DocsEditable()
4472 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa thSegList_Getter_(unwrap_jso(this))); 4418 PathSegList get pathSegList => _blink.BlinkSVGPathElement.instance.pathSegList _Getter_(this);
4473 4419
4474 @DomName('SVGPathElement.createSVGPathSegArcAbs') 4420 @DomName('SVGPathElement.createSVGPathSegArcAbs')
4475 @DocsEditable() 4421 @DocsEditable()
4476 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan ce.createSVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar geArcFlag, sweepFlag)); 4422 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) ;
4477 4423
4478 @DomName('SVGPathElement.createSVGPathSegArcRel') 4424 @DomName('SVGPathElement.createSVGPathSegArcRel')
4479 @DocsEditable() 4425 @DocsEditable()
4480 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan ce.createSVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar geArcFlag, sweepFlag)); 4426 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) ;
4481 4427
4482 @DomName('SVGPathElement.createSVGPathSegClosePath') 4428 @DomName('SVGPathElement.createSVGPathSegClosePath')
4483 @DocsEditable() 4429 @DocsEditable()
4484 PathSegClosePath createSvgPathSegClosePath() => wrap_jso(_blink.BlinkSVGPathEl ement.instance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this))); 4430 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins tance.createSVGPathSegClosePath_Callback_0_(this);
4485 4431
4486 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') 4432 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
4487 @DocsEditable() 4433 @DocsEditable()
4488 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG PathSegCurvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); 4434 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);
4489 4435
4490 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') 4436 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
4491 @DocsEditable() 4437 @DocsEditable()
4492 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG PathSegCurvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); 4438 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);
4493 4439
4494 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') 4440 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
4495 @DocsEditable() 4441 @DocsEditable()
4496 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath SegCurvetoCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2)); 4442 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet oCubicSmoothAbs_Callback_4_(this, x, y, x2, y2);
4497 4443
4498 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') 4444 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
4499 @DocsEditable() 4445 @DocsEditable()
4500 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath SegCurvetoCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2)); 4446 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet oCubicSmoothRel_Callback_4_(this, x, y, x2, y2);
4501 4447
4502 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') 4448 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
4503 @DocsEditable() 4449 @DocsEditable()
4504 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC urvetoQuadraticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1)); 4450 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua draticAbs_Callback_4_(this, x, y, x1, y1);
4505 4451
4506 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') 4452 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
4507 @DocsEditable() 4453 @DocsEditable()
4508 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC urvetoQuadraticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1)); 4454 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua draticRel_Callback_4_(this, x, y, x1, y1);
4509 4455
4510 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') 4456 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
4511 @DocsEditable() 4457 @DocsEditable()
4512 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve toQuadraticSmoothAbs_Callback_2_(unwrap_jso(this), x, y)); 4458 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat icSmoothAbs_Callback_2_(this, x, y);
4513 4459
4514 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') 4460 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
4515 @DocsEditable() 4461 @DocsEditable()
4516 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve toQuadraticSmoothRel_Callback_2_(unwrap_jso(this), x, y)); 4462 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat icSmoothRel_Callback_2_(this, x, y);
4517 4463
4518 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') 4464 @DomName('SVGPathElement.createSVGPathSegLinetoAbs')
4519 @DocsEditable() 4465 @DocsEditable()
4520 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => wrap_jso(_blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this ), x, y)); 4466 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(this, x, y);
4521 4467
4522 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') 4468 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
4523 @DocsEditable() 4469 @DocsEditable()
4524 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => wrap_ jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Call back_1_(unwrap_jso(this), x)); 4470 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(t his, x);
4525 4471
4526 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') 4472 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
4527 @DocsEditable() 4473 @DocsEditable()
4528 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => wrap_ jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Call back_1_(unwrap_jso(this), x)); 4474 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(t his, x);
4529 4475
4530 @DomName('SVGPathElement.createSVGPathSegLinetoRel') 4476 @DomName('SVGPathElement.createSVGPathSegLinetoRel')
4531 @DocsEditable() 4477 @DocsEditable()
4532 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => wrap_jso(_blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this ), x, y)); 4478 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegLinetoRel_Callback_2_(this, x, y);
4533 4479
4534 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') 4480 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
4535 @DocsEditable() 4481 @DocsEditable()
4536 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => wrap_jso( _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1 _(unwrap_jso(this), y)); 4482 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(this, y );
4537 4483
4538 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') 4484 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
4539 @DocsEditable() 4485 @DocsEditable()
4540 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => wrap_jso( _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1 _(unwrap_jso(this), y)); 4486 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(this, y );
4541 4487
4542 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') 4488 @DomName('SVGPathElement.createSVGPathSegMovetoAbs')
4543 @DocsEditable() 4489 @DocsEditable()
4544 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => wrap_jso(_blink.Bl inkSVGPathElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this ), x, y)); 4490 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(this, x, y);
4545 4491
4546 @DomName('SVGPathElement.createSVGPathSegMovetoRel') 4492 @DomName('SVGPathElement.createSVGPathSegMovetoRel')
4547 @DocsEditable() 4493 @DocsEditable()
4548 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => wrap_jso(_blink.Bl inkSVGPathElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this ), x, y)); 4494 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat hElement.instance.createSVGPathSegMovetoRel_Callback_2_(this, x, y);
4549 4495
4550 @DomName('SVGPathElement.getPathSegAtLength') 4496 @DomName('SVGPathElement.getPathSegAtLength')
4551 @DocsEditable() 4497 @DocsEditable()
4552 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); 4498 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge tPathSegAtLength_Callback_1_(this, distance);
4553 4499
4554 @DomName('SVGPathElement.getPointAtLength') 4500 @DomName('SVGPathElement.getPointAtLength')
4555 @DocsEditable() 4501 @DocsEditable()
4556 Point getPointAtLength(num distance) => wrap_jso(_blink.BlinkSVGPathElement.in stance.getPointAtLength_Callback_1_(unwrap_jso(this), distance)); 4502 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge tPointAtLength_Callback_1_(this, distance);
4557 4503
4558 @DomName('SVGPathElement.getTotalLength') 4504 @DomName('SVGPathElement.getTotalLength')
4559 @DocsEditable() 4505 @DocsEditable()
4560 num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Cal lback_0_(unwrap_jso(this)); 4506 num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Cal lback_0_(this);
4561 4507
4562 } 4508 }
4563 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4509 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4564 // for details. All rights reserved. Use of this source code is governed by a 4510 // for details. All rights reserved. Use of this source code is governed by a
4565 // BSD-style license that can be found in the LICENSE file. 4511 // BSD-style license that can be found in the LICENSE file.
4566 4512
4567 // WARNING: Do not edit - generated code. 4513 // WARNING: Do not edit - generated code.
4568 4514
4569 4515
4570 @DocsEditable() 4516 @DocsEditable()
4571 @DomName('SVGPathSeg') 4517 @DomName('SVGPathSeg')
4572 @Unstable() 4518 @Unstable()
4573 class PathSeg extends DartHtmlDomObject { 4519 class PathSeg extends DartHtmlDomObject {
4574 // To suppress missing implicit constructor warnings. 4520 // To suppress missing implicit constructor warnings.
4575 factory PathSeg._() { throw new UnsupportedError("Not supported"); } 4521 factory PathSeg._() { throw new UnsupportedError("Not supported"); }
4576 4522
4577 @Deprecated("Internal Use Only") 4523 @Deprecated("Internal Use Only")
4578 static PathSeg internalCreatePathSeg() { 4524 static PathSeg internalCreatePathSeg() {
4579 return new PathSeg._internalWrap(); 4525 return new PathSeg._internalWrap();
4580 } 4526 }
4581 4527
4582 factory PathSeg._internalWrap() { 4528 factory PathSeg._internalWrap() {
4583 return new PathSeg.internal_(); 4529 return new PathSeg.internal_();
4584 } 4530 }
4585 4531
4586 @Deprecated("Internal Use Only") 4532 @Deprecated("Internal Use Only")
4587 PathSeg.internal_() { } 4533 PathSeg.internal_() { }
4588 4534
4589 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4590 int get hashCode => unwrap_jso(this).hashCode;
4591
4592 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') 4535 @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
4593 @DocsEditable() 4536 @DocsEditable()
4594 static const int PATHSEG_ARC_ABS = 10; 4537 static const int PATHSEG_ARC_ABS = 10;
4595 4538
4596 @DomName('SVGPathSeg.PATHSEG_ARC_REL') 4539 @DomName('SVGPathSeg.PATHSEG_ARC_REL')
4597 @DocsEditable() 4540 @DocsEditable()
4598 static const int PATHSEG_ARC_REL = 11; 4541 static const int PATHSEG_ARC_REL = 11;
4599 4542
4600 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') 4543 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH')
4601 @DocsEditable() 4544 @DocsEditable()
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
4664 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL') 4607 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL')
4665 @DocsEditable() 4608 @DocsEditable()
4666 static const int PATHSEG_MOVETO_REL = 3; 4609 static const int PATHSEG_MOVETO_REL = 3;
4667 4610
4668 @DomName('SVGPathSeg.PATHSEG_UNKNOWN') 4611 @DomName('SVGPathSeg.PATHSEG_UNKNOWN')
4669 @DocsEditable() 4612 @DocsEditable()
4670 static const int PATHSEG_UNKNOWN = 0; 4613 static const int PATHSEG_UNKNOWN = 0;
4671 4614
4672 @DomName('SVGPathSeg.pathSegType') 4615 @DomName('SVGPathSeg.pathSegType')
4673 @DocsEditable() 4616 @DocsEditable()
4674 int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(unw rap_jso(this)); 4617 int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(thi s);
4675 4618
4676 @DomName('SVGPathSeg.pathSegTypeAsLetter') 4619 @DomName('SVGPathSeg.pathSegTypeAsLetter')
4677 @DocsEditable() 4620 @DocsEditable()
4678 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeA sLetter_Getter_(unwrap_jso(this)); 4621 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeA sLetter_Getter_(this);
4679 4622
4680 } 4623 }
4681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4624 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4682 // for details. All rights reserved. Use of this source code is governed by a 4625 // for details. All rights reserved. Use of this source code is governed by a
4683 // BSD-style license that can be found in the LICENSE file. 4626 // BSD-style license that can be found in the LICENSE file.
4684 4627
4685 // WARNING: Do not edit - generated code. 4628 // WARNING: Do not edit - generated code.
4686 4629
4687 4630
4688 @DocsEditable() 4631 @DocsEditable()
(...skipping 10 matching lines...) Expand all
4699 } 4642 }
4700 4643
4701 external factory PathSegArcAbs._internalWrap(); 4644 external factory PathSegArcAbs._internalWrap();
4702 4645
4703 @Deprecated("Internal Use Only") 4646 @Deprecated("Internal Use Only")
4704 PathSegArcAbs.internal_() : super.internal_(); 4647 PathSegArcAbs.internal_() : super.internal_();
4705 4648
4706 4649
4707 @DomName('SVGPathSegArcAbs.angle') 4650 @DomName('SVGPathSegArcAbs.angle')
4708 @DocsEditable() 4651 @DocsEditable()
4709 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js o(this)); 4652 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(this);
4710 4653
4711 @DomName('SVGPathSegArcAbs.angle') 4654 @DomName('SVGPathSegArcAbs.angle')
4712 @DocsEditable() 4655 @DocsEditable()
4713 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(un wrap_jso(this), value); 4656 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(th is, value);
4714 4657
4715 @DomName('SVGPathSegArcAbs.largeArcFlag') 4658 @DomName('SVGPathSegArcAbs.largeArcFlag')
4716 @DocsEditable() 4659 @DocsEditable()
4717 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge tter_(unwrap_jso(this)); 4660 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge tter_(this);
4718 4661
4719 @DomName('SVGPathSegArcAbs.largeArcFlag') 4662 @DomName('SVGPathSegArcAbs.largeArcFlag')
4720 @DocsEditable() 4663 @DocsEditable()
4721 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArc Flag_Setter_(unwrap_jso(this), value); 4664 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArc Flag_Setter_(this, value);
4722 4665
4723 @DomName('SVGPathSegArcAbs.r1') 4666 @DomName('SVGPathSegArcAbs.r1')
4724 @DocsEditable() 4667 @DocsEditable()
4725 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this )); 4668 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(this);
4726 4669
4727 @DomName('SVGPathSegArcAbs.r1') 4670 @DomName('SVGPathSegArcAbs.r1')
4728 @DocsEditable() 4671 @DocsEditable()
4729 set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unwrap_j so(this), value); 4672 set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(this, va lue);
4730 4673
4731 @DomName('SVGPathSegArcAbs.r2') 4674 @DomName('SVGPathSegArcAbs.r2')
4732 @DocsEditable() 4675 @DocsEditable()
4733 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this )); 4676 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(this);
4734 4677
4735 @DomName('SVGPathSegArcAbs.r2') 4678 @DomName('SVGPathSegArcAbs.r2')
4736 @DocsEditable() 4679 @DocsEditable()
4737 set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unwrap_j so(this), value); 4680 set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(this, va lue);
4738 4681
4739 @DomName('SVGPathSegArcAbs.sweepFlag') 4682 @DomName('SVGPathSegArcAbs.sweepFlag')
4740 @DocsEditable() 4683 @DocsEditable()
4741 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_( unwrap_jso(this)); 4684 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_( this);
4742 4685
4743 @DomName('SVGPathSegArcAbs.sweepFlag') 4686 @DomName('SVGPathSegArcAbs.sweepFlag')
4744 @DocsEditable() 4687 @DocsEditable()
4745 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_S etter_(unwrap_jso(this), value); 4688 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_S etter_(this, value);
4746 4689
4747 @DomName('SVGPathSegArcAbs.x') 4690 @DomName('SVGPathSegArcAbs.x')
4748 @DocsEditable() 4691 @DocsEditable()
4749 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this)) ; 4692 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(this);
4750 4693
4751 @DomName('SVGPathSegArcAbs.x') 4694 @DomName('SVGPathSegArcAbs.x')
4752 @DocsEditable() 4695 @DocsEditable()
4753 set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwrap_jso (this), value); 4696 set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(this, valu e);
4754 4697
4755 @DomName('SVGPathSegArcAbs.y') 4698 @DomName('SVGPathSegArcAbs.y')
4756 @DocsEditable() 4699 @DocsEditable()
4757 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this)) ; 4700 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(this);
4758 4701
4759 @DomName('SVGPathSegArcAbs.y') 4702 @DomName('SVGPathSegArcAbs.y')
4760 @DocsEditable() 4703 @DocsEditable()
4761 set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwrap_jso (this), value); 4704 set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(this, valu e);
4762 4705
4763 } 4706 }
4764 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4707 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4765 // for details. All rights reserved. Use of this source code is governed by a 4708 // for details. All rights reserved. Use of this source code is governed by a
4766 // BSD-style license that can be found in the LICENSE file. 4709 // BSD-style license that can be found in the LICENSE file.
4767 4710
4768 // WARNING: Do not edit - generated code. 4711 // WARNING: Do not edit - generated code.
4769 4712
4770 4713
4771 @DocsEditable() 4714 @DocsEditable()
(...skipping 10 matching lines...) Expand all
4782 } 4725 }
4783 4726
4784 external factory PathSegArcRel._internalWrap(); 4727 external factory PathSegArcRel._internalWrap();
4785 4728
4786 @Deprecated("Internal Use Only") 4729 @Deprecated("Internal Use Only")
4787 PathSegArcRel.internal_() : super.internal_(); 4730 PathSegArcRel.internal_() : super.internal_();
4788 4731
4789 4732
4790 @DomName('SVGPathSegArcRel.angle') 4733 @DomName('SVGPathSegArcRel.angle')
4791 @DocsEditable() 4734 @DocsEditable()
4792 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js o(this)); 4735 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(this);
4793 4736
4794 @DomName('SVGPathSegArcRel.angle') 4737 @DomName('SVGPathSegArcRel.angle')
4795 @DocsEditable() 4738 @DocsEditable()
4796 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(un wrap_jso(this), value); 4739 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(th is, value);
4797 4740
4798 @DomName('SVGPathSegArcRel.largeArcFlag') 4741 @DomName('SVGPathSegArcRel.largeArcFlag')
4799 @DocsEditable() 4742 @DocsEditable()
4800 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge tter_(unwrap_jso(this)); 4743 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge tter_(this);
4801 4744
4802 @DomName('SVGPathSegArcRel.largeArcFlag') 4745 @DomName('SVGPathSegArcRel.largeArcFlag')
4803 @DocsEditable() 4746 @DocsEditable()
4804 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArc Flag_Setter_(unwrap_jso(this), value); 4747 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArc Flag_Setter_(this, value);
4805 4748
4806 @DomName('SVGPathSegArcRel.r1') 4749 @DomName('SVGPathSegArcRel.r1')
4807 @DocsEditable() 4750 @DocsEditable()
4808 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this )); 4751 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(this);
4809 4752
4810 @DomName('SVGPathSegArcRel.r1') 4753 @DomName('SVGPathSegArcRel.r1')
4811 @DocsEditable() 4754 @DocsEditable()
4812 set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unwrap_j so(this), value); 4755 set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(this, va lue);
4813 4756
4814 @DomName('SVGPathSegArcRel.r2') 4757 @DomName('SVGPathSegArcRel.r2')
4815 @DocsEditable() 4758 @DocsEditable()
4816 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this )); 4759 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(this);
4817 4760
4818 @DomName('SVGPathSegArcRel.r2') 4761 @DomName('SVGPathSegArcRel.r2')
4819 @DocsEditable() 4762 @DocsEditable()
4820 set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unwrap_j so(this), value); 4763 set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(this, va lue);
4821 4764
4822 @DomName('SVGPathSegArcRel.sweepFlag') 4765 @DomName('SVGPathSegArcRel.sweepFlag')
4823 @DocsEditable() 4766 @DocsEditable()
4824 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_( unwrap_jso(this)); 4767 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_( this);
4825 4768
4826 @DomName('SVGPathSegArcRel.sweepFlag') 4769 @DomName('SVGPathSegArcRel.sweepFlag')
4827 @DocsEditable() 4770 @DocsEditable()
4828 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_S etter_(unwrap_jso(this), value); 4771 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_S etter_(this, value);
4829 4772
4830 @DomName('SVGPathSegArcRel.x') 4773 @DomName('SVGPathSegArcRel.x')
4831 @DocsEditable() 4774 @DocsEditable()
4832 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this)) ; 4775 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(this);
4833 4776
4834 @DomName('SVGPathSegArcRel.x') 4777 @DomName('SVGPathSegArcRel.x')
4835 @DocsEditable() 4778 @DocsEditable()
4836 set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwrap_jso (this), value); 4779 set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(this, valu e);
4837 4780
4838 @DomName('SVGPathSegArcRel.y') 4781 @DomName('SVGPathSegArcRel.y')
4839 @DocsEditable() 4782 @DocsEditable()
4840 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this)) ; 4783 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(this);
4841 4784
4842 @DomName('SVGPathSegArcRel.y') 4785 @DomName('SVGPathSegArcRel.y')
4843 @DocsEditable() 4786 @DocsEditable()
4844 set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwrap_jso (this), value); 4787 set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(this, valu e);
4845 4788
4846 } 4789 }
4847 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4790 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4848 // for details. All rights reserved. Use of this source code is governed by a 4791 // for details. All rights reserved. Use of this source code is governed by a
4849 // BSD-style license that can be found in the LICENSE file. 4792 // BSD-style license that can be found in the LICENSE file.
4850 4793
4851 // WARNING: Do not edit - generated code. 4794 // WARNING: Do not edit - generated code.
4852 4795
4853 4796
4854 @DocsEditable() 4797 @DocsEditable()
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
4892 } 4835 }
4893 4836
4894 external factory PathSegCurvetoCubicAbs._internalWrap(); 4837 external factory PathSegCurvetoCubicAbs._internalWrap();
4895 4838
4896 @Deprecated("Internal Use Only") 4839 @Deprecated("Internal Use Only")
4897 PathSegCurvetoCubicAbs.internal_() : super.internal_(); 4840 PathSegCurvetoCubicAbs.internal_() : super.internal_();
4898 4841
4899 4842
4900 @DomName('SVGPathSegCurvetoCubicAbs.x') 4843 @DomName('SVGPathSegCurvetoCubicAbs.x')
4901 @DocsEditable() 4844 @DocsEditable()
4902 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j so(this)); 4845 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(this);
4903 4846
4904 @DomName('SVGPathSegCurvetoCubicAbs.x') 4847 @DomName('SVGPathSegCurvetoCubicAbs.x')
4905 @DocsEditable() 4848 @DocsEditable()
4906 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(u nwrap_jso(this), value); 4849 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(t his, value);
4907 4850
4908 @DomName('SVGPathSegCurvetoCubicAbs.x1') 4851 @DomName('SVGPathSegCurvetoCubicAbs.x1')
4909 @DocsEditable() 4852 @DocsEditable()
4910 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap _jso(this)); 4853 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(this);
4911 4854
4912 @DomName('SVGPathSegCurvetoCubicAbs.x1') 4855 @DomName('SVGPathSegCurvetoCubicAbs.x1')
4913 @DocsEditable() 4856 @DocsEditable()
4914 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_ (unwrap_jso(this), value); 4857 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_ (this, value);
4915 4858
4916 @DomName('SVGPathSegCurvetoCubicAbs.x2') 4859 @DomName('SVGPathSegCurvetoCubicAbs.x2')
4917 @DocsEditable() 4860 @DocsEditable()
4918 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap _jso(this)); 4861 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(this);
4919 4862
4920 @DomName('SVGPathSegCurvetoCubicAbs.x2') 4863 @DomName('SVGPathSegCurvetoCubicAbs.x2')
4921 @DocsEditable() 4864 @DocsEditable()
4922 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_ (unwrap_jso(this), value); 4865 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_ (this, value);
4923 4866
4924 @DomName('SVGPathSegCurvetoCubicAbs.y') 4867 @DomName('SVGPathSegCurvetoCubicAbs.y')
4925 @DocsEditable() 4868 @DocsEditable()
4926 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j so(this)); 4869 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(this);
4927 4870
4928 @DomName('SVGPathSegCurvetoCubicAbs.y') 4871 @DomName('SVGPathSegCurvetoCubicAbs.y')
4929 @DocsEditable() 4872 @DocsEditable()
4930 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(u nwrap_jso(this), value); 4873 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(t his, value);
4931 4874
4932 @DomName('SVGPathSegCurvetoCubicAbs.y1') 4875 @DomName('SVGPathSegCurvetoCubicAbs.y1')
4933 @DocsEditable() 4876 @DocsEditable()
4934 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap _jso(this)); 4877 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(this);
4935 4878
4936 @DomName('SVGPathSegCurvetoCubicAbs.y1') 4879 @DomName('SVGPathSegCurvetoCubicAbs.y1')
4937 @DocsEditable() 4880 @DocsEditable()
4938 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_ (unwrap_jso(this), value); 4881 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_ (this, value);
4939 4882
4940 @DomName('SVGPathSegCurvetoCubicAbs.y2') 4883 @DomName('SVGPathSegCurvetoCubicAbs.y2')
4941 @DocsEditable() 4884 @DocsEditable()
4942 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap _jso(this)); 4885 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(this);
4943 4886
4944 @DomName('SVGPathSegCurvetoCubicAbs.y2') 4887 @DomName('SVGPathSegCurvetoCubicAbs.y2')
4945 @DocsEditable() 4888 @DocsEditable()
4946 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_ (unwrap_jso(this), value); 4889 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_ (this, value);
4947 4890
4948 } 4891 }
4949 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4950 // for details. All rights reserved. Use of this source code is governed by a 4893 // for details. All rights reserved. Use of this source code is governed by a
4951 // BSD-style license that can be found in the LICENSE file. 4894 // BSD-style license that can be found in the LICENSE file.
4952 4895
4953 // WARNING: Do not edit - generated code. 4896 // WARNING: Do not edit - generated code.
4954 4897
4955 4898
4956 @DocsEditable() 4899 @DocsEditable()
(...skipping 10 matching lines...) Expand all
4967 } 4910 }
4968 4911
4969 external factory PathSegCurvetoCubicRel._internalWrap(); 4912 external factory PathSegCurvetoCubicRel._internalWrap();
4970 4913
4971 @Deprecated("Internal Use Only") 4914 @Deprecated("Internal Use Only")
4972 PathSegCurvetoCubicRel.internal_() : super.internal_(); 4915 PathSegCurvetoCubicRel.internal_() : super.internal_();
4973 4916
4974 4917
4975 @DomName('SVGPathSegCurvetoCubicRel.x') 4918 @DomName('SVGPathSegCurvetoCubicRel.x')
4976 @DocsEditable() 4919 @DocsEditable()
4977 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j so(this)); 4920 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(this);
4978 4921
4979 @DomName('SVGPathSegCurvetoCubicRel.x') 4922 @DomName('SVGPathSegCurvetoCubicRel.x')
4980 @DocsEditable() 4923 @DocsEditable()
4981 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(u nwrap_jso(this), value); 4924 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(t his, value);
4982 4925
4983 @DomName('SVGPathSegCurvetoCubicRel.x1') 4926 @DomName('SVGPathSegCurvetoCubicRel.x1')
4984 @DocsEditable() 4927 @DocsEditable()
4985 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap _jso(this)); 4928 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(this);
4986 4929
4987 @DomName('SVGPathSegCurvetoCubicRel.x1') 4930 @DomName('SVGPathSegCurvetoCubicRel.x1')
4988 @DocsEditable() 4931 @DocsEditable()
4989 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_ (unwrap_jso(this), value); 4932 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_ (this, value);
4990 4933
4991 @DomName('SVGPathSegCurvetoCubicRel.x2') 4934 @DomName('SVGPathSegCurvetoCubicRel.x2')
4992 @DocsEditable() 4935 @DocsEditable()
4993 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap _jso(this)); 4936 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(this);
4994 4937
4995 @DomName('SVGPathSegCurvetoCubicRel.x2') 4938 @DomName('SVGPathSegCurvetoCubicRel.x2')
4996 @DocsEditable() 4939 @DocsEditable()
4997 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_ (unwrap_jso(this), value); 4940 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_ (this, value);
4998 4941
4999 @DomName('SVGPathSegCurvetoCubicRel.y') 4942 @DomName('SVGPathSegCurvetoCubicRel.y')
5000 @DocsEditable() 4943 @DocsEditable()
5001 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j so(this)); 4944 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(this);
5002 4945
5003 @DomName('SVGPathSegCurvetoCubicRel.y') 4946 @DomName('SVGPathSegCurvetoCubicRel.y')
5004 @DocsEditable() 4947 @DocsEditable()
5005 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(u nwrap_jso(this), value); 4948 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(t his, value);
5006 4949
5007 @DomName('SVGPathSegCurvetoCubicRel.y1') 4950 @DomName('SVGPathSegCurvetoCubicRel.y1')
5008 @DocsEditable() 4951 @DocsEditable()
5009 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap _jso(this)); 4952 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(this);
5010 4953
5011 @DomName('SVGPathSegCurvetoCubicRel.y1') 4954 @DomName('SVGPathSegCurvetoCubicRel.y1')
5012 @DocsEditable() 4955 @DocsEditable()
5013 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_ (unwrap_jso(this), value); 4956 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_ (this, value);
5014 4957
5015 @DomName('SVGPathSegCurvetoCubicRel.y2') 4958 @DomName('SVGPathSegCurvetoCubicRel.y2')
5016 @DocsEditable() 4959 @DocsEditable()
5017 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap _jso(this)); 4960 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(this);
5018 4961
5019 @DomName('SVGPathSegCurvetoCubicRel.y2') 4962 @DomName('SVGPathSegCurvetoCubicRel.y2')
5020 @DocsEditable() 4963 @DocsEditable()
5021 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_ (unwrap_jso(this), value); 4964 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_ (this, value);
5022 4965
5023 } 4966 }
5024 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4967 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5025 // for details. All rights reserved. Use of this source code is governed by a 4968 // for details. All rights reserved. Use of this source code is governed by a
5026 // BSD-style license that can be found in the LICENSE file. 4969 // BSD-style license that can be found in the LICENSE file.
5027 4970
5028 // WARNING: Do not edit - generated code. 4971 // WARNING: Do not edit - generated code.
5029 4972
5030 4973
5031 @DocsEditable() 4974 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5042 } 4985 }
5043 4986
5044 external factory PathSegCurvetoCubicSmoothAbs._internalWrap(); 4987 external factory PathSegCurvetoCubicSmoothAbs._internalWrap();
5045 4988
5046 @Deprecated("Internal Use Only") 4989 @Deprecated("Internal Use Only")
5047 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); 4990 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_();
5048 4991
5049 4992
5050 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4993 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
5051 @DocsEditable() 4994 @DocsEditable()
5052 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un wrap_jso(this)); 4995 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(th is);
5053 4996
5054 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4997 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
5055 @DocsEditable() 4998 @DocsEditable()
5056 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set ter_(unwrap_jso(this), value); 4999 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set ter_(this, value);
5057 5000
5058 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 5001 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
5059 @DocsEditable() 5002 @DocsEditable()
5060 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_( unwrap_jso(this)); 5003 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_( this);
5061 5004
5062 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 5005 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
5063 @DocsEditable() 5006 @DocsEditable()
5064 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_S etter_(unwrap_jso(this), value); 5007 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_S etter_(this, value);
5065 5008
5066 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 5009 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
5067 @DocsEditable() 5010 @DocsEditable()
5068 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un wrap_jso(this)); 5011 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(th is);
5069 5012
5070 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 5013 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
5071 @DocsEditable() 5014 @DocsEditable()
5072 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Set ter_(unwrap_jso(this), value); 5015 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Set ter_(this, value);
5073 5016
5074 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 5017 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
5075 @DocsEditable() 5018 @DocsEditable()
5076 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_( unwrap_jso(this)); 5019 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_( this);
5077 5020
5078 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 5021 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
5079 @DocsEditable() 5022 @DocsEditable()
5080 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_S etter_(unwrap_jso(this), value); 5023 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_S etter_(this, value);
5081 5024
5082 } 5025 }
5083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5026 // 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 5027 // 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. 5028 // BSD-style license that can be found in the LICENSE file.
5086 5029
5087 // WARNING: Do not edit - generated code. 5030 // WARNING: Do not edit - generated code.
5088 5031
5089 5032
5090 @DocsEditable() 5033 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5101 } 5044 }
5102 5045
5103 external factory PathSegCurvetoCubicSmoothRel._internalWrap(); 5046 external factory PathSegCurvetoCubicSmoothRel._internalWrap();
5104 5047
5105 @Deprecated("Internal Use Only") 5048 @Deprecated("Internal Use Only")
5106 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); 5049 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_();
5107 5050
5108 5051
5109 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 5052 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
5110 @DocsEditable() 5053 @DocsEditable()
5111 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un wrap_jso(this)); 5054 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(th is);
5112 5055
5113 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 5056 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
5114 @DocsEditable() 5057 @DocsEditable()
5115 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set ter_(unwrap_jso(this), value); 5058 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set ter_(this, value);
5116 5059
5117 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 5060 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
5118 @DocsEditable() 5061 @DocsEditable()
5119 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_( unwrap_jso(this)); 5062 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_( this);
5120 5063
5121 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 5064 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
5122 @DocsEditable() 5065 @DocsEditable()
5123 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_S etter_(unwrap_jso(this), value); 5066 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_S etter_(this, value);
5124 5067
5125 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 5068 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
5126 @DocsEditable() 5069 @DocsEditable()
5127 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un wrap_jso(this)); 5070 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(th is);
5128 5071
5129 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 5072 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
5130 @DocsEditable() 5073 @DocsEditable()
5131 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Set ter_(unwrap_jso(this), value); 5074 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Set ter_(this, value);
5132 5075
5133 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 5076 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
5134 @DocsEditable() 5077 @DocsEditable()
5135 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_( unwrap_jso(this)); 5078 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_( this);
5136 5079
5137 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 5080 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
5138 @DocsEditable() 5081 @DocsEditable()
5139 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_S etter_(unwrap_jso(this), value); 5082 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_S etter_(this, value);
5140 5083
5141 } 5084 }
5142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5085 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5143 // for details. All rights reserved. Use of this source code is governed by a 5086 // for details. All rights reserved. Use of this source code is governed by a
5144 // BSD-style license that can be found in the LICENSE file. 5087 // BSD-style license that can be found in the LICENSE file.
5145 5088
5146 // WARNING: Do not edit - generated code. 5089 // WARNING: Do not edit - generated code.
5147 5090
5148 5091
5149 @DocsEditable() 5092 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5160 } 5103 }
5161 5104
5162 external factory PathSegCurvetoQuadraticAbs._internalWrap(); 5105 external factory PathSegCurvetoQuadraticAbs._internalWrap();
5163 5106
5164 @Deprecated("Internal Use Only") 5107 @Deprecated("Internal Use Only")
5165 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); 5108 PathSegCurvetoQuadraticAbs.internal_() : super.internal_();
5166 5109
5167 5110
5168 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 5111 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
5169 @DocsEditable() 5112 @DocsEditable()
5170 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr ap_jso(this)); 5113 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(this );
5171 5114
5172 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 5115 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
5173 @DocsEditable() 5116 @DocsEditable()
5174 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette r_(unwrap_jso(this), value); 5117 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette r_(this, value);
5175 5118
5176 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 5119 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
5177 @DocsEditable() 5120 @DocsEditable()
5178 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un wrap_jso(this)); 5121 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(th is);
5179 5122
5180 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 5123 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
5181 @DocsEditable() 5124 @DocsEditable()
5182 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Set ter_(unwrap_jso(this), value); 5125 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Set ter_(this, value);
5183 5126
5184 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 5127 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
5185 @DocsEditable() 5128 @DocsEditable()
5186 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr ap_jso(this)); 5129 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(this );
5187 5130
5188 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 5131 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
5189 @DocsEditable() 5132 @DocsEditable()
5190 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Sette r_(unwrap_jso(this), value); 5133 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Sette r_(this, value);
5191 5134
5192 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 5135 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
5193 @DocsEditable() 5136 @DocsEditable()
5194 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un wrap_jso(this)); 5137 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(th is);
5195 5138
5196 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 5139 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
5197 @DocsEditable() 5140 @DocsEditable()
5198 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Set ter_(unwrap_jso(this), value); 5141 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Set ter_(this, value);
5199 5142
5200 } 5143 }
5201 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5144 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5202 // for details. All rights reserved. Use of this source code is governed by a 5145 // for details. All rights reserved. Use of this source code is governed by a
5203 // BSD-style license that can be found in the LICENSE file. 5146 // BSD-style license that can be found in the LICENSE file.
5204 5147
5205 // WARNING: Do not edit - generated code. 5148 // WARNING: Do not edit - generated code.
5206 5149
5207 5150
5208 @DocsEditable() 5151 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5219 } 5162 }
5220 5163
5221 external factory PathSegCurvetoQuadraticRel._internalWrap(); 5164 external factory PathSegCurvetoQuadraticRel._internalWrap();
5222 5165
5223 @Deprecated("Internal Use Only") 5166 @Deprecated("Internal Use Only")
5224 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); 5167 PathSegCurvetoQuadraticRel.internal_() : super.internal_();
5225 5168
5226 5169
5227 @DomName('SVGPathSegCurvetoQuadraticRel.x') 5170 @DomName('SVGPathSegCurvetoQuadraticRel.x')
5228 @DocsEditable() 5171 @DocsEditable()
5229 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr ap_jso(this)); 5172 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(this );
5230 5173
5231 @DomName('SVGPathSegCurvetoQuadraticRel.x') 5174 @DomName('SVGPathSegCurvetoQuadraticRel.x')
5232 @DocsEditable() 5175 @DocsEditable()
5233 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette r_(unwrap_jso(this), value); 5176 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette r_(this, value);
5234 5177
5235 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 5178 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
5236 @DocsEditable() 5179 @DocsEditable()
5237 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un wrap_jso(this)); 5180 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(th is);
5238 5181
5239 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 5182 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
5240 @DocsEditable() 5183 @DocsEditable()
5241 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Set ter_(unwrap_jso(this), value); 5184 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Set ter_(this, value);
5242 5185
5243 @DomName('SVGPathSegCurvetoQuadraticRel.y') 5186 @DomName('SVGPathSegCurvetoQuadraticRel.y')
5244 @DocsEditable() 5187 @DocsEditable()
5245 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr ap_jso(this)); 5188 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(this );
5246 5189
5247 @DomName('SVGPathSegCurvetoQuadraticRel.y') 5190 @DomName('SVGPathSegCurvetoQuadraticRel.y')
5248 @DocsEditable() 5191 @DocsEditable()
5249 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Sette r_(unwrap_jso(this), value); 5192 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Sette r_(this, value);
5250 5193
5251 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 5194 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
5252 @DocsEditable() 5195 @DocsEditable()
5253 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un wrap_jso(this)); 5196 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(th is);
5254 5197
5255 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 5198 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
5256 @DocsEditable() 5199 @DocsEditable()
5257 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Set ter_(unwrap_jso(this), value); 5200 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Set ter_(this, value);
5258 5201
5259 } 5202 }
5260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5203 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5261 // for details. All rights reserved. Use of this source code is governed by a 5204 // for details. All rights reserved. Use of this source code is governed by a
5262 // BSD-style license that can be found in the LICENSE file. 5205 // BSD-style license that can be found in the LICENSE file.
5263 5206
5264 // WARNING: Do not edit - generated code. 5207 // WARNING: Do not edit - generated code.
5265 5208
5266 5209
5267 @DocsEditable() 5210 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5278 } 5221 }
5279 5222
5280 external factory PathSegCurvetoQuadraticSmoothAbs._internalWrap(); 5223 external factory PathSegCurvetoQuadraticSmoothAbs._internalWrap();
5281 5224
5282 @Deprecated("Internal Use Only") 5225 @Deprecated("Internal Use Only")
5283 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); 5226 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_();
5284 5227
5285 5228
5286 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 5229 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
5287 @DocsEditable() 5230 @DocsEditable()
5288 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter _(unwrap_jso(this)); 5231 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter _(this);
5289 5232
5290 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 5233 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
5291 @DocsEditable() 5234 @DocsEditable()
5292 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x _Setter_(unwrap_jso(this), value); 5235 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x _Setter_(this, value);
5293 5236
5294 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 5237 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
5295 @DocsEditable() 5238 @DocsEditable()
5296 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter _(unwrap_jso(this)); 5239 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter _(this);
5297 5240
5298 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 5241 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
5299 @DocsEditable() 5242 @DocsEditable()
5300 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y _Setter_(unwrap_jso(this), value); 5243 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y _Setter_(this, value);
5301 5244
5302 } 5245 }
5303 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5246 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5304 // for details. All rights reserved. Use of this source code is governed by a 5247 // for details. All rights reserved. Use of this source code is governed by a
5305 // BSD-style license that can be found in the LICENSE file. 5248 // BSD-style license that can be found in the LICENSE file.
5306 5249
5307 // WARNING: Do not edit - generated code. 5250 // WARNING: Do not edit - generated code.
5308 5251
5309 5252
5310 @DocsEditable() 5253 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5321 } 5264 }
5322 5265
5323 external factory PathSegCurvetoQuadraticSmoothRel._internalWrap(); 5266 external factory PathSegCurvetoQuadraticSmoothRel._internalWrap();
5324 5267
5325 @Deprecated("Internal Use Only") 5268 @Deprecated("Internal Use Only")
5326 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); 5269 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_();
5327 5270
5328 5271
5329 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 5272 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
5330 @DocsEditable() 5273 @DocsEditable()
5331 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter _(unwrap_jso(this)); 5274 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter _(this);
5332 5275
5333 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 5276 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
5334 @DocsEditable() 5277 @DocsEditable()
5335 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x _Setter_(unwrap_jso(this), value); 5278 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x _Setter_(this, value);
5336 5279
5337 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 5280 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
5338 @DocsEditable() 5281 @DocsEditable()
5339 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter _(unwrap_jso(this)); 5282 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter _(this);
5340 5283
5341 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 5284 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
5342 @DocsEditable() 5285 @DocsEditable()
5343 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y _Setter_(unwrap_jso(this), value); 5286 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y _Setter_(this, value);
5344 5287
5345 } 5288 }
5346 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5347 // for details. All rights reserved. Use of this source code is governed by a 5290 // for details. All rights reserved. Use of this source code is governed by a
5348 // BSD-style license that can be found in the LICENSE file. 5291 // BSD-style license that can be found in the LICENSE file.
5349 5292
5350 // WARNING: Do not edit - generated code. 5293 // WARNING: Do not edit - generated code.
5351 5294
5352 5295
5353 @DocsEditable() 5296 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5364 } 5307 }
5365 5308
5366 external factory PathSegLinetoAbs._internalWrap(); 5309 external factory PathSegLinetoAbs._internalWrap();
5367 5310
5368 @Deprecated("Internal Use Only") 5311 @Deprecated("Internal Use Only")
5369 PathSegLinetoAbs.internal_() : super.internal_(); 5312 PathSegLinetoAbs.internal_() : super.internal_();
5370 5313
5371 5314
5372 @DomName('SVGPathSegLinetoAbs.x') 5315 @DomName('SVGPathSegLinetoAbs.x')
5373 @DocsEditable() 5316 @DocsEditable()
5374 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi s)); 5317 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(this);
5375 5318
5376 @DomName('SVGPathSegLinetoAbs.x') 5319 @DomName('SVGPathSegLinetoAbs.x')
5377 @DocsEditable() 5320 @DocsEditable()
5378 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_ jso(this), value); 5321 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(this, v alue);
5379 5322
5380 @DomName('SVGPathSegLinetoAbs.y') 5323 @DomName('SVGPathSegLinetoAbs.y')
5381 @DocsEditable() 5324 @DocsEditable()
5382 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi s)); 5325 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(this);
5383 5326
5384 @DomName('SVGPathSegLinetoAbs.y') 5327 @DomName('SVGPathSegLinetoAbs.y')
5385 @DocsEditable() 5328 @DocsEditable()
5386 set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(unwrap_ jso(this), value); 5329 set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(this, v alue);
5387 5330
5388 } 5331 }
5389 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5390 // for details. All rights reserved. Use of this source code is governed by a 5333 // for details. All rights reserved. Use of this source code is governed by a
5391 // BSD-style license that can be found in the LICENSE file. 5334 // BSD-style license that can be found in the LICENSE file.
5392 5335
5393 // WARNING: Do not edit - generated code. 5336 // WARNING: Do not edit - generated code.
5394 5337
5395 5338
5396 @DocsEditable() 5339 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5407 } 5350 }
5408 5351
5409 external factory PathSegLinetoHorizontalAbs._internalWrap(); 5352 external factory PathSegLinetoHorizontalAbs._internalWrap();
5410 5353
5411 @Deprecated("Internal Use Only") 5354 @Deprecated("Internal Use Only")
5412 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); 5355 PathSegLinetoHorizontalAbs.internal_() : super.internal_();
5413 5356
5414 5357
5415 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5358 @DomName('SVGPathSegLinetoHorizontalAbs.x')
5416 @DocsEditable() 5359 @DocsEditable()
5417 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr ap_jso(this)); 5360 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(this );
5418 5361
5419 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5362 @DomName('SVGPathSegLinetoHorizontalAbs.x')
5420 @DocsEditable() 5363 @DocsEditable()
5421 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette r_(unwrap_jso(this), value); 5364 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette r_(this, value);
5422 5365
5423 } 5366 }
5424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5425 // for details. All rights reserved. Use of this source code is governed by a 5368 // for details. All rights reserved. Use of this source code is governed by a
5426 // BSD-style license that can be found in the LICENSE file. 5369 // BSD-style license that can be found in the LICENSE file.
5427 5370
5428 // WARNING: Do not edit - generated code. 5371 // WARNING: Do not edit - generated code.
5429 5372
5430 5373
5431 @DocsEditable() 5374 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5442 } 5385 }
5443 5386
5444 external factory PathSegLinetoHorizontalRel._internalWrap(); 5387 external factory PathSegLinetoHorizontalRel._internalWrap();
5445 5388
5446 @Deprecated("Internal Use Only") 5389 @Deprecated("Internal Use Only")
5447 PathSegLinetoHorizontalRel.internal_() : super.internal_(); 5390 PathSegLinetoHorizontalRel.internal_() : super.internal_();
5448 5391
5449 5392
5450 @DomName('SVGPathSegLinetoHorizontalRel.x') 5393 @DomName('SVGPathSegLinetoHorizontalRel.x')
5451 @DocsEditable() 5394 @DocsEditable()
5452 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr ap_jso(this)); 5395 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(this );
5453 5396
5454 @DomName('SVGPathSegLinetoHorizontalRel.x') 5397 @DomName('SVGPathSegLinetoHorizontalRel.x')
5455 @DocsEditable() 5398 @DocsEditable()
5456 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette r_(unwrap_jso(this), value); 5399 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette r_(this, value);
5457 5400
5458 } 5401 }
5459 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5402 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5460 // for details. All rights reserved. Use of this source code is governed by a 5403 // for details. All rights reserved. Use of this source code is governed by a
5461 // BSD-style license that can be found in the LICENSE file. 5404 // BSD-style license that can be found in the LICENSE file.
5462 5405
5463 // WARNING: Do not edit - generated code. 5406 // WARNING: Do not edit - generated code.
5464 5407
5465 5408
5466 @DocsEditable() 5409 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5477 } 5420 }
5478 5421
5479 external factory PathSegLinetoRel._internalWrap(); 5422 external factory PathSegLinetoRel._internalWrap();
5480 5423
5481 @Deprecated("Internal Use Only") 5424 @Deprecated("Internal Use Only")
5482 PathSegLinetoRel.internal_() : super.internal_(); 5425 PathSegLinetoRel.internal_() : super.internal_();
5483 5426
5484 5427
5485 @DomName('SVGPathSegLinetoRel.x') 5428 @DomName('SVGPathSegLinetoRel.x')
5486 @DocsEditable() 5429 @DocsEditable()
5487 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi s)); 5430 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(this);
5488 5431
5489 @DomName('SVGPathSegLinetoRel.x') 5432 @DomName('SVGPathSegLinetoRel.x')
5490 @DocsEditable() 5433 @DocsEditable()
5491 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_ jso(this), value); 5434 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(this, v alue);
5492 5435
5493 @DomName('SVGPathSegLinetoRel.y') 5436 @DomName('SVGPathSegLinetoRel.y')
5494 @DocsEditable() 5437 @DocsEditable()
5495 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi s)); 5438 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(this);
5496 5439
5497 @DomName('SVGPathSegLinetoRel.y') 5440 @DomName('SVGPathSegLinetoRel.y')
5498 @DocsEditable() 5441 @DocsEditable()
5499 set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(unwrap_ jso(this), value); 5442 set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(this, v alue);
5500 5443
5501 } 5444 }
5502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5503 // for details. All rights reserved. Use of this source code is governed by a 5446 // for details. All rights reserved. Use of this source code is governed by a
5504 // BSD-style license that can be found in the LICENSE file. 5447 // BSD-style license that can be found in the LICENSE file.
5505 5448
5506 // WARNING: Do not edit - generated code. 5449 // WARNING: Do not edit - generated code.
5507 5450
5508 5451
5509 @DocsEditable() 5452 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5520 } 5463 }
5521 5464
5522 external factory PathSegLinetoVerticalAbs._internalWrap(); 5465 external factory PathSegLinetoVerticalAbs._internalWrap();
5523 5466
5524 @Deprecated("Internal Use Only") 5467 @Deprecated("Internal Use Only")
5525 PathSegLinetoVerticalAbs.internal_() : super.internal_(); 5468 PathSegLinetoVerticalAbs.internal_() : super.internal_();
5526 5469
5527 5470
5528 @DomName('SVGPathSegLinetoVerticalAbs.y') 5471 @DomName('SVGPathSegLinetoVerticalAbs.y')
5529 @DocsEditable() 5472 @DocsEditable()
5530 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap _jso(this)); 5473 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(this);
5531 5474
5532 @DomName('SVGPathSegLinetoVerticalAbs.y') 5475 @DomName('SVGPathSegLinetoVerticalAbs.y')
5533 @DocsEditable() 5476 @DocsEditable()
5534 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_ (unwrap_jso(this), value); 5477 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_ (this, value);
5535 5478
5536 } 5479 }
5537 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5538 // for details. All rights reserved. Use of this source code is governed by a 5481 // for details. All rights reserved. Use of this source code is governed by a
5539 // BSD-style license that can be found in the LICENSE file. 5482 // BSD-style license that can be found in the LICENSE file.
5540 5483
5541 // WARNING: Do not edit - generated code. 5484 // WARNING: Do not edit - generated code.
5542 5485
5543 5486
5544 @DocsEditable() 5487 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5555 } 5498 }
5556 5499
5557 external factory PathSegLinetoVerticalRel._internalWrap(); 5500 external factory PathSegLinetoVerticalRel._internalWrap();
5558 5501
5559 @Deprecated("Internal Use Only") 5502 @Deprecated("Internal Use Only")
5560 PathSegLinetoVerticalRel.internal_() : super.internal_(); 5503 PathSegLinetoVerticalRel.internal_() : super.internal_();
5561 5504
5562 5505
5563 @DomName('SVGPathSegLinetoVerticalRel.y') 5506 @DomName('SVGPathSegLinetoVerticalRel.y')
5564 @DocsEditable() 5507 @DocsEditable()
5565 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap _jso(this)); 5508 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(this);
5566 5509
5567 @DomName('SVGPathSegLinetoVerticalRel.y') 5510 @DomName('SVGPathSegLinetoVerticalRel.y')
5568 @DocsEditable() 5511 @DocsEditable()
5569 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_ (unwrap_jso(this), value); 5512 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_ (this, value);
5570 5513
5571 } 5514 }
5572 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5573 // for details. All rights reserved. Use of this source code is governed by a 5516 // for details. All rights reserved. Use of this source code is governed by a
5574 // BSD-style license that can be found in the LICENSE file. 5517 // BSD-style license that can be found in the LICENSE file.
5575 5518
5576 // WARNING: Do not edit - generated code. 5519 // WARNING: Do not edit - generated code.
5577 5520
5578 5521
5579 @DocsEditable() 5522 @DocsEditable()
5580 @DomName('SVGPathSegList') 5523 @DomName('SVGPathSegList')
5581 @Unstable() 5524 @Unstable()
5582 class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi stMixin<PathSeg> implements List<PathSeg> { 5525 class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi stMixin<PathSeg> implements List<PathSeg> {
5583 // To suppress missing implicit constructor warnings. 5526 // To suppress missing implicit constructor warnings.
5584 factory PathSegList._() { throw new UnsupportedError("Not supported"); } 5527 factory PathSegList._() { throw new UnsupportedError("Not supported"); }
5585 5528
5586 @Deprecated("Internal Use Only") 5529 @Deprecated("Internal Use Only")
5587 static PathSegList internalCreatePathSegList() { 5530 static PathSegList internalCreatePathSegList() {
5588 return new PathSegList._internalWrap(); 5531 return new PathSegList._internalWrap();
5589 } 5532 }
5590 5533
5591 factory PathSegList._internalWrap() { 5534 factory PathSegList._internalWrap() {
5592 return new PathSegList.internal_(); 5535 return new PathSegList.internal_();
5593 } 5536 }
5594 5537
5595 @Deprecated("Internal Use Only") 5538 @Deprecated("Internal Use Only")
5596 PathSegList.internal_() { } 5539 PathSegList.internal_() { }
5597 5540
5598 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
5599 int get hashCode => unwrap_jso(this).hashCode;
5600
5601 @DomName('SVGPathSegList.length') 5541 @DomName('SVGPathSegList.length')
5602 @DocsEditable() 5542 @DocsEditable()
5603 @Experimental() // untriaged 5543 @Experimental() // untriaged
5604 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js o(this)); 5544 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(this);
5605 5545
5606 @DomName('SVGPathSegList.numberOfItems') 5546 @DomName('SVGPathSegList.numberOfItems')
5607 @DocsEditable() 5547 @DocsEditable()
5608 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get ter_(unwrap_jso(this)); 5548 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get ter_(this);
5609 5549
5610 PathSeg operator[](int index) { 5550 PathSeg operator[](int index) {
5611 if (index < 0 || index >= length) 5551 if (index < 0 || index >= length)
5612 throw new RangeError.index(index, this); 5552 throw new RangeError.index(index, this);
5613 return getItem(index); 5553 return getItem(index);
5614 } 5554 }
5615 5555
5616 void operator[]=(int index, PathSeg value) { 5556 void operator[]=(int index, PathSeg value) {
5617 throw new UnsupportedError("Cannot assign element of immutable List."); 5557 throw new UnsupportedError("Cannot assign element of immutable List.");
5618 } 5558 }
(...skipping 28 matching lines...) Expand all
5647 if (len == 0) throw new StateError("No elements"); 5587 if (len == 0) throw new StateError("No elements");
5648 throw new StateError("More than one element"); 5588 throw new StateError("More than one element");
5649 } 5589 }
5650 5590
5651 PathSeg elementAt(int index) => this[index]; 5591 PathSeg elementAt(int index) => this[index];
5652 // -- end List<PathSeg> mixins. 5592 // -- end List<PathSeg> mixins.
5653 5593
5654 @DomName('SVGPathSegList.__setter__') 5594 @DomName('SVGPathSegList.__setter__')
5655 @DocsEditable() 5595 @DocsEditable()
5656 @Experimental() // untriaged 5596 @Experimental() // untriaged
5657 void __setter__(int index, PathSeg newItem) => _blink.BlinkSVGPathSegList.inst ance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem)); 5597 void __setter__(int index, PathSeg newItem) => _blink.BlinkSVGPathSegList.inst ance.$__setter___Callback_2_(this, index, newItem);
5658 5598
5659 @DomName('SVGPathSegList.appendItem') 5599 @DomName('SVGPathSegList.appendItem')
5660 @DocsEditable() 5600 @DocsEditable()
5661 PathSeg appendItem(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins tance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 5601 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app endItem_Callback_1_(this, newItem);
5662 5602
5663 @DomName('SVGPathSegList.clear') 5603 @DomName('SVGPathSegList.clear')
5664 @DocsEditable() 5604 @DocsEditable()
5665 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j so(this)); 5605 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(this);
5666 5606
5667 @DomName('SVGPathSegList.getItem') 5607 @DomName('SVGPathSegList.getItem')
5668 @DocsEditable() 5608 @DocsEditable()
5669 PathSeg getItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.get Item_Callback_1_(unwrap_jso(this), index)); 5609 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call back_1_(this, index);
5670 5610
5671 @DomName('SVGPathSegList.initialize') 5611 @DomName('SVGPathSegList.initialize')
5672 @DocsEditable() 5612 @DocsEditable()
5673 PathSeg initialize(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins tance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 5613 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini tialize_Callback_1_(this, newItem);
5674 5614
5675 @DomName('SVGPathSegList.insertItemBefore') 5615 @DomName('SVGPathSegList.insertItemBefore')
5676 @DocsEditable() 5616 @DocsEditable()
5677 PathSeg insertItemBefore(PathSeg newItem, int index) => wrap_jso(_blink.BlinkS VGPathSegList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso (newItem), index)); 5617 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg List.instance.insertItemBefore_Callback_2_(this, newItem, index);
5678 5618
5679 @DomName('SVGPathSegList.removeItem') 5619 @DomName('SVGPathSegList.removeItem')
5680 @DocsEditable() 5620 @DocsEditable()
5681 PathSeg removeItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance. removeItem_Callback_1_(unwrap_jso(this), index)); 5621 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte m_Callback_1_(this, index);
5682 5622
5683 @DomName('SVGPathSegList.replaceItem') 5623 @DomName('SVGPathSegList.replaceItem')
5684 @DocsEditable() 5624 @DocsEditable()
5685 PathSeg replaceItem(PathSeg newItem, int index) => wrap_jso(_blink.BlinkSVGPat hSegList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index)); 5625 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList. instance.replaceItem_Callback_2_(this, newItem, index);
5686 5626
5687 } 5627 }
5688 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5628 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5689 // for details. All rights reserved. Use of this source code is governed by a 5629 // for details. All rights reserved. Use of this source code is governed by a
5690 // BSD-style license that can be found in the LICENSE file. 5630 // BSD-style license that can be found in the LICENSE file.
5691 5631
5692 // WARNING: Do not edit - generated code. 5632 // WARNING: Do not edit - generated code.
5693 5633
5694 5634
5695 @DocsEditable() 5635 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5706 } 5646 }
5707 5647
5708 external factory PathSegMovetoAbs._internalWrap(); 5648 external factory PathSegMovetoAbs._internalWrap();
5709 5649
5710 @Deprecated("Internal Use Only") 5650 @Deprecated("Internal Use Only")
5711 PathSegMovetoAbs.internal_() : super.internal_(); 5651 PathSegMovetoAbs.internal_() : super.internal_();
5712 5652
5713 5653
5714 @DomName('SVGPathSegMovetoAbs.x') 5654 @DomName('SVGPathSegMovetoAbs.x')
5715 @DocsEditable() 5655 @DocsEditable()
5716 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi s)); 5656 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(this);
5717 5657
5718 @DomName('SVGPathSegMovetoAbs.x') 5658 @DomName('SVGPathSegMovetoAbs.x')
5719 @DocsEditable() 5659 @DocsEditable()
5720 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_ jso(this), value); 5660 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(this, v alue);
5721 5661
5722 @DomName('SVGPathSegMovetoAbs.y') 5662 @DomName('SVGPathSegMovetoAbs.y')
5723 @DocsEditable() 5663 @DocsEditable()
5724 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi s)); 5664 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(this);
5725 5665
5726 @DomName('SVGPathSegMovetoAbs.y') 5666 @DomName('SVGPathSegMovetoAbs.y')
5727 @DocsEditable() 5667 @DocsEditable()
5728 set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(unwrap_ jso(this), value); 5668 set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(this, v alue);
5729 5669
5730 } 5670 }
5731 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5732 // for details. All rights reserved. Use of this source code is governed by a 5672 // for details. All rights reserved. Use of this source code is governed by a
5733 // BSD-style license that can be found in the LICENSE file. 5673 // BSD-style license that can be found in the LICENSE file.
5734 5674
5735 // WARNING: Do not edit - generated code. 5675 // WARNING: Do not edit - generated code.
5736 5676
5737 5677
5738 @DocsEditable() 5678 @DocsEditable()
(...skipping 10 matching lines...) Expand all
5749 } 5689 }
5750 5690
5751 external factory PathSegMovetoRel._internalWrap(); 5691 external factory PathSegMovetoRel._internalWrap();
5752 5692
5753 @Deprecated("Internal Use Only") 5693 @Deprecated("Internal Use Only")
5754 PathSegMovetoRel.internal_() : super.internal_(); 5694 PathSegMovetoRel.internal_() : super.internal_();
5755 5695
5756 5696
5757 @DomName('SVGPathSegMovetoRel.x') 5697 @DomName('SVGPathSegMovetoRel.x')
5758 @DocsEditable() 5698 @DocsEditable()
5759 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi s)); 5699 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(this);
5760 5700
5761 @DomName('SVGPathSegMovetoRel.x') 5701 @DomName('SVGPathSegMovetoRel.x')
5762 @DocsEditable() 5702 @DocsEditable()
5763 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_ jso(this), value); 5703 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(this, v alue);
5764 5704
5765 @DomName('SVGPathSegMovetoRel.y') 5705 @DomName('SVGPathSegMovetoRel.y')
5766 @DocsEditable() 5706 @DocsEditable()
5767 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi s)); 5707 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(this);
5768 5708
5769 @DomName('SVGPathSegMovetoRel.y') 5709 @DomName('SVGPathSegMovetoRel.y')
5770 @DocsEditable() 5710 @DocsEditable()
5771 set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(unwrap_ jso(this), value); 5711 set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(this, v alue);
5772 5712
5773 } 5713 }
5774 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5714 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5775 // for details. All rights reserved. Use of this source code is governed by a 5715 // for details. All rights reserved. Use of this source code is governed by a
5776 // BSD-style license that can be found in the LICENSE file. 5716 // BSD-style license that can be found in the LICENSE file.
5777 5717
5778 // WARNING: Do not edit - generated code. 5718 // WARNING: Do not edit - generated code.
5779 5719
5780 5720
5781 @DocsEditable() 5721 @DocsEditable()
(...skipping 20 matching lines...) Expand all
5802 5742
5803 /** 5743 /**
5804 * Constructor instantiated by the DOM when a custom element has been created. 5744 * Constructor instantiated by the DOM when a custom element has been created.
5805 * 5745 *
5806 * This can only be called by subclasses from their created constructor. 5746 * This can only be called by subclasses from their created constructor.
5807 */ 5747 */
5808 PatternElement.created() : super.created(); 5748 PatternElement.created() : super.created();
5809 5749
5810 @DomName('SVGPatternElement.height') 5750 @DomName('SVGPatternElement.height')
5811 @DocsEditable() 5751 @DocsEditable()
5812 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h eight_Getter_(unwrap_jso(this))); 5752 AnimatedLength get height => _blink.BlinkSVGPatternElement.instance.height_Get ter_(this);
5813 5753
5814 @DomName('SVGPatternElement.patternContentUnits') 5754 @DomName('SVGPatternElement.patternContentUnits')
5815 @DocsEditable() 5755 @DocsEditable()
5816 AnimatedEnumeration get patternContentUnits => wrap_jso(_blink.BlinkSVGPattern Element.instance.patternContentUnits_Getter_(unwrap_jso(this))); 5756 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.i nstance.patternContentUnits_Getter_(this);
5817 5757
5818 @DomName('SVGPatternElement.patternTransform') 5758 @DomName('SVGPatternElement.patternTransform')
5819 @DocsEditable() 5759 @DocsEditable()
5820 AnimatedTransformList get patternTransform => wrap_jso(_blink.BlinkSVGPatternE lement.instance.patternTransform_Getter_(unwrap_jso(this))); 5760 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.in stance.patternTransform_Getter_(this);
5821 5761
5822 @DomName('SVGPatternElement.patternUnits') 5762 @DomName('SVGPatternElement.patternUnits')
5823 @DocsEditable() 5763 @DocsEditable()
5824 AnimatedEnumeration get patternUnits => wrap_jso(_blink.BlinkSVGPatternElement .instance.patternUnits_Getter_(unwrap_jso(this))); 5764 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.instance .patternUnits_Getter_(this);
5825 5765
5826 @DomName('SVGPatternElement.width') 5766 @DomName('SVGPatternElement.width')
5827 @DocsEditable() 5767 @DocsEditable()
5828 AnimatedLength get width => wrap_jso(_blink.BlinkSVGPatternElement.instance.wi dth_Getter_(unwrap_jso(this))); 5768 AnimatedLength get width => _blink.BlinkSVGPatternElement.instance.width_Gette r_(this);
5829 5769
5830 @DomName('SVGPatternElement.x') 5770 @DomName('SVGPatternElement.x')
5831 @DocsEditable() 5771 @DocsEditable()
5832 AnimatedLength get x => wrap_jso(_blink.BlinkSVGPatternElement.instance.x_Gett er_(unwrap_jso(this))); 5772 AnimatedLength get x => _blink.BlinkSVGPatternElement.instance.x_Getter_(this) ;
5833 5773
5834 @DomName('SVGPatternElement.y') 5774 @DomName('SVGPatternElement.y')
5835 @DocsEditable() 5775 @DocsEditable()
5836 AnimatedLength get y => wrap_jso(_blink.BlinkSVGPatternElement.instance.y_Gett er_(unwrap_jso(this))); 5776 AnimatedLength get y => _blink.BlinkSVGPatternElement.instance.y_Getter_(this) ;
5837 5777
5838 @DomName('SVGPatternElement.preserveAspectRatio') 5778 @DomName('SVGPatternElement.preserveAspectRatio')
5839 @DocsEditable() 5779 @DocsEditable()
5840 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GPatternElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 5780 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE lement.instance.preserveAspectRatio_Getter_(this);
5841 5781
5842 @DomName('SVGPatternElement.viewBox') 5782 @DomName('SVGPatternElement.viewBox')
5843 @DocsEditable() 5783 @DocsEditable()
5844 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGPatternElement.instance.vi ewBox_Getter_(unwrap_jso(this))); 5784 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.instance.viewBox_Get ter_(this);
5845 5785
5846 @DomName('SVGPatternElement.requiredExtensions') 5786 @DomName('SVGPatternElement.requiredExtensions')
5847 @DocsEditable() 5787 @DocsEditable()
5848 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGPatternElement.in stance.requiredExtensions_Getter_(unwrap_jso(this))); 5788 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.instance.re quiredExtensions_Getter_(this);
5849 5789
5850 @DomName('SVGPatternElement.requiredFeatures') 5790 @DomName('SVGPatternElement.requiredFeatures')
5851 @DocsEditable() 5791 @DocsEditable()
5852 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGPatternElement.inst ance.requiredFeatures_Getter_(unwrap_jso(this))); 5792 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.instance.requ iredFeatures_Getter_(this);
5853 5793
5854 @DomName('SVGPatternElement.systemLanguage') 5794 @DomName('SVGPatternElement.systemLanguage')
5855 @DocsEditable() 5795 @DocsEditable()
5856 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGPatternElement.instan ce.systemLanguage_Getter_(unwrap_jso(this))); 5796 StringList get systemLanguage => _blink.BlinkSVGPatternElement.instance.system Language_Getter_(this);
5857 5797
5858 @DomName('SVGPatternElement.hasExtension') 5798 @DomName('SVGPatternElement.hasExtension')
5859 @DocsEditable() 5799 @DocsEditable()
5860 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance. hasExtension_Callback_1_(unwrap_jso(this), extension); 5800 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance. hasExtension_Callback_1_(this, extension);
5861 5801
5862 @DomName('SVGPatternElement.href') 5802 @DomName('SVGPatternElement.href')
5863 @DocsEditable() 5803 @DocsEditable()
5864 AnimatedString get href => wrap_jso(_blink.BlinkSVGPatternElement.instance.hre f_Getter_(unwrap_jso(this))); 5804 AnimatedString get href => _blink.BlinkSVGPatternElement.instance.href_Getter_ (this);
5865 5805
5866 } 5806 }
5867 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5807 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5868 // for details. All rights reserved. Use of this source code is governed by a 5808 // for details. All rights reserved. Use of this source code is governed by a
5869 // BSD-style license that can be found in the LICENSE file. 5809 // BSD-style license that can be found in the LICENSE file.
5870 5810
5871 // WARNING: Do not edit - generated code. 5811 // WARNING: Do not edit - generated code.
5872 5812
5873 5813
5874 @DocsEditable() 5814 @DocsEditable()
5875 @DomName('SVGPoint') 5815 @DomName('SVGPoint')
5876 @Unstable() 5816 @Unstable()
5877 class Point extends DartHtmlDomObject { 5817 class Point extends DartHtmlDomObject {
5878 // To suppress missing implicit constructor warnings. 5818 // To suppress missing implicit constructor warnings.
5879 factory Point._() { throw new UnsupportedError("Not supported"); } 5819 factory Point._() { throw new UnsupportedError("Not supported"); }
5880 5820
5881 @Deprecated("Internal Use Only") 5821 @Deprecated("Internal Use Only")
5882 static Point internalCreatePoint() { 5822 static Point internalCreatePoint() {
5883 return new Point._internalWrap(); 5823 return new Point._internalWrap();
5884 } 5824 }
5885 5825
5886 factory Point._internalWrap() { 5826 factory Point._internalWrap() {
5887 return new Point.internal_(); 5827 return new Point.internal_();
5888 } 5828 }
5889 5829
5890 @Deprecated("Internal Use Only") 5830 @Deprecated("Internal Use Only")
5891 Point.internal_() { } 5831 Point.internal_() { }
5892 5832
5893 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
5894 int get hashCode => unwrap_jso(this).hashCode;
5895
5896 @DomName('SVGPoint.x') 5833 @DomName('SVGPoint.x')
5897 @DocsEditable() 5834 @DocsEditable()
5898 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); 5835 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(this);
5899 5836
5900 @DomName('SVGPoint.x') 5837 @DomName('SVGPoint.x')
5901 @DocsEditable() 5838 @DocsEditable()
5902 set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(this), value); 5839 set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(this, value);
5903 5840
5904 @DomName('SVGPoint.y') 5841 @DomName('SVGPoint.y')
5905 @DocsEditable() 5842 @DocsEditable()
5906 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); 5843 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(this);
5907 5844
5908 @DomName('SVGPoint.y') 5845 @DomName('SVGPoint.y')
5909 @DocsEditable() 5846 @DocsEditable()
5910 set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(this), value); 5847 set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(this, value);
5911 5848
5912 @DomName('SVGPoint.matrixTransform') 5849 @DomName('SVGPoint.matrixTransform')
5913 @DocsEditable() 5850 @DocsEditable()
5914 Point matrixTransform(Matrix matrix) => wrap_jso(_blink.BlinkSVGPoint.instance .matrixTransform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix))); 5851 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr ansform_Callback_1_(this, matrix);
5915 5852
5916 } 5853 }
5917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5854 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5918 // for details. All rights reserved. Use of this source code is governed by a 5855 // for details. All rights reserved. Use of this source code is governed by a
5919 // BSD-style license that can be found in the LICENSE file. 5856 // BSD-style license that can be found in the LICENSE file.
5920 5857
5921 // WARNING: Do not edit - generated code. 5858 // WARNING: Do not edit - generated code.
5922 5859
5923 5860
5924 @DocsEditable() 5861 @DocsEditable()
5925 @DomName('SVGPointList') 5862 @DomName('SVGPointList')
5926 @Unstable() 5863 @Unstable()
5927 class PointList extends DartHtmlDomObject { 5864 class PointList extends DartHtmlDomObject {
5928 // To suppress missing implicit constructor warnings. 5865 // To suppress missing implicit constructor warnings.
5929 factory PointList._() { throw new UnsupportedError("Not supported"); } 5866 factory PointList._() { throw new UnsupportedError("Not supported"); }
5930 5867
5931 @Deprecated("Internal Use Only") 5868 @Deprecated("Internal Use Only")
5932 static PointList internalCreatePointList() { 5869 static PointList internalCreatePointList() {
5933 return new PointList._internalWrap(); 5870 return new PointList._internalWrap();
5934 } 5871 }
5935 5872
5936 factory PointList._internalWrap() { 5873 factory PointList._internalWrap() {
5937 return new PointList.internal_(); 5874 return new PointList.internal_();
5938 } 5875 }
5939 5876
5940 @Deprecated("Internal Use Only") 5877 @Deprecated("Internal Use Only")
5941 PointList.internal_() { } 5878 PointList.internal_() { }
5942 5879
5943 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
5944 int get hashCode => unwrap_jso(this).hashCode;
5945
5946 @DomName('SVGPointList.length') 5880 @DomName('SVGPointList.length')
5947 @DocsEditable() 5881 @DocsEditable()
5948 @Experimental() // untriaged 5882 @Experimental() // untriaged
5949 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso( this)); 5883 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(this);
5950 5884
5951 @DomName('SVGPointList.numberOfItems') 5885 @DomName('SVGPointList.numberOfItems')
5952 @DocsEditable() 5886 @DocsEditable()
5953 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette r_(unwrap_jso(this)); 5887 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette r_(this);
5954 5888
5955 @DomName('SVGPointList.__setter__') 5889 @DomName('SVGPointList.__setter__')
5956 @DocsEditable() 5890 @DocsEditable()
5957 @Experimental() // untriaged 5891 @Experimental() // untriaged
5958 void __setter__(int index, Point newItem) => _blink.BlinkSVGPointList.instance .$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem)); 5892 void __setter__(int index, Point newItem) => _blink.BlinkSVGPointList.instance .$__setter___Callback_2_(this, index, newItem);
5959 5893
5960 @DomName('SVGPointList.appendItem') 5894 @DomName('SVGPointList.appendItem')
5961 @DocsEditable() 5895 @DocsEditable()
5962 Point appendItem(Point newItem) => wrap_jso(_blink.BlinkSVGPointList.instance. appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 5896 Point appendItem(Point newItem) => _blink.BlinkSVGPointList.instance.appendIte m_Callback_1_(this, newItem);
5963 5897
5964 @DomName('SVGPointList.clear') 5898 @DomName('SVGPointList.clear')
5965 @DocsEditable() 5899 @DocsEditable()
5966 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso (this)); 5900 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(this);
5967 5901
5968 @DomName('SVGPointList.getItem') 5902 @DomName('SVGPointList.getItem')
5969 @DocsEditable() 5903 @DocsEditable()
5970 Point getItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.getItem _Callback_1_(unwrap_jso(this), index)); 5904 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback _1_(this, index);
5971 5905
5972 @DomName('SVGPointList.initialize') 5906 @DomName('SVGPointList.initialize')
5973 @DocsEditable() 5907 @DocsEditable()
5974 Point initialize(Point newItem) => wrap_jso(_blink.BlinkSVGPointList.instance. initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 5908 Point initialize(Point newItem) => _blink.BlinkSVGPointList.instance.initializ e_Callback_1_(this, newItem);
5975 5909
5976 @DomName('SVGPointList.insertItemBefore') 5910 @DomName('SVGPointList.insertItemBefore')
5977 @DocsEditable() 5911 @DocsEditable()
5978 Point insertItemBefore(Point newItem, int index) => wrap_jso(_blink.BlinkSVGPo intList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newIt em), index)); 5912 Point insertItemBefore(Point newItem, int index) => _blink.BlinkSVGPointList.i nstance.insertItemBefore_Callback_2_(this, newItem, index);
5979 5913
5980 @DomName('SVGPointList.removeItem') 5914 @DomName('SVGPointList.removeItem')
5981 @DocsEditable() 5915 @DocsEditable()
5982 Point removeItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.remo veItem_Callback_1_(unwrap_jso(this), index)); 5916 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca llback_1_(this, index);
5983 5917
5984 @DomName('SVGPointList.replaceItem') 5918 @DomName('SVGPointList.replaceItem')
5985 @DocsEditable() 5919 @DocsEditable()
5986 Point replaceItem(Point newItem, int index) => wrap_jso(_blink.BlinkSVGPointLi st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index )); 5920 Point replaceItem(Point newItem, int index) => _blink.BlinkSVGPointList.instan ce.replaceItem_Callback_2_(this, newItem, index);
5987 5921
5988 } 5922 }
5989 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5990 // for details. All rights reserved. Use of this source code is governed by a 5924 // for details. All rights reserved. Use of this source code is governed by a
5991 // BSD-style license that can be found in the LICENSE file. 5925 // BSD-style license that can be found in the LICENSE file.
5992 5926
5993 // WARNING: Do not edit - generated code. 5927 // WARNING: Do not edit - generated code.
5994 5928
5995 5929
5996 @DocsEditable() 5930 @DocsEditable()
(...skipping 20 matching lines...) Expand all
6017 5951
6018 /** 5952 /**
6019 * Constructor instantiated by the DOM when a custom element has been created. 5953 * Constructor instantiated by the DOM when a custom element has been created.
6020 * 5954 *
6021 * This can only be called by subclasses from their created constructor. 5955 * This can only be called by subclasses from their created constructor.
6022 */ 5956 */
6023 PolygonElement.created() : super.created(); 5957 PolygonElement.created() : super.created();
6024 5958
6025 @DomName('SVGPolygonElement.animatedPoints') 5959 @DomName('SVGPolygonElement.animatedPoints')
6026 @DocsEditable() 5960 @DocsEditable()
6027 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc e.animatedPoints_Getter_(unwrap_jso(this))); 5961 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.instance.animate dPoints_Getter_(this);
6028 5962
6029 @DomName('SVGPolygonElement.points') 5963 @DomName('SVGPolygonElement.points')
6030 @DocsEditable() 5964 @DocsEditable()
6031 PointList get points => wrap_jso(_blink.BlinkSVGPolygonElement.instance.points _Getter_(unwrap_jso(this))); 5965 PointList get points => _blink.BlinkSVGPolygonElement.instance.points_Getter_( this);
6032 5966
6033 } 5967 }
6034 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6035 // for details. All rights reserved. Use of this source code is governed by a 5969 // for details. All rights reserved. Use of this source code is governed by a
6036 // BSD-style license that can be found in the LICENSE file. 5970 // BSD-style license that can be found in the LICENSE file.
6037 5971
6038 // WARNING: Do not edit - generated code. 5972 // WARNING: Do not edit - generated code.
6039 5973
6040 5974
6041 @DocsEditable() 5975 @DocsEditable()
(...skipping 20 matching lines...) Expand all
6062 5996
6063 /** 5997 /**
6064 * Constructor instantiated by the DOM when a custom element has been created. 5998 * Constructor instantiated by the DOM when a custom element has been created.
6065 * 5999 *
6066 * This can only be called by subclasses from their created constructor. 6000 * This can only be called by subclasses from their created constructor.
6067 */ 6001 */
6068 PolylineElement.created() : super.created(); 6002 PolylineElement.created() : super.created();
6069 6003
6070 @DomName('SVGPolylineElement.animatedPoints') 6004 @DomName('SVGPolylineElement.animatedPoints')
6071 @DocsEditable() 6005 @DocsEditable()
6072 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan ce.animatedPoints_Getter_(unwrap_jso(this))); 6006 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.instance.animat edPoints_Getter_(this);
6073 6007
6074 @DomName('SVGPolylineElement.points') 6008 @DomName('SVGPolylineElement.points')
6075 @DocsEditable() 6009 @DocsEditable()
6076 PointList get points => wrap_jso(_blink.BlinkSVGPolylineElement.instance.point s_Getter_(unwrap_jso(this))); 6010 PointList get points => _blink.BlinkSVGPolylineElement.instance.points_Getter_ (this);
6077 6011
6078 } 6012 }
6079 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6013 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6080 // for details. All rights reserved. Use of this source code is governed by a 6014 // for details. All rights reserved. Use of this source code is governed by a
6081 // BSD-style license that can be found in the LICENSE file. 6015 // BSD-style license that can be found in the LICENSE file.
6082 6016
6083 // WARNING: Do not edit - generated code. 6017 // WARNING: Do not edit - generated code.
6084 6018
6085 6019
6086 @DocsEditable() 6020 @DocsEditable()
6087 @DomName('SVGPreserveAspectRatio') 6021 @DomName('SVGPreserveAspectRatio')
6088 @Unstable() 6022 @Unstable()
6089 class PreserveAspectRatio extends DartHtmlDomObject { 6023 class PreserveAspectRatio extends DartHtmlDomObject {
6090 // To suppress missing implicit constructor warnings. 6024 // To suppress missing implicit constructor warnings.
6091 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported"); } 6025 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported"); }
6092 6026
6093 @Deprecated("Internal Use Only") 6027 @Deprecated("Internal Use Only")
6094 static PreserveAspectRatio internalCreatePreserveAspectRatio() { 6028 static PreserveAspectRatio internalCreatePreserveAspectRatio() {
6095 return new PreserveAspectRatio._internalWrap(); 6029 return new PreserveAspectRatio._internalWrap();
6096 } 6030 }
6097 6031
6098 factory PreserveAspectRatio._internalWrap() { 6032 factory PreserveAspectRatio._internalWrap() {
6099 return new PreserveAspectRatio.internal_(); 6033 return new PreserveAspectRatio.internal_();
6100 } 6034 }
6101 6035
6102 @Deprecated("Internal Use Only") 6036 @Deprecated("Internal Use Only")
6103 PreserveAspectRatio.internal_() { } 6037 PreserveAspectRatio.internal_() { }
6104 6038
6105 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6106 int get hashCode => unwrap_jso(this).hashCode;
6107
6108 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') 6039 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
6109 @DocsEditable() 6040 @DocsEditable()
6110 static const int SVG_MEETORSLICE_MEET = 1; 6041 static const int SVG_MEETORSLICE_MEET = 1;
6111 6042
6112 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') 6043 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE')
6113 @DocsEditable() 6044 @DocsEditable()
6114 static const int SVG_MEETORSLICE_SLICE = 2; 6045 static const int SVG_MEETORSLICE_SLICE = 2;
6115 6046
6116 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') 6047 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN')
6117 @DocsEditable() 6048 @DocsEditable()
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
6156 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID') 6087 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID')
6157 @DocsEditable() 6088 @DocsEditable()
6158 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 6089 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
6159 6090
6160 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') 6091 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN')
6161 @DocsEditable() 6092 @DocsEditable()
6162 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 6093 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
6163 6094
6164 @DomName('SVGPreserveAspectRatio.align') 6095 @DomName('SVGPreserveAspectRatio.align')
6165 @DocsEditable() 6096 @DocsEditable()
6166 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw rap_jso(this)); 6097 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(thi s);
6167 6098
6168 @DomName('SVGPreserveAspectRatio.align') 6099 @DomName('SVGPreserveAspectRatio.align')
6169 @DocsEditable() 6100 @DocsEditable()
6170 set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Sett er_(unwrap_jso(this), value); 6101 set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Sett er_(this, value);
6171 6102
6172 @DomName('SVGPreserveAspectRatio.meetOrSlice') 6103 @DomName('SVGPreserveAspectRatio.meetOrSlice')
6173 @DocsEditable() 6104 @DocsEditable()
6174 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice _Getter_(unwrap_jso(this)); 6105 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice _Getter_(this);
6175 6106
6176 @DomName('SVGPreserveAspectRatio.meetOrSlice') 6107 @DomName('SVGPreserveAspectRatio.meetOrSlice')
6177 @DocsEditable() 6108 @DocsEditable()
6178 set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meet OrSlice_Setter_(unwrap_jso(this), value); 6109 set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meet OrSlice_Setter_(this, value);
6179 6110
6180 } 6111 }
6181 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6112 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6182 // for details. All rights reserved. Use of this source code is governed by a 6113 // for details. All rights reserved. Use of this source code is governed by a
6183 // BSD-style license that can be found in the LICENSE file. 6114 // BSD-style license that can be found in the LICENSE file.
6184 6115
6185 // WARNING: Do not edit - generated code. 6116 // WARNING: Do not edit - generated code.
6186 6117
6187 6118
6188 @DocsEditable() 6119 @DocsEditable()
(...skipping 20 matching lines...) Expand all
6209 6140
6210 /** 6141 /**
6211 * Constructor instantiated by the DOM when a custom element has been created. 6142 * Constructor instantiated by the DOM when a custom element has been created.
6212 * 6143 *
6213 * This can only be called by subclasses from their created constructor. 6144 * This can only be called by subclasses from their created constructor.
6214 */ 6145 */
6215 RadialGradientElement.created() : super.created(); 6146 RadialGradientElement.created() : super.created();
6216 6147
6217 @DomName('SVGRadialGradientElement.cx') 6148 @DomName('SVGRadialGradientElement.cx')
6218 @DocsEditable() 6149 @DocsEditable()
6219 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc e.cx_Getter_(unwrap_jso(this))); 6150 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.instance.cx_Gett er_(this);
6220 6151
6221 @DomName('SVGRadialGradientElement.cy') 6152 @DomName('SVGRadialGradientElement.cy')
6222 @DocsEditable() 6153 @DocsEditable()
6223 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc e.cy_Getter_(unwrap_jso(this))); 6154 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.instance.cy_Gett er_(this);
6224 6155
6225 @DomName('SVGRadialGradientElement.fr') 6156 @DomName('SVGRadialGradientElement.fr')
6226 @DocsEditable() 6157 @DocsEditable()
6227 AnimatedLength get fr => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc e.fr_Getter_(unwrap_jso(this))); 6158 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.instance.fr_Gett er_(this);
6228 6159
6229 @DomName('SVGRadialGradientElement.fx') 6160 @DomName('SVGRadialGradientElement.fx')
6230 @DocsEditable() 6161 @DocsEditable()
6231 AnimatedLength get fx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc e.fx_Getter_(unwrap_jso(this))); 6162 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.instance.fx_Gett er_(this);
6232 6163
6233 @DomName('SVGRadialGradientElement.fy') 6164 @DomName('SVGRadialGradientElement.fy')
6234 @DocsEditable() 6165 @DocsEditable()
6235 AnimatedLength get fy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc e.fy_Getter_(unwrap_jso(this))); 6166 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.instance.fy_Gett er_(this);
6236 6167
6237 @DomName('SVGRadialGradientElement.r') 6168 @DomName('SVGRadialGradientElement.r')
6238 @DocsEditable() 6169 @DocsEditable()
6239 AnimatedLength get r => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance .r_Getter_(unwrap_jso(this))); 6170 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.instance.r_Getter _(this);
6240 6171
6241 } 6172 }
6242 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6173 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6243 // for details. All rights reserved. Use of this source code is governed by a 6174 // for details. All rights reserved. Use of this source code is governed by a
6244 // BSD-style license that can be found in the LICENSE file. 6175 // BSD-style license that can be found in the LICENSE file.
6245 6176
6246 // WARNING: Do not edit - generated code. 6177 // WARNING: Do not edit - generated code.
6247 6178
6248 6179
6249 @DocsEditable() 6180 @DocsEditable()
6250 @DomName('SVGRect') 6181 @DomName('SVGRect')
6251 @Unstable() 6182 @Unstable()
6252 class Rect extends DartHtmlDomObject { 6183 class Rect extends DartHtmlDomObject {
6253 // To suppress missing implicit constructor warnings. 6184 // To suppress missing implicit constructor warnings.
6254 factory Rect._() { throw new UnsupportedError("Not supported"); } 6185 factory Rect._() { throw new UnsupportedError("Not supported"); }
6255 6186
6256 @Deprecated("Internal Use Only") 6187 @Deprecated("Internal Use Only")
6257 static Rect internalCreateRect() { 6188 static Rect internalCreateRect() {
6258 return new Rect._internalWrap(); 6189 return new Rect._internalWrap();
6259 } 6190 }
6260 6191
6261 factory Rect._internalWrap() { 6192 factory Rect._internalWrap() {
6262 return new Rect.internal_(); 6193 return new Rect.internal_();
6263 } 6194 }
6264 6195
6265 @Deprecated("Internal Use Only") 6196 @Deprecated("Internal Use Only")
6266 Rect.internal_() { } 6197 Rect.internal_() { }
6267 6198
6268 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6269 int get hashCode => unwrap_jso(this).hashCode;
6270
6271 @DomName('SVGRect.height') 6199 @DomName('SVGRect.height')
6272 @DocsEditable() 6200 @DocsEditable()
6273 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this) ); 6201 num get height => _blink.BlinkSVGRect.instance.height_Getter_(this);
6274 6202
6275 @DomName('SVGRect.height') 6203 @DomName('SVGRect.height')
6276 @DocsEditable() 6204 @DocsEditable()
6277 set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwrap_js o(this), value); 6205 set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(this, val ue);
6278 6206
6279 @DomName('SVGRect.width') 6207 @DomName('SVGRect.width')
6280 @DocsEditable() 6208 @DocsEditable()
6281 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); 6209 num get width => _blink.BlinkSVGRect.instance.width_Getter_(this);
6282 6210
6283 @DomName('SVGRect.width') 6211 @DomName('SVGRect.width')
6284 @DocsEditable() 6212 @DocsEditable()
6285 set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap_jso( this), value); 6213 set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(this, value );
6286 6214
6287 @DomName('SVGRect.x') 6215 @DomName('SVGRect.x')
6288 @DocsEditable() 6216 @DocsEditable()
6289 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); 6217 num get x => _blink.BlinkSVGRect.instance.x_Getter_(this);
6290 6218
6291 @DomName('SVGRect.x') 6219 @DomName('SVGRect.x')
6292 @DocsEditable() 6220 @DocsEditable()
6293 set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(this), v alue); 6221 set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(this, value);
6294 6222
6295 @DomName('SVGRect.y') 6223 @DomName('SVGRect.y')
6296 @DocsEditable() 6224 @DocsEditable()
6297 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); 6225 num get y => _blink.BlinkSVGRect.instance.y_Getter_(this);
6298 6226
6299 @DomName('SVGRect.y') 6227 @DomName('SVGRect.y')
6300 @DocsEditable() 6228 @DocsEditable()
6301 set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(this), v alue); 6229 set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(this, value);
6302 6230
6303 } 6231 }
6304 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6232 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6305 // for details. All rights reserved. Use of this source code is governed by a 6233 // for details. All rights reserved. Use of this source code is governed by a
6306 // BSD-style license that can be found in the LICENSE file. 6234 // BSD-style license that can be found in the LICENSE file.
6307 6235
6308 // WARNING: Do not edit - generated code. 6236 // WARNING: Do not edit - generated code.
6309 6237
6310 6238
6311 @DocsEditable() 6239 @DocsEditable()
(...skipping 20 matching lines...) Expand all
6332 6260
6333 /** 6261 /**
6334 * Constructor instantiated by the DOM when a custom element has been created. 6262 * Constructor instantiated by the DOM when a custom element has been created.
6335 * 6263 *
6336 * This can only be called by subclasses from their created constructor. 6264 * This can only be called by subclasses from their created constructor.
6337 */ 6265 */
6338 RectElement.created() : super.created(); 6266 RectElement.created() : super.created();
6339 6267
6340 @DomName('SVGRectElement.height') 6268 @DomName('SVGRectElement.height')
6341 @DocsEditable() 6269 @DocsEditable()
6342 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig ht_Getter_(unwrap_jso(this))); 6270 AnimatedLength get height => _blink.BlinkSVGRectElement.instance.height_Getter _(this);
6343 6271
6344 @DomName('SVGRectElement.rx') 6272 @DomName('SVGRectElement.rx')
6345 @DocsEditable() 6273 @DocsEditable()
6346 AnimatedLength get rx => wrap_jso(_blink.BlinkSVGRectElement.instance.rx_Gette r_(unwrap_jso(this))); 6274 AnimatedLength get rx => _blink.BlinkSVGRectElement.instance.rx_Getter_(this);
6347 6275
6348 @DomName('SVGRectElement.ry') 6276 @DomName('SVGRectElement.ry')
6349 @DocsEditable() 6277 @DocsEditable()
6350 AnimatedLength get ry => wrap_jso(_blink.BlinkSVGRectElement.instance.ry_Gette r_(unwrap_jso(this))); 6278 AnimatedLength get ry => _blink.BlinkSVGRectElement.instance.ry_Getter_(this);
6351 6279
6352 @DomName('SVGRectElement.width') 6280 @DomName('SVGRectElement.width')
6353 @DocsEditable() 6281 @DocsEditable()
6354 AnimatedLength get width => wrap_jso(_blink.BlinkSVGRectElement.instance.width _Getter_(unwrap_jso(this))); 6282 AnimatedLength get width => _blink.BlinkSVGRectElement.instance.width_Getter_( this);
6355 6283
6356 @DomName('SVGRectElement.x') 6284 @DomName('SVGRectElement.x')
6357 @DocsEditable() 6285 @DocsEditable()
6358 AnimatedLength get x => wrap_jso(_blink.BlinkSVGRectElement.instance.x_Getter_ (unwrap_jso(this))); 6286 AnimatedLength get x => _blink.BlinkSVGRectElement.instance.x_Getter_(this);
6359 6287
6360 @DomName('SVGRectElement.y') 6288 @DomName('SVGRectElement.y')
6361 @DocsEditable() 6289 @DocsEditable()
6362 AnimatedLength get y => wrap_jso(_blink.BlinkSVGRectElement.instance.y_Getter_ (unwrap_jso(this))); 6290 AnimatedLength get y => _blink.BlinkSVGRectElement.instance.y_Getter_(this);
6363 6291
6364 } 6292 }
6365 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6293 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6366 // for details. All rights reserved. Use of this source code is governed by a 6294 // for details. All rights reserved. Use of this source code is governed by a
6367 // BSD-style license that can be found in the LICENSE file. 6295 // BSD-style license that can be found in the LICENSE file.
6368 6296
6369 // WARNING: Do not edit - generated code. 6297 // WARNING: Do not edit - generated code.
6370 6298
6371 6299
6372 @DocsEditable() 6300 @DocsEditable()
(...skipping 20 matching lines...) Expand all
6393 6321
6394 /** 6322 /**
6395 * Constructor instantiated by the DOM when a custom element has been created. 6323 * Constructor instantiated by the DOM when a custom element has been created.
6396 * 6324 *
6397 * This can only be called by subclasses from their created constructor. 6325 * This can only be called by subclasses from their created constructor.
6398 */ 6326 */
6399 ScriptElement.created() : super.created(); 6327 ScriptElement.created() : super.created();
6400 6328
6401 @DomName('SVGScriptElement.type') 6329 @DomName('SVGScriptElement.type')
6402 @DocsEditable() 6330 @DocsEditable()
6403 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j so(this)); 6331 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(this);
6404 6332
6405 @DomName('SVGScriptElement.type') 6333 @DomName('SVGScriptElement.type')
6406 @DocsEditable() 6334 @DocsEditable()
6407 set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(u nwrap_jso(this), value); 6335 set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(t his, value);
6408 6336
6409 @DomName('SVGScriptElement.href') 6337 @DomName('SVGScriptElement.href')
6410 @DocsEditable() 6338 @DocsEditable()
6411 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href _Getter_(unwrap_jso(this))); 6339 AnimatedString get href => _blink.BlinkSVGScriptElement.instance.href_Getter_( this);
6412 6340
6413 } 6341 }
6414 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6342 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6415 // for details. All rights reserved. Use of this source code is governed by a 6343 // for details. All rights reserved. Use of this source code is governed by a
6416 // BSD-style license that can be found in the LICENSE file. 6344 // BSD-style license that can be found in the LICENSE file.
6417 6345
6418 // WARNING: Do not edit - generated code. 6346 // WARNING: Do not edit - generated code.
6419 6347
6420 6348
6421 @DocsEditable() 6349 @DocsEditable()
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
6485 6413
6486 /** 6414 /**
6487 * Constructor instantiated by the DOM when a custom element has been created. 6415 * Constructor instantiated by the DOM when a custom element has been created.
6488 * 6416 *
6489 * This can only be called by subclasses from their created constructor. 6417 * This can only be called by subclasses from their created constructor.
6490 */ 6418 */
6491 StopElement.created() : super.created(); 6419 StopElement.created() : super.created();
6492 6420
6493 @DomName('SVGStopElement.offset') 6421 @DomName('SVGStopElement.offset')
6494 @DocsEditable() 6422 @DocsEditable()
6495 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta nce.offset_Getter_(unwrap_jso(this))); 6423 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.instance.offse t_Getter_(this);
6496 6424
6497 } 6425 }
6498 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6426 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6499 // for details. All rights reserved. Use of this source code is governed by a 6427 // for details. All rights reserved. Use of this source code is governed by a
6500 // BSD-style license that can be found in the LICENSE file. 6428 // BSD-style license that can be found in the LICENSE file.
6501 6429
6502 // WARNING: Do not edit - generated code. 6430 // WARNING: Do not edit - generated code.
6503 6431
6504 6432
6505 @DocsEditable() 6433 @DocsEditable()
6506 @DomName('SVGStringList') 6434 @DomName('SVGStringList')
6507 @Unstable() 6435 @Unstable()
6508 class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList Mixin<String> implements List<String> { 6436 class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList Mixin<String> implements List<String> {
6509 // To suppress missing implicit constructor warnings. 6437 // To suppress missing implicit constructor warnings.
6510 factory StringList._() { throw new UnsupportedError("Not supported"); } 6438 factory StringList._() { throw new UnsupportedError("Not supported"); }
6511 6439
6512 @Deprecated("Internal Use Only") 6440 @Deprecated("Internal Use Only")
6513 static StringList internalCreateStringList() { 6441 static StringList internalCreateStringList() {
6514 return new StringList._internalWrap(); 6442 return new StringList._internalWrap();
6515 } 6443 }
6516 6444
6517 factory StringList._internalWrap() { 6445 factory StringList._internalWrap() {
6518 return new StringList.internal_(); 6446 return new StringList.internal_();
6519 } 6447 }
6520 6448
6521 @Deprecated("Internal Use Only") 6449 @Deprecated("Internal Use Only")
6522 StringList.internal_() { } 6450 StringList.internal_() { }
6523 6451
6524 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6525 int get hashCode => unwrap_jso(this).hashCode;
6526
6527 @DomName('SVGStringList.length') 6452 @DomName('SVGStringList.length')
6528 @DocsEditable() 6453 @DocsEditable()
6529 @Experimental() // untriaged 6454 @Experimental() // untriaged
6530 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso (this)); 6455 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(this);
6531 6456
6532 @DomName('SVGStringList.numberOfItems') 6457 @DomName('SVGStringList.numberOfItems')
6533 @DocsEditable() 6458 @DocsEditable()
6534 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 6459 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett er_(this);
6535 6460
6536 String operator[](int index) { 6461 String operator[](int index) {
6537 if (index < 0 || index >= length) 6462 if (index < 0 || index >= length)
6538 throw new RangeError.index(index, this); 6463 throw new RangeError.index(index, this);
6539 return getItem(index); 6464 return getItem(index);
6540 } 6465 }
6541 6466
6542 void operator[]=(int index, String value) { 6467 void operator[]=(int index, String value) {
6543 throw new UnsupportedError("Cannot assign element of immutable List."); 6468 throw new UnsupportedError("Cannot assign element of immutable List.");
6544 } 6469 }
(...skipping 28 matching lines...) Expand all
6573 if (len == 0) throw new StateError("No elements"); 6498 if (len == 0) throw new StateError("No elements");
6574 throw new StateError("More than one element"); 6499 throw new StateError("More than one element");
6575 } 6500 }
6576 6501
6577 String elementAt(int index) => this[index]; 6502 String elementAt(int index) => this[index];
6578 // -- end List<String> mixins. 6503 // -- end List<String> mixins.
6579 6504
6580 @DomName('SVGStringList.__setter__') 6505 @DomName('SVGStringList.__setter__')
6581 @DocsEditable() 6506 @DocsEditable()
6582 @Experimental() // untriaged 6507 @Experimental() // untriaged
6583 void __setter__(int index, String newItem) => _blink.BlinkSVGStringList.instan ce.$__setter___Callback_2_(unwrap_jso(this), index, newItem); 6508 void __setter__(int index, String newItem) => _blink.BlinkSVGStringList.instan ce.$__setter___Callback_2_(this, index, newItem);
6584 6509
6585 @DomName('SVGStringList.appendItem') 6510 @DomName('SVGStringList.appendItem')
6586 @DocsEditable() 6511 @DocsEditable()
6587 String appendItem(String newItem) => _blink.BlinkSVGStringList.instance.append Item_Callback_1_(unwrap_jso(this), newItem); 6512 String appendItem(String newItem) => _blink.BlinkSVGStringList.instance.append Item_Callback_1_(this, newItem);
6588 6513
6589 @DomName('SVGStringList.clear') 6514 @DomName('SVGStringList.clear')
6590 @DocsEditable() 6515 @DocsEditable()
6591 void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(unwrap_js o(this)); 6516 void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(this);
6592 6517
6593 @DomName('SVGStringList.getItem') 6518 @DomName('SVGStringList.getItem')
6594 @DocsEditable() 6519 @DocsEditable()
6595 String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callba ck_1_(unwrap_jso(this), index); 6520 String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callba ck_1_(this, index);
6596 6521
6597 @DomName('SVGStringList.initialize') 6522 @DomName('SVGStringList.initialize')
6598 @DocsEditable() 6523 @DocsEditable()
6599 String initialize(String newItem) => _blink.BlinkSVGStringList.instance.initia lize_Callback_1_(unwrap_jso(this), newItem); 6524 String initialize(String newItem) => _blink.BlinkSVGStringList.instance.initia lize_Callback_1_(this, newItem);
6600 6525
6601 @DomName('SVGStringList.insertItemBefore') 6526 @DomName('SVGStringList.insertItemBefore')
6602 @DocsEditable() 6527 @DocsEditable()
6603 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i nstance.insertItemBefore_Callback_2_(unwrap_jso(this), item, index); 6528 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i nstance.insertItemBefore_Callback_2_(this, item, index);
6604 6529
6605 @DomName('SVGStringList.removeItem') 6530 @DomName('SVGStringList.removeItem')
6606 @DocsEditable() 6531 @DocsEditable()
6607 String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_ Callback_1_(unwrap_jso(this), index); 6532 String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_ Callback_1_(this, index);
6608 6533
6609 @DomName('SVGStringList.replaceItem') 6534 @DomName('SVGStringList.replaceItem')
6610 @DocsEditable() 6535 @DocsEditable()
6611 String replaceItem(String newItem, int index) => _blink.BlinkSVGStringList.ins tance.replaceItem_Callback_2_(unwrap_jso(this), newItem, index); 6536 String replaceItem(String newItem, int index) => _blink.BlinkSVGStringList.ins tance.replaceItem_Callback_2_(this, newItem, index);
6612 6537
6613 } 6538 }
6614 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6539 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6615 // for details. All rights reserved. Use of this source code is governed by a 6540 // for details. All rights reserved. Use of this source code is governed by a
6616 // BSD-style license that can be found in the LICENSE file. 6541 // BSD-style license that can be found in the LICENSE file.
6617 6542
6618 // WARNING: Do not edit - generated code. 6543 // WARNING: Do not edit - generated code.
6619 6544
6620 6545
6621 @DocsEditable() 6546 @DocsEditable()
(...skipping 21 matching lines...) Expand all
6643 6568
6644 /** 6569 /**
6645 * Constructor instantiated by the DOM when a custom element has been created. 6570 * Constructor instantiated by the DOM when a custom element has been created.
6646 * 6571 *
6647 * This can only be called by subclasses from their created constructor. 6572 * This can only be called by subclasses from their created constructor.
6648 */ 6573 */
6649 StyleElement.created() : super.created(); 6574 StyleElement.created() : super.created();
6650 6575
6651 @DomName('SVGStyleElement.disabled') 6576 @DomName('SVGStyleElement.disabled')
6652 @DocsEditable() 6577 @DocsEditable()
6653 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw rap_jso(this)); 6578 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(thi s);
6654 6579
6655 @DomName('SVGStyleElement.disabled') 6580 @DomName('SVGStyleElement.disabled')
6656 @DocsEditable() 6581 @DocsEditable()
6657 set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Sett er_(unwrap_jso(this), value); 6582 set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Sett er_(this, value);
6658 6583
6659 @DomName('SVGStyleElement.media') 6584 @DomName('SVGStyleElement.media')
6660 @DocsEditable() 6585 @DocsEditable()
6661 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_ jso(this)); 6586 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(this);
6662 6587
6663 @DomName('SVGStyleElement.media') 6588 @DomName('SVGStyleElement.media')
6664 @DocsEditable() 6589 @DocsEditable()
6665 set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_( unwrap_jso(this), value); 6590 set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_( this, value);
6666 6591
6667 @DomName('SVGStyleElement.sheet') 6592 @DomName('SVGStyleElement.sheet')
6668 @DocsEditable() 6593 @DocsEditable()
6669 @Experimental() // untriaged 6594 @Experimental() // untriaged
6670 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge tter_(unwrap_jso(this))); 6595 StyleSheet get sheet => _blink.BlinkSVGStyleElement.instance.sheet_Getter_(thi s);
6671 6596
6672 @DomName('SVGStyleElement.title') 6597 @DomName('SVGStyleElement.title')
6673 @DocsEditable() 6598 @DocsEditable()
6674 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_ jso(this)); 6599 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(this);
6675 6600
6676 @DomName('SVGStyleElement.title') 6601 @DomName('SVGStyleElement.title')
6677 @DocsEditable() 6602 @DocsEditable()
6678 set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_( unwrap_jso(this), value); 6603 set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_( this, value);
6679 6604
6680 @DomName('SVGStyleElement.type') 6605 @DomName('SVGStyleElement.type')
6681 @DocsEditable() 6606 @DocsEditable()
6682 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js o(this)); 6607 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(this);
6683 6608
6684 @DomName('SVGStyleElement.type') 6609 @DomName('SVGStyleElement.type')
6685 @DocsEditable() 6610 @DocsEditable()
6686 set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(un wrap_jso(this), value); 6611 set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(th is, value);
6687 6612
6688 } 6613 }
6689 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 6614 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6690 // for details. All rights reserved. Use of this source code is governed by a 6615 // for details. All rights reserved. Use of this source code is governed by a
6691 // BSD-style license that can be found in the LICENSE file. 6616 // BSD-style license that can be found in the LICENSE file.
6692 6617
6693 6618
6694 class _AttributeClassSet extends CssClassSetImpl { 6619 class _AttributeClassSet extends CssClassSetImpl {
6695 final Element _element; 6620 final Element _element;
6696 6621
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
6827 * Checks to see if the SVG element type is supported by the current platform. 6752 * Checks to see if the SVG element type is supported by the current platform.
6828 * 6753 *
6829 * The tag should be a valid SVG element tag name. 6754 * The tag should be a valid SVG element tag name.
6830 */ 6755 */
6831 static bool isTagSupported(String tag) { 6756 static bool isTagSupported(String tag) {
6832 var e = new SvgElement.tag(tag); 6757 var e = new SvgElement.tag(tag);
6833 return e is SvgElement && !(e is UnknownElement); 6758 return e is SvgElement && !(e is UnknownElement);
6834 } 6759 }
6835 6760
6836 set _svgClassName(AnimatedString value) => 6761 set _svgClassName(AnimatedString value) =>
6837 _blink.BlinkSVGElement.instance.className_Setter_(unwrap_jso(this), unwrap _jso(value)); 6762 _blink.BlinkSVGElement.instance.className_Setter_(this, value);
6838 6763
6839 String get className => _svgClassName.baseVal; 6764 String get className => _svgClassName.baseVal;
6840 6765
6841 // Unbelievable hack. We can't create an SvgAnimatedString, but we can get 6766 // Unbelievable hack. We can't create an SvgAnimatedString, but we can get
6842 // the existing one and change its baseVal. Then we call the blink setter dire ctly 6767 // the existing one and change its baseVal. Then we call the blink setter dire ctly
6843 // TODO(alanknight): Handle suppressing the SVGAnimated<*> better 6768 // TODO(alanknight): Handle suppressing the SVGAnimated<*> better
6844 set className(String s) { 6769 set className(String s) {
6845 var oldClass = _svgClassName; 6770 var oldClass = _svgClassName;
6846 oldClass.baseVal = s; 6771 oldClass.baseVal = s;
6847 _svgClassName = oldClass; 6772 _svgClassName = oldClass;
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
7123 /** 7048 /**
7124 * Constructor instantiated by the DOM when a custom element has been created. 7049 * Constructor instantiated by the DOM when a custom element has been created.
7125 * 7050 *
7126 * This can only be called by subclasses from their created constructor. 7051 * This can only be called by subclasses from their created constructor.
7127 */ 7052 */
7128 SvgElement.created() : super.created(); 7053 SvgElement.created() : super.created();
7129 7054
7130 @DomName('SVGElement.className') 7055 @DomName('SVGElement.className')
7131 @DocsEditable() 7056 @DocsEditable()
7132 @Experimental() // untriaged 7057 @Experimental() // untriaged
7133 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c lassName_Getter_(unwrap_jso(this))); 7058 AnimatedString get _svgClassName => _blink.BlinkSVGElement.instance.className_ Getter_(this);
7134 7059
7135 @DomName('SVGElement.ownerSVGElement') 7060 @DomName('SVGElement.ownerSVGElement')
7136 @DocsEditable() 7061 @DocsEditable()
7137 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance. ownerSVGElement_Getter_(unwrap_jso(this))); 7062 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.instance.ownerSVGE lement_Getter_(this);
7138 7063
7139 @DomName('SVGElement.style') 7064 @DomName('SVGElement.style')
7140 @DocsEditable() 7065 @DocsEditable()
7141 @Experimental() // untriaged 7066 @Experimental() // untriaged
7142 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl e_Getter_(unwrap_jso(this))); 7067 CssStyleDeclaration get style => _blink.BlinkSVGElement.instance.style_Getter_ (this);
7143 7068
7144 @DomName('SVGElement.tabIndex') 7069 @DomName('SVGElement.tabIndex')
7145 @DocsEditable() 7070 @DocsEditable()
7146 @Experimental() // untriaged 7071 @Experimental() // untriaged
7147 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js o(this)); 7072 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(this);
7148 7073
7149 @DomName('SVGElement.tabIndex') 7074 @DomName('SVGElement.tabIndex')
7150 @DocsEditable() 7075 @DocsEditable()
7151 @Experimental() // untriaged 7076 @Experimental() // untriaged
7152 set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(un wrap_jso(this), value); 7077 set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(th is, value);
7153 7078
7154 @DomName('SVGElement.viewportElement') 7079 @DomName('SVGElement.viewportElement')
7155 @DocsEditable() 7080 @DocsEditable()
7156 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie wportElement_Getter_(unwrap_jso(this))); 7081 SvgElement get viewportElement => _blink.BlinkSVGElement.instance.viewportElem ent_Getter_(this);
7157 7082
7158 @DomName('SVGElement.blur') 7083 @DomName('SVGElement.blur')
7159 @DocsEditable() 7084 @DocsEditable()
7160 @Experimental() // untriaged 7085 @Experimental() // untriaged
7161 void blur() => _blink.BlinkSVGElement.instance.blur_Callback_0_(unwrap_jso(thi s)); 7086 void blur() => _blink.BlinkSVGElement.instance.blur_Callback_0_(this);
7162 7087
7163 @DomName('SVGElement.focus') 7088 @DomName('SVGElement.focus')
7164 @DocsEditable() 7089 @DocsEditable()
7165 @Experimental() // untriaged 7090 @Experimental() // untriaged
7166 void focus() => _blink.BlinkSVGElement.instance.focus_Callback_0_(unwrap_jso(t his)); 7091 void focus() => _blink.BlinkSVGElement.instance.focus_Callback_0_(this);
7167 7092
7168 @DomName('SVGElement.onabort') 7093 @DomName('SVGElement.onabort')
7169 @DocsEditable() 7094 @DocsEditable()
7170 @Experimental() // untriaged 7095 @Experimental() // untriaged
7171 ElementStream<Event> get onAbort => abortEvent.forElement(this); 7096 ElementStream<Event> get onAbort => abortEvent.forElement(this);
7172 7097
7173 @DomName('SVGElement.onblur') 7098 @DomName('SVGElement.onblur')
7174 @DocsEditable() 7099 @DocsEditable()
7175 @Experimental() // untriaged 7100 @Experimental() // untriaged
7176 ElementStream<Event> get onBlur => blurEvent.forElement(this); 7101 ElementStream<Event> get onBlur => blurEvent.forElement(this);
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
7457 7382
7458 /** 7383 /**
7459 * Constructor instantiated by the DOM when a custom element has been created. 7384 * Constructor instantiated by the DOM when a custom element has been created.
7460 * 7385 *
7461 * This can only be called by subclasses from their created constructor. 7386 * This can only be called by subclasses from their created constructor.
7462 */ 7387 */
7463 SvgSvgElement.created() : super.created(); 7388 SvgSvgElement.created() : super.created();
7464 7389
7465 @DomName('SVGSVGElement.currentScale') 7390 @DomName('SVGSVGElement.currentScale')
7466 @DocsEditable() 7391 @DocsEditable()
7467 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter _(unwrap_jso(this)); 7392 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter _(this);
7468 7393
7469 @DomName('SVGSVGElement.currentScale') 7394 @DomName('SVGSVGElement.currentScale')
7470 @DocsEditable() 7395 @DocsEditable()
7471 set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale _Setter_(unwrap_jso(this), value); 7396 set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale _Setter_(this, value);
7472 7397
7473 @DomName('SVGSVGElement.currentTranslate') 7398 @DomName('SVGSVGElement.currentTranslate')
7474 @DocsEditable() 7399 @DocsEditable()
7475 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr entTranslate_Getter_(unwrap_jso(this))); 7400 Point get currentTranslate => _blink.BlinkSVGSVGElement.instance.currentTransl ate_Getter_(this);
7476 7401
7477 @DomName('SVGSVGElement.currentView') 7402 @DomName('SVGSVGElement.currentView')
7478 @DocsEditable() 7403 @DocsEditable()
7479 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren tView_Getter_(unwrap_jso(this))); 7404 ViewSpec get currentView => _blink.BlinkSVGSVGElement.instance.currentView_Get ter_(this);
7480 7405
7481 @DomName('SVGSVGElement.height') 7406 @DomName('SVGSVGElement.height')
7482 @DocsEditable() 7407 @DocsEditable()
7483 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh t_Getter_(unwrap_jso(this))); 7408 AnimatedLength get height => _blink.BlinkSVGSVGElement.instance.height_Getter_ (this);
7484 7409
7485 @DomName('SVGSVGElement.pixelUnitToMillimeterX') 7410 @DomName('SVGSVGElement.pixelUnitToMillimeterX')
7486 @DocsEditable() 7411 @DocsEditable()
7487 num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnit ToMillimeterX_Getter_(unwrap_jso(this)); 7412 num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnit ToMillimeterX_Getter_(this);
7488 7413
7489 @DomName('SVGSVGElement.pixelUnitToMillimeterY') 7414 @DomName('SVGSVGElement.pixelUnitToMillimeterY')
7490 @DocsEditable() 7415 @DocsEditable()
7491 num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnit ToMillimeterY_Getter_(unwrap_jso(this)); 7416 num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnit ToMillimeterY_Getter_(this);
7492 7417
7493 @DomName('SVGSVGElement.screenPixelToMillimeterX') 7418 @DomName('SVGSVGElement.screenPixelToMillimeterX')
7494 @DocsEditable() 7419 @DocsEditable()
7495 num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenP ixelToMillimeterX_Getter_(unwrap_jso(this)); 7420 num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenP ixelToMillimeterX_Getter_(this);
7496 7421
7497 @DomName('SVGSVGElement.screenPixelToMillimeterY') 7422 @DomName('SVGSVGElement.screenPixelToMillimeterY')
7498 @DocsEditable() 7423 @DocsEditable()
7499 num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenP ixelToMillimeterY_Getter_(unwrap_jso(this)); 7424 num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenP ixelToMillimeterY_Getter_(this);
7500 7425
7501 @DomName('SVGSVGElement.useCurrentView') 7426 @DomName('SVGSVGElement.useCurrentView')
7502 @DocsEditable() 7427 @DocsEditable()
7503 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G etter_(unwrap_jso(this)); 7428 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G etter_(this);
7504 7429
7505 @DomName('SVGSVGElement.viewport') 7430 @DomName('SVGSVGElement.viewport')
7506 @DocsEditable() 7431 @DocsEditable()
7507 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett er_(unwrap_jso(this))); 7432 Rect get viewport => _blink.BlinkSVGSVGElement.instance.viewport_Getter_(this) ;
7508 7433
7509 @DomName('SVGSVGElement.width') 7434 @DomName('SVGSVGElement.width')
7510 @DocsEditable() 7435 @DocsEditable()
7511 AnimatedLength get width => wrap_jso(_blink.BlinkSVGSVGElement.instance.width_ Getter_(unwrap_jso(this))); 7436 AnimatedLength get width => _blink.BlinkSVGSVGElement.instance.width_Getter_(t his);
7512 7437
7513 @DomName('SVGSVGElement.x') 7438 @DomName('SVGSVGElement.x')
7514 @DocsEditable() 7439 @DocsEditable()
7515 AnimatedLength get x => wrap_jso(_blink.BlinkSVGSVGElement.instance.x_Getter_( unwrap_jso(this))); 7440 AnimatedLength get x => _blink.BlinkSVGSVGElement.instance.x_Getter_(this);
7516 7441
7517 @DomName('SVGSVGElement.y') 7442 @DomName('SVGSVGElement.y')
7518 @DocsEditable() 7443 @DocsEditable()
7519 AnimatedLength get y => wrap_jso(_blink.BlinkSVGSVGElement.instance.y_Getter_( unwrap_jso(this))); 7444 AnimatedLength get y => _blink.BlinkSVGSVGElement.instance.y_Getter_(this);
7520 7445
7521 @DomName('SVGSVGElement.animationsPaused') 7446 @DomName('SVGSVGElement.animationsPaused')
7522 @DocsEditable() 7447 @DocsEditable()
7523 bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused _Callback_0_(unwrap_jso(this)); 7448 bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused _Callback_0_(this);
7524 7449
7525 @DomName('SVGSVGElement.checkEnclosure') 7450 @DomName('SVGSVGElement.checkEnclosure')
7526 @DocsEditable() 7451 @DocsEditable()
7527 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw rap_jso(rect)); 7452 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.instance.checkEnclosure_Callback_2_(this, element, rect);
7528 7453
7529 @DomName('SVGSVGElement.checkIntersection') 7454 @DomName('SVGSVGElement.checkIntersection')
7530 @DocsEditable() 7455 @DocsEditable()
7531 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element ), unwrap_jso(rect)); 7456 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.instance.checkIntersection_Callback_2_(this, element, rect);
7532 7457
7533 @DomName('SVGSVGElement.createSVGAngle') 7458 @DomName('SVGSVGElement.createSVGAngle')
7534 @DocsEditable() 7459 @DocsEditable()
7535 Angle createSvgAngle() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV GAngle_Callback_0_(unwrap_jso(this))); 7460 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca llback_0_(this);
7536 7461
7537 @DomName('SVGSVGElement.createSVGLength') 7462 @DomName('SVGSVGElement.createSVGLength')
7538 @DocsEditable() 7463 @DocsEditable()
7539 Length createSvgLength() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create SVGLength_Callback_0_(unwrap_jso(this))); 7464 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength _Callback_0_(this);
7540 7465
7541 @DomName('SVGSVGElement.createSVGMatrix') 7466 @DomName('SVGSVGElement.createSVGMatrix')
7542 @DocsEditable() 7467 @DocsEditable()
7543 Matrix createSvgMatrix() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create SVGMatrix_Callback_0_(unwrap_jso(this))); 7468 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix _Callback_0_(this);
7544 7469
7545 @DomName('SVGSVGElement.createSVGNumber') 7470 @DomName('SVGSVGElement.createSVGNumber')
7546 @DocsEditable() 7471 @DocsEditable()
7547 Number createSvgNumber() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create SVGNumber_Callback_0_(unwrap_jso(this))); 7472 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber _Callback_0_(this);
7548 7473
7549 @DomName('SVGSVGElement.createSVGPoint') 7474 @DomName('SVGSVGElement.createSVGPoint')
7550 @DocsEditable() 7475 @DocsEditable()
7551 Point createSvgPoint() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV GPoint_Callback_0_(unwrap_jso(this))); 7476 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca llback_0_(this);
7552 7477
7553 @DomName('SVGSVGElement.createSVGRect') 7478 @DomName('SVGSVGElement.createSVGRect')
7554 @DocsEditable() 7479 @DocsEditable()
7555 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR ect_Callback_0_(unwrap_jso(this))); 7480 Rect createSvgRect() => _blink.BlinkSVGSVGElement.instance.createSVGRect_Callb ack_0_(this);
7556 7481
7557 @DomName('SVGSVGElement.createSVGTransform') 7482 @DomName('SVGSVGElement.createSVGTransform')
7558 @DocsEditable() 7483 @DocsEditable()
7559 Transform createSvgTransform() => wrap_jso(_blink.BlinkSVGSVGElement.instance. createSVGTransform_Callback_0_(unwrap_jso(this))); 7484 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG Transform_Callback_0_(this);
7560 7485
7561 @DomName('SVGSVGElement.createSVGTransformFromMatrix') 7486 @DomName('SVGSVGElement.createSVGTransformFromMatrix')
7562 @DocsEditable() 7487 @DocsEditable()
7563 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink SVGSVGElement.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this) , unwrap_jso(matrix))); 7488 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle ment.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
7564 7489
7565 @DomName('SVGSVGElement.deselectAll') 7490 @DomName('SVGSVGElement.deselectAll')
7566 @DocsEditable() 7491 @DocsEditable()
7567 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_ 0_(unwrap_jso(this)); 7492 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_ 0_(this);
7568 7493
7569 @DomName('SVGSVGElement.forceRedraw') 7494 @DomName('SVGSVGElement.forceRedraw')
7570 @DocsEditable() 7495 @DocsEditable()
7571 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_ 0_(unwrap_jso(this)); 7496 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_ 0_(this);
7572 7497
7573 @DomName('SVGSVGElement.getCurrentTime') 7498 @DomName('SVGSVGElement.getCurrentTime')
7574 @DocsEditable() 7499 @DocsEditable()
7575 num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Call back_0_(unwrap_jso(this)); 7500 num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Call back_0_(this);
7576 7501
7577 @DomName('SVGSVGElement.getElementById') 7502 @DomName('SVGSVGElement.getElementById')
7578 @DocsEditable() 7503 @DocsEditable()
7579 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement .instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); 7504 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.instance .getElementById_Callback_1_(this, elementId);
7580 7505
7581 @DomName('SVGSVGElement.getEnclosureList') 7506 @DomName('SVGSVGElement.getEnclosureList')
7582 @DocsEditable() 7507 @DocsEditable()
7583 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js o(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_jso(thi s), unwrap_jso(rect), unwrap_jso(referenceElement))); 7508 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => (_blink .BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(this, rect, referenceE lement));
7584 7509
7585 @DomName('SVGSVGElement.getIntersectionList') 7510 @DomName('SVGSVGElement.getIntersectionList')
7586 @DocsEditable() 7511 @DocsEditable()
7587 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap _jso(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unwrap_j so(this), unwrap_jso(rect), unwrap_jso(referenceElement))); 7512 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => (_bl ink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(this, rect, refe renceElement));
7588 7513
7589 @DomName('SVGSVGElement.pauseAnimations') 7514 @DomName('SVGSVGElement.pauseAnimations')
7590 @DocsEditable() 7515 @DocsEditable()
7591 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C allback_0_(unwrap_jso(this)); 7516 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C allback_0_(this);
7592 7517
7593 @DomName('SVGSVGElement.setCurrentTime') 7518 @DomName('SVGSVGElement.setCurrentTime')
7594 @DocsEditable() 7519 @DocsEditable()
7595 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr entTime_Callback_1_(unwrap_jso(this), seconds); 7520 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr entTime_Callback_1_(this, seconds);
7596 7521
7597 @DomName('SVGSVGElement.suspendRedraw') 7522 @DomName('SVGSVGElement.suspendRedraw')
7598 @DocsEditable() 7523 @DocsEditable()
7599 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instan ce.suspendRedraw_Callback_1_(unwrap_jso(this), maxWaitMilliseconds); 7524 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instan ce.suspendRedraw_Callback_1_(this, maxWaitMilliseconds);
7600 7525
7601 @DomName('SVGSVGElement.unpauseAnimations') 7526 @DomName('SVGSVGElement.unpauseAnimations')
7602 @DocsEditable() 7527 @DocsEditable()
7603 void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimatio ns_Callback_0_(unwrap_jso(this)); 7528 void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimatio ns_Callback_0_(this);
7604 7529
7605 @DomName('SVGSVGElement.unsuspendRedraw') 7530 @DomName('SVGSVGElement.unsuspendRedraw')
7606 @DocsEditable() 7531 @DocsEditable()
7607 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instanc e.unsuspendRedraw_Callback_1_(unwrap_jso(this), suspendHandleId); 7532 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instanc e.unsuspendRedraw_Callback_1_(this, suspendHandleId);
7608 7533
7609 @DomName('SVGSVGElement.unsuspendRedrawAll') 7534 @DomName('SVGSVGElement.unsuspendRedrawAll')
7610 @DocsEditable() 7535 @DocsEditable()
7611 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedra wAll_Callback_0_(unwrap_jso(this)); 7536 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedra wAll_Callback_0_(this);
7612 7537
7613 @DomName('SVGSVGElement.preserveAspectRatio') 7538 @DomName('SVGSVGElement.preserveAspectRatio')
7614 @DocsEditable() 7539 @DocsEditable()
7615 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GSVGElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 7540 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme nt.instance.preserveAspectRatio_Getter_(this);
7616 7541
7617 @DomName('SVGSVGElement.viewBox') 7542 @DomName('SVGSVGElement.viewBox')
7618 @DocsEditable() 7543 @DocsEditable()
7619 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo x_Getter_(unwrap_jso(this))); 7544 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.instance.viewBox_Getter_ (this);
7620 7545
7621 @DomName('SVGSVGElement.zoomAndPan') 7546 @DomName('SVGSVGElement.zoomAndPan')
7622 @DocsEditable() 7547 @DocsEditable()
7623 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un wrap_jso(this)); 7548 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(th is);
7624 7549
7625 @DomName('SVGSVGElement.zoomAndPan') 7550 @DomName('SVGSVGElement.zoomAndPan')
7626 @DocsEditable() 7551 @DocsEditable()
7627 set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Set ter_(unwrap_jso(this), value); 7552 set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Set ter_(this, value);
7628 7553
7629 } 7554 }
7630 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7555 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7631 // for details. All rights reserved. Use of this source code is governed by a 7556 // for details. All rights reserved. Use of this source code is governed by a
7632 // BSD-style license that can be found in the LICENSE file. 7557 // BSD-style license that can be found in the LICENSE file.
7633 7558
7634 // WARNING: Do not edit - generated code. 7559 // WARNING: Do not edit - generated code.
7635 7560
7636 7561
7637 @DocsEditable() 7562 @DocsEditable()
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
7695 7620
7696 /** 7621 /**
7697 * Constructor instantiated by the DOM when a custom element has been created. 7622 * Constructor instantiated by the DOM when a custom element has been created.
7698 * 7623 *
7699 * This can only be called by subclasses from their created constructor. 7624 * This can only be called by subclasses from their created constructor.
7700 */ 7625 */
7701 SymbolElement.created() : super.created(); 7626 SymbolElement.created() : super.created();
7702 7627
7703 @DomName('SVGSymbolElement.preserveAspectRatio') 7628 @DomName('SVGSymbolElement.preserveAspectRatio')
7704 @DocsEditable() 7629 @DocsEditable()
7705 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 7630 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl ement.instance.preserveAspectRatio_Getter_(this);
7706 7631
7707 @DomName('SVGSymbolElement.viewBox') 7632 @DomName('SVGSymbolElement.viewBox')
7708 @DocsEditable() 7633 @DocsEditable()
7709 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSymbolElement.instance.vie wBox_Getter_(unwrap_jso(this))); 7634 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.instance.viewBox_Gett er_(this);
7710 7635
7711 } 7636 }
7712 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7637 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7713 // for details. All rights reserved. Use of this source code is governed by a 7638 // for details. All rights reserved. Use of this source code is governed by a
7714 // BSD-style license that can be found in the LICENSE file. 7639 // BSD-style license that can be found in the LICENSE file.
7715 7640
7716 // WARNING: Do not edit - generated code. 7641 // WARNING: Do not edit - generated code.
7717 7642
7718 7643
7719 @DocsEditable() 7644 @DocsEditable()
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
7816 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 7741 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
7817 @DocsEditable() 7742 @DocsEditable()
7818 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 7743 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
7819 7744
7820 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 7745 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
7821 @DocsEditable() 7746 @DocsEditable()
7822 static const int LENGTHADJUST_UNKNOWN = 0; 7747 static const int LENGTHADJUST_UNKNOWN = 0;
7823 7748
7824 @DomName('SVGTextContentElement.lengthAdjust') 7749 @DomName('SVGTextContentElement.lengthAdjust')
7825 @DocsEditable() 7750 @DocsEditable()
7826 AnimatedEnumeration get lengthAdjust => wrap_jso(_blink.BlinkSVGTextContentEle ment.instance.lengthAdjust_Getter_(unwrap_jso(this))); 7751 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.inst ance.lengthAdjust_Getter_(this);
7827 7752
7828 @DomName('SVGTextContentElement.textLength') 7753 @DomName('SVGTextContentElement.textLength')
7829 @DocsEditable() 7754 @DocsEditable()
7830 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in stance.textLength_Getter_(unwrap_jso(this))); 7755 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.instance.te xtLength_Getter_(this);
7831 7756
7832 @DomName('SVGTextContentElement.getCharNumAtPosition') 7757 @DomName('SVGTextContentElement.getCharNumAtPosition')
7833 @DocsEditable() 7758 @DocsEditable()
7834 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); 7759 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins tance.getCharNumAtPosition_Callback_1_(this, point);
7835 7760
7836 @DomName('SVGTextContentElement.getComputedTextLength') 7761 @DomName('SVGTextContentElement.getComputedTextLength')
7837 @DocsEditable() 7762 @DocsEditable()
7838 num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getC omputedTextLength_Callback_0_(unwrap_jso(this)); 7763 num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getC omputedTextLength_Callback_0_(this);
7839 7764
7840 @DomName('SVGTextContentElement.getEndPositionOfChar') 7765 @DomName('SVGTextContentElement.getEndPositionOfChar')
7841 @DocsEditable() 7766 @DocsEditable()
7842 Point getEndPositionOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextContent Element.instance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), charnum)); 7767 Point getEndPositionOfChar(int charnum) => _blink.BlinkSVGTextContentElement.i nstance.getEndPositionOfChar_Callback_1_(this, charnum);
7843 7768
7844 @DomName('SVGTextContentElement.getExtentOfChar') 7769 @DomName('SVGTextContentElement.getExtentOfChar')
7845 @DocsEditable() 7770 @DocsEditable()
7846 Rect getExtentOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextContentElemen t.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), charnum)); 7771 Rect getExtentOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instanc e.getExtentOfChar_Callback_1_(this, charnum);
7847 7772
7848 @DomName('SVGTextContentElement.getNumberOfChars') 7773 @DomName('SVGTextContentElement.getNumberOfChars')
7849 @DocsEditable() 7774 @DocsEditable()
7850 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber OfChars_Callback_0_(unwrap_jso(this)); 7775 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber OfChars_Callback_0_(this);
7851 7776
7852 @DomName('SVGTextContentElement.getRotationOfChar') 7777 @DomName('SVGTextContentElement.getRotationOfChar')
7853 @DocsEditable() 7778 @DocsEditable()
7854 num getRotationOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instan ce.getRotationOfChar_Callback_1_(unwrap_jso(this), charnum); 7779 num getRotationOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instan ce.getRotationOfChar_Callback_1_(this, charnum);
7855 7780
7856 @DomName('SVGTextContentElement.getStartPositionOfChar') 7781 @DomName('SVGTextContentElement.getStartPositionOfChar')
7857 @DocsEditable() 7782 @DocsEditable()
7858 Point getStartPositionOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextConte ntElement.instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), charnum) ); 7783 Point getStartPositionOfChar(int charnum) => _blink.BlinkSVGTextContentElement .instance.getStartPositionOfChar_Callback_1_(this, charnum);
7859 7784
7860 @DomName('SVGTextContentElement.getSubStringLength') 7785 @DomName('SVGTextContentElement.getSubStringLength')
7861 @DocsEditable() 7786 @DocsEditable()
7862 num getSubStringLength(int charnum, int nchars) => _blink.BlinkSVGTextContentE lement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), charnum, nchars ); 7787 num getSubStringLength(int charnum, int nchars) => _blink.BlinkSVGTextContentE lement.instance.getSubStringLength_Callback_2_(this, charnum, nchars);
7863 7788
7864 @DomName('SVGTextContentElement.selectSubString') 7789 @DomName('SVGTextContentElement.selectSubString')
7865 @DocsEditable() 7790 @DocsEditable()
7866 void selectSubString(int charnum, int nchars) => _blink.BlinkSVGTextContentEle ment.instance.selectSubString_Callback_2_(unwrap_jso(this), charnum, nchars); 7791 void selectSubString(int charnum, int nchars) => _blink.BlinkSVGTextContentEle ment.instance.selectSubString_Callback_2_(this, charnum, nchars);
7867 7792
7868 } 7793 }
7869 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7794 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7870 // for details. All rights reserved. Use of this source code is governed by a 7795 // for details. All rights reserved. Use of this source code is governed by a
7871 // BSD-style license that can be found in the LICENSE file. 7796 // BSD-style license that can be found in the LICENSE file.
7872 7797
7873 // WARNING: Do not edit - generated code. 7798 // WARNING: Do not edit - generated code.
7874 7799
7875 7800
7876 @DocsEditable() 7801 @DocsEditable()
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
7954 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT') 7879 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT')
7955 @DocsEditable() 7880 @DocsEditable()
7956 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 7881 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
7957 7882
7958 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN') 7883 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN')
7959 @DocsEditable() 7884 @DocsEditable()
7960 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 7885 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
7961 7886
7962 @DomName('SVGTextPathElement.method') 7887 @DomName('SVGTextPathElement.method')
7963 @DocsEditable() 7888 @DocsEditable()
7964 AnimatedEnumeration get method => wrap_jso(_blink.BlinkSVGTextPathElement.inst ance.method_Getter_(unwrap_jso(this))); 7889 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.instance.meth od_Getter_(this);
7965 7890
7966 @DomName('SVGTextPathElement.spacing') 7891 @DomName('SVGTextPathElement.spacing')
7967 @DocsEditable() 7892 @DocsEditable()
7968 AnimatedEnumeration get spacing => wrap_jso(_blink.BlinkSVGTextPathElement.ins tance.spacing_Getter_(unwrap_jso(this))); 7893 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.instance.spa cing_Getter_(this);
7969 7894
7970 @DomName('SVGTextPathElement.startOffset') 7895 @DomName('SVGTextPathElement.startOffset')
7971 @DocsEditable() 7896 @DocsEditable()
7972 AnimatedLength get startOffset => wrap_jso(_blink.BlinkSVGTextPathElement.inst ance.startOffset_Getter_(unwrap_jso(this))); 7897 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.instance.star tOffset_Getter_(this);
7973 7898
7974 @DomName('SVGTextPathElement.href') 7899 @DomName('SVGTextPathElement.href')
7975 @DocsEditable() 7900 @DocsEditable()
7976 AnimatedString get href => wrap_jso(_blink.BlinkSVGTextPathElement.instance.hr ef_Getter_(unwrap_jso(this))); 7901 AnimatedString get href => _blink.BlinkSVGTextPathElement.instance.href_Getter _(this);
7977 7902
7978 } 7903 }
7979 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7980 // for details. All rights reserved. Use of this source code is governed by a 7905 // for details. All rights reserved. Use of this source code is governed by a
7981 // BSD-style license that can be found in the LICENSE file. 7906 // BSD-style license that can be found in the LICENSE file.
7982 7907
7983 // WARNING: Do not edit - generated code. 7908 // WARNING: Do not edit - generated code.
7984 7909
7985 7910
7986 @DocsEditable() 7911 @DocsEditable()
(...skipping 16 matching lines...) Expand all
8003 7928
8004 /** 7929 /**
8005 * Constructor instantiated by the DOM when a custom element has been created. 7930 * Constructor instantiated by the DOM when a custom element has been created.
8006 * 7931 *
8007 * This can only be called by subclasses from their created constructor. 7932 * This can only be called by subclasses from their created constructor.
8008 */ 7933 */
8009 TextPositioningElement.created() : super.created(); 7934 TextPositioningElement.created() : super.created();
8010 7935
8011 @DomName('SVGTextPositioningElement.dx') 7936 @DomName('SVGTextPositioningElement.dx')
8012 @DocsEditable() 7937 @DocsEditable()
8013 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in stance.dx_Getter_(unwrap_jso(this))); 7938 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.instance.dx _Getter_(this);
8014 7939
8015 @DomName('SVGTextPositioningElement.dy') 7940 @DomName('SVGTextPositioningElement.dy')
8016 @DocsEditable() 7941 @DocsEditable()
8017 AnimatedLengthList get dy => wrap_jso(_blink.BlinkSVGTextPositioningElement.in stance.dy_Getter_(unwrap_jso(this))); 7942 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.instance.dy _Getter_(this);
8018 7943
8019 @DomName('SVGTextPositioningElement.rotate') 7944 @DomName('SVGTextPositioningElement.rotate')
8020 @DocsEditable() 7945 @DocsEditable()
8021 AnimatedNumberList get rotate => wrap_jso(_blink.BlinkSVGTextPositioningElemen t.instance.rotate_Getter_(unwrap_jso(this))); 7946 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.instanc e.rotate_Getter_(this);
8022 7947
8023 @DomName('SVGTextPositioningElement.x') 7948 @DomName('SVGTextPositioningElement.x')
8024 @DocsEditable() 7949 @DocsEditable()
8025 AnimatedLengthList get x => wrap_jso(_blink.BlinkSVGTextPositioningElement.ins tance.x_Getter_(unwrap_jso(this))); 7950 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.instance.x_G etter_(this);
8026 7951
8027 @DomName('SVGTextPositioningElement.y') 7952 @DomName('SVGTextPositioningElement.y')
8028 @DocsEditable() 7953 @DocsEditable()
8029 AnimatedLengthList get y => wrap_jso(_blink.BlinkSVGTextPositioningElement.ins tance.y_Getter_(unwrap_jso(this))); 7954 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.instance.y_G etter_(this);
8030 7955
8031 } 7956 }
8032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7957 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8033 // for details. All rights reserved. Use of this source code is governed by a 7958 // for details. All rights reserved. Use of this source code is governed by a
8034 // BSD-style license that can be found in the LICENSE file. 7959 // BSD-style license that can be found in the LICENSE file.
8035 7960
8036 // WARNING: Do not edit - generated code. 7961 // WARNING: Do not edit - generated code.
8037 7962
8038 7963
8039 @DocsEditable() 7964 @DocsEditable()
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
8085 return new Transform._internalWrap(); 8010 return new Transform._internalWrap();
8086 } 8011 }
8087 8012
8088 factory Transform._internalWrap() { 8013 factory Transform._internalWrap() {
8089 return new Transform.internal_(); 8014 return new Transform.internal_();
8090 } 8015 }
8091 8016
8092 @Deprecated("Internal Use Only") 8017 @Deprecated("Internal Use Only")
8093 Transform.internal_() { } 8018 Transform.internal_() { }
8094 8019
8095 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8096 int get hashCode => unwrap_jso(this).hashCode;
8097
8098 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') 8020 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
8099 @DocsEditable() 8021 @DocsEditable()
8100 static const int SVG_TRANSFORM_MATRIX = 1; 8022 static const int SVG_TRANSFORM_MATRIX = 1;
8101 8023
8102 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') 8024 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE')
8103 @DocsEditable() 8025 @DocsEditable()
8104 static const int SVG_TRANSFORM_ROTATE = 4; 8026 static const int SVG_TRANSFORM_ROTATE = 4;
8105 8027
8106 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') 8028 @DomName('SVGTransform.SVG_TRANSFORM_SCALE')
8107 @DocsEditable() 8029 @DocsEditable()
(...skipping 10 matching lines...) Expand all
8118 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') 8040 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE')
8119 @DocsEditable() 8041 @DocsEditable()
8120 static const int SVG_TRANSFORM_TRANSLATE = 2; 8042 static const int SVG_TRANSFORM_TRANSLATE = 2;
8121 8043
8122 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') 8044 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN')
8123 @DocsEditable() 8045 @DocsEditable()
8124 static const int SVG_TRANSFORM_UNKNOWN = 0; 8046 static const int SVG_TRANSFORM_UNKNOWN = 0;
8125 8047
8126 @DomName('SVGTransform.angle') 8048 @DomName('SVGTransform.angle')
8127 @DocsEditable() 8049 @DocsEditable()
8128 num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso(th is)); 8050 num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(this);
8129 8051
8130 @DomName('SVGTransform.matrix') 8052 @DomName('SVGTransform.matrix')
8131 @DocsEditable() 8053 @DocsEditable()
8132 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_ (unwrap_jso(this))); 8054 Matrix get matrix => _blink.BlinkSVGTransform.instance.matrix_Getter_(this);
8133 8055
8134 @DomName('SVGTransform.type') 8056 @DomName('SVGTransform.type')
8135 @DocsEditable() 8057 @DocsEditable()
8136 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this )); 8058 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(this);
8137 8059
8138 @DomName('SVGTransform.setMatrix') 8060 @DomName('SVGTransform.setMatrix')
8139 @DocsEditable() 8061 @DocsEditable()
8140 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_C allback_1_(unwrap_jso(this), unwrap_jso(matrix)); 8062 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_C allback_1_(this, matrix);
8141 8063
8142 @DomName('SVGTransform.setRotate') 8064 @DomName('SVGTransform.setRotate')
8143 @DocsEditable() 8065 @DocsEditable()
8144 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance .setRotate_Callback_3_(unwrap_jso(this), angle, cx, cy); 8066 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance .setRotate_Callback_3_(this, angle, cx, cy);
8145 8067
8146 @DomName('SVGTransform.setScale') 8068 @DomName('SVGTransform.setScale')
8147 @DocsEditable() 8069 @DocsEditable()
8148 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Ca llback_2_(unwrap_jso(this), sx, sy); 8070 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Ca llback_2_(this, sx, sy);
8149 8071
8150 @DomName('SVGTransform.setSkewX') 8072 @DomName('SVGTransform.setSkewX')
8151 @DocsEditable() 8073 @DocsEditable()
8152 void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callbac k_1_(unwrap_jso(this), angle); 8074 void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callbac k_1_(this, angle);
8153 8075
8154 @DomName('SVGTransform.setSkewY') 8076 @DomName('SVGTransform.setSkewY')
8155 @DocsEditable() 8077 @DocsEditable()
8156 void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callbac k_1_(unwrap_jso(this), angle); 8078 void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callbac k_1_(this, angle);
8157 8079
8158 @DomName('SVGTransform.setTranslate') 8080 @DomName('SVGTransform.setTranslate')
8159 @DocsEditable() 8081 @DocsEditable()
8160 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTran slate_Callback_2_(unwrap_jso(this), tx, ty); 8082 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTran slate_Callback_2_(this, tx, ty);
8161 8083
8162 } 8084 }
8163 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8085 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8164 // for details. All rights reserved. Use of this source code is governed by a 8086 // for details. All rights reserved. Use of this source code is governed by a
8165 // BSD-style license that can be found in the LICENSE file. 8087 // BSD-style license that can be found in the LICENSE file.
8166 8088
8167 // WARNING: Do not edit - generated code. 8089 // WARNING: Do not edit - generated code.
8168 8090
8169 8091
8170 @DocsEditable() 8092 @DocsEditable()
8171 @DomName('SVGTransformList') 8093 @DomName('SVGTransformList')
8172 @Unstable() 8094 @Unstable()
8173 class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab leListMixin<Transform> implements List<Transform> { 8095 class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab leListMixin<Transform> implements List<Transform> {
8174 // To suppress missing implicit constructor warnings. 8096 // To suppress missing implicit constructor warnings.
8175 factory TransformList._() { throw new UnsupportedError("Not supported"); } 8097 factory TransformList._() { throw new UnsupportedError("Not supported"); }
8176 8098
8177 @Deprecated("Internal Use Only") 8099 @Deprecated("Internal Use Only")
8178 static TransformList internalCreateTransformList() { 8100 static TransformList internalCreateTransformList() {
8179 return new TransformList._internalWrap(); 8101 return new TransformList._internalWrap();
8180 } 8102 }
8181 8103
8182 factory TransformList._internalWrap() { 8104 factory TransformList._internalWrap() {
8183 return new TransformList.internal_(); 8105 return new TransformList.internal_();
8184 } 8106 }
8185 8107
8186 @Deprecated("Internal Use Only") 8108 @Deprecated("Internal Use Only")
8187 TransformList.internal_() { } 8109 TransformList.internal_() { }
8188 8110
8189 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8190 int get hashCode => unwrap_jso(this).hashCode;
8191
8192 @DomName('SVGTransformList.length') 8111 @DomName('SVGTransformList.length')
8193 @DocsEditable() 8112 @DocsEditable()
8194 @Experimental() // untriaged 8113 @Experimental() // untriaged
8195 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_ jso(this)); 8114 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(this);
8196 8115
8197 @DomName('SVGTransformList.numberOfItems') 8116 @DomName('SVGTransformList.numberOfItems')
8198 @DocsEditable() 8117 @DocsEditable()
8199 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G etter_(unwrap_jso(this)); 8118 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G etter_(this);
8200 8119
8201 Transform operator[](int index) { 8120 Transform operator[](int index) {
8202 if (index < 0 || index >= length) 8121 if (index < 0 || index >= length)
8203 throw new RangeError.index(index, this); 8122 throw new RangeError.index(index, this);
8204 return getItem(index); 8123 return getItem(index);
8205 } 8124 }
8206 8125
8207 void operator[]=(int index, Transform value) { 8126 void operator[]=(int index, Transform value) {
8208 throw new UnsupportedError("Cannot assign element of immutable List."); 8127 throw new UnsupportedError("Cannot assign element of immutable List.");
8209 } 8128 }
(...skipping 28 matching lines...) Expand all
8238 if (len == 0) throw new StateError("No elements"); 8157 if (len == 0) throw new StateError("No elements");
8239 throw new StateError("More than one element"); 8158 throw new StateError("More than one element");
8240 } 8159 }
8241 8160
8242 Transform elementAt(int index) => this[index]; 8161 Transform elementAt(int index) => this[index];
8243 // -- end List<Transform> mixins. 8162 // -- end List<Transform> mixins.
8244 8163
8245 @DomName('SVGTransformList.__setter__') 8164 @DomName('SVGTransformList.__setter__')
8246 @DocsEditable() 8165 @DocsEditable()
8247 @Experimental() // untriaged 8166 @Experimental() // untriaged
8248 void __setter__(int index, Transform newItem) => _blink.BlinkSVGTransformList. instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem)); 8167 void __setter__(int index, Transform newItem) => _blink.BlinkSVGTransformList. instance.$__setter___Callback_2_(this, index, newItem);
8249 8168
8250 @DomName('SVGTransformList.appendItem') 8169 @DomName('SVGTransformList.appendItem')
8251 @DocsEditable() 8170 @DocsEditable()
8252 Transform appendItem(Transform newItem) => wrap_jso(_blink.BlinkSVGTransformLi st.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 8171 Transform appendItem(Transform newItem) => _blink.BlinkSVGTransformList.instan ce.appendItem_Callback_1_(this, newItem);
8253 8172
8254 @DomName('SVGTransformList.clear') 8173 @DomName('SVGTransformList.clear')
8255 @DocsEditable() 8174 @DocsEditable()
8256 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap _jso(this)); 8175 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(this);
8257 8176
8258 @DomName('SVGTransformList.consolidate') 8177 @DomName('SVGTransformList.consolidate')
8259 @DocsEditable() 8178 @DocsEditable()
8260 Transform consolidate() => wrap_jso(_blink.BlinkSVGTransformList.instance.cons olidate_Callback_0_(unwrap_jso(this))); 8179 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C allback_0_(this);
8261 8180
8262 @DomName('SVGTransformList.createSVGTransformFromMatrix') 8181 @DomName('SVGTransformList.createSVGTransformFromMatrix')
8263 @DocsEditable() 8182 @DocsEditable()
8264 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink SVGTransformList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(th is), unwrap_jso(matrix))); 8183 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf ormList.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
8265 8184
8266 @DomName('SVGTransformList.getItem') 8185 @DomName('SVGTransformList.getItem')
8267 @DocsEditable() 8186 @DocsEditable()
8268 Transform getItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.instance .getItem_Callback_1_(unwrap_jso(this), index)); 8187 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_ Callback_1_(this, index);
8269 8188
8270 @DomName('SVGTransformList.initialize') 8189 @DomName('SVGTransformList.initialize')
8271 @DocsEditable() 8190 @DocsEditable()
8272 Transform initialize(Transform newItem) => wrap_jso(_blink.BlinkSVGTransformLi st.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); 8191 Transform initialize(Transform newItem) => _blink.BlinkSVGTransformList.instan ce.initialize_Callback_1_(this, newItem);
8273 8192
8274 @DomName('SVGTransformList.insertItemBefore') 8193 @DomName('SVGTransformList.insertItemBefore')
8275 @DocsEditable() 8194 @DocsEditable()
8276 Transform insertItemBefore(Transform newItem, int index) => wrap_jso(_blink.Bl inkSVGTransformList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwr ap_jso(newItem), index)); 8195 Transform insertItemBefore(Transform newItem, int index) => _blink.BlinkSVGTra nsformList.instance.insertItemBefore_Callback_2_(this, newItem, index);
8277 8196
8278 @DomName('SVGTransformList.removeItem') 8197 @DomName('SVGTransformList.removeItem')
8279 @DocsEditable() 8198 @DocsEditable()
8280 Transform removeItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.insta nce.removeItem_Callback_1_(unwrap_jso(this), index)); 8199 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov eItem_Callback_1_(this, index);
8281 8200
8282 @DomName('SVGTransformList.replaceItem') 8201 @DomName('SVGTransformList.replaceItem')
8283 @DocsEditable() 8202 @DocsEditable()
8284 Transform replaceItem(Transform newItem, int index) => wrap_jso(_blink.BlinkSV GTransformList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(new Item), index)); 8203 Transform replaceItem(Transform newItem, int index) => _blink.BlinkSVGTransfor mList.instance.replaceItem_Callback_2_(this, newItem, index);
8285 8204
8286 } 8205 }
8287 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8206 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8288 // for details. All rights reserved. Use of this source code is governed by a 8207 // for details. All rights reserved. Use of this source code is governed by a
8289 // BSD-style license that can be found in the LICENSE file. 8208 // BSD-style license that can be found in the LICENSE file.
8290 8209
8291 // WARNING: Do not edit - generated code. 8210 // WARNING: Do not edit - generated code.
8292 8211
8293 8212
8294 @DocsEditable() 8213 @DocsEditable()
8295 @DomName('SVGUnitTypes') 8214 @DomName('SVGUnitTypes')
8296 @Unstable() 8215 @Unstable()
8297 class UnitTypes extends DartHtmlDomObject { 8216 class UnitTypes extends DartHtmlDomObject {
8298 // To suppress missing implicit constructor warnings. 8217 // To suppress missing implicit constructor warnings.
8299 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } 8218 factory UnitTypes._() { throw new UnsupportedError("Not supported"); }
8300 8219
8301 @Deprecated("Internal Use Only") 8220 @Deprecated("Internal Use Only")
8302 static UnitTypes internalCreateUnitTypes() { 8221 static UnitTypes internalCreateUnitTypes() {
8303 return new UnitTypes._internalWrap(); 8222 return new UnitTypes._internalWrap();
8304 } 8223 }
8305 8224
8306 factory UnitTypes._internalWrap() { 8225 factory UnitTypes._internalWrap() {
8307 return new UnitTypes.internal_(); 8226 return new UnitTypes.internal_();
8308 } 8227 }
8309 8228
8310 @Deprecated("Internal Use Only") 8229 @Deprecated("Internal Use Only")
8311 UnitTypes.internal_() { } 8230 UnitTypes.internal_() { }
8312 8231
8313 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8314 int get hashCode => unwrap_jso(this).hashCode;
8315
8316 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') 8232 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
8317 @DocsEditable() 8233 @DocsEditable()
8318 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 8234 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
8319 8235
8320 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') 8236 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
8321 @DocsEditable() 8237 @DocsEditable()
8322 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 8238 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
8323 8239
8324 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') 8240 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE')
8325 @DocsEditable() 8241 @DocsEditable()
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
8376 8292
8377 /** 8293 /**
8378 * Constructor instantiated by the DOM when a custom element has been created. 8294 * Constructor instantiated by the DOM when a custom element has been created.
8379 * 8295 *
8380 * This can only be called by subclasses from their created constructor. 8296 * This can only be called by subclasses from their created constructor.
8381 */ 8297 */
8382 UseElement.created() : super.created(); 8298 UseElement.created() : super.created();
8383 8299
8384 @DomName('SVGUseElement.height') 8300 @DomName('SVGUseElement.height')
8385 @DocsEditable() 8301 @DocsEditable()
8386 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh t_Getter_(unwrap_jso(this))); 8302 AnimatedLength get height => _blink.BlinkSVGUseElement.instance.height_Getter_ (this);
8387 8303
8388 @DomName('SVGUseElement.width') 8304 @DomName('SVGUseElement.width')
8389 @DocsEditable() 8305 @DocsEditable()
8390 AnimatedLength get width => wrap_jso(_blink.BlinkSVGUseElement.instance.width_ Getter_(unwrap_jso(this))); 8306 AnimatedLength get width => _blink.BlinkSVGUseElement.instance.width_Getter_(t his);
8391 8307
8392 @DomName('SVGUseElement.x') 8308 @DomName('SVGUseElement.x')
8393 @DocsEditable() 8309 @DocsEditable()
8394 AnimatedLength get x => wrap_jso(_blink.BlinkSVGUseElement.instance.x_Getter_( unwrap_jso(this))); 8310 AnimatedLength get x => _blink.BlinkSVGUseElement.instance.x_Getter_(this);
8395 8311
8396 @DomName('SVGUseElement.y') 8312 @DomName('SVGUseElement.y')
8397 @DocsEditable() 8313 @DocsEditable()
8398 AnimatedLength get y => wrap_jso(_blink.BlinkSVGUseElement.instance.y_Getter_( unwrap_jso(this))); 8314 AnimatedLength get y => _blink.BlinkSVGUseElement.instance.y_Getter_(this);
8399 8315
8400 @DomName('SVGUseElement.href') 8316 @DomName('SVGUseElement.href')
8401 @DocsEditable() 8317 @DocsEditable()
8402 AnimatedString get href => wrap_jso(_blink.BlinkSVGUseElement.instance.href_Ge tter_(unwrap_jso(this))); 8318 AnimatedString get href => _blink.BlinkSVGUseElement.instance.href_Getter_(thi s);
8403 8319
8404 } 8320 }
8405 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8321 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8406 // for details. All rights reserved. Use of this source code is governed by a 8322 // for details. All rights reserved. Use of this source code is governed by a
8407 // BSD-style license that can be found in the LICENSE file. 8323 // BSD-style license that can be found in the LICENSE file.
8408 8324
8409 // WARNING: Do not edit - generated code. 8325 // WARNING: Do not edit - generated code.
8410 8326
8411 8327
8412 @DocsEditable() 8328 @DocsEditable()
(...skipping 20 matching lines...) Expand all
8433 8349
8434 /** 8350 /**
8435 * Constructor instantiated by the DOM when a custom element has been created. 8351 * Constructor instantiated by the DOM when a custom element has been created.
8436 * 8352 *
8437 * This can only be called by subclasses from their created constructor. 8353 * This can only be called by subclasses from their created constructor.
8438 */ 8354 */
8439 ViewElement.created() : super.created(); 8355 ViewElement.created() : super.created();
8440 8356
8441 @DomName('SVGViewElement.viewTarget') 8357 @DomName('SVGViewElement.viewTarget')
8442 @DocsEditable() 8358 @DocsEditable()
8443 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view Target_Getter_(unwrap_jso(this))); 8359 StringList get viewTarget => _blink.BlinkSVGViewElement.instance.viewTarget_Ge tter_(this);
8444 8360
8445 @DomName('SVGViewElement.preserveAspectRatio') 8361 @DomName('SVGViewElement.preserveAspectRatio')
8446 @DocsEditable() 8362 @DocsEditable()
8447 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 8363 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem ent.instance.preserveAspectRatio_Getter_(this);
8448 8364
8449 @DomName('SVGViewElement.viewBox') 8365 @DomName('SVGViewElement.viewBox')
8450 @DocsEditable() 8366 @DocsEditable()
8451 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB ox_Getter_(unwrap_jso(this))); 8367 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.instance.viewBox_Getter _(this);
8452 8368
8453 @DomName('SVGViewElement.zoomAndPan') 8369 @DomName('SVGViewElement.zoomAndPan')
8454 @DocsEditable() 8370 @DocsEditable()
8455 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u nwrap_jso(this)); 8371 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(t his);
8456 8372
8457 @DomName('SVGViewElement.zoomAndPan') 8373 @DomName('SVGViewElement.zoomAndPan')
8458 @DocsEditable() 8374 @DocsEditable()
8459 set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Se tter_(unwrap_jso(this), value); 8375 set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Se tter_(this, value);
8460 8376
8461 } 8377 }
8462 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8463 // for details. All rights reserved. Use of this source code is governed by a 8379 // for details. All rights reserved. Use of this source code is governed by a
8464 // BSD-style license that can be found in the LICENSE file. 8380 // BSD-style license that can be found in the LICENSE file.
8465 8381
8466 // WARNING: Do not edit - generated code. 8382 // WARNING: Do not edit - generated code.
8467 8383
8468 8384
8469 @DocsEditable() 8385 @DocsEditable()
8470 @DomName('SVGViewSpec') 8386 @DomName('SVGViewSpec')
8471 @Unstable() 8387 @Unstable()
8472 class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan { 8388 class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan {
8473 // To suppress missing implicit constructor warnings. 8389 // To suppress missing implicit constructor warnings.
8474 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } 8390 factory ViewSpec._() { throw new UnsupportedError("Not supported"); }
8475 8391
8476 @Deprecated("Internal Use Only") 8392 @Deprecated("Internal Use Only")
8477 static ViewSpec internalCreateViewSpec() { 8393 static ViewSpec internalCreateViewSpec() {
8478 return new ViewSpec._internalWrap(); 8394 return new ViewSpec._internalWrap();
8479 } 8395 }
8480 8396
8481 factory ViewSpec._internalWrap() { 8397 factory ViewSpec._internalWrap() {
8482 return new ViewSpec.internal_(); 8398 return new ViewSpec.internal_();
8483 } 8399 }
8484 8400
8485 @Deprecated("Internal Use Only") 8401 @Deprecated("Internal Use Only")
8486 ViewSpec.internal_() { } 8402 ViewSpec.internal_() { }
8487 8403
8488 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8489 int get hashCode => unwrap_jso(this).hashCode;
8490
8491 @DomName('SVGViewSpec.preserveAspectRatioString') 8404 @DomName('SVGViewSpec.preserveAspectRatioString')
8492 @DocsEditable() 8405 @DocsEditable()
8493 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese rveAspectRatioString_Getter_(unwrap_jso(this)); 8406 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese rveAspectRatioString_Getter_(this);
8494 8407
8495 @DomName('SVGViewSpec.transform') 8408 @DomName('SVGViewSpec.transform')
8496 @DocsEditable() 8409 @DocsEditable()
8497 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans form_Getter_(unwrap_jso(this))); 8410 TransformList get transform => _blink.BlinkSVGViewSpec.instance.transform_Gett er_(this);
8498 8411
8499 @DomName('SVGViewSpec.transformString') 8412 @DomName('SVGViewSpec.transformString')
8500 @DocsEditable() 8413 @DocsEditable()
8501 String get transformString => _blink.BlinkSVGViewSpec.instance.transformString _Getter_(unwrap_jso(this)); 8414 String get transformString => _blink.BlinkSVGViewSpec.instance.transformString _Getter_(this);
8502 8415
8503 @DomName('SVGViewSpec.viewBoxString') 8416 @DomName('SVGViewSpec.viewBoxString')
8504 @DocsEditable() 8417 @DocsEditable()
8505 String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Get ter_(unwrap_jso(this)); 8418 String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Get ter_(this);
8506 8419
8507 @DomName('SVGViewSpec.viewTarget') 8420 @DomName('SVGViewSpec.viewTarget')
8508 @DocsEditable() 8421 @DocsEditable()
8509 SvgElement get viewTarget => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewTar get_Getter_(unwrap_jso(this))); 8422 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.instance.viewTarget_Gette r_(this);
8510 8423
8511 @DomName('SVGViewSpec.viewTargetString') 8424 @DomName('SVGViewSpec.viewTargetString')
8512 @DocsEditable() 8425 @DocsEditable()
8513 String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetStri ng_Getter_(unwrap_jso(this)); 8426 String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetStri ng_Getter_(this);
8514 8427
8515 @DomName('SVGViewSpec.preserveAspectRatio') 8428 @DomName('SVGViewSpec.preserveAspectRatio')
8516 @DocsEditable() 8429 @DocsEditable()
8517 @Experimental() // nonstandard 8430 @Experimental() // nonstandard
8518 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV GViewSpec.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); 8431 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec .instance.preserveAspectRatio_Getter_(this);
8519 8432
8520 @DomName('SVGViewSpec.viewBox') 8433 @DomName('SVGViewSpec.viewBox')
8521 @DocsEditable() 8434 @DocsEditable()
8522 @Experimental() // nonstandard 8435 @Experimental() // nonstandard
8523 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_ Getter_(unwrap_jso(this))); 8436 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.instance.viewBox_Getter_(t his);
8524 8437
8525 @DomName('SVGViewSpec.zoomAndPan') 8438 @DomName('SVGViewSpec.zoomAndPan')
8526 @DocsEditable() 8439 @DocsEditable()
8527 @Experimental() // nonstandard 8440 @Experimental() // nonstandard
8528 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr ap_jso(this)); 8441 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(this );
8529 8442
8530 @DomName('SVGViewSpec.zoomAndPan') 8443 @DomName('SVGViewSpec.zoomAndPan')
8531 @DocsEditable() 8444 @DocsEditable()
8532 @Experimental() // nonstandard 8445 @Experimental() // nonstandard
8533 set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Sette r_(unwrap_jso(this), value); 8446 set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Sette r_(this, value);
8534 8447
8535 } 8448 }
8536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8449 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8537 // for details. All rights reserved. Use of this source code is governed by a 8450 // for details. All rights reserved. Use of this source code is governed by a
8538 // BSD-style license that can be found in the LICENSE file. 8451 // BSD-style license that can be found in the LICENSE file.
8539 8452
8540 // WARNING: Do not edit - generated code. 8453 // WARNING: Do not edit - generated code.
8541 8454
8542 8455
8543 @DocsEditable() 8456 @DocsEditable()
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
8589 } 8502 }
8590 8503
8591 external factory ZoomEvent._internalWrap(); 8504 external factory ZoomEvent._internalWrap();
8592 8505
8593 @Deprecated("Internal Use Only") 8506 @Deprecated("Internal Use Only")
8594 ZoomEvent.internal_() : super.internal_(); 8507 ZoomEvent.internal_() : super.internal_();
8595 8508
8596 8509
8597 @DomName('SVGZoomEvent.newScale') 8510 @DomName('SVGZoomEvent.newScale')
8598 @DocsEditable() 8511 @DocsEditable()
8599 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_ jso(this)); 8512 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(this);
8600 8513
8601 @DomName('SVGZoomEvent.newTranslate') 8514 @DomName('SVGZoomEvent.newTranslate')
8602 @DocsEditable() 8515 @DocsEditable()
8603 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl ate_Getter_(unwrap_jso(this))); 8516 Point get newTranslate => _blink.BlinkSVGZoomEvent.instance.newTranslate_Gette r_(this);
8604 8517
8605 @DomName('SVGZoomEvent.previousScale') 8518 @DomName('SVGZoomEvent.previousScale')
8606 @DocsEditable() 8519 @DocsEditable()
8607 num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Gette r_(unwrap_jso(this)); 8520 num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Gette r_(this);
8608 8521
8609 @DomName('SVGZoomEvent.previousTranslate') 8522 @DomName('SVGZoomEvent.previousTranslate')
8610 @DocsEditable() 8523 @DocsEditable()
8611 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev iousTranslate_Getter_(unwrap_jso(this))); 8524 Point get previousTranslate => _blink.BlinkSVGZoomEvent.instance.previousTrans late_Getter_(this);
8612 8525
8613 @DomName('SVGZoomEvent.zoomRectScreen') 8526 @DomName('SVGZoomEvent.zoomRectScreen')
8614 @DocsEditable() 8527 @DocsEditable()
8615 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect Screen_Getter_(unwrap_jso(this))); 8528 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.instance.zoomRectScreen_Ge tter_(this);
8616 8529
8617 } 8530 }
8618 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8531 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8619 // for details. All rights reserved. Use of this source code is governed by a 8532 // for details. All rights reserved. Use of this source code is governed by a
8620 // BSD-style license that can be found in the LICENSE file. 8533 // BSD-style license that can be found in the LICENSE file.
8621 8534
8622 // WARNING: Do not edit - generated code. 8535 // WARNING: Do not edit - generated code.
8623 8536
8624 8537
8625 @DocsEditable() 8538 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
8658 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 8571 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
8659 @DocsEditable() 8572 @DocsEditable()
8660 static const int SVG_SPREADMETHOD_REPEAT = 3; 8573 static const int SVG_SPREADMETHOD_REPEAT = 3;
8661 8574
8662 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN') 8575 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN')
8663 @DocsEditable() 8576 @DocsEditable()
8664 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 8577 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
8665 8578
8666 @DomName('SVGGradientElement.gradientTransform') 8579 @DomName('SVGGradientElement.gradientTransform')
8667 @DocsEditable() 8580 @DocsEditable()
8668 AnimatedTransformList get gradientTransform => wrap_jso(_blink.BlinkSVGGradien tElement.instance.gradientTransform_Getter_(unwrap_jso(this))); 8581 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement. instance.gradientTransform_Getter_(this);
8669 8582
8670 @DomName('SVGGradientElement.gradientUnits') 8583 @DomName('SVGGradientElement.gradientUnits')
8671 @DocsEditable() 8584 @DocsEditable()
8672 AnimatedEnumeration get gradientUnits => wrap_jso(_blink.BlinkSVGGradientEleme nt.instance.gradientUnits_Getter_(unwrap_jso(this))); 8585 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.instan ce.gradientUnits_Getter_(this);
8673 8586
8674 @DomName('SVGGradientElement.spreadMethod') 8587 @DomName('SVGGradientElement.spreadMethod')
8675 @DocsEditable() 8588 @DocsEditable()
8676 AnimatedEnumeration get spreadMethod => wrap_jso(_blink.BlinkSVGGradientElemen t.instance.spreadMethod_Getter_(unwrap_jso(this))); 8589 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.instanc e.spreadMethod_Getter_(this);
8677 8590
8678 @DomName('SVGGradientElement.href') 8591 @DomName('SVGGradientElement.href')
8679 @DocsEditable() 8592 @DocsEditable()
8680 AnimatedString get href => wrap_jso(_blink.BlinkSVGGradientElement.instance.hr ef_Getter_(unwrap_jso(this))); 8593 AnimatedString get href => _blink.BlinkSVGGradientElement.instance.href_Getter _(this);
8681 8594
8682 } 8595 }
8683 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8684 // for details. All rights reserved. Use of this source code is governed by a 8597 // for details. All rights reserved. Use of this source code is governed by a
8685 // BSD-style license that can be found in the LICENSE file. 8598 // BSD-style license that can be found in the LICENSE file.
8686 8599
8687 // WARNING: Do not edit - generated code. 8600 // WARNING: Do not edit - generated code.
8688 8601
8689 8602
8690 @DocsEditable() 8603 @DocsEditable()
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
8744 * Constructor instantiated by the DOM when a custom element has been created. 8657 * Constructor instantiated by the DOM when a custom element has been created.
8745 * 8658 *
8746 * This can only be called by subclasses from their created constructor. 8659 * This can only be called by subclasses from their created constructor.
8747 */ 8660 */
8748 _SVGCursorElement.created() : super.created(); 8661 _SVGCursorElement.created() : super.created();
8749 8662
8750 /// Checks if this type is supported on the current platform. 8663 /// Checks if this type is supported on the current platform.
8751 static bool get supported => true; 8664 static bool get supported => true;
8752 8665
8753 // Override these methods for Dartium _SVGCursorElement can't be abstract. 8666 // Override these methods for Dartium _SVGCursorElement can't be abstract.
8754 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGCursorElement.ins tance.requiredExtensions_Getter_(unwrap_jso(this))); 8667 StringList get requiredExtensions => _blink.BlinkSVGCursorElement.instance.req uiredExtensions_Getter_(this);
8755 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGCursorElement.insta nce.requiredFeatures_Getter_(unwrap_jso(this))); 8668 StringList get requiredFeatures => _blink.BlinkSVGCursorElement.instance.requi redFeatures_Getter_(this);
8756 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGCursorElement.instanc e.systemLanguage_Getter_(unwrap_jso(this))); 8669 StringList get systemLanguage => _blink.BlinkSVGCursorElement.instance.systemL anguage_Getter_(this);
8757 AnimatedString get href => wrap_jso(_blink.BlinkSVGCursorElement.instance.href _Getter_(unwrap_jso(this))); 8670 AnimatedString get href => _blink.BlinkSVGCursorElement.instance.href_Getter_( this);
8758 bool hasExtension(String extension) => _blink.BlinkSVGCursorElement.instance.h asExtension_Callback_1_(unwrap_jso(this), extension); 8671 bool hasExtension(String extension) => _blink.BlinkSVGCursorElement.instance.h asExtension_Callback_1_(this, extension);
8759 } 8672 }
8760 8673
8761 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8674 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8762 // for details. All rights reserved. Use of this source code is governed by a 8675 // for details. All rights reserved. Use of this source code is governed by a
8763 // BSD-style license that can be found in the LICENSE file. 8676 // BSD-style license that can be found in the LICENSE file.
8764 8677
8765 8678
8766 @DocsEditable() 8679 @DocsEditable()
8767 @DomName('SVGFEDropShadowElement') 8680 @DomName('SVGFEDropShadowElement')
8768 @Experimental() // nonstandard 8681 @Experimental() // nonstandard
(...skipping 13 matching lines...) Expand all
8782 _SVGFEDropShadowElement.internal_() : super.internal_(); 8695 _SVGFEDropShadowElement.internal_() : super.internal_();
8783 8696
8784 /** 8697 /**
8785 * Constructor instantiated by the DOM when a custom element has been created. 8698 * Constructor instantiated by the DOM when a custom element has been created.
8786 * 8699 *
8787 * This can only be called by subclasses from their created constructor. 8700 * This can only be called by subclasses from their created constructor.
8788 */ 8701 */
8789 _SVGFEDropShadowElement.created() : super.created(); 8702 _SVGFEDropShadowElement.created() : super.created();
8790 8703
8791 // Override these methods for Dartium _SVGFEDropShadowElement can't be abstrac t. 8704 // Override these methods for Dartium _SVGFEDropShadowElement can't be abstrac t.
8792 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDropShadowElement.insta nce.height_Getter_(unwrap_jso(this))); 8705 AnimatedLength get height => _blink.BlinkSVGFEDropShadowElement.instance.heigh t_Getter_(this);
8793 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDropShadowElement.insta nce.result_Getter_(unwrap_jso(this))); 8706 AnimatedString get result => _blink.BlinkSVGFEDropShadowElement.instance.resul t_Getter_(this);
8794 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instan ce.width_Getter_(unwrap_jso(this))); 8707 AnimatedLength get width => _blink.BlinkSVGFEDropShadowElement.instance.width_ Getter_(this);
8795 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.x _Getter_(unwrap_jso(this))); 8708 AnimatedLength get x => _blink.BlinkSVGFEDropShadowElement.instance.x_Getter_( this);
8796 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.y _Getter_(unwrap_jso(this))); 8709 AnimatedLength get y => _blink.BlinkSVGFEDropShadowElement.instance.y_Getter_( this);
8797 } 8710 }
8798 8711
8799 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8712 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8800 // for details. All rights reserved. Use of this source code is governed by a 8713 // for details. All rights reserved. Use of this source code is governed by a
8801 // BSD-style license that can be found in the LICENSE file. 8714 // BSD-style license that can be found in the LICENSE file.
8802 8715
8803 8716
8804 @DocsEditable() 8717 @DocsEditable()
8805 @DomName('SVGMPathElement') 8718 @DomName('SVGMPathElement')
8806 class _SVGMPathElement extends SvgElement implements UriReference { 8719 class _SVGMPathElement extends SvgElement implements UriReference {
(...skipping 16 matching lines...) Expand all
8823 _SVGMPathElement.internal_() : super.internal_(); 8736 _SVGMPathElement.internal_() : super.internal_();
8824 8737
8825 /** 8738 /**
8826 * Constructor instantiated by the DOM when a custom element has been created. 8739 * Constructor instantiated by the DOM when a custom element has been created.
8827 * 8740 *
8828 * This can only be called by subclasses from their created constructor. 8741 * This can only be called by subclasses from their created constructor.
8829 */ 8742 */
8830 _SVGMPathElement.created() : super.created(); 8743 _SVGMPathElement.created() : super.created();
8831 8744
8832 // Override these methods for Dartium _SVGMPathElement can't be abstract. 8745 // Override these methods for Dartium _SVGMPathElement can't be abstract.
8833 AnimatedString get href => wrap_jso(_blink.BlinkSVGMPathElement.instance.href_ Getter_(unwrap_jso(this))); 8746 AnimatedString get href => _blink.BlinkSVGMPathElement.instance.href_Getter_(t his);
8834 } 8747 }
8835 8748
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698