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

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

Issue 552533004: Blink uses types in resolvers and entry points (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_internal' hide deprecated; 5 import 'dart:_internal' hide deprecated;
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 import 'dart:_blink' as _blink; 9 import 'dart:_blink' as _blink;
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 193 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
194 /** 194 /**
195 * Constructor instantiated by the DOM when a custom element has been created. 195 * Constructor instantiated by the DOM when a custom element has been created.
196 * 196 *
197 * This can only be called by subclasses from their created constructor. 197 * This can only be called by subclasses from their created constructor.
198 */ 198 */
199 AElement.created() : super.created(); 199 AElement.created() : super.created();
200 200
201 @DomName('SVGAElement.target') 201 @DomName('SVGAElement.target')
202 @DocsEditable() 202 @DocsEditable()
203 AnimatedString get target => _blink.BlinkSVGAElement.$target_Getter(this); 203 AnimatedString get target => _blink.BlinkSVGAElement.target_Getter(this);
204 204
205 @DomName('SVGAElement.href') 205 @DomName('SVGAElement.href')
206 @DocsEditable() 206 @DocsEditable()
207 AnimatedString get href => _blink.BlinkSVGAElement.$href_Getter(this); 207 AnimatedString get href => _blink.BlinkSVGAElement.href_Getter(this);
208 208
209 } 209 }
210 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 210 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
211 // for details. All rights reserved. Use of this source code is governed by a 211 // for details. All rights reserved. Use of this source code is governed by a
212 // BSD-style license that can be found in the LICENSE file. 212 // BSD-style license that can be found in the LICENSE file.
213 213
214 // WARNING: Do not edit - generated code. 214 // WARNING: Do not edit - generated code.
215 215
216 216
217 @DocsEditable() 217 @DocsEditable()
(...skipping 14 matching lines...) Expand all
232 * 232 *
233 * This can only be called by subclasses from their created constructor. 233 * This can only be called by subclasses from their created constructor.
234 */ 234 */
235 AltGlyphElement.created() : super.created(); 235 AltGlyphElement.created() : super.created();
236 236
237 /// Checks if this type is supported on the current platform. 237 /// Checks if this type is supported on the current platform.
238 static bool get supported => true; 238 static bool get supported => true;
239 239
240 @DomName('SVGAltGlyphElement.format') 240 @DomName('SVGAltGlyphElement.format')
241 @DocsEditable() 241 @DocsEditable()
242 String get format => _blink.BlinkSVGAltGlyphElement.$format_Getter(this); 242 String get format => _blink.BlinkSVGAltGlyphElement.format_Getter(this);
243 243
244 @DomName('SVGAltGlyphElement.format') 244 @DomName('SVGAltGlyphElement.format')
245 @DocsEditable() 245 @DocsEditable()
246 void set format(String value) => _blink.BlinkSVGAltGlyphElement.$format_Setter (this, value); 246 void set format(String value) => _blink.BlinkSVGAltGlyphElement.format_Setter_ DOMString(this, value);
247 247
248 @DomName('SVGAltGlyphElement.glyphRef') 248 @DomName('SVGAltGlyphElement.glyphRef')
249 @DocsEditable() 249 @DocsEditable()
250 String get glyphRef => _blink.BlinkSVGAltGlyphElement.$glyphRef_Getter(this); 250 String get glyphRef => _blink.BlinkSVGAltGlyphElement.glyphRef_Getter(this);
251 251
252 @DomName('SVGAltGlyphElement.glyphRef') 252 @DomName('SVGAltGlyphElement.glyphRef')
253 @DocsEditable() 253 @DocsEditable()
254 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.$glyphRef_Se tter(this, value); 254 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.glyphRef_Set ter_DOMString(this, value);
255 255
256 @DomName('SVGAltGlyphElement.href') 256 @DomName('SVGAltGlyphElement.href')
257 @DocsEditable() 257 @DocsEditable()
258 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.$href_Getter(this); 258 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.href_Getter(this);
259 259
260 } 260 }
261 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 261 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
262 // for details. All rights reserved. Use of this source code is governed by a 262 // for details. All rights reserved. Use of this source code is governed by a
263 // BSD-style license that can be found in the LICENSE file. 263 // BSD-style license that can be found in the LICENSE file.
264 264
265 // WARNING: Do not edit - generated code. 265 // WARNING: Do not edit - generated code.
266 266
267 267
268 @DocsEditable() 268 @DocsEditable()
(...skipping 18 matching lines...) Expand all
287 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN') 287 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
288 @DocsEditable() 288 @DocsEditable()
289 static const int SVG_ANGLETYPE_UNKNOWN = 0; 289 static const int SVG_ANGLETYPE_UNKNOWN = 0;
290 290
291 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED') 291 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
292 @DocsEditable() 292 @DocsEditable()
293 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 293 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
294 294
295 @DomName('SVGAngle.unitType') 295 @DomName('SVGAngle.unitType')
296 @DocsEditable() 296 @DocsEditable()
297 int get unitType => _blink.BlinkSVGAngle.$unitType_Getter(this); 297 int get unitType => _blink.BlinkSVGAngle.unitType_Getter(this);
298 298
299 @DomName('SVGAngle.value') 299 @DomName('SVGAngle.value')
300 @DocsEditable() 300 @DocsEditable()
301 num get value => _blink.BlinkSVGAngle.$value_Getter(this); 301 num get value => _blink.BlinkSVGAngle.value_Getter(this);
302 302
303 @DomName('SVGAngle.value') 303 @DomName('SVGAngle.value')
304 @DocsEditable() 304 @DocsEditable()
305 void set value(num value) => _blink.BlinkSVGAngle.$value_Setter(this, value); 305 void set value(num value) => _blink.BlinkSVGAngle.value_Setter_float(this, val ue);
306 306
307 @DomName('SVGAngle.valueAsString') 307 @DomName('SVGAngle.valueAsString')
308 @DocsEditable() 308 @DocsEditable()
309 String get valueAsString => _blink.BlinkSVGAngle.$valueAsString_Getter(this); 309 String get valueAsString => _blink.BlinkSVGAngle.valueAsString_Getter(this);
310 310
311 @DomName('SVGAngle.valueAsString') 311 @DomName('SVGAngle.valueAsString')
312 @DocsEditable() 312 @DocsEditable()
313 void set valueAsString(String value) => _blink.BlinkSVGAngle.$valueAsString_Se tter(this, value); 313 void set valueAsString(String value) => _blink.BlinkSVGAngle.valueAsString_Set ter_DOMString(this, value);
314 314
315 @DomName('SVGAngle.valueInSpecifiedUnits') 315 @DomName('SVGAngle.valueInSpecifiedUnits')
316 @DocsEditable() 316 @DocsEditable()
317 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.$valueInSpecifiedUnits_G etter(this); 317 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.valueInSpecifiedUnits_Ge tter(this);
318 318
319 @DomName('SVGAngle.valueInSpecifiedUnits') 319 @DomName('SVGAngle.valueInSpecifiedUnits')
320 @DocsEditable() 320 @DocsEditable()
321 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.$valueInSpec ifiedUnits_Setter(this, value); 321 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.valueInSpeci fiedUnits_Setter_float(this, value);
322 322
323 @DomName('SVGAngle.convertToSpecifiedUnits') 323 @DomName('SVGAngle.convertToSpecifiedUnits')
324 @DocsEditable() 324 @DocsEditable()
325 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.$convertToS pecifiedUnits_Callback(this, unitType); 325 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.convertToSp ecifiedUnits_Callback_us(this, unitType);
326 326
327 @DomName('SVGAngle.newValueSpecifiedUnits') 327 @DomName('SVGAngle.newValueSpecifiedUnits')
328 @DocsEditable() 328 @DocsEditable()
329 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.$newValueSpecifiedUnits_Callback(this, unitType, valueInSpecified Units); 329 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGAngle.newValueSpecifiedUnits_Callback_us_float(this, unitType, valueInS pecifiedUnits);
330 330
331 } 331 }
332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
333 // for details. All rights reserved. Use of this source code is governed by a 333 // for details. All rights reserved. Use of this source code is governed by a
334 // BSD-style license that can be found in the LICENSE file. 334 // BSD-style license that can be found in the LICENSE file.
335 335
336 // WARNING: Do not edit - generated code. 336 // WARNING: Do not edit - generated code.
337 337
338 338
339 @DocsEditable() 339 @DocsEditable()
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 431
432 @DocsEditable() 432 @DocsEditable()
433 @DomName('SVGAnimatedAngle') 433 @DomName('SVGAnimatedAngle')
434 @Unstable() 434 @Unstable()
435 class AnimatedAngle extends NativeFieldWrapperClass2 { 435 class AnimatedAngle extends NativeFieldWrapperClass2 {
436 // To suppress missing implicit constructor warnings. 436 // To suppress missing implicit constructor warnings.
437 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } 437 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); }
438 438
439 @DomName('SVGAnimatedAngle.animVal') 439 @DomName('SVGAnimatedAngle.animVal')
440 @DocsEditable() 440 @DocsEditable()
441 Angle get animVal => _blink.BlinkSVGAnimatedAngle.$animVal_Getter(this); 441 Angle get animVal => _blink.BlinkSVGAnimatedAngle.animVal_Getter(this);
442 442
443 @DomName('SVGAnimatedAngle.baseVal') 443 @DomName('SVGAnimatedAngle.baseVal')
444 @DocsEditable() 444 @DocsEditable()
445 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.$baseVal_Getter(this); 445 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.baseVal_Getter(this);
446 446
447 } 447 }
448 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 448 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
449 // for details. All rights reserved. Use of this source code is governed by a 449 // for details. All rights reserved. Use of this source code is governed by a
450 // BSD-style license that can be found in the LICENSE file. 450 // BSD-style license that can be found in the LICENSE file.
451 451
452 // WARNING: Do not edit - generated code. 452 // WARNING: Do not edit - generated code.
453 453
454 454
455 @DocsEditable() 455 @DocsEditable()
456 @DomName('SVGAnimatedBoolean') 456 @DomName('SVGAnimatedBoolean')
457 @Unstable() 457 @Unstable()
458 class AnimatedBoolean extends NativeFieldWrapperClass2 { 458 class AnimatedBoolean extends NativeFieldWrapperClass2 {
459 // To suppress missing implicit constructor warnings. 459 // To suppress missing implicit constructor warnings.
460 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } 460 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); }
461 461
462 @DomName('SVGAnimatedBoolean.animVal') 462 @DomName('SVGAnimatedBoolean.animVal')
463 @DocsEditable() 463 @DocsEditable()
464 bool get animVal => _blink.BlinkSVGAnimatedBoolean.$animVal_Getter(this); 464 bool get animVal => _blink.BlinkSVGAnimatedBoolean.animVal_Getter(this);
465 465
466 @DomName('SVGAnimatedBoolean.baseVal') 466 @DomName('SVGAnimatedBoolean.baseVal')
467 @DocsEditable() 467 @DocsEditable()
468 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.$baseVal_Getter(this); 468 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.baseVal_Getter(this);
469 469
470 @DomName('SVGAnimatedBoolean.baseVal') 470 @DomName('SVGAnimatedBoolean.baseVal')
471 @DocsEditable() 471 @DocsEditable()
472 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.$baseVal_Setter (this, value); 472 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.baseVal_Setter_ boolean(this, value);
473 473
474 } 474 }
475 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 475 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
476 // for details. All rights reserved. Use of this source code is governed by a 476 // for details. All rights reserved. Use of this source code is governed by a
477 // BSD-style license that can be found in the LICENSE file. 477 // BSD-style license that can be found in the LICENSE file.
478 478
479 // WARNING: Do not edit - generated code. 479 // WARNING: Do not edit - generated code.
480 480
481 481
482 @DocsEditable() 482 @DocsEditable()
483 @DomName('SVGAnimatedEnumeration') 483 @DomName('SVGAnimatedEnumeration')
484 @Unstable() 484 @Unstable()
485 class AnimatedEnumeration extends NativeFieldWrapperClass2 { 485 class AnimatedEnumeration extends NativeFieldWrapperClass2 {
486 // To suppress missing implicit constructor warnings. 486 // To suppress missing implicit constructor warnings.
487 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); } 487 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported"); }
488 488
489 @DomName('SVGAnimatedEnumeration.animVal') 489 @DomName('SVGAnimatedEnumeration.animVal')
490 @DocsEditable() 490 @DocsEditable()
491 int get animVal => _blink.BlinkSVGAnimatedEnumeration.$animVal_Getter(this); 491 int get animVal => _blink.BlinkSVGAnimatedEnumeration.animVal_Getter(this);
492 492
493 @DomName('SVGAnimatedEnumeration.baseVal') 493 @DomName('SVGAnimatedEnumeration.baseVal')
494 @DocsEditable() 494 @DocsEditable()
495 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.$baseVal_Getter(this); 495 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.baseVal_Getter(this);
496 496
497 @DomName('SVGAnimatedEnumeration.baseVal') 497 @DomName('SVGAnimatedEnumeration.baseVal')
498 @DocsEditable() 498 @DocsEditable()
499 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.$baseVal_Set ter(this, value); 499 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.baseVal_Sett er_us(this, value);
500 500
501 } 501 }
502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
503 // for details. All rights reserved. Use of this source code is governed by a 503 // for details. All rights reserved. Use of this source code is governed by a
504 // BSD-style license that can be found in the LICENSE file. 504 // BSD-style license that can be found in the LICENSE file.
505 505
506 // WARNING: Do not edit - generated code. 506 // WARNING: Do not edit - generated code.
507 507
508 508
509 @DocsEditable() 509 @DocsEditable()
510 @DomName('SVGAnimatedInteger') 510 @DomName('SVGAnimatedInteger')
511 @Unstable() 511 @Unstable()
512 class AnimatedInteger extends NativeFieldWrapperClass2 { 512 class AnimatedInteger extends NativeFieldWrapperClass2 {
513 // To suppress missing implicit constructor warnings. 513 // To suppress missing implicit constructor warnings.
514 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } 514 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); }
515 515
516 @DomName('SVGAnimatedInteger.animVal') 516 @DomName('SVGAnimatedInteger.animVal')
517 @DocsEditable() 517 @DocsEditable()
518 int get animVal => _blink.BlinkSVGAnimatedInteger.$animVal_Getter(this); 518 int get animVal => _blink.BlinkSVGAnimatedInteger.animVal_Getter(this);
519 519
520 @DomName('SVGAnimatedInteger.baseVal') 520 @DomName('SVGAnimatedInteger.baseVal')
521 @DocsEditable() 521 @DocsEditable()
522 int get baseVal => _blink.BlinkSVGAnimatedInteger.$baseVal_Getter(this); 522 int get baseVal => _blink.BlinkSVGAnimatedInteger.baseVal_Getter(this);
523 523
524 @DomName('SVGAnimatedInteger.baseVal') 524 @DomName('SVGAnimatedInteger.baseVal')
525 @DocsEditable() 525 @DocsEditable()
526 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.$baseVal_Setter( this, value); 526 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.baseVal_Setter_l ong(this, value);
527 527
528 } 528 }
529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
530 // for details. All rights reserved. Use of this source code is governed by a 530 // for details. All rights reserved. Use of this source code is governed by a
531 // BSD-style license that can be found in the LICENSE file. 531 // BSD-style license that can be found in the LICENSE file.
532 532
533 // WARNING: Do not edit - generated code. 533 // WARNING: Do not edit - generated code.
534 534
535 535
536 @DocsEditable() 536 @DocsEditable()
537 @DomName('SVGAnimatedLength') 537 @DomName('SVGAnimatedLength')
538 @Unstable() 538 @Unstable()
539 class AnimatedLength extends NativeFieldWrapperClass2 { 539 class AnimatedLength extends NativeFieldWrapperClass2 {
540 // To suppress missing implicit constructor warnings. 540 // To suppress missing implicit constructor warnings.
541 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } 541 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); }
542 542
543 @DomName('SVGAnimatedLength.animVal') 543 @DomName('SVGAnimatedLength.animVal')
544 @DocsEditable() 544 @DocsEditable()
545 Length get animVal => _blink.BlinkSVGAnimatedLength.$animVal_Getter(this); 545 Length get animVal => _blink.BlinkSVGAnimatedLength.animVal_Getter(this);
546 546
547 @DomName('SVGAnimatedLength.baseVal') 547 @DomName('SVGAnimatedLength.baseVal')
548 @DocsEditable() 548 @DocsEditable()
549 Length get baseVal => _blink.BlinkSVGAnimatedLength.$baseVal_Getter(this); 549 Length get baseVal => _blink.BlinkSVGAnimatedLength.baseVal_Getter(this);
550 550
551 } 551 }
552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 552 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
553 // for details. All rights reserved. Use of this source code is governed by a 553 // for details. All rights reserved. Use of this source code is governed by a
554 // BSD-style license that can be found in the LICENSE file. 554 // BSD-style license that can be found in the LICENSE file.
555 555
556 // WARNING: Do not edit - generated code. 556 // WARNING: Do not edit - generated code.
557 557
558 558
559 @DocsEditable() 559 @DocsEditable()
560 @DomName('SVGAnimatedLengthList') 560 @DomName('SVGAnimatedLengthList')
561 @Unstable() 561 @Unstable()
562 class AnimatedLengthList extends NativeFieldWrapperClass2 { 562 class AnimatedLengthList extends NativeFieldWrapperClass2 {
563 // To suppress missing implicit constructor warnings. 563 // To suppress missing implicit constructor warnings.
564 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); } 564 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported"); }
565 565
566 @DomName('SVGAnimatedLengthList.animVal') 566 @DomName('SVGAnimatedLengthList.animVal')
567 @DocsEditable() 567 @DocsEditable()
568 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.$animVal_Getter(th is); 568 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.animVal_Getter(thi s);
569 569
570 @DomName('SVGAnimatedLengthList.baseVal') 570 @DomName('SVGAnimatedLengthList.baseVal')
571 @DocsEditable() 571 @DocsEditable()
572 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.$baseVal_Getter(th is); 572 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.baseVal_Getter(thi s);
573 573
574 } 574 }
575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
576 // for details. All rights reserved. Use of this source code is governed by a 576 // for details. All rights reserved. Use of this source code is governed by a
577 // BSD-style license that can be found in the LICENSE file. 577 // BSD-style license that can be found in the LICENSE file.
578 578
579 // WARNING: Do not edit - generated code. 579 // WARNING: Do not edit - generated code.
580 580
581 581
582 @DocsEditable() 582 @DocsEditable()
583 @DomName('SVGAnimatedNumber') 583 @DomName('SVGAnimatedNumber')
584 @Unstable() 584 @Unstable()
585 class AnimatedNumber extends NativeFieldWrapperClass2 { 585 class AnimatedNumber extends NativeFieldWrapperClass2 {
586 // To suppress missing implicit constructor warnings. 586 // To suppress missing implicit constructor warnings.
587 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } 587 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); }
588 588
589 @DomName('SVGAnimatedNumber.animVal') 589 @DomName('SVGAnimatedNumber.animVal')
590 @DocsEditable() 590 @DocsEditable()
591 double get animVal => _blink.BlinkSVGAnimatedNumber.$animVal_Getter(this); 591 double get animVal => _blink.BlinkSVGAnimatedNumber.animVal_Getter(this);
592 592
593 @DomName('SVGAnimatedNumber.baseVal') 593 @DomName('SVGAnimatedNumber.baseVal')
594 @DocsEditable() 594 @DocsEditable()
595 num get baseVal => _blink.BlinkSVGAnimatedNumber.$baseVal_Getter(this); 595 num get baseVal => _blink.BlinkSVGAnimatedNumber.baseVal_Getter(this);
596 596
597 @DomName('SVGAnimatedNumber.baseVal') 597 @DomName('SVGAnimatedNumber.baseVal')
598 @DocsEditable() 598 @DocsEditable()
599 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.$baseVal_Setter(t his, value); 599 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.baseVal_Setter_fl oat(this, value);
600 600
601 } 601 }
602 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 602 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
603 // for details. All rights reserved. Use of this source code is governed by a 603 // for details. All rights reserved. Use of this source code is governed by a
604 // BSD-style license that can be found in the LICENSE file. 604 // BSD-style license that can be found in the LICENSE file.
605 605
606 // WARNING: Do not edit - generated code. 606 // WARNING: Do not edit - generated code.
607 607
608 608
609 @DocsEditable() 609 @DocsEditable()
610 @DomName('SVGAnimatedNumberList') 610 @DomName('SVGAnimatedNumberList')
611 @Unstable() 611 @Unstable()
612 class AnimatedNumberList extends NativeFieldWrapperClass2 { 612 class AnimatedNumberList extends NativeFieldWrapperClass2 {
613 // To suppress missing implicit constructor warnings. 613 // To suppress missing implicit constructor warnings.
614 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); } 614 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported"); }
615 615
616 @DomName('SVGAnimatedNumberList.animVal') 616 @DomName('SVGAnimatedNumberList.animVal')
617 @DocsEditable() 617 @DocsEditable()
618 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.$animVal_Getter(th is); 618 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.animVal_Getter(thi s);
619 619
620 @DomName('SVGAnimatedNumberList.baseVal') 620 @DomName('SVGAnimatedNumberList.baseVal')
621 @DocsEditable() 621 @DocsEditable()
622 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.$baseVal_Getter(th is); 622 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.baseVal_Getter(thi s);
623 623
624 } 624 }
625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
626 // for details. All rights reserved. Use of this source code is governed by a 626 // for details. All rights reserved. Use of this source code is governed by a
627 // BSD-style license that can be found in the LICENSE file. 627 // BSD-style license that can be found in the LICENSE file.
628 628
629 // WARNING: Do not edit - generated code. 629 // WARNING: Do not edit - generated code.
630 630
631 631
632 @DocsEditable() 632 @DocsEditable()
633 @DomName('SVGAnimatedPreserveAspectRatio') 633 @DomName('SVGAnimatedPreserveAspectRatio')
634 @Unstable() 634 @Unstable()
635 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { 635 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 {
636 // To suppress missing implicit constructor warnings. 636 // To suppress missing implicit constructor warnings.
637 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); } 637 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp orted"); }
638 638
639 @DomName('SVGAnimatedPreserveAspectRatio.animVal') 639 @DomName('SVGAnimatedPreserveAspectRatio.animVal')
640 @DocsEditable() 640 @DocsEditable()
641 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. $animVal_Getter(this); 641 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. animVal_Getter(this);
642 642
643 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') 643 @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
644 @DocsEditable() 644 @DocsEditable()
645 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. $baseVal_Getter(this); 645 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio. baseVal_Getter(this);
646 646
647 } 647 }
648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
649 // for details. All rights reserved. Use of this source code is governed by a 649 // for details. All rights reserved. Use of this source code is governed by a
650 // BSD-style license that can be found in the LICENSE file. 650 // BSD-style license that can be found in the LICENSE file.
651 651
652 // WARNING: Do not edit - generated code. 652 // WARNING: Do not edit - generated code.
653 653
654 654
655 @DocsEditable() 655 @DocsEditable()
656 @DomName('SVGAnimatedRect') 656 @DomName('SVGAnimatedRect')
657 @Unstable() 657 @Unstable()
658 class AnimatedRect extends NativeFieldWrapperClass2 { 658 class AnimatedRect extends NativeFieldWrapperClass2 {
659 // To suppress missing implicit constructor warnings. 659 // To suppress missing implicit constructor warnings.
660 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } 660 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); }
661 661
662 @DomName('SVGAnimatedRect.animVal') 662 @DomName('SVGAnimatedRect.animVal')
663 @DocsEditable() 663 @DocsEditable()
664 Rect get animVal => _blink.BlinkSVGAnimatedRect.$animVal_Getter(this); 664 Rect get animVal => _blink.BlinkSVGAnimatedRect.animVal_Getter(this);
665 665
666 @DomName('SVGAnimatedRect.baseVal') 666 @DomName('SVGAnimatedRect.baseVal')
667 @DocsEditable() 667 @DocsEditable()
668 Rect get baseVal => _blink.BlinkSVGAnimatedRect.$baseVal_Getter(this); 668 Rect get baseVal => _blink.BlinkSVGAnimatedRect.baseVal_Getter(this);
669 669
670 } 670 }
671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
672 // for details. All rights reserved. Use of this source code is governed by a 672 // for details. All rights reserved. Use of this source code is governed by a
673 // BSD-style license that can be found in the LICENSE file. 673 // BSD-style license that can be found in the LICENSE file.
674 674
675 // WARNING: Do not edit - generated code. 675 // WARNING: Do not edit - generated code.
676 676
677 677
678 @DocsEditable() 678 @DocsEditable()
679 @DomName('SVGAnimatedString') 679 @DomName('SVGAnimatedString')
680 @Unstable() 680 @Unstable()
681 class AnimatedString extends NativeFieldWrapperClass2 { 681 class AnimatedString extends NativeFieldWrapperClass2 {
682 // To suppress missing implicit constructor warnings. 682 // To suppress missing implicit constructor warnings.
683 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } 683 factory AnimatedString._() { throw new UnsupportedError("Not supported"); }
684 684
685 @DomName('SVGAnimatedString.animVal') 685 @DomName('SVGAnimatedString.animVal')
686 @DocsEditable() 686 @DocsEditable()
687 String get animVal => _blink.BlinkSVGAnimatedString.$animVal_Getter(this); 687 String get animVal => _blink.BlinkSVGAnimatedString.animVal_Getter(this);
688 688
689 @DomName('SVGAnimatedString.baseVal') 689 @DomName('SVGAnimatedString.baseVal')
690 @DocsEditable() 690 @DocsEditable()
691 String get baseVal => _blink.BlinkSVGAnimatedString.$baseVal_Getter(this); 691 String get baseVal => _blink.BlinkSVGAnimatedString.baseVal_Getter(this);
692 692
693 @DomName('SVGAnimatedString.baseVal') 693 @DomName('SVGAnimatedString.baseVal')
694 @DocsEditable() 694 @DocsEditable()
695 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.$baseVal_Sette r(this, value); 695 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.baseVal_Setter _DOMString(this, value);
696 696
697 } 697 }
698 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 698 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
699 // for details. All rights reserved. Use of this source code is governed by a 699 // for details. All rights reserved. Use of this source code is governed by a
700 // BSD-style license that can be found in the LICENSE file. 700 // BSD-style license that can be found in the LICENSE file.
701 701
702 // WARNING: Do not edit - generated code. 702 // WARNING: Do not edit - generated code.
703 703
704 704
705 @DocsEditable() 705 @DocsEditable()
706 @DomName('SVGAnimatedTransformList') 706 @DomName('SVGAnimatedTransformList')
707 @Unstable() 707 @Unstable()
708 class AnimatedTransformList extends NativeFieldWrapperClass2 { 708 class AnimatedTransformList extends NativeFieldWrapperClass2 {
709 // To suppress missing implicit constructor warnings. 709 // To suppress missing implicit constructor warnings.
710 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); } 710 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported" ); }
711 711
712 @DomName('SVGAnimatedTransformList.animVal') 712 @DomName('SVGAnimatedTransformList.animVal')
713 @DocsEditable() 713 @DocsEditable()
714 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.$animVal_Get ter(this); 714 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.animVal_Gett er(this);
715 715
716 @DomName('SVGAnimatedTransformList.baseVal') 716 @DomName('SVGAnimatedTransformList.baseVal')
717 @DocsEditable() 717 @DocsEditable()
718 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.$baseVal_Get ter(this); 718 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.baseVal_Gett er(this);
719 719
720 } 720 }
721 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 721 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
722 // for details. All rights reserved. Use of this source code is governed by a 722 // for details. All rights reserved. Use of this source code is governed by a
723 // BSD-style license that can be found in the LICENSE file. 723 // BSD-style license that can be found in the LICENSE file.
724 724
725 // WARNING: Do not edit - generated code. 725 // WARNING: Do not edit - generated code.
726 726
727 727
728 @DocsEditable() 728 @DocsEditable()
729 @DomName('SVGAnimationElement') 729 @DomName('SVGAnimationElement')
730 @Unstable() 730 @Unstable()
731 class AnimationElement extends SvgElement implements Tests { 731 class AnimationElement extends SvgElement implements Tests {
732 // To suppress missing implicit constructor warnings. 732 // To suppress missing implicit constructor warnings.
733 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } 733 factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
734 734
735 @DomName('SVGAnimationElement.SVGAnimationElement') 735 @DomName('SVGAnimationElement.SVGAnimationElement')
736 @DocsEditable() 736 @DocsEditable()
737 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 737 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
738 /** 738 /**
739 * Constructor instantiated by the DOM when a custom element has been created. 739 * Constructor instantiated by the DOM when a custom element has been created.
740 * 740 *
741 * This can only be called by subclasses from their created constructor. 741 * This can only be called by subclasses from their created constructor.
742 */ 742 */
743 AnimationElement.created() : super.created(); 743 AnimationElement.created() : super.created();
744 744
745 @DomName('SVGAnimationElement.targetElement') 745 @DomName('SVGAnimationElement.targetElement')
746 @DocsEditable() 746 @DocsEditable()
747 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.$targetElement _Getter(this); 747 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.targetElement_ Getter(this);
748 748
749 @DomName('SVGAnimationElement.beginElement') 749 @DomName('SVGAnimationElement.beginElement')
750 @DocsEditable() 750 @DocsEditable()
751 void beginElement() => _blink.BlinkSVGAnimationElement.$beginElement_Callback( this); 751 void beginElement() => _blink.BlinkSVGAnimationElement.beginElement_Callback(t his);
752 752
753 @DomName('SVGAnimationElement.beginElementAt') 753 @DomName('SVGAnimationElement.beginElementAt')
754 @DocsEditable() 754 @DocsEditable()
755 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.$beginEleme ntAt_Callback(this, offset); 755 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.beginElemen tAt_Callback_float(this, offset);
756 756
757 @DomName('SVGAnimationElement.endElement') 757 @DomName('SVGAnimationElement.endElement')
758 @DocsEditable() 758 @DocsEditable()
759 void endElement() => _blink.BlinkSVGAnimationElement.$endElement_Callback(this ); 759 void endElement() => _blink.BlinkSVGAnimationElement.endElement_Callback(this) ;
760 760
761 @DomName('SVGAnimationElement.endElementAt') 761 @DomName('SVGAnimationElement.endElementAt')
762 @DocsEditable() 762 @DocsEditable()
763 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.$endElementAt _Callback(this, offset); 763 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.endElementAt_ Callback_float(this, offset);
764 764
765 @DomName('SVGAnimationElement.getCurrentTime') 765 @DomName('SVGAnimationElement.getCurrentTime')
766 @DocsEditable() 766 @DocsEditable()
767 double getCurrentTime() => _blink.BlinkSVGAnimationElement.$getCurrentTime_Cal lback(this); 767 double getCurrentTime() => _blink.BlinkSVGAnimationElement.getCurrentTime_Call back(this);
768 768
769 @DomName('SVGAnimationElement.getSimpleDuration') 769 @DomName('SVGAnimationElement.getSimpleDuration')
770 @DocsEditable() 770 @DocsEditable()
771 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.$getSimpleDurati on_Callback(this); 771 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.getSimpleDuratio n_Callback(this);
772 772
773 @DomName('SVGAnimationElement.getStartTime') 773 @DomName('SVGAnimationElement.getStartTime')
774 @DocsEditable() 774 @DocsEditable()
775 double getStartTime() => _blink.BlinkSVGAnimationElement.$getStartTime_Callbac k(this); 775 double getStartTime() => _blink.BlinkSVGAnimationElement.getStartTime_Callback (this);
776 776
777 @DomName('SVGAnimationElement.requiredExtensions') 777 @DomName('SVGAnimationElement.requiredExtensions')
778 @DocsEditable() 778 @DocsEditable()
779 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.$required Extensions_Getter(this); 779 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.requiredE xtensions_Getter(this);
780 780
781 @DomName('SVGAnimationElement.requiredFeatures') 781 @DomName('SVGAnimationElement.requiredFeatures')
782 @DocsEditable() 782 @DocsEditable()
783 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.$requiredFe atures_Getter(this); 783 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.requiredFea tures_Getter(this);
784 784
785 @DomName('SVGAnimationElement.systemLanguage') 785 @DomName('SVGAnimationElement.systemLanguage')
786 @DocsEditable() 786 @DocsEditable()
787 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.$systemLangua ge_Getter(this); 787 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.systemLanguag e_Getter(this);
788 788
789 @DomName('SVGAnimationElement.hasExtension') 789 @DomName('SVGAnimationElement.hasExtension')
790 @DocsEditable() 790 @DocsEditable()
791 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.$hasExt ension_Callback(this, extension); 791 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.hasExte nsion_Callback_DOMString(this, extension);
792 792
793 } 793 }
794 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 794 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
795 // for details. All rights reserved. Use of this source code is governed by a 795 // for details. All rights reserved. Use of this source code is governed by a
796 // BSD-style license that can be found in the LICENSE file. 796 // BSD-style license that can be found in the LICENSE file.
797 797
798 // WARNING: Do not edit - generated code. 798 // WARNING: Do not edit - generated code.
799 799
800 800
801 @DocsEditable() 801 @DocsEditable()
802 @DomName('SVGCircleElement') 802 @DomName('SVGCircleElement')
803 @Unstable() 803 @Unstable()
804 class CircleElement extends GeometryElement { 804 class CircleElement extends GeometryElement {
805 // To suppress missing implicit constructor warnings. 805 // To suppress missing implicit constructor warnings.
806 factory CircleElement._() { throw new UnsupportedError("Not supported"); } 806 factory CircleElement._() { throw new UnsupportedError("Not supported"); }
807 807
808 @DomName('SVGCircleElement.SVGCircleElement') 808 @DomName('SVGCircleElement.SVGCircleElement')
809 @DocsEditable() 809 @DocsEditable()
810 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 810 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
811 /** 811 /**
812 * Constructor instantiated by the DOM when a custom element has been created. 812 * Constructor instantiated by the DOM when a custom element has been created.
813 * 813 *
814 * This can only be called by subclasses from their created constructor. 814 * This can only be called by subclasses from their created constructor.
815 */ 815 */
816 CircleElement.created() : super.created(); 816 CircleElement.created() : super.created();
817 817
818 @DomName('SVGCircleElement.cx') 818 @DomName('SVGCircleElement.cx')
819 @DocsEditable() 819 @DocsEditable()
820 AnimatedLength get cx => _blink.BlinkSVGCircleElement.$cx_Getter(this); 820 AnimatedLength get cx => _blink.BlinkSVGCircleElement.cx_Getter(this);
821 821
822 @DomName('SVGCircleElement.cy') 822 @DomName('SVGCircleElement.cy')
823 @DocsEditable() 823 @DocsEditable()
824 AnimatedLength get cy => _blink.BlinkSVGCircleElement.$cy_Getter(this); 824 AnimatedLength get cy => _blink.BlinkSVGCircleElement.cy_Getter(this);
825 825
826 @DomName('SVGCircleElement.r') 826 @DomName('SVGCircleElement.r')
827 @DocsEditable() 827 @DocsEditable()
828 AnimatedLength get r => _blink.BlinkSVGCircleElement.$r_Getter(this); 828 AnimatedLength get r => _blink.BlinkSVGCircleElement.r_Getter(this);
829 829
830 } 830 }
831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
832 // for details. All rights reserved. Use of this source code is governed by a 832 // for details. All rights reserved. Use of this source code is governed by a
833 // BSD-style license that can be found in the LICENSE file. 833 // BSD-style license that can be found in the LICENSE file.
834 834
835 // WARNING: Do not edit - generated code. 835 // WARNING: Do not edit - generated code.
836 836
837 837
838 @DocsEditable() 838 @DocsEditable()
839 @DomName('SVGClipPathElement') 839 @DomName('SVGClipPathElement')
840 @Unstable() 840 @Unstable()
841 class ClipPathElement extends GraphicsElement { 841 class ClipPathElement extends GraphicsElement {
842 // To suppress missing implicit constructor warnings. 842 // To suppress missing implicit constructor warnings.
843 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } 843 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
844 844
845 @DomName('SVGClipPathElement.SVGClipPathElement') 845 @DomName('SVGClipPathElement.SVGClipPathElement')
846 @DocsEditable() 846 @DocsEditable()
847 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 847 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
848 /** 848 /**
849 * Constructor instantiated by the DOM when a custom element has been created. 849 * Constructor instantiated by the DOM when a custom element has been created.
850 * 850 *
851 * This can only be called by subclasses from their created constructor. 851 * This can only be called by subclasses from their created constructor.
852 */ 852 */
853 ClipPathElement.created() : super.created(); 853 ClipPathElement.created() : super.created();
854 854
855 @DomName('SVGClipPathElement.clipPathUnits') 855 @DomName('SVGClipPathElement.clipPathUnits')
856 @DocsEditable() 856 @DocsEditable()
857 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.$clipP athUnits_Getter(this); 857 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.clipPa thUnits_Getter(this);
858 858
859 } 859 }
860 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 860 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
861 // for details. All rights reserved. Use of this source code is governed by a 861 // for details. All rights reserved. Use of this source code is governed by a
862 // BSD-style license that can be found in the LICENSE file. 862 // BSD-style license that can be found in the LICENSE file.
863 863
864 // WARNING: Do not edit - generated code. 864 // WARNING: Do not edit - generated code.
865 865
866 866
867 @DocsEditable() 867 @DocsEditable()
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 * handlers that are not necessarily instances of [ElementInstance]. 1361 * handlers that are not necessarily instances of [ElementInstance].
1362 * 1362 *
1363 * See [EventStreamProvider] for usage information. 1363 * See [EventStreamProvider] for usage information.
1364 */ 1364 */
1365 @DomName('SVGElementInstance.unloadEvent') 1365 @DomName('SVGElementInstance.unloadEvent')
1366 @DocsEditable() 1366 @DocsEditable()
1367 static const EventStreamProvider<Event> unloadEvent = const EventStreamProvide r<Event>('unload'); 1367 static const EventStreamProvider<Event> unloadEvent = const EventStreamProvide r<Event>('unload');
1368 1368
1369 @DomName('SVGElementInstance.correspondingElement') 1369 @DomName('SVGElementInstance.correspondingElement')
1370 @DocsEditable() 1370 @DocsEditable()
1371 SvgElement get correspondingElement => _blink.BlinkSVGElementInstance.$corresp ondingElement_Getter(this); 1371 SvgElement get correspondingElement => _blink.BlinkSVGElementInstance.correspo ndingElement_Getter(this);
1372 1372
1373 @DomName('SVGElementInstance.correspondingUseElement') 1373 @DomName('SVGElementInstance.correspondingUseElement')
1374 @DocsEditable() 1374 @DocsEditable()
1375 UseElement get correspondingUseElement => _blink.BlinkSVGElementInstance.$corr espondingUseElement_Getter(this); 1375 UseElement get correspondingUseElement => _blink.BlinkSVGElementInstance.corre spondingUseElement_Getter(this);
1376 1376
1377 @DomName('SVGElementInstance.firstChild') 1377 @DomName('SVGElementInstance.firstChild')
1378 @DocsEditable() 1378 @DocsEditable()
1379 ElementInstance get firstChild => _blink.BlinkSVGElementInstance.$firstChild_G etter(this); 1379 ElementInstance get firstChild => _blink.BlinkSVGElementInstance.firstChild_Ge tter(this);
1380 1380
1381 @DomName('SVGElementInstance.lastChild') 1381 @DomName('SVGElementInstance.lastChild')
1382 @DocsEditable() 1382 @DocsEditable()
1383 ElementInstance get lastChild => _blink.BlinkSVGElementInstance.$lastChild_Get ter(this); 1383 ElementInstance get lastChild => _blink.BlinkSVGElementInstance.lastChild_Gett er(this);
1384 1384
1385 @DomName('SVGElementInstance.nextSibling') 1385 @DomName('SVGElementInstance.nextSibling')
1386 @DocsEditable() 1386 @DocsEditable()
1387 ElementInstance get nextSibling => _blink.BlinkSVGElementInstance.$nextSibling _Getter(this); 1387 ElementInstance get nextSibling => _blink.BlinkSVGElementInstance.nextSibling_ Getter(this);
1388 1388
1389 @DomName('SVGElementInstance.parentNode') 1389 @DomName('SVGElementInstance.parentNode')
1390 @DocsEditable() 1390 @DocsEditable()
1391 ElementInstance get parentNode => _blink.BlinkSVGElementInstance.$parentNode_G etter(this); 1391 ElementInstance get parentNode => _blink.BlinkSVGElementInstance.parentNode_Ge tter(this);
1392 1392
1393 @DomName('SVGElementInstance.previousSibling') 1393 @DomName('SVGElementInstance.previousSibling')
1394 @DocsEditable() 1394 @DocsEditable()
1395 ElementInstance get previousSibling => _blink.BlinkSVGElementInstance.$previou sSibling_Getter(this); 1395 ElementInstance get previousSibling => _blink.BlinkSVGElementInstance.previous Sibling_Getter(this);
1396 1396
1397 /// Stream of `abort` events handled by this [ElementInstance]. 1397 /// Stream of `abort` events handled by this [ElementInstance].
1398 @DomName('SVGElementInstance.onabort') 1398 @DomName('SVGElementInstance.onabort')
1399 @DocsEditable() 1399 @DocsEditable()
1400 Stream<Event> get onAbort => abortEvent.forTarget(this); 1400 Stream<Event> get onAbort => abortEvent.forTarget(this);
1401 1401
1402 /// Stream of `beforecopy` events handled by this [ElementInstance]. 1402 /// Stream of `beforecopy` events handled by this [ElementInstance].
1403 @DomName('SVGElementInstance.onbeforecopy') 1403 @DomName('SVGElementInstance.onbeforecopy')
1404 @DocsEditable() 1404 @DocsEditable()
1405 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this); 1405 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this);
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1628 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1629 /** 1629 /**
1630 * Constructor instantiated by the DOM when a custom element has been created. 1630 * Constructor instantiated by the DOM when a custom element has been created.
1631 * 1631 *
1632 * This can only be called by subclasses from their created constructor. 1632 * This can only be called by subclasses from their created constructor.
1633 */ 1633 */
1634 EllipseElement.created() : super.created(); 1634 EllipseElement.created() : super.created();
1635 1635
1636 @DomName('SVGEllipseElement.cx') 1636 @DomName('SVGEllipseElement.cx')
1637 @DocsEditable() 1637 @DocsEditable()
1638 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.$cx_Getter(this); 1638 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.cx_Getter(this);
1639 1639
1640 @DomName('SVGEllipseElement.cy') 1640 @DomName('SVGEllipseElement.cy')
1641 @DocsEditable() 1641 @DocsEditable()
1642 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.$cy_Getter(this); 1642 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.cy_Getter(this);
1643 1643
1644 @DomName('SVGEllipseElement.rx') 1644 @DomName('SVGEllipseElement.rx')
1645 @DocsEditable() 1645 @DocsEditable()
1646 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.$rx_Getter(this); 1646 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.rx_Getter(this);
1647 1647
1648 @DomName('SVGEllipseElement.ry') 1648 @DomName('SVGEllipseElement.ry')
1649 @DocsEditable() 1649 @DocsEditable()
1650 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.$ry_Getter(this); 1650 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.ry_Getter(this);
1651 1651
1652 } 1652 }
1653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1654 // for details. All rights reserved. Use of this source code is governed by a 1654 // for details. All rights reserved. Use of this source code is governed by a
1655 // BSD-style license that can be found in the LICENSE file. 1655 // BSD-style license that can be found in the LICENSE file.
1656 1656
1657 // WARNING: Do not edit - generated code. 1657 // WARNING: Do not edit - generated code.
1658 1658
1659 1659
1660 @DocsEditable() 1660 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN') 1700 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
1701 @DocsEditable() 1701 @DocsEditable()
1702 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1702 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1703 1703
1704 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN') 1704 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
1705 @DocsEditable() 1705 @DocsEditable()
1706 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1706 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1707 1707
1708 @DomName('SVGFEBlendElement.in1') 1708 @DomName('SVGFEBlendElement.in1')
1709 @DocsEditable() 1709 @DocsEditable()
1710 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.$in1_Getter(this); 1710 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.in1_Getter(this);
1711 1711
1712 @DomName('SVGFEBlendElement.in2') 1712 @DomName('SVGFEBlendElement.in2')
1713 @DocsEditable() 1713 @DocsEditable()
1714 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.$in2_Getter(this); 1714 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.in2_Getter(this);
1715 1715
1716 @DomName('SVGFEBlendElement.mode') 1716 @DomName('SVGFEBlendElement.mode')
1717 @DocsEditable() 1717 @DocsEditable()
1718 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.$mode_Getter(thi s); 1718 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.mode_Getter(this );
1719 1719
1720 @DomName('SVGFEBlendElement.height') 1720 @DomName('SVGFEBlendElement.height')
1721 @DocsEditable() 1721 @DocsEditable()
1722 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.$height_Getter(this ); 1722 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.height_Getter(this) ;
1723 1723
1724 @DomName('SVGFEBlendElement.result') 1724 @DomName('SVGFEBlendElement.result')
1725 @DocsEditable() 1725 @DocsEditable()
1726 AnimatedString get result => _blink.BlinkSVGFEBlendElement.$result_Getter(this ); 1726 AnimatedString get result => _blink.BlinkSVGFEBlendElement.result_Getter(this) ;
1727 1727
1728 @DomName('SVGFEBlendElement.width') 1728 @DomName('SVGFEBlendElement.width')
1729 @DocsEditable() 1729 @DocsEditable()
1730 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.$width_Getter(this); 1730 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.width_Getter(this);
1731 1731
1732 @DomName('SVGFEBlendElement.x') 1732 @DomName('SVGFEBlendElement.x')
1733 @DocsEditable() 1733 @DocsEditable()
1734 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.$x_Getter(this); 1734 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.x_Getter(this);
1735 1735
1736 @DomName('SVGFEBlendElement.y') 1736 @DomName('SVGFEBlendElement.y')
1737 @DocsEditable() 1737 @DocsEditable()
1738 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.$y_Getter(this); 1738 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.y_Getter(this);
1739 1739
1740 } 1740 }
1741 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1741 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1742 // for details. All rights reserved. Use of this source code is governed by a 1742 // for details. All rights reserved. Use of this source code is governed by a
1743 // BSD-style license that can be found in the LICENSE file. 1743 // BSD-style license that can be found in the LICENSE file.
1744 1744
1745 // WARNING: Do not edit - generated code. 1745 // WARNING: Do not edit - generated code.
1746 1746
1747 1747
1748 @DocsEditable() 1748 @DocsEditable()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1784 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE') 1784 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
1785 @DocsEditable() 1785 @DocsEditable()
1786 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1786 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1787 1787
1788 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN') 1788 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
1789 @DocsEditable() 1789 @DocsEditable()
1790 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1790 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1791 1791
1792 @DomName('SVGFEColorMatrixElement.in1') 1792 @DomName('SVGFEColorMatrixElement.in1')
1793 @DocsEditable() 1793 @DocsEditable()
1794 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.$in1_Getter(this ); 1794 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.in1_Getter(this) ;
1795 1795
1796 @DomName('SVGFEColorMatrixElement.type') 1796 @DomName('SVGFEColorMatrixElement.type')
1797 @DocsEditable() 1797 @DocsEditable()
1798 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.$type_Gett er(this); 1798 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.type_Gette r(this);
1799 1799
1800 @DomName('SVGFEColorMatrixElement.values') 1800 @DomName('SVGFEColorMatrixElement.values')
1801 @DocsEditable() 1801 @DocsEditable()
1802 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.$values_G etter(this); 1802 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.values_Ge tter(this);
1803 1803
1804 @DomName('SVGFEColorMatrixElement.height') 1804 @DomName('SVGFEColorMatrixElement.height')
1805 @DocsEditable() 1805 @DocsEditable()
1806 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.$height_Gette r(this); 1806 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.height_Getter (this);
1807 1807
1808 @DomName('SVGFEColorMatrixElement.result') 1808 @DomName('SVGFEColorMatrixElement.result')
1809 @DocsEditable() 1809 @DocsEditable()
1810 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.$result_Gette r(this); 1810 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.result_Getter (this);
1811 1811
1812 @DomName('SVGFEColorMatrixElement.width') 1812 @DomName('SVGFEColorMatrixElement.width')
1813 @DocsEditable() 1813 @DocsEditable()
1814 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.$width_Getter( this); 1814 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.width_Getter(t his);
1815 1815
1816 @DomName('SVGFEColorMatrixElement.x') 1816 @DomName('SVGFEColorMatrixElement.x')
1817 @DocsEditable() 1817 @DocsEditable()
1818 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.$x_Getter(this); 1818 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.x_Getter(this);
1819 1819
1820 @DomName('SVGFEColorMatrixElement.y') 1820 @DomName('SVGFEColorMatrixElement.y')
1821 @DocsEditable() 1821 @DocsEditable()
1822 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.$y_Getter(this); 1822 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.y_Getter(this);
1823 1823
1824 } 1824 }
1825 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1825 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1826 // for details. All rights reserved. Use of this source code is governed by a 1826 // for details. All rights reserved. Use of this source code is governed by a
1827 // BSD-style license that can be found in the LICENSE file. 1827 // BSD-style license that can be found in the LICENSE file.
1828 1828
1829 // WARNING: Do not edit - generated code. 1829 // WARNING: Do not edit - generated code.
1830 1830
1831 1831
1832 @DocsEditable() 1832 @DocsEditable()
(...skipping 15 matching lines...) Expand all
1848 * 1848 *
1849 * This can only be called by subclasses from their created constructor. 1849 * This can only be called by subclasses from their created constructor.
1850 */ 1850 */
1851 FEComponentTransferElement.created() : super.created(); 1851 FEComponentTransferElement.created() : super.created();
1852 1852
1853 /// Checks if this type is supported on the current platform. 1853 /// Checks if this type is supported on the current platform.
1854 static bool get supported => true; 1854 static bool get supported => true;
1855 1855
1856 @DomName('SVGFEComponentTransferElement.in1') 1856 @DomName('SVGFEComponentTransferElement.in1')
1857 @DocsEditable() 1857 @DocsEditable()
1858 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.$in1_Gette r(this); 1858 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.in1_Getter (this);
1859 1859
1860 @DomName('SVGFEComponentTransferElement.height') 1860 @DomName('SVGFEComponentTransferElement.height')
1861 @DocsEditable() 1861 @DocsEditable()
1862 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.$height _Getter(this); 1862 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.height_ Getter(this);
1863 1863
1864 @DomName('SVGFEComponentTransferElement.result') 1864 @DomName('SVGFEComponentTransferElement.result')
1865 @DocsEditable() 1865 @DocsEditable()
1866 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.$result _Getter(this); 1866 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.result_ Getter(this);
1867 1867
1868 @DomName('SVGFEComponentTransferElement.width') 1868 @DomName('SVGFEComponentTransferElement.width')
1869 @DocsEditable() 1869 @DocsEditable()
1870 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.$width_G etter(this); 1870 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.width_Ge tter(this);
1871 1871
1872 @DomName('SVGFEComponentTransferElement.x') 1872 @DomName('SVGFEComponentTransferElement.x')
1873 @DocsEditable() 1873 @DocsEditable()
1874 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.$x_Getter(th is); 1874 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.x_Getter(thi s);
1875 1875
1876 @DomName('SVGFEComponentTransferElement.y') 1876 @DomName('SVGFEComponentTransferElement.y')
1877 @DocsEditable() 1877 @DocsEditable()
1878 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.$y_Getter(th is); 1878 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.y_Getter(thi s);
1879 1879
1880 } 1880 }
1881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1882 // for details. All rights reserved. Use of this source code is governed by a 1882 // for details. All rights reserved. Use of this source code is governed by a
1883 // BSD-style license that can be found in the LICENSE file. 1883 // BSD-style license that can be found in the LICENSE file.
1884 1884
1885 // WARNING: Do not edit - generated code. 1885 // WARNING: Do not edit - generated code.
1886 1886
1887 1887
1888 @DocsEditable() 1888 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1921 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN') 1921 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
1922 @DocsEditable() 1922 @DocsEditable()
1923 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1923 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1924 1924
1925 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR') 1925 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
1926 @DocsEditable() 1926 @DocsEditable()
1927 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1927 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1928 1928
1929 @DomName('SVGFECompositeElement.in1') 1929 @DomName('SVGFECompositeElement.in1')
1930 @DocsEditable() 1930 @DocsEditable()
1931 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.$in1_Getter(this); 1931 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.in1_Getter(this);
1932 1932
1933 @DomName('SVGFECompositeElement.in2') 1933 @DomName('SVGFECompositeElement.in2')
1934 @DocsEditable() 1934 @DocsEditable()
1935 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.$in2_Getter(this); 1935 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.in2_Getter(this);
1936 1936
1937 @DomName('SVGFECompositeElement.k1') 1937 @DomName('SVGFECompositeElement.k1')
1938 @DocsEditable() 1938 @DocsEditable()
1939 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.$k1_Getter(this); 1939 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.k1_Getter(this);
1940 1940
1941 @DomName('SVGFECompositeElement.k2') 1941 @DomName('SVGFECompositeElement.k2')
1942 @DocsEditable() 1942 @DocsEditable()
1943 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.$k2_Getter(this); 1943 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.k2_Getter(this);
1944 1944
1945 @DomName('SVGFECompositeElement.k3') 1945 @DomName('SVGFECompositeElement.k3')
1946 @DocsEditable() 1946 @DocsEditable()
1947 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.$k3_Getter(this); 1947 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.k3_Getter(this);
1948 1948
1949 @DomName('SVGFECompositeElement.k4') 1949 @DomName('SVGFECompositeElement.k4')
1950 @DocsEditable() 1950 @DocsEditable()
1951 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.$k4_Getter(this); 1951 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.k4_Getter(this);
1952 1952
1953 @DomName('SVGFECompositeElement.operator') 1953 @DomName('SVGFECompositeElement.operator')
1954 @DocsEditable() 1954 @DocsEditable()
1955 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.$operato r_Getter(this); 1955 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.operator _Getter(this);
1956 1956
1957 @DomName('SVGFECompositeElement.height') 1957 @DomName('SVGFECompositeElement.height')
1958 @DocsEditable() 1958 @DocsEditable()
1959 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.$height_Getter( this); 1959 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.height_Getter(t his);
1960 1960
1961 @DomName('SVGFECompositeElement.result') 1961 @DomName('SVGFECompositeElement.result')
1962 @DocsEditable() 1962 @DocsEditable()
1963 AnimatedString get result => _blink.BlinkSVGFECompositeElement.$result_Getter( this); 1963 AnimatedString get result => _blink.BlinkSVGFECompositeElement.result_Getter(t his);
1964 1964
1965 @DomName('SVGFECompositeElement.width') 1965 @DomName('SVGFECompositeElement.width')
1966 @DocsEditable() 1966 @DocsEditable()
1967 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.$width_Getter(th is); 1967 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.width_Getter(thi s);
1968 1968
1969 @DomName('SVGFECompositeElement.x') 1969 @DomName('SVGFECompositeElement.x')
1970 @DocsEditable() 1970 @DocsEditable()
1971 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.$x_Getter(this); 1971 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.x_Getter(this);
1972 1972
1973 @DomName('SVGFECompositeElement.y') 1973 @DomName('SVGFECompositeElement.y')
1974 @DocsEditable() 1974 @DocsEditable()
1975 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.$y_Getter(this); 1975 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.y_Getter(this);
1976 1976
1977 } 1977 }
1978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1979 // for details. All rights reserved. Use of this source code is governed by a 1979 // for details. All rights reserved. Use of this source code is governed by a
1980 // BSD-style license that can be found in the LICENSE file. 1980 // BSD-style license that can be found in the LICENSE file.
1981 1981
1982 // WARNING: Do not edit - generated code. 1982 // WARNING: Do not edit - generated code.
1983 1983
1984 1984
1985 @DocsEditable() 1985 @DocsEditable()
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2017 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN') 2017 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
2018 @DocsEditable() 2018 @DocsEditable()
2019 static const int SVG_EDGEMODE_UNKNOWN = 0; 2019 static const int SVG_EDGEMODE_UNKNOWN = 0;
2020 2020
2021 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP') 2021 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
2022 @DocsEditable() 2022 @DocsEditable()
2023 static const int SVG_EDGEMODE_WRAP = 2; 2023 static const int SVG_EDGEMODE_WRAP = 2;
2024 2024
2025 @DomName('SVGFEConvolveMatrixElement.bias') 2025 @DomName('SVGFEConvolveMatrixElement.bias')
2026 @DocsEditable() 2026 @DocsEditable()
2027 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.$bias_Getter (this); 2027 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.bias_Getter( this);
2028 2028
2029 @DomName('SVGFEConvolveMatrixElement.divisor') 2029 @DomName('SVGFEConvolveMatrixElement.divisor')
2030 @DocsEditable() 2030 @DocsEditable()
2031 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.$divisor_ Getter(this); 2031 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.divisor_G etter(this);
2032 2032
2033 @DomName('SVGFEConvolveMatrixElement.edgeMode') 2033 @DomName('SVGFEConvolveMatrixElement.edgeMode')
2034 @DocsEditable() 2034 @DocsEditable()
2035 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.$ed geMode_Getter(this); 2035 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.edg eMode_Getter(this);
2036 2036
2037 @DomName('SVGFEConvolveMatrixElement.in1') 2037 @DomName('SVGFEConvolveMatrixElement.in1')
2038 @DocsEditable() 2038 @DocsEditable()
2039 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.$in1_Getter(t his); 2039 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.in1_Getter(th is);
2040 2040
2041 @DomName('SVGFEConvolveMatrixElement.kernelMatrix') 2041 @DomName('SVGFEConvolveMatrixElement.kernelMatrix')
2042 @DocsEditable() 2042 @DocsEditable()
2043 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement. $kernelMatrix_Getter(this); 2043 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement. kernelMatrix_Getter(this);
2044 2044
2045 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX') 2045 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
2046 @DocsEditable() 2046 @DocsEditable()
2047 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement .$kernelUnitLengthX_Getter(this); 2047 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement .kernelUnitLengthX_Getter(this);
2048 2048
2049 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY') 2049 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
2050 @DocsEditable() 2050 @DocsEditable()
2051 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement .$kernelUnitLengthY_Getter(this); 2051 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement .kernelUnitLengthY_Getter(this);
2052 2052
2053 @DomName('SVGFEConvolveMatrixElement.orderX') 2053 @DomName('SVGFEConvolveMatrixElement.orderX')
2054 @DocsEditable() 2054 @DocsEditable()
2055 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.$orderX_G etter(this); 2055 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.orderX_Ge tter(this);
2056 2056
2057 @DomName('SVGFEConvolveMatrixElement.orderY') 2057 @DomName('SVGFEConvolveMatrixElement.orderY')
2058 @DocsEditable() 2058 @DocsEditable()
2059 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.$orderY_G etter(this); 2059 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.orderY_Ge tter(this);
2060 2060
2061 @DomName('SVGFEConvolveMatrixElement.preserveAlpha') 2061 @DomName('SVGFEConvolveMatrixElement.preserveAlpha')
2062 @DocsEditable() 2062 @DocsEditable()
2063 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.$p reserveAlpha_Getter(this); 2063 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.pr eserveAlpha_Getter(this);
2064 2064
2065 @DomName('SVGFEConvolveMatrixElement.targetX') 2065 @DomName('SVGFEConvolveMatrixElement.targetX')
2066 @DocsEditable() 2066 @DocsEditable()
2067 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.$targetX _Getter(this); 2067 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.targetX_ Getter(this);
2068 2068
2069 @DomName('SVGFEConvolveMatrixElement.targetY') 2069 @DomName('SVGFEConvolveMatrixElement.targetY')
2070 @DocsEditable() 2070 @DocsEditable()
2071 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.$targetY _Getter(this); 2071 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.targetY_ Getter(this);
2072 2072
2073 @DomName('SVGFEConvolveMatrixElement.height') 2073 @DomName('SVGFEConvolveMatrixElement.height')
2074 @DocsEditable() 2074 @DocsEditable()
2075 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.$height_Ge tter(this); 2075 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.height_Get ter(this);
2076 2076
2077 @DomName('SVGFEConvolveMatrixElement.result') 2077 @DomName('SVGFEConvolveMatrixElement.result')
2078 @DocsEditable() 2078 @DocsEditable()
2079 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.$result_Ge tter(this); 2079 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.result_Get ter(this);
2080 2080
2081 @DomName('SVGFEConvolveMatrixElement.width') 2081 @DomName('SVGFEConvolveMatrixElement.width')
2082 @DocsEditable() 2082 @DocsEditable()
2083 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.$width_Gett er(this); 2083 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.width_Gette r(this);
2084 2084
2085 @DomName('SVGFEConvolveMatrixElement.x') 2085 @DomName('SVGFEConvolveMatrixElement.x')
2086 @DocsEditable() 2086 @DocsEditable()
2087 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.$x_Getter(this) ; 2087 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.x_Getter(this);
2088 2088
2089 @DomName('SVGFEConvolveMatrixElement.y') 2089 @DomName('SVGFEConvolveMatrixElement.y')
2090 @DocsEditable() 2090 @DocsEditable()
2091 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.$y_Getter(this) ; 2091 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.y_Getter(this);
2092 2092
2093 } 2093 }
2094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2095 // for details. All rights reserved. Use of this source code is governed by a 2095 // for details. All rights reserved. Use of this source code is governed by a
2096 // BSD-style license that can be found in the LICENSE file. 2096 // BSD-style license that can be found in the LICENSE file.
2097 2097
2098 // WARNING: Do not edit - generated code. 2098 // WARNING: Do not edit - generated code.
2099 2099
2100 2100
2101 @DocsEditable() 2101 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2117 * 2117 *
2118 * This can only be called by subclasses from their created constructor. 2118 * This can only be called by subclasses from their created constructor.
2119 */ 2119 */
2120 FEDiffuseLightingElement.created() : super.created(); 2120 FEDiffuseLightingElement.created() : super.created();
2121 2121
2122 /// Checks if this type is supported on the current platform. 2122 /// Checks if this type is supported on the current platform.
2123 static bool get supported => true; 2123 static bool get supported => true;
2124 2124
2125 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') 2125 @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
2126 @DocsEditable() 2126 @DocsEditable()
2127 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement. $diffuseConstant_Getter(this); 2127 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement. diffuseConstant_Getter(this);
2128 2128
2129 @DomName('SVGFEDiffuseLightingElement.in1') 2129 @DomName('SVGFEDiffuseLightingElement.in1')
2130 @DocsEditable() 2130 @DocsEditable()
2131 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.$in1_Getter( this); 2131 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.in1_Getter(t his);
2132 2132
2133 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX') 2133 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
2134 @DocsEditable() 2134 @DocsEditable()
2135 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen t.$kernelUnitLengthX_Getter(this); 2135 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen t.kernelUnitLengthX_Getter(this);
2136 2136
2137 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY') 2137 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
2138 @DocsEditable() 2138 @DocsEditable()
2139 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen t.$kernelUnitLengthY_Getter(this); 2139 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen t.kernelUnitLengthY_Getter(this);
2140 2140
2141 @DomName('SVGFEDiffuseLightingElement.surfaceScale') 2141 @DomName('SVGFEDiffuseLightingElement.surfaceScale')
2142 @DocsEditable() 2142 @DocsEditable()
2143 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.$su rfaceScale_Getter(this); 2143 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.sur faceScale_Getter(this);
2144 2144
2145 @DomName('SVGFEDiffuseLightingElement.height') 2145 @DomName('SVGFEDiffuseLightingElement.height')
2146 @DocsEditable() 2146 @DocsEditable()
2147 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.$height_G etter(this); 2147 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.height_Ge tter(this);
2148 2148
2149 @DomName('SVGFEDiffuseLightingElement.result') 2149 @DomName('SVGFEDiffuseLightingElement.result')
2150 @DocsEditable() 2150 @DocsEditable()
2151 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.$result_G etter(this); 2151 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.result_Ge tter(this);
2152 2152
2153 @DomName('SVGFEDiffuseLightingElement.width') 2153 @DomName('SVGFEDiffuseLightingElement.width')
2154 @DocsEditable() 2154 @DocsEditable()
2155 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.$width_Get ter(this); 2155 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.width_Gett er(this);
2156 2156
2157 @DomName('SVGFEDiffuseLightingElement.x') 2157 @DomName('SVGFEDiffuseLightingElement.x')
2158 @DocsEditable() 2158 @DocsEditable()
2159 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.$x_Getter(this ); 2159 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.x_Getter(this) ;
2160 2160
2161 @DomName('SVGFEDiffuseLightingElement.y') 2161 @DomName('SVGFEDiffuseLightingElement.y')
2162 @DocsEditable() 2162 @DocsEditable()
2163 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.$y_Getter(this ); 2163 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.y_Getter(this) ;
2164 2164
2165 } 2165 }
2166 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2166 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2167 // for details. All rights reserved. Use of this source code is governed by a 2167 // for details. All rights reserved. Use of this source code is governed by a
2168 // BSD-style license that can be found in the LICENSE file. 2168 // BSD-style license that can be found in the LICENSE file.
2169 2169
2170 // WARNING: Do not edit - generated code. 2170 // WARNING: Do not edit - generated code.
2171 2171
2172 2172
2173 @DocsEditable() 2173 @DocsEditable()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R') 2209 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
2210 @DocsEditable() 2210 @DocsEditable()
2211 static const int SVG_CHANNEL_R = 1; 2211 static const int SVG_CHANNEL_R = 1;
2212 2212
2213 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN') 2213 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
2214 @DocsEditable() 2214 @DocsEditable()
2215 static const int SVG_CHANNEL_UNKNOWN = 0; 2215 static const int SVG_CHANNEL_UNKNOWN = 0;
2216 2216
2217 @DomName('SVGFEDisplacementMapElement.in1') 2217 @DomName('SVGFEDisplacementMapElement.in1')
2218 @DocsEditable() 2218 @DocsEditable()
2219 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.$in1_Getter( this); 2219 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.in1_Getter(t his);
2220 2220
2221 @DomName('SVGFEDisplacementMapElement.in2') 2221 @DomName('SVGFEDisplacementMapElement.in2')
2222 @DocsEditable() 2222 @DocsEditable()
2223 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.$in2_Getter( this); 2223 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.in2_Getter(t his);
2224 2224
2225 @DomName('SVGFEDisplacementMapElement.scale') 2225 @DomName('SVGFEDisplacementMapElement.scale')
2226 @DocsEditable() 2226 @DocsEditable()
2227 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.$scale_Get ter(this); 2227 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.scale_Gett er(this);
2228 2228
2229 @DomName('SVGFEDisplacementMapElement.xChannelSelector') 2229 @DomName('SVGFEDisplacementMapElement.xChannelSelector')
2230 @DocsEditable() 2230 @DocsEditable()
2231 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.$xChannelSelector_Getter(this); 2231 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.xChannelSelector_Getter(this);
2232 2232
2233 @DomName('SVGFEDisplacementMapElement.yChannelSelector') 2233 @DomName('SVGFEDisplacementMapElement.yChannelSelector')
2234 @DocsEditable() 2234 @DocsEditable()
2235 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.$yChannelSelector_Getter(this); 2235 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl ement.yChannelSelector_Getter(this);
2236 2236
2237 @DomName('SVGFEDisplacementMapElement.height') 2237 @DomName('SVGFEDisplacementMapElement.height')
2238 @DocsEditable() 2238 @DocsEditable()
2239 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.$height_G etter(this); 2239 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.height_Ge tter(this);
2240 2240
2241 @DomName('SVGFEDisplacementMapElement.result') 2241 @DomName('SVGFEDisplacementMapElement.result')
2242 @DocsEditable() 2242 @DocsEditable()
2243 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.$result_G etter(this); 2243 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.result_Ge tter(this);
2244 2244
2245 @DomName('SVGFEDisplacementMapElement.width') 2245 @DomName('SVGFEDisplacementMapElement.width')
2246 @DocsEditable() 2246 @DocsEditable()
2247 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.$width_Get ter(this); 2247 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.width_Gett er(this);
2248 2248
2249 @DomName('SVGFEDisplacementMapElement.x') 2249 @DomName('SVGFEDisplacementMapElement.x')
2250 @DocsEditable() 2250 @DocsEditable()
2251 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.$x_Getter(this ); 2251 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.x_Getter(this) ;
2252 2252
2253 @DomName('SVGFEDisplacementMapElement.y') 2253 @DomName('SVGFEDisplacementMapElement.y')
2254 @DocsEditable() 2254 @DocsEditable()
2255 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.$y_Getter(this ); 2255 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.y_Getter(this) ;
2256 2256
2257 } 2257 }
2258 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2258 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2259 // for details. All rights reserved. Use of this source code is governed by a 2259 // for details. All rights reserved. Use of this source code is governed by a
2260 // BSD-style license that can be found in the LICENSE file. 2260 // BSD-style license that can be found in the LICENSE file.
2261 2261
2262 // WARNING: Do not edit - generated code. 2262 // WARNING: Do not edit - generated code.
2263 2263
2264 2264
2265 @DocsEditable() 2265 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2281 * 2281 *
2282 * This can only be called by subclasses from their created constructor. 2282 * This can only be called by subclasses from their created constructor.
2283 */ 2283 */
2284 FEDistantLightElement.created() : super.created(); 2284 FEDistantLightElement.created() : super.created();
2285 2285
2286 /// Checks if this type is supported on the current platform. 2286 /// Checks if this type is supported on the current platform.
2287 static bool get supported => true; 2287 static bool get supported => true;
2288 2288
2289 @DomName('SVGFEDistantLightElement.azimuth') 2289 @DomName('SVGFEDistantLightElement.azimuth')
2290 @DocsEditable() 2290 @DocsEditable()
2291 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.$azimuth_Ge tter(this); 2291 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.azimuth_Get ter(this);
2292 2292
2293 @DomName('SVGFEDistantLightElement.elevation') 2293 @DomName('SVGFEDistantLightElement.elevation')
2294 @DocsEditable() 2294 @DocsEditable()
2295 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.$elevatio n_Getter(this); 2295 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.elevation _Getter(this);
2296 2296
2297 } 2297 }
2298 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2298 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2299 // for details. All rights reserved. Use of this source code is governed by a 2299 // for details. All rights reserved. Use of this source code is governed by a
2300 // BSD-style license that can be found in the LICENSE file. 2300 // BSD-style license that can be found in the LICENSE file.
2301 2301
2302 // WARNING: Do not edit - generated code. 2302 // WARNING: Do not edit - generated code.
2303 2303
2304 2304
2305 @DocsEditable() 2305 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2321 * 2321 *
2322 * This can only be called by subclasses from their created constructor. 2322 * This can only be called by subclasses from their created constructor.
2323 */ 2323 */
2324 FEFloodElement.created() : super.created(); 2324 FEFloodElement.created() : super.created();
2325 2325
2326 /// Checks if this type is supported on the current platform. 2326 /// Checks if this type is supported on the current platform.
2327 static bool get supported => true; 2327 static bool get supported => true;
2328 2328
2329 @DomName('SVGFEFloodElement.height') 2329 @DomName('SVGFEFloodElement.height')
2330 @DocsEditable() 2330 @DocsEditable()
2331 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.$height_Getter(this ); 2331 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.height_Getter(this) ;
2332 2332
2333 @DomName('SVGFEFloodElement.result') 2333 @DomName('SVGFEFloodElement.result')
2334 @DocsEditable() 2334 @DocsEditable()
2335 AnimatedString get result => _blink.BlinkSVGFEFloodElement.$result_Getter(this ); 2335 AnimatedString get result => _blink.BlinkSVGFEFloodElement.result_Getter(this) ;
2336 2336
2337 @DomName('SVGFEFloodElement.width') 2337 @DomName('SVGFEFloodElement.width')
2338 @DocsEditable() 2338 @DocsEditable()
2339 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.$width_Getter(this); 2339 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.width_Getter(this);
2340 2340
2341 @DomName('SVGFEFloodElement.x') 2341 @DomName('SVGFEFloodElement.x')
2342 @DocsEditable() 2342 @DocsEditable()
2343 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.$x_Getter(this); 2343 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.x_Getter(this);
2344 2344
2345 @DomName('SVGFEFloodElement.y') 2345 @DomName('SVGFEFloodElement.y')
2346 @DocsEditable() 2346 @DocsEditable()
2347 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.$y_Getter(this); 2347 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.y_Getter(this);
2348 2348
2349 } 2349 }
2350 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2350 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2351 // for details. All rights reserved. Use of this source code is governed by a 2351 // for details. All rights reserved. Use of this source code is governed by a
2352 // BSD-style license that can be found in the LICENSE file. 2352 // BSD-style license that can be found in the LICENSE file.
2353 2353
2354 // WARNING: Do not edit - generated code. 2354 // WARNING: Do not edit - generated code.
2355 2355
2356 2356
2357 @DocsEditable() 2357 @DocsEditable()
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
2501 * 2501 *
2502 * This can only be called by subclasses from their created constructor. 2502 * This can only be called by subclasses from their created constructor.
2503 */ 2503 */
2504 FEGaussianBlurElement.created() : super.created(); 2504 FEGaussianBlurElement.created() : super.created();
2505 2505
2506 /// Checks if this type is supported on the current platform. 2506 /// Checks if this type is supported on the current platform.
2507 static bool get supported => true; 2507 static bool get supported => true;
2508 2508
2509 @DomName('SVGFEGaussianBlurElement.in1') 2509 @DomName('SVGFEGaussianBlurElement.in1')
2510 @DocsEditable() 2510 @DocsEditable()
2511 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.$in1_Getter(thi s); 2511 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.in1_Getter(this );
2512 2512
2513 @DomName('SVGFEGaussianBlurElement.stdDeviationX') 2513 @DomName('SVGFEGaussianBlurElement.stdDeviationX')
2514 @DocsEditable() 2514 @DocsEditable()
2515 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.$stdD eviationX_Getter(this); 2515 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.stdDe viationX_Getter(this);
2516 2516
2517 @DomName('SVGFEGaussianBlurElement.stdDeviationY') 2517 @DomName('SVGFEGaussianBlurElement.stdDeviationY')
2518 @DocsEditable() 2518 @DocsEditable()
2519 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.$stdD eviationY_Getter(this); 2519 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.stdDe viationY_Getter(this);
2520 2520
2521 @DomName('SVGFEGaussianBlurElement.setStdDeviation') 2521 @DomName('SVGFEGaussianBlurElement.setStdDeviation')
2522 @DocsEditable() 2522 @DocsEditable()
2523 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.$setStdDeviation_Callback(this, stdDeviationX, stdDeviation Y); 2523 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF EGaussianBlurElement.setStdDeviation_Callback_float_float(this, stdDeviationX, s tdDeviationY);
2524 2524
2525 @DomName('SVGFEGaussianBlurElement.height') 2525 @DomName('SVGFEGaussianBlurElement.height')
2526 @DocsEditable() 2526 @DocsEditable()
2527 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.$height_Gett er(this); 2527 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.height_Gette r(this);
2528 2528
2529 @DomName('SVGFEGaussianBlurElement.result') 2529 @DomName('SVGFEGaussianBlurElement.result')
2530 @DocsEditable() 2530 @DocsEditable()
2531 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.$result_Gett er(this); 2531 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.result_Gette r(this);
2532 2532
2533 @DomName('SVGFEGaussianBlurElement.width') 2533 @DomName('SVGFEGaussianBlurElement.width')
2534 @DocsEditable() 2534 @DocsEditable()
2535 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.$width_Getter (this); 2535 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.width_Getter( this);
2536 2536
2537 @DomName('SVGFEGaussianBlurElement.x') 2537 @DomName('SVGFEGaussianBlurElement.x')
2538 @DocsEditable() 2538 @DocsEditable()
2539 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.$x_Getter(this); 2539 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.x_Getter(this);
2540 2540
2541 @DomName('SVGFEGaussianBlurElement.y') 2541 @DomName('SVGFEGaussianBlurElement.y')
2542 @DocsEditable() 2542 @DocsEditable()
2543 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.$y_Getter(this); 2543 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.y_Getter(this);
2544 2544
2545 } 2545 }
2546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2547 // for details. All rights reserved. Use of this source code is governed by a 2547 // for details. All rights reserved. Use of this source code is governed by a
2548 // BSD-style license that can be found in the LICENSE file. 2548 // BSD-style license that can be found in the LICENSE file.
2549 2549
2550 // WARNING: Do not edit - generated code. 2550 // WARNING: Do not edit - generated code.
2551 2551
2552 2552
2553 @DocsEditable() 2553 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2569 * 2569 *
2570 * This can only be called by subclasses from their created constructor. 2570 * This can only be called by subclasses from their created constructor.
2571 */ 2571 */
2572 FEImageElement.created() : super.created(); 2572 FEImageElement.created() : super.created();
2573 2573
2574 /// Checks if this type is supported on the current platform. 2574 /// Checks if this type is supported on the current platform.
2575 static bool get supported => true; 2575 static bool get supported => true;
2576 2576
2577 @DomName('SVGFEImageElement.preserveAspectRatio') 2577 @DomName('SVGFEImageElement.preserveAspectRatio')
2578 @DocsEditable() 2578 @DocsEditable()
2579 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE lement.$preserveAspectRatio_Getter(this); 2579 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE lement.preserveAspectRatio_Getter(this);
2580 2580
2581 @DomName('SVGFEImageElement.height') 2581 @DomName('SVGFEImageElement.height')
2582 @DocsEditable() 2582 @DocsEditable()
2583 AnimatedLength get height => _blink.BlinkSVGFEImageElement.$height_Getter(this ); 2583 AnimatedLength get height => _blink.BlinkSVGFEImageElement.height_Getter(this) ;
2584 2584
2585 @DomName('SVGFEImageElement.result') 2585 @DomName('SVGFEImageElement.result')
2586 @DocsEditable() 2586 @DocsEditable()
2587 AnimatedString get result => _blink.BlinkSVGFEImageElement.$result_Getter(this ); 2587 AnimatedString get result => _blink.BlinkSVGFEImageElement.result_Getter(this) ;
2588 2588
2589 @DomName('SVGFEImageElement.width') 2589 @DomName('SVGFEImageElement.width')
2590 @DocsEditable() 2590 @DocsEditable()
2591 AnimatedLength get width => _blink.BlinkSVGFEImageElement.$width_Getter(this); 2591 AnimatedLength get width => _blink.BlinkSVGFEImageElement.width_Getter(this);
2592 2592
2593 @DomName('SVGFEImageElement.x') 2593 @DomName('SVGFEImageElement.x')
2594 @DocsEditable() 2594 @DocsEditable()
2595 AnimatedLength get x => _blink.BlinkSVGFEImageElement.$x_Getter(this); 2595 AnimatedLength get x => _blink.BlinkSVGFEImageElement.x_Getter(this);
2596 2596
2597 @DomName('SVGFEImageElement.y') 2597 @DomName('SVGFEImageElement.y')
2598 @DocsEditable() 2598 @DocsEditable()
2599 AnimatedLength get y => _blink.BlinkSVGFEImageElement.$y_Getter(this); 2599 AnimatedLength get y => _blink.BlinkSVGFEImageElement.y_Getter(this);
2600 2600
2601 @DomName('SVGFEImageElement.href') 2601 @DomName('SVGFEImageElement.href')
2602 @DocsEditable() 2602 @DocsEditable()
2603 AnimatedString get href => _blink.BlinkSVGFEImageElement.$href_Getter(this); 2603 AnimatedString get href => _blink.BlinkSVGFEImageElement.href_Getter(this);
2604 2604
2605 } 2605 }
2606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2607 // for details. All rights reserved. Use of this source code is governed by a 2607 // for details. All rights reserved. Use of this source code is governed by a
2608 // BSD-style license that can be found in the LICENSE file. 2608 // BSD-style license that can be found in the LICENSE file.
2609 2609
2610 // WARNING: Do not edit - generated code. 2610 // WARNING: Do not edit - generated code.
2611 2611
2612 2612
2613 @DocsEditable() 2613 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2629 * 2629 *
2630 * This can only be called by subclasses from their created constructor. 2630 * This can only be called by subclasses from their created constructor.
2631 */ 2631 */
2632 FEMergeElement.created() : super.created(); 2632 FEMergeElement.created() : super.created();
2633 2633
2634 /// Checks if this type is supported on the current platform. 2634 /// Checks if this type is supported on the current platform.
2635 static bool get supported => true; 2635 static bool get supported => true;
2636 2636
2637 @DomName('SVGFEMergeElement.height') 2637 @DomName('SVGFEMergeElement.height')
2638 @DocsEditable() 2638 @DocsEditable()
2639 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.$height_Getter(this ); 2639 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.height_Getter(this) ;
2640 2640
2641 @DomName('SVGFEMergeElement.result') 2641 @DomName('SVGFEMergeElement.result')
2642 @DocsEditable() 2642 @DocsEditable()
2643 AnimatedString get result => _blink.BlinkSVGFEMergeElement.$result_Getter(this ); 2643 AnimatedString get result => _blink.BlinkSVGFEMergeElement.result_Getter(this) ;
2644 2644
2645 @DomName('SVGFEMergeElement.width') 2645 @DomName('SVGFEMergeElement.width')
2646 @DocsEditable() 2646 @DocsEditable()
2647 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.$width_Getter(this); 2647 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.width_Getter(this);
2648 2648
2649 @DomName('SVGFEMergeElement.x') 2649 @DomName('SVGFEMergeElement.x')
2650 @DocsEditable() 2650 @DocsEditable()
2651 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.$x_Getter(this); 2651 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.x_Getter(this);
2652 2652
2653 @DomName('SVGFEMergeElement.y') 2653 @DomName('SVGFEMergeElement.y')
2654 @DocsEditable() 2654 @DocsEditable()
2655 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.$y_Getter(this); 2655 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.y_Getter(this);
2656 2656
2657 } 2657 }
2658 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2658 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2659 // for details. All rights reserved. Use of this source code is governed by a 2659 // for details. All rights reserved. Use of this source code is governed by a
2660 // BSD-style license that can be found in the LICENSE file. 2660 // BSD-style license that can be found in the LICENSE file.
2661 2661
2662 // WARNING: Do not edit - generated code. 2662 // WARNING: Do not edit - generated code.
2663 2663
2664 2664
2665 @DocsEditable() 2665 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2681 * 2681 *
2682 * This can only be called by subclasses from their created constructor. 2682 * This can only be called by subclasses from their created constructor.
2683 */ 2683 */
2684 FEMergeNodeElement.created() : super.created(); 2684 FEMergeNodeElement.created() : super.created();
2685 2685
2686 /// Checks if this type is supported on the current platform. 2686 /// Checks if this type is supported on the current platform.
2687 static bool get supported => true; 2687 static bool get supported => true;
2688 2688
2689 @DomName('SVGFEMergeNodeElement.in1') 2689 @DomName('SVGFEMergeNodeElement.in1')
2690 @DocsEditable() 2690 @DocsEditable()
2691 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.$in1_Getter(this); 2691 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.in1_Getter(this);
2692 2692
2693 } 2693 }
2694 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2694 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2695 // for details. All rights reserved. Use of this source code is governed by a 2695 // for details. All rights reserved. Use of this source code is governed by a
2696 // BSD-style license that can be found in the LICENSE file. 2696 // BSD-style license that can be found in the LICENSE file.
2697 2697
2698 // WARNING: Do not edit - generated code. 2698 // WARNING: Do not edit - generated code.
2699 2699
2700 2700
2701 @DocsEditable() 2701 @DocsEditable()
(...skipping 20 matching lines...) Expand all
2722 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2722 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2723 @DocsEditable() 2723 @DocsEditable()
2724 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2724 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2725 2725
2726 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') 2726 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
2727 @DocsEditable() 2727 @DocsEditable()
2728 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2728 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2729 2729
2730 @DomName('SVGFEMorphologyElement.in1') 2730 @DomName('SVGFEMorphologyElement.in1')
2731 @DocsEditable() 2731 @DocsEditable()
2732 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.$in1_Getter(this) ; 2732 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.in1_Getter(this);
2733 2733
2734 @DomName('SVGFEMorphologyElement.operator') 2734 @DomName('SVGFEMorphologyElement.operator')
2735 @DocsEditable() 2735 @DocsEditable()
2736 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.$operat or_Getter(this); 2736 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.operato r_Getter(this);
2737 2737
2738 @DomName('SVGFEMorphologyElement.radiusX') 2738 @DomName('SVGFEMorphologyElement.radiusX')
2739 @DocsEditable() 2739 @DocsEditable()
2740 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.$radiusX_Gett er(this); 2740 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.radiusX_Gette r(this);
2741 2741
2742 @DomName('SVGFEMorphologyElement.radiusY') 2742 @DomName('SVGFEMorphologyElement.radiusY')
2743 @DocsEditable() 2743 @DocsEditable()
2744 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.$radiusY_Gett er(this); 2744 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.radiusY_Gette r(this);
2745 2745
2746 @DomName('SVGFEMorphologyElement.setRadius') 2746 @DomName('SVGFEMorphologyElement.setRadius')
2747 @DocsEditable() 2747 @DocsEditable()
2748 void setRadius(num radiusX, num radiusY) => _blink.BlinkSVGFEMorphologyElement .$setRadius_Callback(this, radiusX, radiusY); 2748 void setRadius(num radiusX, num radiusY) => _blink.BlinkSVGFEMorphologyElement .setRadius_Callback_float_float(this, radiusX, radiusY);
2749 2749
2750 @DomName('SVGFEMorphologyElement.height') 2750 @DomName('SVGFEMorphologyElement.height')
2751 @DocsEditable() 2751 @DocsEditable()
2752 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.$height_Getter (this); 2752 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.height_Getter( this);
2753 2753
2754 @DomName('SVGFEMorphologyElement.result') 2754 @DomName('SVGFEMorphologyElement.result')
2755 @DocsEditable() 2755 @DocsEditable()
2756 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.$result_Getter (this); 2756 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.result_Getter( this);
2757 2757
2758 @DomName('SVGFEMorphologyElement.width') 2758 @DomName('SVGFEMorphologyElement.width')
2759 @DocsEditable() 2759 @DocsEditable()
2760 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.$width_Getter(t his); 2760 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.width_Getter(th is);
2761 2761
2762 @DomName('SVGFEMorphologyElement.x') 2762 @DomName('SVGFEMorphologyElement.x')
2763 @DocsEditable() 2763 @DocsEditable()
2764 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.$x_Getter(this); 2764 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.x_Getter(this);
2765 2765
2766 @DomName('SVGFEMorphologyElement.y') 2766 @DomName('SVGFEMorphologyElement.y')
2767 @DocsEditable() 2767 @DocsEditable()
2768 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.$y_Getter(this); 2768 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.y_Getter(this);
2769 2769
2770 } 2770 }
2771 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2771 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2772 // for details. All rights reserved. Use of this source code is governed by a 2772 // for details. All rights reserved. Use of this source code is governed by a
2773 // BSD-style license that can be found in the LICENSE file. 2773 // BSD-style license that can be found in the LICENSE file.
2774 2774
2775 // WARNING: Do not edit - generated code. 2775 // WARNING: Do not edit - generated code.
2776 2776
2777 2777
2778 @DocsEditable() 2778 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2794 * 2794 *
2795 * This can only be called by subclasses from their created constructor. 2795 * This can only be called by subclasses from their created constructor.
2796 */ 2796 */
2797 FEOffsetElement.created() : super.created(); 2797 FEOffsetElement.created() : super.created();
2798 2798
2799 /// Checks if this type is supported on the current platform. 2799 /// Checks if this type is supported on the current platform.
2800 static bool get supported => true; 2800 static bool get supported => true;
2801 2801
2802 @DomName('SVGFEOffsetElement.dx') 2802 @DomName('SVGFEOffsetElement.dx')
2803 @DocsEditable() 2803 @DocsEditable()
2804 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.$dx_Getter(this); 2804 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.dx_Getter(this);
2805 2805
2806 @DomName('SVGFEOffsetElement.dy') 2806 @DomName('SVGFEOffsetElement.dy')
2807 @DocsEditable() 2807 @DocsEditable()
2808 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.$dy_Getter(this); 2808 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.dy_Getter(this);
2809 2809
2810 @DomName('SVGFEOffsetElement.in1') 2810 @DomName('SVGFEOffsetElement.in1')
2811 @DocsEditable() 2811 @DocsEditable()
2812 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.$in1_Getter(this); 2812 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.in1_Getter(this);
2813 2813
2814 @DomName('SVGFEOffsetElement.height') 2814 @DomName('SVGFEOffsetElement.height')
2815 @DocsEditable() 2815 @DocsEditable()
2816 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.$height_Getter(thi s); 2816 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.height_Getter(this );
2817 2817
2818 @DomName('SVGFEOffsetElement.result') 2818 @DomName('SVGFEOffsetElement.result')
2819 @DocsEditable() 2819 @DocsEditable()
2820 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.$result_Getter(thi s); 2820 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.result_Getter(this );
2821 2821
2822 @DomName('SVGFEOffsetElement.width') 2822 @DomName('SVGFEOffsetElement.width')
2823 @DocsEditable() 2823 @DocsEditable()
2824 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.$width_Getter(this) ; 2824 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.width_Getter(this);
2825 2825
2826 @DomName('SVGFEOffsetElement.x') 2826 @DomName('SVGFEOffsetElement.x')
2827 @DocsEditable() 2827 @DocsEditable()
2828 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.$x_Getter(this); 2828 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.x_Getter(this);
2829 2829
2830 @DomName('SVGFEOffsetElement.y') 2830 @DomName('SVGFEOffsetElement.y')
2831 @DocsEditable() 2831 @DocsEditable()
2832 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.$y_Getter(this); 2832 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.y_Getter(this);
2833 2833
2834 } 2834 }
2835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2836 // for details. All rights reserved. Use of this source code is governed by a 2836 // for details. All rights reserved. Use of this source code is governed by a
2837 // BSD-style license that can be found in the LICENSE file. 2837 // BSD-style license that can be found in the LICENSE file.
2838 2838
2839 // WARNING: Do not edit - generated code. 2839 // WARNING: Do not edit - generated code.
2840 2840
2841 2841
2842 @DocsEditable() 2842 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2858 * 2858 *
2859 * This can only be called by subclasses from their created constructor. 2859 * This can only be called by subclasses from their created constructor.
2860 */ 2860 */
2861 FEPointLightElement.created() : super.created(); 2861 FEPointLightElement.created() : super.created();
2862 2862
2863 /// Checks if this type is supported on the current platform. 2863 /// Checks if this type is supported on the current platform.
2864 static bool get supported => true; 2864 static bool get supported => true;
2865 2865
2866 @DomName('SVGFEPointLightElement.x') 2866 @DomName('SVGFEPointLightElement.x')
2867 @DocsEditable() 2867 @DocsEditable()
2868 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.$x_Getter(this); 2868 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.x_Getter(this);
2869 2869
2870 @DomName('SVGFEPointLightElement.y') 2870 @DomName('SVGFEPointLightElement.y')
2871 @DocsEditable() 2871 @DocsEditable()
2872 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.$y_Getter(this); 2872 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.y_Getter(this);
2873 2873
2874 @DomName('SVGFEPointLightElement.z') 2874 @DomName('SVGFEPointLightElement.z')
2875 @DocsEditable() 2875 @DocsEditable()
2876 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.$z_Getter(this); 2876 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.z_Getter(this);
2877 2877
2878 } 2878 }
2879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2880 // for details. All rights reserved. Use of this source code is governed by a 2880 // for details. All rights reserved. Use of this source code is governed by a
2881 // BSD-style license that can be found in the LICENSE file. 2881 // BSD-style license that can be found in the LICENSE file.
2882 2882
2883 // WARNING: Do not edit - generated code. 2883 // WARNING: Do not edit - generated code.
2884 2884
2885 2885
2886 @DocsEditable() 2886 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2902 * 2902 *
2903 * This can only be called by subclasses from their created constructor. 2903 * This can only be called by subclasses from their created constructor.
2904 */ 2904 */
2905 FESpecularLightingElement.created() : super.created(); 2905 FESpecularLightingElement.created() : super.created();
2906 2906
2907 /// Checks if this type is supported on the current platform. 2907 /// Checks if this type is supported on the current platform.
2908 static bool get supported => true; 2908 static bool get supported => true;
2909 2909
2910 @DomName('SVGFESpecularLightingElement.in1') 2910 @DomName('SVGFESpecularLightingElement.in1')
2911 @DocsEditable() 2911 @DocsEditable()
2912 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.$in1_Getter (this); 2912 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.in1_Getter( this);
2913 2913
2914 @DomName('SVGFESpecularLightingElement.specularConstant') 2914 @DomName('SVGFESpecularLightingElement.specularConstant')
2915 @DocsEditable() 2915 @DocsEditable()
2916 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen t.$specularConstant_Getter(this); 2916 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen t.specularConstant_Getter(this);
2917 2917
2918 @DomName('SVGFESpecularLightingElement.specularExponent') 2918 @DomName('SVGFESpecularLightingElement.specularExponent')
2919 @DocsEditable() 2919 @DocsEditable()
2920 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen t.$specularExponent_Getter(this); 2920 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen t.specularExponent_Getter(this);
2921 2921
2922 @DomName('SVGFESpecularLightingElement.surfaceScale') 2922 @DomName('SVGFESpecularLightingElement.surfaceScale')
2923 @DocsEditable() 2923 @DocsEditable()
2924 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.$s urfaceScale_Getter(this); 2924 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.su rfaceScale_Getter(this);
2925 2925
2926 @DomName('SVGFESpecularLightingElement.height') 2926 @DomName('SVGFESpecularLightingElement.height')
2927 @DocsEditable() 2927 @DocsEditable()
2928 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.$height_ Getter(this); 2928 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.height_G etter(this);
2929 2929
2930 @DomName('SVGFESpecularLightingElement.result') 2930 @DomName('SVGFESpecularLightingElement.result')
2931 @DocsEditable() 2931 @DocsEditable()
2932 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.$result_ Getter(this); 2932 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.result_G etter(this);
2933 2933
2934 @DomName('SVGFESpecularLightingElement.width') 2934 @DomName('SVGFESpecularLightingElement.width')
2935 @DocsEditable() 2935 @DocsEditable()
2936 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.$width_Ge tter(this); 2936 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.width_Get ter(this);
2937 2937
2938 @DomName('SVGFESpecularLightingElement.x') 2938 @DomName('SVGFESpecularLightingElement.x')
2939 @DocsEditable() 2939 @DocsEditable()
2940 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.$x_Getter(thi s); 2940 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.x_Getter(this );
2941 2941
2942 @DomName('SVGFESpecularLightingElement.y') 2942 @DomName('SVGFESpecularLightingElement.y')
2943 @DocsEditable() 2943 @DocsEditable()
2944 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.$y_Getter(thi s); 2944 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.y_Getter(this );
2945 2945
2946 } 2946 }
2947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2948 // for details. All rights reserved. Use of this source code is governed by a 2948 // for details. All rights reserved. Use of this source code is governed by a
2949 // BSD-style license that can be found in the LICENSE file. 2949 // BSD-style license that can be found in the LICENSE file.
2950 2950
2951 // WARNING: Do not edit - generated code. 2951 // WARNING: Do not edit - generated code.
2952 2952
2953 2953
2954 @DocsEditable() 2954 @DocsEditable()
(...skipping 15 matching lines...) Expand all
2970 * 2970 *
2971 * This can only be called by subclasses from their created constructor. 2971 * This can only be called by subclasses from their created constructor.
2972 */ 2972 */
2973 FESpotLightElement.created() : super.created(); 2973 FESpotLightElement.created() : super.created();
2974 2974
2975 /// Checks if this type is supported on the current platform. 2975 /// Checks if this type is supported on the current platform.
2976 static bool get supported => true; 2976 static bool get supported => true;
2977 2977
2978 @DomName('SVGFESpotLightElement.limitingConeAngle') 2978 @DomName('SVGFESpotLightElement.limitingConeAngle')
2979 @DocsEditable() 2979 @DocsEditable()
2980 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.$lim itingConeAngle_Getter(this); 2980 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.limi tingConeAngle_Getter(this);
2981 2981
2982 @DomName('SVGFESpotLightElement.pointsAtX') 2982 @DomName('SVGFESpotLightElement.pointsAtX')
2983 @DocsEditable() 2983 @DocsEditable()
2984 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.$pointsAtX_G etter(this); 2984 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.pointsAtX_Ge tter(this);
2985 2985
2986 @DomName('SVGFESpotLightElement.pointsAtY') 2986 @DomName('SVGFESpotLightElement.pointsAtY')
2987 @DocsEditable() 2987 @DocsEditable()
2988 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.$pointsAtY_G etter(this); 2988 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.pointsAtY_Ge tter(this);
2989 2989
2990 @DomName('SVGFESpotLightElement.pointsAtZ') 2990 @DomName('SVGFESpotLightElement.pointsAtZ')
2991 @DocsEditable() 2991 @DocsEditable()
2992 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.$pointsAtZ_G etter(this); 2992 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.pointsAtZ_Ge tter(this);
2993 2993
2994 @DomName('SVGFESpotLightElement.specularExponent') 2994 @DomName('SVGFESpotLightElement.specularExponent')
2995 @DocsEditable() 2995 @DocsEditable()
2996 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.$spec ularExponent_Getter(this); 2996 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.specu larExponent_Getter(this);
2997 2997
2998 @DomName('SVGFESpotLightElement.x') 2998 @DomName('SVGFESpotLightElement.x')
2999 @DocsEditable() 2999 @DocsEditable()
3000 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.$x_Getter(this); 3000 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.x_Getter(this);
3001 3001
3002 @DomName('SVGFESpotLightElement.y') 3002 @DomName('SVGFESpotLightElement.y')
3003 @DocsEditable() 3003 @DocsEditable()
3004 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.$y_Getter(this); 3004 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.y_Getter(this);
3005 3005
3006 @DomName('SVGFESpotLightElement.z') 3006 @DomName('SVGFESpotLightElement.z')
3007 @DocsEditable() 3007 @DocsEditable()
3008 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.$z_Getter(this); 3008 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.z_Getter(this);
3009 3009
3010 } 3010 }
3011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3011 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3012 // for details. All rights reserved. Use of this source code is governed by a 3012 // for details. All rights reserved. Use of this source code is governed by a
3013 // BSD-style license that can be found in the LICENSE file. 3013 // BSD-style license that can be found in the LICENSE file.
3014 3014
3015 // WARNING: Do not edit - generated code. 3015 // WARNING: Do not edit - generated code.
3016 3016
3017 3017
3018 @DocsEditable() 3018 @DocsEditable()
(...skipping 15 matching lines...) Expand all
3034 * 3034 *
3035 * This can only be called by subclasses from their created constructor. 3035 * This can only be called by subclasses from their created constructor.
3036 */ 3036 */
3037 FETileElement.created() : super.created(); 3037 FETileElement.created() : super.created();
3038 3038
3039 /// Checks if this type is supported on the current platform. 3039 /// Checks if this type is supported on the current platform.
3040 static bool get supported => true; 3040 static bool get supported => true;
3041 3041
3042 @DomName('SVGFETileElement.in1') 3042 @DomName('SVGFETileElement.in1')
3043 @DocsEditable() 3043 @DocsEditable()
3044 AnimatedString get in1 => _blink.BlinkSVGFETileElement.$in1_Getter(this); 3044 AnimatedString get in1 => _blink.BlinkSVGFETileElement.in1_Getter(this);
3045 3045
3046 @DomName('SVGFETileElement.height') 3046 @DomName('SVGFETileElement.height')
3047 @DocsEditable() 3047 @DocsEditable()
3048 AnimatedLength get height => _blink.BlinkSVGFETileElement.$height_Getter(this) ; 3048 AnimatedLength get height => _blink.BlinkSVGFETileElement.height_Getter(this);
3049 3049
3050 @DomName('SVGFETileElement.result') 3050 @DomName('SVGFETileElement.result')
3051 @DocsEditable() 3051 @DocsEditable()
3052 AnimatedString get result => _blink.BlinkSVGFETileElement.$result_Getter(this) ; 3052 AnimatedString get result => _blink.BlinkSVGFETileElement.result_Getter(this);
3053 3053
3054 @DomName('SVGFETileElement.width') 3054 @DomName('SVGFETileElement.width')
3055 @DocsEditable() 3055 @DocsEditable()
3056 AnimatedLength get width => _blink.BlinkSVGFETileElement.$width_Getter(this); 3056 AnimatedLength get width => _blink.BlinkSVGFETileElement.width_Getter(this);
3057 3057
3058 @DomName('SVGFETileElement.x') 3058 @DomName('SVGFETileElement.x')
3059 @DocsEditable() 3059 @DocsEditable()
3060 AnimatedLength get x => _blink.BlinkSVGFETileElement.$x_Getter(this); 3060 AnimatedLength get x => _blink.BlinkSVGFETileElement.x_Getter(this);
3061 3061
3062 @DomName('SVGFETileElement.y') 3062 @DomName('SVGFETileElement.y')
3063 @DocsEditable() 3063 @DocsEditable()
3064 AnimatedLength get y => _blink.BlinkSVGFETileElement.$y_Getter(this); 3064 AnimatedLength get y => _blink.BlinkSVGFETileElement.y_Getter(this);
3065 3065
3066 } 3066 }
3067 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3067 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3068 // for details. All rights reserved. Use of this source code is governed by a 3068 // for details. All rights reserved. Use of this source code is governed by a
3069 // BSD-style license that can be found in the LICENSE file. 3069 // BSD-style license that can be found in the LICENSE file.
3070 3070
3071 // WARNING: Do not edit - generated code. 3071 // WARNING: Do not edit - generated code.
3072 3072
3073 3073
3074 @DocsEditable() 3074 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
3114 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE') 3114 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
3115 @DocsEditable() 3115 @DocsEditable()
3116 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 3116 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
3117 3117
3118 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN') 3118 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
3119 @DocsEditable() 3119 @DocsEditable()
3120 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 3120 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
3121 3121
3122 @DomName('SVGFETurbulenceElement.baseFrequencyX') 3122 @DomName('SVGFETurbulenceElement.baseFrequencyX')
3123 @DocsEditable() 3123 @DocsEditable()
3124 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.$baseF requencyX_Getter(this); 3124 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.baseFr equencyX_Getter(this);
3125 3125
3126 @DomName('SVGFETurbulenceElement.baseFrequencyY') 3126 @DomName('SVGFETurbulenceElement.baseFrequencyY')
3127 @DocsEditable() 3127 @DocsEditable()
3128 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.$baseF requencyY_Getter(this); 3128 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.baseFr equencyY_Getter(this);
3129 3129
3130 @DomName('SVGFETurbulenceElement.numOctaves') 3130 @DomName('SVGFETurbulenceElement.numOctaves')
3131 @DocsEditable() 3131 @DocsEditable()
3132 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.$numOctav es_Getter(this); 3132 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.numOctave s_Getter(this);
3133 3133
3134 @DomName('SVGFETurbulenceElement.seed') 3134 @DomName('SVGFETurbulenceElement.seed')
3135 @DocsEditable() 3135 @DocsEditable()
3136 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.$seed_Getter(thi s); 3136 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.seed_Getter(this );
3137 3137
3138 @DomName('SVGFETurbulenceElement.stitchTiles') 3138 @DomName('SVGFETurbulenceElement.stitchTiles')
3139 @DocsEditable() 3139 @DocsEditable()
3140 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.$sti tchTiles_Getter(this); 3140 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.stit chTiles_Getter(this);
3141 3141
3142 @DomName('SVGFETurbulenceElement.type') 3142 @DomName('SVGFETurbulenceElement.type')
3143 @DocsEditable() 3143 @DocsEditable()
3144 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.$type_Gette r(this); 3144 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.type_Getter (this);
3145 3145
3146 @DomName('SVGFETurbulenceElement.height') 3146 @DomName('SVGFETurbulenceElement.height')
3147 @DocsEditable() 3147 @DocsEditable()
3148 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.$height_Getter (this); 3148 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.height_Getter( this);
3149 3149
3150 @DomName('SVGFETurbulenceElement.result') 3150 @DomName('SVGFETurbulenceElement.result')
3151 @DocsEditable() 3151 @DocsEditable()
3152 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.$result_Getter (this); 3152 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.result_Getter( this);
3153 3153
3154 @DomName('SVGFETurbulenceElement.width') 3154 @DomName('SVGFETurbulenceElement.width')
3155 @DocsEditable() 3155 @DocsEditable()
3156 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.$width_Getter(t his); 3156 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.width_Getter(th is);
3157 3157
3158 @DomName('SVGFETurbulenceElement.x') 3158 @DomName('SVGFETurbulenceElement.x')
3159 @DocsEditable() 3159 @DocsEditable()
3160 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.$x_Getter(this); 3160 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.x_Getter(this);
3161 3161
3162 @DomName('SVGFETurbulenceElement.y') 3162 @DomName('SVGFETurbulenceElement.y')
3163 @DocsEditable() 3163 @DocsEditable()
3164 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.$y_Getter(this); 3164 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.y_Getter(this);
3165 3165
3166 } 3166 }
3167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3168 // for details. All rights reserved. Use of this source code is governed by a 3168 // for details. All rights reserved. Use of this source code is governed by a
3169 // BSD-style license that can be found in the LICENSE file. 3169 // BSD-style license that can be found in the LICENSE file.
3170 3170
3171 // WARNING: Do not edit - generated code. 3171 // WARNING: Do not edit - generated code.
3172 3172
3173 3173
3174 @DocsEditable() 3174 @DocsEditable()
(...skipping 15 matching lines...) Expand all
3190 * 3190 *
3191 * This can only be called by subclasses from their created constructor. 3191 * This can only be called by subclasses from their created constructor.
3192 */ 3192 */
3193 FilterElement.created() : super.created(); 3193 FilterElement.created() : super.created();
3194 3194
3195 /// Checks if this type is supported on the current platform. 3195 /// Checks if this type is supported on the current platform.
3196 static bool get supported => true; 3196 static bool get supported => true;
3197 3197
3198 @DomName('SVGFilterElement.filterResX') 3198 @DomName('SVGFilterElement.filterResX')
3199 @DocsEditable() 3199 @DocsEditable()
3200 AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.$filterResX_Get ter(this); 3200 AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.filterResX_Gett er(this);
3201 3201
3202 @DomName('SVGFilterElement.filterResY') 3202 @DomName('SVGFilterElement.filterResY')
3203 @DocsEditable() 3203 @DocsEditable()
3204 AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.$filterResY_Get ter(this); 3204 AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.filterResY_Gett er(this);
3205 3205
3206 @DomName('SVGFilterElement.filterUnits') 3206 @DomName('SVGFilterElement.filterUnits')
3207 @DocsEditable() 3207 @DocsEditable()
3208 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.$filterUni ts_Getter(this); 3208 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.filterUnit s_Getter(this);
3209 3209
3210 @DomName('SVGFilterElement.height') 3210 @DomName('SVGFilterElement.height')
3211 @DocsEditable() 3211 @DocsEditable()
3212 AnimatedLength get height => _blink.BlinkSVGFilterElement.$height_Getter(this) ; 3212 AnimatedLength get height => _blink.BlinkSVGFilterElement.height_Getter(this);
3213 3213
3214 @DomName('SVGFilterElement.primitiveUnits') 3214 @DomName('SVGFilterElement.primitiveUnits')
3215 @DocsEditable() 3215 @DocsEditable()
3216 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.$primit iveUnits_Getter(this); 3216 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.primiti veUnits_Getter(this);
3217 3217
3218 @DomName('SVGFilterElement.width') 3218 @DomName('SVGFilterElement.width')
3219 @DocsEditable() 3219 @DocsEditable()
3220 AnimatedLength get width => _blink.BlinkSVGFilterElement.$width_Getter(this); 3220 AnimatedLength get width => _blink.BlinkSVGFilterElement.width_Getter(this);
3221 3221
3222 @DomName('SVGFilterElement.x') 3222 @DomName('SVGFilterElement.x')
3223 @DocsEditable() 3223 @DocsEditable()
3224 AnimatedLength get x => _blink.BlinkSVGFilterElement.$x_Getter(this); 3224 AnimatedLength get x => _blink.BlinkSVGFilterElement.x_Getter(this);
3225 3225
3226 @DomName('SVGFilterElement.y') 3226 @DomName('SVGFilterElement.y')
3227 @DocsEditable() 3227 @DocsEditable()
3228 AnimatedLength get y => _blink.BlinkSVGFilterElement.$y_Getter(this); 3228 AnimatedLength get y => _blink.BlinkSVGFilterElement.y_Getter(this);
3229 3229
3230 @DomName('SVGFilterElement.setFilterRes') 3230 @DomName('SVGFilterElement.setFilterRes')
3231 @DocsEditable() 3231 @DocsEditable()
3232 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem ent.$setFilterRes_Callback(this, filterResX, filterResY); 3232 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem ent.setFilterRes_Callback_ul_ul(this, filterResX, filterResY);
3233 3233
3234 @DomName('SVGFilterElement.href') 3234 @DomName('SVGFilterElement.href')
3235 @DocsEditable() 3235 @DocsEditable()
3236 AnimatedString get href => _blink.BlinkSVGFilterElement.$href_Getter(this); 3236 AnimatedString get href => _blink.BlinkSVGFilterElement.href_Getter(this);
3237 3237
3238 } 3238 }
3239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3240 // for details. All rights reserved. Use of this source code is governed by a 3240 // for details. All rights reserved. Use of this source code is governed by a
3241 // BSD-style license that can be found in the LICENSE file. 3241 // BSD-style license that can be found in the LICENSE file.
3242 3242
3243 // WARNING: Do not edit - generated code. 3243 // WARNING: Do not edit - generated code.
3244 3244
3245 3245
3246 @DocsEditable() 3246 @DocsEditable()
3247 @DomName('SVGFilterPrimitiveStandardAttributes') 3247 @DomName('SVGFilterPrimitiveStandardAttributes')
3248 @Unstable() 3248 @Unstable()
3249 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass 2 { 3249 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass 2 {
3250 // To suppress missing implicit constructor warnings. 3250 // To suppress missing implicit constructor warnings.
3251 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No t supported"); } 3251 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No t supported"); }
3252 3252
3253 @DomName('SVGFilterPrimitiveStandardAttributes.height') 3253 @DomName('SVGFilterPrimitiveStandardAttributes.height')
3254 @DocsEditable() 3254 @DocsEditable()
3255 AnimatedLength get height => _blink.BlinkSVGFilterPrimitiveStandardAttributes. $height_Getter(this); 3255 AnimatedLength get height => _blink.BlinkSVGFilterPrimitiveStandardAttributes. height_Getter(this);
3256 3256
3257 @DomName('SVGFilterPrimitiveStandardAttributes.result') 3257 @DomName('SVGFilterPrimitiveStandardAttributes.result')
3258 @DocsEditable() 3258 @DocsEditable()
3259 AnimatedString get result => _blink.BlinkSVGFilterPrimitiveStandardAttributes. $result_Getter(this); 3259 AnimatedString get result => _blink.BlinkSVGFilterPrimitiveStandardAttributes. result_Getter(this);
3260 3260
3261 @DomName('SVGFilterPrimitiveStandardAttributes.width') 3261 @DomName('SVGFilterPrimitiveStandardAttributes.width')
3262 @DocsEditable() 3262 @DocsEditable()
3263 AnimatedLength get width => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$ width_Getter(this); 3263 AnimatedLength get width => _blink.BlinkSVGFilterPrimitiveStandardAttributes.w idth_Getter(this);
3264 3264
3265 @DomName('SVGFilterPrimitiveStandardAttributes.x') 3265 @DomName('SVGFilterPrimitiveStandardAttributes.x')
3266 @DocsEditable() 3266 @DocsEditable()
3267 AnimatedLength get x => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$x_Ge tter(this); 3267 AnimatedLength get x => _blink.BlinkSVGFilterPrimitiveStandardAttributes.x_Get ter(this);
3268 3268
3269 @DomName('SVGFilterPrimitiveStandardAttributes.y') 3269 @DomName('SVGFilterPrimitiveStandardAttributes.y')
3270 @DocsEditable() 3270 @DocsEditable()
3271 AnimatedLength get y => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$y_Ge tter(this); 3271 AnimatedLength get y => _blink.BlinkSVGFilterPrimitiveStandardAttributes.y_Get ter(this);
3272 3272
3273 } 3273 }
3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3275 // for details. All rights reserved. Use of this source code is governed by a 3275 // for details. All rights reserved. Use of this source code is governed by a
3276 // BSD-style license that can be found in the LICENSE file. 3276 // BSD-style license that can be found in the LICENSE file.
3277 3277
3278 // WARNING: Do not edit - generated code. 3278 // WARNING: Do not edit - generated code.
3279 3279
3280 3280
3281 @DocsEditable() 3281 @DocsEditable()
3282 @DomName('SVGFitToViewBox') 3282 @DomName('SVGFitToViewBox')
3283 @Unstable() 3283 @Unstable()
3284 abstract class FitToViewBox extends NativeFieldWrapperClass2 { 3284 abstract class FitToViewBox extends NativeFieldWrapperClass2 {
3285 // To suppress missing implicit constructor warnings. 3285 // To suppress missing implicit constructor warnings.
3286 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } 3286 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); }
3287 3287
3288 @DomName('SVGFitToViewBox.preserveAspectRatio') 3288 @DomName('SVGFitToViewBox.preserveAspectRatio')
3289 @DocsEditable() 3289 @DocsEditable()
3290 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFitToVie wBox.$preserveAspectRatio_Getter(this); 3290 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFitToVie wBox.preserveAspectRatio_Getter(this);
3291 3291
3292 @DomName('SVGFitToViewBox.viewBox') 3292 @DomName('SVGFitToViewBox.viewBox')
3293 @DocsEditable() 3293 @DocsEditable()
3294 AnimatedRect get viewBox => _blink.BlinkSVGFitToViewBox.$viewBox_Getter(this); 3294 AnimatedRect get viewBox => _blink.BlinkSVGFitToViewBox.viewBox_Getter(this);
3295 3295
3296 } 3296 }
3297 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3297 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3298 // for details. All rights reserved. Use of this source code is governed by a 3298 // for details. All rights reserved. Use of this source code is governed by a
3299 // BSD-style license that can be found in the LICENSE file. 3299 // BSD-style license that can be found in the LICENSE file.
3300 3300
3301 // WARNING: Do not edit - generated code. 3301 // WARNING: Do not edit - generated code.
3302 3302
3303 3303
3304 @DocsEditable() 3304 @DocsEditable()
(...skipping 14 matching lines...) Expand all
3319 * 3319 *
3320 * This can only be called by subclasses from their created constructor. 3320 * This can only be called by subclasses from their created constructor.
3321 */ 3321 */
3322 ForeignObjectElement.created() : super.created(); 3322 ForeignObjectElement.created() : super.created();
3323 3323
3324 /// Checks if this type is supported on the current platform. 3324 /// Checks if this type is supported on the current platform.
3325 static bool get supported => true; 3325 static bool get supported => true;
3326 3326
3327 @DomName('SVGForeignObjectElement.height') 3327 @DomName('SVGForeignObjectElement.height')
3328 @DocsEditable() 3328 @DocsEditable()
3329 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.$height_Gette r(this); 3329 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.height_Getter (this);
3330 3330
3331 @DomName('SVGForeignObjectElement.width') 3331 @DomName('SVGForeignObjectElement.width')
3332 @DocsEditable() 3332 @DocsEditable()
3333 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.$width_Getter( this); 3333 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.width_Getter(t his);
3334 3334
3335 @DomName('SVGForeignObjectElement.x') 3335 @DomName('SVGForeignObjectElement.x')
3336 @DocsEditable() 3336 @DocsEditable()
3337 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.$x_Getter(this); 3337 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.x_Getter(this);
3338 3338
3339 @DomName('SVGForeignObjectElement.y') 3339 @DomName('SVGForeignObjectElement.y')
3340 @DocsEditable() 3340 @DocsEditable()
3341 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.$y_Getter(this); 3341 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.y_Getter(this);
3342 3342
3343 } 3343 }
3344 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3344 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3345 // for details. All rights reserved. Use of this source code is governed by a 3345 // for details. All rights reserved. Use of this source code is governed by a
3346 // BSD-style license that can be found in the LICENSE file. 3346 // BSD-style license that can be found in the LICENSE file.
3347 3347
3348 // WARNING: Do not edit - generated code. 3348 // WARNING: Do not edit - generated code.
3349 3349
3350 3350
3351 @DocsEditable() 3351 @DocsEditable()
(...skipping 30 matching lines...) Expand all
3382 /** 3382 /**
3383 * Constructor instantiated by the DOM when a custom element has been created. 3383 * Constructor instantiated by the DOM when a custom element has been created.
3384 * 3384 *
3385 * This can only be called by subclasses from their created constructor. 3385 * This can only be called by subclasses from their created constructor.
3386 */ 3386 */
3387 GeometryElement.created() : super.created(); 3387 GeometryElement.created() : super.created();
3388 3388
3389 @DomName('SVGGeometryElement.isPointInFill') 3389 @DomName('SVGGeometryElement.isPointInFill')
3390 @DocsEditable() 3390 @DocsEditable()
3391 @Experimental() // untriaged 3391 @Experimental() // untriaged
3392 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.$isPointInFi ll_Callback(this, point); 3392 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.isPointInFil l_Callback_SVGPoint(this, point);
3393 3393
3394 @DomName('SVGGeometryElement.isPointInStroke') 3394 @DomName('SVGGeometryElement.isPointInStroke')
3395 @DocsEditable() 3395 @DocsEditable()
3396 @Experimental() // untriaged 3396 @Experimental() // untriaged
3397 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.$isPointIn Stroke_Callback(this, point); 3397 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.isPointInS troke_Callback_SVGPoint(this, point);
3398 3398
3399 } 3399 }
3400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3401 // for details. All rights reserved. Use of this source code is governed by a 3401 // for details. All rights reserved. Use of this source code is governed by a
3402 // BSD-style license that can be found in the LICENSE file. 3402 // BSD-style license that can be found in the LICENSE file.
3403 3403
3404 // WARNING: Do not edit - generated code. 3404 // WARNING: Do not edit - generated code.
3405 3405
3406 3406
3407 @DocsEditable() 3407 @DocsEditable()
3408 @DomName('SVGGraphicsElement') 3408 @DomName('SVGGraphicsElement')
3409 @Experimental() // untriaged 3409 @Experimental() // untriaged
3410 class GraphicsElement extends SvgElement implements Tests { 3410 class GraphicsElement extends SvgElement implements Tests {
3411 // To suppress missing implicit constructor warnings. 3411 // To suppress missing implicit constructor warnings.
3412 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 3412 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
3413 /** 3413 /**
3414 * Constructor instantiated by the DOM when a custom element has been created. 3414 * Constructor instantiated by the DOM when a custom element has been created.
3415 * 3415 *
3416 * This can only be called by subclasses from their created constructor. 3416 * This can only be called by subclasses from their created constructor.
3417 */ 3417 */
3418 GraphicsElement.created() : super.created(); 3418 GraphicsElement.created() : super.created();
3419 3419
3420 @DomName('SVGGraphicsElement.farthestViewportElement') 3420 @DomName('SVGGraphicsElement.farthestViewportElement')
3421 @DocsEditable() 3421 @DocsEditable()
3422 @Experimental() // untriaged 3422 @Experimental() // untriaged
3423 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.$fart hestViewportElement_Getter(this); 3423 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.farth estViewportElement_Getter(this);
3424 3424
3425 @DomName('SVGGraphicsElement.nearestViewportElement') 3425 @DomName('SVGGraphicsElement.nearestViewportElement')
3426 @DocsEditable() 3426 @DocsEditable()
3427 @Experimental() // untriaged 3427 @Experimental() // untriaged
3428 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.$neare stViewportElement_Getter(this); 3428 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.neares tViewportElement_Getter(this);
3429 3429
3430 @DomName('SVGGraphicsElement.transform') 3430 @DomName('SVGGraphicsElement.transform')
3431 @DocsEditable() 3431 @DocsEditable()
3432 @Experimental() // untriaged 3432 @Experimental() // untriaged
3433 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.$transfo rm_Getter(this); 3433 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.transfor m_Getter(this);
3434 3434
3435 @DomName('SVGGraphicsElement.getBBox') 3435 @DomName('SVGGraphicsElement.getBBox')
3436 @DocsEditable() 3436 @DocsEditable()
3437 @Experimental() // untriaged 3437 @Experimental() // untriaged
3438 Rect getBBox() => _blink.BlinkSVGGraphicsElement.$getBBox_Callback(this); 3438 Rect getBBox() => _blink.BlinkSVGGraphicsElement.getBBox_Callback(this);
3439 3439
3440 @DomName('SVGGraphicsElement.getCTM') 3440 @DomName('SVGGraphicsElement.getCTM')
3441 @DocsEditable() 3441 @DocsEditable()
3442 @Experimental() // untriaged 3442 @Experimental() // untriaged
3443 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.$getCTM_Callback(this); 3443 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.getCTM_Callback(this);
3444 3444
3445 @DomName('SVGGraphicsElement.getScreenCTM') 3445 @DomName('SVGGraphicsElement.getScreenCTM')
3446 @DocsEditable() 3446 @DocsEditable()
3447 @Experimental() // untriaged 3447 @Experimental() // untriaged
3448 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.$getScreenCTM_Callback (this); 3448 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.getScreenCTM_Callback( this);
3449 3449
3450 @DomName('SVGGraphicsElement.getTransformToElement') 3450 @DomName('SVGGraphicsElement.getTransformToElement')
3451 @DocsEditable() 3451 @DocsEditable()
3452 @Experimental() // untriaged 3452 @Experimental() // untriaged
3453 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle ment.$getTransformToElement_Callback(this, element); 3453 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle ment.getTransformToElement_Callback_SVGElement(this, element);
3454 3454
3455 @DomName('SVGGraphicsElement.requiredExtensions') 3455 @DomName('SVGGraphicsElement.requiredExtensions')
3456 @DocsEditable() 3456 @DocsEditable()
3457 @Experimental() // untriaged 3457 @Experimental() // untriaged
3458 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.$requiredE xtensions_Getter(this); 3458 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.requiredEx tensions_Getter(this);
3459 3459
3460 @DomName('SVGGraphicsElement.requiredFeatures') 3460 @DomName('SVGGraphicsElement.requiredFeatures')
3461 @DocsEditable() 3461 @DocsEditable()
3462 @Experimental() // untriaged 3462 @Experimental() // untriaged
3463 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.$requiredFea tures_Getter(this); 3463 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.requiredFeat ures_Getter(this);
3464 3464
3465 @DomName('SVGGraphicsElement.systemLanguage') 3465 @DomName('SVGGraphicsElement.systemLanguage')
3466 @DocsEditable() 3466 @DocsEditable()
3467 @Experimental() // untriaged 3467 @Experimental() // untriaged
3468 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.$systemLanguag e_Getter(this); 3468 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.systemLanguage _Getter(this);
3469 3469
3470 @DomName('SVGGraphicsElement.hasExtension') 3470 @DomName('SVGGraphicsElement.hasExtension')
3471 @DocsEditable() 3471 @DocsEditable()
3472 @Experimental() // untriaged 3472 @Experimental() // untriaged
3473 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.$hasExte nsion_Callback(this, extension); 3473 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.hasExten sion_Callback_DOMString(this, extension);
3474 3474
3475 } 3475 }
3476 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3476 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3477 // for details. All rights reserved. Use of this source code is governed by a 3477 // for details. All rights reserved. Use of this source code is governed by a
3478 // BSD-style license that can be found in the LICENSE file. 3478 // BSD-style license that can be found in the LICENSE file.
3479 3479
3480 // WARNING: Do not edit - generated code. 3480 // WARNING: Do not edit - generated code.
3481 3481
3482 3482
3483 @DocsEditable() 3483 @DocsEditable()
3484 @DomName('SVGImageElement') 3484 @DomName('SVGImageElement')
3485 @Unstable() 3485 @Unstable()
3486 class ImageElement extends GraphicsElement implements UriReference { 3486 class ImageElement extends GraphicsElement implements UriReference {
3487 // To suppress missing implicit constructor warnings. 3487 // To suppress missing implicit constructor warnings.
3488 factory ImageElement._() { throw new UnsupportedError("Not supported"); } 3488 factory ImageElement._() { throw new UnsupportedError("Not supported"); }
3489 3489
3490 @DomName('SVGImageElement.SVGImageElement') 3490 @DomName('SVGImageElement.SVGImageElement')
3491 @DocsEditable() 3491 @DocsEditable()
3492 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 3492 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3493 /** 3493 /**
3494 * Constructor instantiated by the DOM when a custom element has been created. 3494 * Constructor instantiated by the DOM when a custom element has been created.
3495 * 3495 *
3496 * This can only be called by subclasses from their created constructor. 3496 * This can only be called by subclasses from their created constructor.
3497 */ 3497 */
3498 ImageElement.created() : super.created(); 3498 ImageElement.created() : super.created();
3499 3499
3500 @DomName('SVGImageElement.height') 3500 @DomName('SVGImageElement.height')
3501 @DocsEditable() 3501 @DocsEditable()
3502 AnimatedLength get height => _blink.BlinkSVGImageElement.$height_Getter(this); 3502 AnimatedLength get height => _blink.BlinkSVGImageElement.height_Getter(this);
3503 3503
3504 @DomName('SVGImageElement.preserveAspectRatio') 3504 @DomName('SVGImageElement.preserveAspectRatio')
3505 @DocsEditable() 3505 @DocsEditable()
3506 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle ment.$preserveAspectRatio_Getter(this); 3506 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle ment.preserveAspectRatio_Getter(this);
3507 3507
3508 @DomName('SVGImageElement.width') 3508 @DomName('SVGImageElement.width')
3509 @DocsEditable() 3509 @DocsEditable()
3510 AnimatedLength get width => _blink.BlinkSVGImageElement.$width_Getter(this); 3510 AnimatedLength get width => _blink.BlinkSVGImageElement.width_Getter(this);
3511 3511
3512 @DomName('SVGImageElement.x') 3512 @DomName('SVGImageElement.x')
3513 @DocsEditable() 3513 @DocsEditable()
3514 AnimatedLength get x => _blink.BlinkSVGImageElement.$x_Getter(this); 3514 AnimatedLength get x => _blink.BlinkSVGImageElement.x_Getter(this);
3515 3515
3516 @DomName('SVGImageElement.y') 3516 @DomName('SVGImageElement.y')
3517 @DocsEditable() 3517 @DocsEditable()
3518 AnimatedLength get y => _blink.BlinkSVGImageElement.$y_Getter(this); 3518 AnimatedLength get y => _blink.BlinkSVGImageElement.y_Getter(this);
3519 3519
3520 @DomName('SVGImageElement.href') 3520 @DomName('SVGImageElement.href')
3521 @DocsEditable() 3521 @DocsEditable()
3522 AnimatedString get href => _blink.BlinkSVGImageElement.$href_Getter(this); 3522 AnimatedString get href => _blink.BlinkSVGImageElement.href_Getter(this);
3523 3523
3524 } 3524 }
3525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3526 // for details. All rights reserved. Use of this source code is governed by a 3526 // for details. All rights reserved. Use of this source code is governed by a
3527 // BSD-style license that can be found in the LICENSE file. 3527 // BSD-style license that can be found in the LICENSE file.
3528 3528
3529 // WARNING: Do not edit - generated code. 3529 // WARNING: Do not edit - generated code.
3530 3530
3531 3531
3532 @DocsEditable() 3532 @DocsEditable()
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3575 @DomName('SVGLength.SVG_LENGTHTYPE_PX') 3575 @DomName('SVGLength.SVG_LENGTHTYPE_PX')
3576 @DocsEditable() 3576 @DocsEditable()
3577 static const int SVG_LENGTHTYPE_PX = 5; 3577 static const int SVG_LENGTHTYPE_PX = 5;
3578 3578
3579 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN') 3579 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
3580 @DocsEditable() 3580 @DocsEditable()
3581 static const int SVG_LENGTHTYPE_UNKNOWN = 0; 3581 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
3582 3582
3583 @DomName('SVGLength.unitType') 3583 @DomName('SVGLength.unitType')
3584 @DocsEditable() 3584 @DocsEditable()
3585 int get unitType => _blink.BlinkSVGLength.$unitType_Getter(this); 3585 int get unitType => _blink.BlinkSVGLength.unitType_Getter(this);
3586 3586
3587 @DomName('SVGLength.value') 3587 @DomName('SVGLength.value')
3588 @DocsEditable() 3588 @DocsEditable()
3589 num get value => _blink.BlinkSVGLength.$value_Getter(this); 3589 num get value => _blink.BlinkSVGLength.value_Getter(this);
3590 3590
3591 @DomName('SVGLength.value') 3591 @DomName('SVGLength.value')
3592 @DocsEditable() 3592 @DocsEditable()
3593 void set value(num value) => _blink.BlinkSVGLength.$value_Setter(this, value); 3593 void set value(num value) => _blink.BlinkSVGLength.value_Setter_float(this, va lue);
3594 3594
3595 @DomName('SVGLength.valueAsString') 3595 @DomName('SVGLength.valueAsString')
3596 @DocsEditable() 3596 @DocsEditable()
3597 String get valueAsString => _blink.BlinkSVGLength.$valueAsString_Getter(this); 3597 String get valueAsString => _blink.BlinkSVGLength.valueAsString_Getter(this);
3598 3598
3599 @DomName('SVGLength.valueAsString') 3599 @DomName('SVGLength.valueAsString')
3600 @DocsEditable() 3600 @DocsEditable()
3601 void set valueAsString(String value) => _blink.BlinkSVGLength.$valueAsString_S etter(this, value); 3601 void set valueAsString(String value) => _blink.BlinkSVGLength.valueAsString_Se tter_DOMString(this, value);
3602 3602
3603 @DomName('SVGLength.valueInSpecifiedUnits') 3603 @DomName('SVGLength.valueInSpecifiedUnits')
3604 @DocsEditable() 3604 @DocsEditable()
3605 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.$valueInSpecifiedUnits_ Getter(this); 3605 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.valueInSpecifiedUnits_G etter(this);
3606 3606
3607 @DomName('SVGLength.valueInSpecifiedUnits') 3607 @DomName('SVGLength.valueInSpecifiedUnits')
3608 @DocsEditable() 3608 @DocsEditable()
3609 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.$valueInSpe cifiedUnits_Setter(this, value); 3609 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.valueInSpec ifiedUnits_Setter_float(this, value);
3610 3610
3611 @DomName('SVGLength.convertToSpecifiedUnits') 3611 @DomName('SVGLength.convertToSpecifiedUnits')
3612 @DocsEditable() 3612 @DocsEditable()
3613 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.$convertTo SpecifiedUnits_Callback(this, unitType); 3613 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.convertToS pecifiedUnits_Callback_us(this, unitType);
3614 3614
3615 @DomName('SVGLength.newValueSpecifiedUnits') 3615 @DomName('SVGLength.newValueSpecifiedUnits')
3616 @DocsEditable() 3616 @DocsEditable()
3617 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.$newValueSpecifiedUnits_Callback(this, unitType, valueInSpecifie dUnits); 3617 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink .BlinkSVGLength.newValueSpecifiedUnits_Callback_us_float(this, unitType, valueIn SpecifiedUnits);
3618 3618
3619 } 3619 }
3620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3621 // for details. All rights reserved. Use of this source code is governed by a 3621 // for details. All rights reserved. Use of this source code is governed by a
3622 // BSD-style license that can be found in the LICENSE file. 3622 // BSD-style license that can be found in the LICENSE file.
3623 3623
3624 // WARNING: Do not edit - generated code. 3624 // WARNING: Do not edit - generated code.
3625 3625
3626 3626
3627 @DocsEditable() 3627 @DocsEditable()
3628 @DomName('SVGLengthList') 3628 @DomName('SVGLengthList')
3629 @Unstable() 3629 @Unstable()
3630 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> { 3630 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta bleListMixin<Length> implements List<Length> {
3631 // To suppress missing implicit constructor warnings. 3631 // To suppress missing implicit constructor warnings.
3632 factory LengthList._() { throw new UnsupportedError("Not supported"); } 3632 factory LengthList._() { throw new UnsupportedError("Not supported"); }
3633 3633
3634 @DomName('SVGLengthList.numberOfItems') 3634 @DomName('SVGLengthList.numberOfItems')
3635 @DocsEditable() 3635 @DocsEditable()
3636 int get numberOfItems => _blink.BlinkSVGLengthList.$numberOfItems_Getter(this) ; 3636 int get numberOfItems => _blink.BlinkSVGLengthList.numberOfItems_Getter(this);
3637 3637
3638 Length operator[](int index) { 3638 Length operator[](int index) {
3639 if (index < 0 || index >= length) 3639 if (index < 0 || index >= length)
3640 throw new RangeError.range(index, 0, length); 3640 throw new RangeError.range(index, 0, length);
3641 return getItem(index); 3641 return getItem(index);
3642 } 3642 }
3643 3643
3644 void operator[]=(int index, Length value) { 3644 void operator[]=(int index, Length value) {
3645 throw new UnsupportedError("Cannot assign element of immutable List."); 3645 throw new UnsupportedError("Cannot assign element of immutable List.");
3646 } 3646 }
(...skipping 29 matching lines...) Expand all
3676 } 3676 }
3677 if (len == 0) throw new StateError("No elements"); 3677 if (len == 0) throw new StateError("No elements");
3678 throw new StateError("More than one element"); 3678 throw new StateError("More than one element");
3679 } 3679 }
3680 3680
3681 Length elementAt(int index) => this[index]; 3681 Length elementAt(int index) => this[index];
3682 // -- end List<Length> mixins. 3682 // -- end List<Length> mixins.
3683 3683
3684 @DomName('SVGLengthList.appendItem') 3684 @DomName('SVGLengthList.appendItem')
3685 @DocsEditable() 3685 @DocsEditable()
3686 Length appendItem(Length item) => _blink.BlinkSVGLengthList.$appendItem_Callba ck(this, item); 3686 Length appendItem(Length item) => _blink.BlinkSVGLengthList.appendItem_Callbac k_SVGLength(this, item);
3687 3687
3688 @DomName('SVGLengthList.clear') 3688 @DomName('SVGLengthList.clear')
3689 @DocsEditable() 3689 @DocsEditable()
3690 void clear() => _blink.BlinkSVGLengthList.$clear_Callback(this); 3690 void clear() => _blink.BlinkSVGLengthList.clear_Callback(this);
3691 3691
3692 @DomName('SVGLengthList.getItem') 3692 @DomName('SVGLengthList.getItem')
3693 @DocsEditable() 3693 @DocsEditable()
3694 Length getItem(int index) => _blink.BlinkSVGLengthList.$getItem_Callback(this, index); 3694 Length getItem(int index) => _blink.BlinkSVGLengthList.getItem_Callback_ul(thi s, index);
3695 3695
3696 @DomName('SVGLengthList.initialize') 3696 @DomName('SVGLengthList.initialize')
3697 @DocsEditable() 3697 @DocsEditable()
3698 Length initialize(Length item) => _blink.BlinkSVGLengthList.$initialize_Callba ck(this, item); 3698 Length initialize(Length item) => _blink.BlinkSVGLengthList.initialize_Callbac k_SVGLength(this, item);
3699 3699
3700 @DomName('SVGLengthList.insertItemBefore') 3700 @DomName('SVGLengthList.insertItemBefore')
3701 @DocsEditable() 3701 @DocsEditable()
3702 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.$ insertItemBefore_Callback(this, item, index); 3702 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i nsertItemBefore_Callback_SVGLength_ul(this, item, index);
3703 3703
3704 @DomName('SVGLengthList.removeItem') 3704 @DomName('SVGLengthList.removeItem')
3705 @DocsEditable() 3705 @DocsEditable()
3706 Length removeItem(int index) => _blink.BlinkSVGLengthList.$removeItem_Callback (this, index); 3706 Length removeItem(int index) => _blink.BlinkSVGLengthList.removeItem_Callback_ ul(this, index);
3707 3707
3708 @DomName('SVGLengthList.replaceItem') 3708 @DomName('SVGLengthList.replaceItem')
3709 @DocsEditable() 3709 @DocsEditable()
3710 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.$repla ceItem_Callback(this, item, index); 3710 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.replac eItem_Callback_SVGLength_ul(this, item, index);
3711 3711
3712 } 3712 }
3713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3713 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3714 // for details. All rights reserved. Use of this source code is governed by a 3714 // for details. All rights reserved. Use of this source code is governed by a
3715 // BSD-style license that can be found in the LICENSE file. 3715 // BSD-style license that can be found in the LICENSE file.
3716 3716
3717 // WARNING: Do not edit - generated code. 3717 // WARNING: Do not edit - generated code.
3718 3718
3719 3719
3720 @DocsEditable() 3720 @DocsEditable()
3721 @DomName('SVGLineElement') 3721 @DomName('SVGLineElement')
3722 @Unstable() 3722 @Unstable()
3723 class LineElement extends GeometryElement { 3723 class LineElement extends GeometryElement {
3724 // To suppress missing implicit constructor warnings. 3724 // To suppress missing implicit constructor warnings.
3725 factory LineElement._() { throw new UnsupportedError("Not supported"); } 3725 factory LineElement._() { throw new UnsupportedError("Not supported"); }
3726 3726
3727 @DomName('SVGLineElement.SVGLineElement') 3727 @DomName('SVGLineElement.SVGLineElement')
3728 @DocsEditable() 3728 @DocsEditable()
3729 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3729 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
3730 /** 3730 /**
3731 * Constructor instantiated by the DOM when a custom element has been created. 3731 * Constructor instantiated by the DOM when a custom element has been created.
3732 * 3732 *
3733 * This can only be called by subclasses from their created constructor. 3733 * This can only be called by subclasses from their created constructor.
3734 */ 3734 */
3735 LineElement.created() : super.created(); 3735 LineElement.created() : super.created();
3736 3736
3737 @DomName('SVGLineElement.x1') 3737 @DomName('SVGLineElement.x1')
3738 @DocsEditable() 3738 @DocsEditable()
3739 AnimatedLength get x1 => _blink.BlinkSVGLineElement.$x1_Getter(this); 3739 AnimatedLength get x1 => _blink.BlinkSVGLineElement.x1_Getter(this);
3740 3740
3741 @DomName('SVGLineElement.x2') 3741 @DomName('SVGLineElement.x2')
3742 @DocsEditable() 3742 @DocsEditable()
3743 AnimatedLength get x2 => _blink.BlinkSVGLineElement.$x2_Getter(this); 3743 AnimatedLength get x2 => _blink.BlinkSVGLineElement.x2_Getter(this);
3744 3744
3745 @DomName('SVGLineElement.y1') 3745 @DomName('SVGLineElement.y1')
3746 @DocsEditable() 3746 @DocsEditable()
3747 AnimatedLength get y1 => _blink.BlinkSVGLineElement.$y1_Getter(this); 3747 AnimatedLength get y1 => _blink.BlinkSVGLineElement.y1_Getter(this);
3748 3748
3749 @DomName('SVGLineElement.y2') 3749 @DomName('SVGLineElement.y2')
3750 @DocsEditable() 3750 @DocsEditable()
3751 AnimatedLength get y2 => _blink.BlinkSVGLineElement.$y2_Getter(this); 3751 AnimatedLength get y2 => _blink.BlinkSVGLineElement.y2_Getter(this);
3752 3752
3753 } 3753 }
3754 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3754 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3755 // for details. All rights reserved. Use of this source code is governed by a 3755 // for details. All rights reserved. Use of this source code is governed by a
3756 // BSD-style license that can be found in the LICENSE file. 3756 // BSD-style license that can be found in the LICENSE file.
3757 3757
3758 // WARNING: Do not edit - generated code. 3758 // WARNING: Do not edit - generated code.
3759 3759
3760 3760
3761 @DocsEditable() 3761 @DocsEditable()
3762 @DomName('SVGLinearGradientElement') 3762 @DomName('SVGLinearGradientElement')
3763 @Unstable() 3763 @Unstable()
3764 class LinearGradientElement extends _GradientElement { 3764 class LinearGradientElement extends _GradientElement {
3765 // To suppress missing implicit constructor warnings. 3765 // To suppress missing implicit constructor warnings.
3766 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); } 3766 factory LinearGradientElement._() { throw new UnsupportedError("Not supported" ); }
3767 3767
3768 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3768 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
3769 @DocsEditable() 3769 @DocsEditable()
3770 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3770 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
3771 /** 3771 /**
3772 * Constructor instantiated by the DOM when a custom element has been created. 3772 * Constructor instantiated by the DOM when a custom element has been created.
3773 * 3773 *
3774 * This can only be called by subclasses from their created constructor. 3774 * This can only be called by subclasses from their created constructor.
3775 */ 3775 */
3776 LinearGradientElement.created() : super.created(); 3776 LinearGradientElement.created() : super.created();
3777 3777
3778 @DomName('SVGLinearGradientElement.x1') 3778 @DomName('SVGLinearGradientElement.x1')
3779 @DocsEditable() 3779 @DocsEditable()
3780 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.$x1_Getter(this) ; 3780 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.x1_Getter(this);
3781 3781
3782 @DomName('SVGLinearGradientElement.x2') 3782 @DomName('SVGLinearGradientElement.x2')
3783 @DocsEditable() 3783 @DocsEditable()
3784 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.$x2_Getter(this) ; 3784 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.x2_Getter(this);
3785 3785
3786 @DomName('SVGLinearGradientElement.y1') 3786 @DomName('SVGLinearGradientElement.y1')
3787 @DocsEditable() 3787 @DocsEditable()
3788 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.$y1_Getter(this) ; 3788 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.y1_Getter(this);
3789 3789
3790 @DomName('SVGLinearGradientElement.y2') 3790 @DomName('SVGLinearGradientElement.y2')
3791 @DocsEditable() 3791 @DocsEditable()
3792 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.$y2_Getter(this) ; 3792 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.y2_Getter(this);
3793 3793
3794 } 3794 }
3795 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3795 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3796 // for details. All rights reserved. Use of this source code is governed by a 3796 // for details. All rights reserved. Use of this source code is governed by a
3797 // BSD-style license that can be found in the LICENSE file. 3797 // BSD-style license that can be found in the LICENSE file.
3798 3798
3799 // WARNING: Do not edit - generated code. 3799 // WARNING: Do not edit - generated code.
3800 3800
3801 3801
3802 @DocsEditable() 3802 @DocsEditable()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
3835 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO') 3835 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO')
3836 @DocsEditable() 3836 @DocsEditable()
3837 static const int SVG_MARKER_ORIENT_AUTO = 1; 3837 static const int SVG_MARKER_ORIENT_AUTO = 1;
3838 3838
3839 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN') 3839 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN')
3840 @DocsEditable() 3840 @DocsEditable()
3841 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 3841 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
3842 3842
3843 @DomName('SVGMarkerElement.markerHeight') 3843 @DomName('SVGMarkerElement.markerHeight')
3844 @DocsEditable() 3844 @DocsEditable()
3845 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.$markerHeight_ Getter(this); 3845 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.markerHeight_G etter(this);
3846 3846
3847 @DomName('SVGMarkerElement.markerUnits') 3847 @DomName('SVGMarkerElement.markerUnits')
3848 @DocsEditable() 3848 @DocsEditable()
3849 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.$markerUni ts_Getter(this); 3849 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.markerUnit s_Getter(this);
3850 3850
3851 @DomName('SVGMarkerElement.markerWidth') 3851 @DomName('SVGMarkerElement.markerWidth')
3852 @DocsEditable() 3852 @DocsEditable()
3853 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.$markerWidth_Ge tter(this); 3853 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.markerWidth_Get ter(this);
3854 3854
3855 @DomName('SVGMarkerElement.orientAngle') 3855 @DomName('SVGMarkerElement.orientAngle')
3856 @DocsEditable() 3856 @DocsEditable()
3857 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.$orientAngle_Get ter(this); 3857 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.orientAngle_Gett er(this);
3858 3858
3859 @DomName('SVGMarkerElement.orientType') 3859 @DomName('SVGMarkerElement.orientType')
3860 @DocsEditable() 3860 @DocsEditable()
3861 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.$orientType _Getter(this); 3861 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.orientType_ Getter(this);
3862 3862
3863 @DomName('SVGMarkerElement.refX') 3863 @DomName('SVGMarkerElement.refX')
3864 @DocsEditable() 3864 @DocsEditable()
3865 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.$refX_Getter(this); 3865 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.refX_Getter(this);
3866 3866
3867 @DomName('SVGMarkerElement.refY') 3867 @DomName('SVGMarkerElement.refY')
3868 @DocsEditable() 3868 @DocsEditable()
3869 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.$refY_Getter(this); 3869 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.refY_Getter(this);
3870 3870
3871 @DomName('SVGMarkerElement.setOrientToAngle') 3871 @DomName('SVGMarkerElement.setOrientToAngle')
3872 @DocsEditable() 3872 @DocsEditable()
3873 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.$setOrientT oAngle_Callback(this, angle); 3873 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.setOrientTo Angle_Callback_SVGAngle(this, angle);
3874 3874
3875 @DomName('SVGMarkerElement.setOrientToAuto') 3875 @DomName('SVGMarkerElement.setOrientToAuto')
3876 @DocsEditable() 3876 @DocsEditable()
3877 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.$setOrientToAuto_Callba ck(this); 3877 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.setOrientToAuto_Callbac k(this);
3878 3878
3879 @DomName('SVGMarkerElement.preserveAspectRatio') 3879 @DomName('SVGMarkerElement.preserveAspectRatio')
3880 @DocsEditable() 3880 @DocsEditable()
3881 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl ement.$preserveAspectRatio_Getter(this); 3881 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl ement.preserveAspectRatio_Getter(this);
3882 3882
3883 @DomName('SVGMarkerElement.viewBox') 3883 @DomName('SVGMarkerElement.viewBox')
3884 @DocsEditable() 3884 @DocsEditable()
3885 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.$viewBox_Getter(this) ; 3885 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.viewBox_Getter(this);
3886 3886
3887 } 3887 }
3888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3888 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3889 // for details. All rights reserved. Use of this source code is governed by a 3889 // for details. All rights reserved. Use of this source code is governed by a
3890 // BSD-style license that can be found in the LICENSE file. 3890 // BSD-style license that can be found in the LICENSE file.
3891 3891
3892 // WARNING: Do not edit - generated code. 3892 // WARNING: Do not edit - generated code.
3893 3893
3894 3894
3895 @DocsEditable() 3895 @DocsEditable()
3896 @DomName('SVGMaskElement') 3896 @DomName('SVGMaskElement')
3897 @Unstable() 3897 @Unstable()
3898 class MaskElement extends SvgElement implements Tests { 3898 class MaskElement extends SvgElement implements Tests {
3899 // To suppress missing implicit constructor warnings. 3899 // To suppress missing implicit constructor warnings.
3900 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3900 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3901 3901
3902 @DomName('SVGMaskElement.SVGMaskElement') 3902 @DomName('SVGMaskElement.SVGMaskElement')
3903 @DocsEditable() 3903 @DocsEditable()
3904 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3904 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3905 /** 3905 /**
3906 * Constructor instantiated by the DOM when a custom element has been created. 3906 * Constructor instantiated by the DOM when a custom element has been created.
3907 * 3907 *
3908 * This can only be called by subclasses from their created constructor. 3908 * This can only be called by subclasses from their created constructor.
3909 */ 3909 */
3910 MaskElement.created() : super.created(); 3910 MaskElement.created() : super.created();
3911 3911
3912 @DomName('SVGMaskElement.height') 3912 @DomName('SVGMaskElement.height')
3913 @DocsEditable() 3913 @DocsEditable()
3914 AnimatedLength get height => _blink.BlinkSVGMaskElement.$height_Getter(this); 3914 AnimatedLength get height => _blink.BlinkSVGMaskElement.height_Getter(this);
3915 3915
3916 @DomName('SVGMaskElement.maskContentUnits') 3916 @DomName('SVGMaskElement.maskContentUnits')
3917 @DocsEditable() 3917 @DocsEditable()
3918 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.$maskCo ntentUnits_Getter(this); 3918 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.maskCon tentUnits_Getter(this);
3919 3919
3920 @DomName('SVGMaskElement.maskUnits') 3920 @DomName('SVGMaskElement.maskUnits')
3921 @DocsEditable() 3921 @DocsEditable()
3922 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.$maskUnits_Get ter(this); 3922 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.maskUnits_Gett er(this);
3923 3923
3924 @DomName('SVGMaskElement.width') 3924 @DomName('SVGMaskElement.width')
3925 @DocsEditable() 3925 @DocsEditable()
3926 AnimatedLength get width => _blink.BlinkSVGMaskElement.$width_Getter(this); 3926 AnimatedLength get width => _blink.BlinkSVGMaskElement.width_Getter(this);
3927 3927
3928 @DomName('SVGMaskElement.x') 3928 @DomName('SVGMaskElement.x')
3929 @DocsEditable() 3929 @DocsEditable()
3930 AnimatedLength get x => _blink.BlinkSVGMaskElement.$x_Getter(this); 3930 AnimatedLength get x => _blink.BlinkSVGMaskElement.x_Getter(this);
3931 3931
3932 @DomName('SVGMaskElement.y') 3932 @DomName('SVGMaskElement.y')
3933 @DocsEditable() 3933 @DocsEditable()
3934 AnimatedLength get y => _blink.BlinkSVGMaskElement.$y_Getter(this); 3934 AnimatedLength get y => _blink.BlinkSVGMaskElement.y_Getter(this);
3935 3935
3936 @DomName('SVGMaskElement.requiredExtensions') 3936 @DomName('SVGMaskElement.requiredExtensions')
3937 @DocsEditable() 3937 @DocsEditable()
3938 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.$requiredExten sions_Getter(this); 3938 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.requiredExtens ions_Getter(this);
3939 3939
3940 @DomName('SVGMaskElement.requiredFeatures') 3940 @DomName('SVGMaskElement.requiredFeatures')
3941 @DocsEditable() 3941 @DocsEditable()
3942 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.$requiredFeature s_Getter(this); 3942 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.requiredFeatures _Getter(this);
3943 3943
3944 @DomName('SVGMaskElement.systemLanguage') 3944 @DomName('SVGMaskElement.systemLanguage')
3945 @DocsEditable() 3945 @DocsEditable()
3946 StringList get systemLanguage => _blink.BlinkSVGMaskElement.$systemLanguage_Ge tter(this); 3946 StringList get systemLanguage => _blink.BlinkSVGMaskElement.systemLanguage_Get ter(this);
3947 3947
3948 @DomName('SVGMaskElement.hasExtension') 3948 @DomName('SVGMaskElement.hasExtension')
3949 @DocsEditable() 3949 @DocsEditable()
3950 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.$hasExtensio n_Callback(this, extension); 3950 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.hasExtension _Callback_DOMString(this, extension);
3951 3951
3952 } 3952 }
3953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3954 // for details. All rights reserved. Use of this source code is governed by a 3954 // for details. All rights reserved. Use of this source code is governed by a
3955 // BSD-style license that can be found in the LICENSE file. 3955 // BSD-style license that can be found in the LICENSE file.
3956 3956
3957 // WARNING: Do not edit - generated code. 3957 // WARNING: Do not edit - generated code.
3958 3958
3959 3959
3960 @DocsEditable() 3960 @DocsEditable()
3961 @DomName('SVGMatrix') 3961 @DomName('SVGMatrix')
3962 @Unstable() 3962 @Unstable()
3963 class Matrix extends NativeFieldWrapperClass2 { 3963 class Matrix extends NativeFieldWrapperClass2 {
3964 // To suppress missing implicit constructor warnings. 3964 // To suppress missing implicit constructor warnings.
3965 factory Matrix._() { throw new UnsupportedError("Not supported"); } 3965 factory Matrix._() { throw new UnsupportedError("Not supported"); }
3966 3966
3967 @DomName('SVGMatrix.a') 3967 @DomName('SVGMatrix.a')
3968 @DocsEditable() 3968 @DocsEditable()
3969 num get a => _blink.BlinkSVGMatrix.$a_Getter(this); 3969 num get a => _blink.BlinkSVGMatrix.a_Getter(this);
3970 3970
3971 @DomName('SVGMatrix.a') 3971 @DomName('SVGMatrix.a')
3972 @DocsEditable() 3972 @DocsEditable()
3973 void set a(num value) => _blink.BlinkSVGMatrix.$a_Setter(this, value); 3973 void set a(num value) => _blink.BlinkSVGMatrix.a_Setter_double(this, value);
3974 3974
3975 @DomName('SVGMatrix.b') 3975 @DomName('SVGMatrix.b')
3976 @DocsEditable() 3976 @DocsEditable()
3977 num get b => _blink.BlinkSVGMatrix.$b_Getter(this); 3977 num get b => _blink.BlinkSVGMatrix.b_Getter(this);
3978 3978
3979 @DomName('SVGMatrix.b') 3979 @DomName('SVGMatrix.b')
3980 @DocsEditable() 3980 @DocsEditable()
3981 void set b(num value) => _blink.BlinkSVGMatrix.$b_Setter(this, value); 3981 void set b(num value) => _blink.BlinkSVGMatrix.b_Setter_double(this, value);
3982 3982
3983 @DomName('SVGMatrix.c') 3983 @DomName('SVGMatrix.c')
3984 @DocsEditable() 3984 @DocsEditable()
3985 num get c => _blink.BlinkSVGMatrix.$c_Getter(this); 3985 num get c => _blink.BlinkSVGMatrix.c_Getter(this);
3986 3986
3987 @DomName('SVGMatrix.c') 3987 @DomName('SVGMatrix.c')
3988 @DocsEditable() 3988 @DocsEditable()
3989 void set c(num value) => _blink.BlinkSVGMatrix.$c_Setter(this, value); 3989 void set c(num value) => _blink.BlinkSVGMatrix.c_Setter_double(this, value);
3990 3990
3991 @DomName('SVGMatrix.d') 3991 @DomName('SVGMatrix.d')
3992 @DocsEditable() 3992 @DocsEditable()
3993 num get d => _blink.BlinkSVGMatrix.$d_Getter(this); 3993 num get d => _blink.BlinkSVGMatrix.d_Getter(this);
3994 3994
3995 @DomName('SVGMatrix.d') 3995 @DomName('SVGMatrix.d')
3996 @DocsEditable() 3996 @DocsEditable()
3997 void set d(num value) => _blink.BlinkSVGMatrix.$d_Setter(this, value); 3997 void set d(num value) => _blink.BlinkSVGMatrix.d_Setter_double(this, value);
3998 3998
3999 @DomName('SVGMatrix.e') 3999 @DomName('SVGMatrix.e')
4000 @DocsEditable() 4000 @DocsEditable()
4001 num get e => _blink.BlinkSVGMatrix.$e_Getter(this); 4001 num get e => _blink.BlinkSVGMatrix.e_Getter(this);
4002 4002
4003 @DomName('SVGMatrix.e') 4003 @DomName('SVGMatrix.e')
4004 @DocsEditable() 4004 @DocsEditable()
4005 void set e(num value) => _blink.BlinkSVGMatrix.$e_Setter(this, value); 4005 void set e(num value) => _blink.BlinkSVGMatrix.e_Setter_double(this, value);
4006 4006
4007 @DomName('SVGMatrix.f') 4007 @DomName('SVGMatrix.f')
4008 @DocsEditable() 4008 @DocsEditable()
4009 num get f => _blink.BlinkSVGMatrix.$f_Getter(this); 4009 num get f => _blink.BlinkSVGMatrix.f_Getter(this);
4010 4010
4011 @DomName('SVGMatrix.f') 4011 @DomName('SVGMatrix.f')
4012 @DocsEditable() 4012 @DocsEditable()
4013 void set f(num value) => _blink.BlinkSVGMatrix.$f_Setter(this, value); 4013 void set f(num value) => _blink.BlinkSVGMatrix.f_Setter_double(this, value);
4014 4014
4015 @DomName('SVGMatrix.flipX') 4015 @DomName('SVGMatrix.flipX')
4016 @DocsEditable() 4016 @DocsEditable()
4017 Matrix flipX() => _blink.BlinkSVGMatrix.$flipX_Callback(this); 4017 Matrix flipX() => _blink.BlinkSVGMatrix.flipX_Callback(this);
4018 4018
4019 @DomName('SVGMatrix.flipY') 4019 @DomName('SVGMatrix.flipY')
4020 @DocsEditable() 4020 @DocsEditable()
4021 Matrix flipY() => _blink.BlinkSVGMatrix.$flipY_Callback(this); 4021 Matrix flipY() => _blink.BlinkSVGMatrix.flipY_Callback(this);
4022 4022
4023 @DomName('SVGMatrix.inverse') 4023 @DomName('SVGMatrix.inverse')
4024 @DocsEditable() 4024 @DocsEditable()
4025 Matrix inverse() => _blink.BlinkSVGMatrix.$inverse_Callback(this); 4025 Matrix inverse() => _blink.BlinkSVGMatrix.inverse_Callback(this);
4026 4026
4027 @DomName('SVGMatrix.multiply') 4027 @DomName('SVGMatrix.multiply')
4028 @DocsEditable() 4028 @DocsEditable()
4029 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.$multiply_Callba ck(this, secondMatrix); 4029 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.multiply_Callbac k_SVGMatrix(this, secondMatrix);
4030 4030
4031 @DomName('SVGMatrix.rotate') 4031 @DomName('SVGMatrix.rotate')
4032 @DocsEditable() 4032 @DocsEditable()
4033 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.$rotate_Callback(this, angle ); 4033 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.rotate_Callback_float(this, angle);
4034 4034
4035 @DomName('SVGMatrix.rotateFromVector') 4035 @DomName('SVGMatrix.rotateFromVector')
4036 @DocsEditable() 4036 @DocsEditable()
4037 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.$rotateFromVect or_Callback(this, x, y); 4037 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.rotateFromVecto r_Callback_float_float(this, x, y);
4038 4038
4039 @DomName('SVGMatrix.scale') 4039 @DomName('SVGMatrix.scale')
4040 @DocsEditable() 4040 @DocsEditable()
4041 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.$scale_Callback(this, s caleFactor); 4041 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.scale_Callback_float(th is, scaleFactor);
4042 4042
4043 @DomName('SVGMatrix.scaleNonUniform') 4043 @DomName('SVGMatrix.scaleNonUniform')
4044 @DocsEditable() 4044 @DocsEditable()
4045 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM atrix.$scaleNonUniform_Callback(this, scaleFactorX, scaleFactorY); 4045 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM atrix.scaleNonUniform_Callback_float_float(this, scaleFactorX, scaleFactorY);
4046 4046
4047 @DomName('SVGMatrix.skewX') 4047 @DomName('SVGMatrix.skewX')
4048 @DocsEditable() 4048 @DocsEditable()
4049 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.$skewX_Callback(this, angle); 4049 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.skewX_Callback_float(this, an gle);
4050 4050
4051 @DomName('SVGMatrix.skewY') 4051 @DomName('SVGMatrix.skewY')
4052 @DocsEditable() 4052 @DocsEditable()
4053 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.$skewY_Callback(this, angle); 4053 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.skewY_Callback_float(this, an gle);
4054 4054
4055 @DomName('SVGMatrix.translate') 4055 @DomName('SVGMatrix.translate')
4056 @DocsEditable() 4056 @DocsEditable()
4057 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.$translate_Callback(th is, x, y); 4057 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.translate_Callback_flo at_float(this, x, y);
4058 4058
4059 } 4059 }
4060 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4060 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4061 // for details. All rights reserved. Use of this source code is governed by a 4061 // for details. All rights reserved. Use of this source code is governed by a
4062 // BSD-style license that can be found in the LICENSE file. 4062 // BSD-style license that can be found in the LICENSE file.
4063 4063
4064 // WARNING: Do not edit - generated code. 4064 // WARNING: Do not edit - generated code.
4065 4065
4066 4066
4067 @DocsEditable() 4067 @DocsEditable()
(...skipping 19 matching lines...) Expand all
4087 4087
4088 @DocsEditable() 4088 @DocsEditable()
4089 @DomName('SVGNumber') 4089 @DomName('SVGNumber')
4090 @Unstable() 4090 @Unstable()
4091 class Number extends NativeFieldWrapperClass2 { 4091 class Number extends NativeFieldWrapperClass2 {
4092 // To suppress missing implicit constructor warnings. 4092 // To suppress missing implicit constructor warnings.
4093 factory Number._() { throw new UnsupportedError("Not supported"); } 4093 factory Number._() { throw new UnsupportedError("Not supported"); }
4094 4094
4095 @DomName('SVGNumber.value') 4095 @DomName('SVGNumber.value')
4096 @DocsEditable() 4096 @DocsEditable()
4097 num get value => _blink.BlinkSVGNumber.$value_Getter(this); 4097 num get value => _blink.BlinkSVGNumber.value_Getter(this);
4098 4098
4099 @DomName('SVGNumber.value') 4099 @DomName('SVGNumber.value')
4100 @DocsEditable() 4100 @DocsEditable()
4101 void set value(num value) => _blink.BlinkSVGNumber.$value_Setter(this, value); 4101 void set value(num value) => _blink.BlinkSVGNumber.value_Setter_float(this, va lue);
4102 4102
4103 } 4103 }
4104 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4104 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4105 // for details. All rights reserved. Use of this source code is governed by a 4105 // for details. All rights reserved. Use of this source code is governed by a
4106 // BSD-style license that can be found in the LICENSE file. 4106 // BSD-style license that can be found in the LICENSE file.
4107 4107
4108 // WARNING: Do not edit - generated code. 4108 // WARNING: Do not edit - generated code.
4109 4109
4110 4110
4111 @DocsEditable() 4111 @DocsEditable()
4112 @DomName('SVGNumberList') 4112 @DomName('SVGNumberList')
4113 @Unstable() 4113 @Unstable()
4114 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> { 4114 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta bleListMixin<Number> implements List<Number> {
4115 // To suppress missing implicit constructor warnings. 4115 // To suppress missing implicit constructor warnings.
4116 factory NumberList._() { throw new UnsupportedError("Not supported"); } 4116 factory NumberList._() { throw new UnsupportedError("Not supported"); }
4117 4117
4118 @DomName('SVGNumberList.numberOfItems') 4118 @DomName('SVGNumberList.numberOfItems')
4119 @DocsEditable() 4119 @DocsEditable()
4120 int get numberOfItems => _blink.BlinkSVGNumberList.$numberOfItems_Getter(this) ; 4120 int get numberOfItems => _blink.BlinkSVGNumberList.numberOfItems_Getter(this);
4121 4121
4122 Number operator[](int index) { 4122 Number operator[](int index) {
4123 if (index < 0 || index >= length) 4123 if (index < 0 || index >= length)
4124 throw new RangeError.range(index, 0, length); 4124 throw new RangeError.range(index, 0, length);
4125 return getItem(index); 4125 return getItem(index);
4126 } 4126 }
4127 4127
4128 void operator[]=(int index, Number value) { 4128 void operator[]=(int index, Number value) {
4129 throw new UnsupportedError("Cannot assign element of immutable List."); 4129 throw new UnsupportedError("Cannot assign element of immutable List.");
4130 } 4130 }
(...skipping 29 matching lines...) Expand all
4160 } 4160 }
4161 if (len == 0) throw new StateError("No elements"); 4161 if (len == 0) throw new StateError("No elements");
4162 throw new StateError("More than one element"); 4162 throw new StateError("More than one element");
4163 } 4163 }
4164 4164
4165 Number elementAt(int index) => this[index]; 4165 Number elementAt(int index) => this[index];
4166 // -- end List<Number> mixins. 4166 // -- end List<Number> mixins.
4167 4167
4168 @DomName('SVGNumberList.appendItem') 4168 @DomName('SVGNumberList.appendItem')
4169 @DocsEditable() 4169 @DocsEditable()
4170 Number appendItem(Number item) => _blink.BlinkSVGNumberList.$appendItem_Callba ck(this, item); 4170 Number appendItem(Number item) => _blink.BlinkSVGNumberList.appendItem_Callbac k_SVGNumber(this, item);
4171 4171
4172 @DomName('SVGNumberList.clear') 4172 @DomName('SVGNumberList.clear')
4173 @DocsEditable() 4173 @DocsEditable()
4174 void clear() => _blink.BlinkSVGNumberList.$clear_Callback(this); 4174 void clear() => _blink.BlinkSVGNumberList.clear_Callback(this);
4175 4175
4176 @DomName('SVGNumberList.getItem') 4176 @DomName('SVGNumberList.getItem')
4177 @DocsEditable() 4177 @DocsEditable()
4178 Number getItem(int index) => _blink.BlinkSVGNumberList.$getItem_Callback(this, index); 4178 Number getItem(int index) => _blink.BlinkSVGNumberList.getItem_Callback_ul(thi s, index);
4179 4179
4180 @DomName('SVGNumberList.initialize') 4180 @DomName('SVGNumberList.initialize')
4181 @DocsEditable() 4181 @DocsEditable()
4182 Number initialize(Number item) => _blink.BlinkSVGNumberList.$initialize_Callba ck(this, item); 4182 Number initialize(Number item) => _blink.BlinkSVGNumberList.initialize_Callbac k_SVGNumber(this, item);
4183 4183
4184 @DomName('SVGNumberList.insertItemBefore') 4184 @DomName('SVGNumberList.insertItemBefore')
4185 @DocsEditable() 4185 @DocsEditable()
4186 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.$ insertItemBefore_Callback(this, item, index); 4186 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i nsertItemBefore_Callback_SVGNumber_ul(this, item, index);
4187 4187
4188 @DomName('SVGNumberList.removeItem') 4188 @DomName('SVGNumberList.removeItem')
4189 @DocsEditable() 4189 @DocsEditable()
4190 Number removeItem(int index) => _blink.BlinkSVGNumberList.$removeItem_Callback (this, index); 4190 Number removeItem(int index) => _blink.BlinkSVGNumberList.removeItem_Callback_ ul(this, index);
4191 4191
4192 @DomName('SVGNumberList.replaceItem') 4192 @DomName('SVGNumberList.replaceItem')
4193 @DocsEditable() 4193 @DocsEditable()
4194 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.$repla ceItem_Callback(this, item, index); 4194 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.replac eItem_Callback_SVGNumber_ul(this, item, index);
4195 4195
4196 } 4196 }
4197 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4197 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4198 // for details. All rights reserved. Use of this source code is governed by a 4198 // for details. All rights reserved. Use of this source code is governed by a
4199 // BSD-style license that can be found in the LICENSE file. 4199 // BSD-style license that can be found in the LICENSE file.
4200 4200
4201 // WARNING: Do not edit - generated code. 4201 // WARNING: Do not edit - generated code.
4202 4202
4203 4203
4204 @DocsEditable() 4204 @DocsEditable()
4205 @DomName('SVGPathElement') 4205 @DomName('SVGPathElement')
4206 @Unstable() 4206 @Unstable()
4207 class PathElement extends GeometryElement { 4207 class PathElement extends GeometryElement {
4208 // To suppress missing implicit constructor warnings. 4208 // To suppress missing implicit constructor warnings.
4209 factory PathElement._() { throw new UnsupportedError("Not supported"); } 4209 factory PathElement._() { throw new UnsupportedError("Not supported"); }
4210 4210
4211 @DomName('SVGPathElement.SVGPathElement') 4211 @DomName('SVGPathElement.SVGPathElement')
4212 @DocsEditable() 4212 @DocsEditable()
4213 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 4213 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
4214 /** 4214 /**
4215 * Constructor instantiated by the DOM when a custom element has been created. 4215 * Constructor instantiated by the DOM when a custom element has been created.
4216 * 4216 *
4217 * This can only be called by subclasses from their created constructor. 4217 * This can only be called by subclasses from their created constructor.
4218 */ 4218 */
4219 PathElement.created() : super.created(); 4219 PathElement.created() : super.created();
4220 4220
4221 @DomName('SVGPathElement.animatedNormalizedPathSegList') 4221 @DomName('SVGPathElement.animatedNormalizedPathSegList')
4222 @DocsEditable() 4222 @DocsEditable()
4223 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.$a nimatedNormalizedPathSegList_Getter(this); 4223 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.an imatedNormalizedPathSegList_Getter(this);
4224 4224
4225 @DomName('SVGPathElement.animatedPathSegList') 4225 @DomName('SVGPathElement.animatedPathSegList')
4226 @DocsEditable() 4226 @DocsEditable()
4227 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.$animatedPat hSegList_Getter(this); 4227 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.animatedPath SegList_Getter(this);
4228 4228
4229 @DomName('SVGPathElement.normalizedPathSegList') 4229 @DomName('SVGPathElement.normalizedPathSegList')
4230 @DocsEditable() 4230 @DocsEditable()
4231 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.$normalize dPathSegList_Getter(this); 4231 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.normalized PathSegList_Getter(this);
4232 4232
4233 @DomName('SVGPathElement.pathLength') 4233 @DomName('SVGPathElement.pathLength')
4234 @DocsEditable() 4234 @DocsEditable()
4235 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.$pathLength_Getter (this); 4235 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.pathLength_Getter( this);
4236 4236
4237 @DomName('SVGPathElement.pathSegList') 4237 @DomName('SVGPathElement.pathSegList')
4238 @DocsEditable() 4238 @DocsEditable()
4239 PathSegList get pathSegList => _blink.BlinkSVGPathElement.$pathSegList_Getter( this); 4239 PathSegList get pathSegList => _blink.BlinkSVGPathElement.pathSegList_Getter(t his);
4240 4240
4241 @DomName('SVGPathElement.createSVGPathSegArcAbs') 4241 @DomName('SVGPathElement.createSVGPathSegArcAbs')
4242 @DocsEditable() 4242 @DocsEditable()
4243 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.$createSVGPathS egArcAbs_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); 4243 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe gArcAbs_Callback_float_float_float_float_float_boolean_boolean(this, x, y, r1, r 2, angle, largeArcFlag, sweepFlag);
4244 4244
4245 @DomName('SVGPathElement.createSVGPathSegArcRel') 4245 @DomName('SVGPathElement.createSVGPathSegArcRel')
4246 @DocsEditable() 4246 @DocsEditable()
4247 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.$createSVGPathS egArcRel_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag); 4247 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.createSVGPathSe gArcRel_Callback_float_float_float_float_float_boolean_boolean(this, x, y, r1, r 2, angle, largeArcFlag, sweepFlag);
4248 4248
4249 @DomName('SVGPathElement.createSVGPathSegClosePath') 4249 @DomName('SVGPathElement.createSVGPathSegClosePath')
4250 @DocsEditable() 4250 @DocsEditable()
4251 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.$cr eateSVGPathSegClosePath_Callback(this); 4251 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.cre ateSVGPathSegClosePath_Callback(this);
4252 4252
4253 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') 4253 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
4254 @DocsEditable() 4254 @DocsEditable()
4255 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCub icAbs_Callback(this, x, y, x1, y1, x2, y2); 4255 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi cAbs_Callback_float_float_float_float_float_float(this, x, y, x1, y1, x2, y2);
4256 4256
4257 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') 4257 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
4258 @DocsEditable() 4258 @DocsEditable()
4259 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCub icRel_Callback(this, x, y, x1, y1, x2, y2); 4259 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n um y1, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubi cRel_Callback_float_float_float_float_float_float(this, x, y, x1, y1, x2, y2);
4260 4260
4261 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') 4261 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
4262 @DocsEditable() 4262 @DocsEditable()
4263 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicSm oothAbs_Callback(this, x, y, x2, y2); 4263 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo othAbs_Callback_float_float_float_float(this, x, y, x2, y2);
4264 4264
4265 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') 4265 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
4266 @DocsEditable() 4266 @DocsEditable()
4267 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicSm oothRel_Callback(this, x, y, x2, y2); 4267 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoCubicSmo othRel_Callback_float_float_float_float(this, x, y, x2, y2);
4268 4268
4269 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') 4269 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
4270 @DocsEditable() 4270 @DocsEditable()
4271 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticAb s_Callback(this, x, y, x1, y1); 4271 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticAbs _Callback_float_float_float_float(this, x, y, x1, y1);
4272 4272
4273 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') 4273 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
4274 @DocsEditable() 4274 @DocsEditable()
4275 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticRe l_Callback(this, x, y, x1, y1); 4275 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n um x1, num y1) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticRel _Callback_float_float_float_float(this, x, y, x1, y1);
4276 4276
4277 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') 4277 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
4278 @DocsEditable() 4278 @DocsEditable()
4279 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticSmooth Abs_Callback(this, x, y); 4279 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothA bs_Callback_float_float(this, x, y);
4280 4280
4281 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') 4281 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
4282 @DocsEditable() 4282 @DocsEditable()
4283 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticSmooth Rel_Callback(this, x, y); 4283 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.createSVGPathSegCurvetoQuadraticSmoothR el_Callback_float_float(this, x, y);
4284 4284
4285 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') 4285 @DomName('SVGPathElement.createSVGPathSegLinetoAbs')
4286 @DocsEditable() 4286 @DocsEditable()
4287 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.$createSVGPathSegLinetoAbs_Callback(this, x, y); 4287 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegLinetoAbs_Callback_float_float(this, x, y);
4288 4288
4289 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') 4289 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
4290 @DocsEditable() 4290 @DocsEditable()
4291 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin k.BlinkSVGPathElement.$createSVGPathSegLinetoHorizontalAbs_Callback(this, x); 4291 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalAbs_Callback_float(this, x );
4292 4292
4293 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') 4293 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
4294 @DocsEditable() 4294 @DocsEditable()
4295 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin k.BlinkSVGPathElement.$createSVGPathSegLinetoHorizontalRel_Callback(this, x); 4295 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin k.BlinkSVGPathElement.createSVGPathSegLinetoHorizontalRel_Callback_float(this, x );
4296 4296
4297 @DomName('SVGPathElement.createSVGPathSegLinetoRel') 4297 @DomName('SVGPathElement.createSVGPathSegLinetoRel')
4298 @DocsEditable() 4298 @DocsEditable()
4299 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat hElement.$createSVGPathSegLinetoRel_Callback(this, x, y); 4299 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegLinetoRel_Callback_float_float(this, x, y);
4300 4300
4301 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') 4301 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
4302 @DocsEditable() 4302 @DocsEditable()
4303 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl inkSVGPathElement.$createSVGPathSegLinetoVerticalAbs_Callback(this, y); 4303 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl inkSVGPathElement.createSVGPathSegLinetoVerticalAbs_Callback_float(this, y);
4304 4304
4305 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') 4305 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
4306 @DocsEditable() 4306 @DocsEditable()
4307 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl inkSVGPathElement.$createSVGPathSegLinetoVerticalRel_Callback(this, y); 4307 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl inkSVGPathElement.createSVGPathSegLinetoVerticalRel_Callback_float(this, y);
4308 4308
4309 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') 4309 @DomName('SVGPathElement.createSVGPathSegMovetoAbs')
4310 @DocsEditable() 4310 @DocsEditable()
4311 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.$createSVGPathSegMovetoAbs_Callback(this, x, y); 4311 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegMovetoAbs_Callback_float_float(this, x, y);
4312 4312
4313 @DomName('SVGPathElement.createSVGPathSegMovetoRel') 4313 @DomName('SVGPathElement.createSVGPathSegMovetoRel')
4314 @DocsEditable() 4314 @DocsEditable()
4315 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat hElement.$createSVGPathSegMovetoRel_Callback(this, x, y); 4315 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat hElement.createSVGPathSegMovetoRel_Callback_float_float(this, x, y);
4316 4316
4317 @DomName('SVGPathElement.getPathSegAtLength') 4317 @DomName('SVGPathElement.getPathSegAtLength')
4318 @DocsEditable() 4318 @DocsEditable()
4319 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.$getPathSeg AtLength_Callback(this, distance); 4319 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.getPathSegA tLength_Callback_float(this, distance);
4320 4320
4321 @DomName('SVGPathElement.getPointAtLength') 4321 @DomName('SVGPathElement.getPointAtLength')
4322 @DocsEditable() 4322 @DocsEditable()
4323 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.$getPointAt Length_Callback(this, distance); 4323 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.getPointAtL ength_Callback_float(this, distance);
4324 4324
4325 @DomName('SVGPathElement.getTotalLength') 4325 @DomName('SVGPathElement.getTotalLength')
4326 @DocsEditable() 4326 @DocsEditable()
4327 double getTotalLength() => _blink.BlinkSVGPathElement.$getTotalLength_Callback (this); 4327 double getTotalLength() => _blink.BlinkSVGPathElement.getTotalLength_Callback( this);
4328 4328
4329 } 4329 }
4330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4331 // for details. All rights reserved. Use of this source code is governed by a 4331 // for details. All rights reserved. Use of this source code is governed by a
4332 // BSD-style license that can be found in the LICENSE file. 4332 // BSD-style license that can be found in the LICENSE file.
4333 4333
4334 // WARNING: Do not edit - generated code. 4334 // WARNING: Do not edit - generated code.
4335 4335
4336 4336
4337 @DocsEditable() 4337 @DocsEditable()
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
4416 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL') 4416 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL')
4417 @DocsEditable() 4417 @DocsEditable()
4418 static const int PATHSEG_MOVETO_REL = 3; 4418 static const int PATHSEG_MOVETO_REL = 3;
4419 4419
4420 @DomName('SVGPathSeg.PATHSEG_UNKNOWN') 4420 @DomName('SVGPathSeg.PATHSEG_UNKNOWN')
4421 @DocsEditable() 4421 @DocsEditable()
4422 static const int PATHSEG_UNKNOWN = 0; 4422 static const int PATHSEG_UNKNOWN = 0;
4423 4423
4424 @DomName('SVGPathSeg.pathSegType') 4424 @DomName('SVGPathSeg.pathSegType')
4425 @DocsEditable() 4425 @DocsEditable()
4426 int get pathSegType => _blink.BlinkSVGPathSeg.$pathSegType_Getter(this); 4426 int get pathSegType => _blink.BlinkSVGPathSeg.pathSegType_Getter(this);
4427 4427
4428 @DomName('SVGPathSeg.pathSegTypeAsLetter') 4428 @DomName('SVGPathSeg.pathSegTypeAsLetter')
4429 @DocsEditable() 4429 @DocsEditable()
4430 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.$pathSegTypeAsLetter_ Getter(this); 4430 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.pathSegTypeAsLetter_G etter(this);
4431 4431
4432 } 4432 }
4433 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4433 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4434 // for details. All rights reserved. Use of this source code is governed by a 4434 // for details. All rights reserved. Use of this source code is governed by a
4435 // BSD-style license that can be found in the LICENSE file. 4435 // BSD-style license that can be found in the LICENSE file.
4436 4436
4437 // WARNING: Do not edit - generated code. 4437 // WARNING: Do not edit - generated code.
4438 4438
4439 4439
4440 @DocsEditable() 4440 @DocsEditable()
4441 @DomName('SVGPathSegArcAbs') 4441 @DomName('SVGPathSegArcAbs')
4442 @Unstable() 4442 @Unstable()
4443 class PathSegArcAbs extends PathSeg { 4443 class PathSegArcAbs extends PathSeg {
4444 // To suppress missing implicit constructor warnings. 4444 // To suppress missing implicit constructor warnings.
4445 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } 4445 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); }
4446 4446
4447 @DomName('SVGPathSegArcAbs.angle') 4447 @DomName('SVGPathSegArcAbs.angle')
4448 @DocsEditable() 4448 @DocsEditable()
4449 num get angle => _blink.BlinkSVGPathSegArcAbs.$angle_Getter(this); 4449 num get angle => _blink.BlinkSVGPathSegArcAbs.angle_Getter(this);
4450 4450
4451 @DomName('SVGPathSegArcAbs.angle') 4451 @DomName('SVGPathSegArcAbs.angle')
4452 @DocsEditable() 4452 @DocsEditable()
4453 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.$angle_Setter(this, value); 4453 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.angle_Setter_float(t his, value);
4454 4454
4455 @DomName('SVGPathSegArcAbs.largeArcFlag') 4455 @DomName('SVGPathSegArcAbs.largeArcFlag')
4456 @DocsEditable() 4456 @DocsEditable()
4457 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.$largeArcFlag_Getter(thi s); 4457 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.largeArcFlag_Getter(this );
4458 4458
4459 @DomName('SVGPathSegArcAbs.largeArcFlag') 4459 @DomName('SVGPathSegArcAbs.largeArcFlag')
4460 @DocsEditable() 4460 @DocsEditable()
4461 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.$largeArcFla g_Setter(this, value); 4461 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.largeArcFlag _Setter_boolean(this, value);
4462 4462
4463 @DomName('SVGPathSegArcAbs.r1') 4463 @DomName('SVGPathSegArcAbs.r1')
4464 @DocsEditable() 4464 @DocsEditable()
4465 num get r1 => _blink.BlinkSVGPathSegArcAbs.$r1_Getter(this); 4465 num get r1 => _blink.BlinkSVGPathSegArcAbs.r1_Getter(this);
4466 4466
4467 @DomName('SVGPathSegArcAbs.r1') 4467 @DomName('SVGPathSegArcAbs.r1')
4468 @DocsEditable() 4468 @DocsEditable()
4469 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.$r1_Setter(this, value) ; 4469 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.r1_Setter_float(this, v alue);
4470 4470
4471 @DomName('SVGPathSegArcAbs.r2') 4471 @DomName('SVGPathSegArcAbs.r2')
4472 @DocsEditable() 4472 @DocsEditable()
4473 num get r2 => _blink.BlinkSVGPathSegArcAbs.$r2_Getter(this); 4473 num get r2 => _blink.BlinkSVGPathSegArcAbs.r2_Getter(this);
4474 4474
4475 @DomName('SVGPathSegArcAbs.r2') 4475 @DomName('SVGPathSegArcAbs.r2')
4476 @DocsEditable() 4476 @DocsEditable()
4477 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.$r2_Setter(this, value) ; 4477 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.r2_Setter_float(this, v alue);
4478 4478
4479 @DomName('SVGPathSegArcAbs.sweepFlag') 4479 @DomName('SVGPathSegArcAbs.sweepFlag')
4480 @DocsEditable() 4480 @DocsEditable()
4481 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.$sweepFlag_Getter(this); 4481 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Getter(this);
4482 4482
4483 @DomName('SVGPathSegArcAbs.sweepFlag') 4483 @DomName('SVGPathSegArcAbs.sweepFlag')
4484 @DocsEditable() 4484 @DocsEditable()
4485 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.$sweepFlag_Sett er(this, value); 4485 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.sweepFlag_Sette r_boolean(this, value);
4486 4486
4487 @DomName('SVGPathSegArcAbs.x') 4487 @DomName('SVGPathSegArcAbs.x')
4488 @DocsEditable() 4488 @DocsEditable()
4489 num get x => _blink.BlinkSVGPathSegArcAbs.$x_Getter(this); 4489 num get x => _blink.BlinkSVGPathSegArcAbs.x_Getter(this);
4490 4490
4491 @DomName('SVGPathSegArcAbs.x') 4491 @DomName('SVGPathSegArcAbs.x')
4492 @DocsEditable() 4492 @DocsEditable()
4493 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.$x_Setter(this, value); 4493 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.x_Setter_float(this, val ue);
4494 4494
4495 @DomName('SVGPathSegArcAbs.y') 4495 @DomName('SVGPathSegArcAbs.y')
4496 @DocsEditable() 4496 @DocsEditable()
4497 num get y => _blink.BlinkSVGPathSegArcAbs.$y_Getter(this); 4497 num get y => _blink.BlinkSVGPathSegArcAbs.y_Getter(this);
4498 4498
4499 @DomName('SVGPathSegArcAbs.y') 4499 @DomName('SVGPathSegArcAbs.y')
4500 @DocsEditable() 4500 @DocsEditable()
4501 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.$y_Setter(this, value); 4501 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.y_Setter_float(this, val ue);
4502 4502
4503 } 4503 }
4504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4505 // for details. All rights reserved. Use of this source code is governed by a 4505 // for details. All rights reserved. Use of this source code is governed by a
4506 // BSD-style license that can be found in the LICENSE file. 4506 // BSD-style license that can be found in the LICENSE file.
4507 4507
4508 // WARNING: Do not edit - generated code. 4508 // WARNING: Do not edit - generated code.
4509 4509
4510 4510
4511 @DocsEditable() 4511 @DocsEditable()
4512 @DomName('SVGPathSegArcRel') 4512 @DomName('SVGPathSegArcRel')
4513 @Unstable() 4513 @Unstable()
4514 class PathSegArcRel extends PathSeg { 4514 class PathSegArcRel extends PathSeg {
4515 // To suppress missing implicit constructor warnings. 4515 // To suppress missing implicit constructor warnings.
4516 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } 4516 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); }
4517 4517
4518 @DomName('SVGPathSegArcRel.angle') 4518 @DomName('SVGPathSegArcRel.angle')
4519 @DocsEditable() 4519 @DocsEditable()
4520 num get angle => _blink.BlinkSVGPathSegArcRel.$angle_Getter(this); 4520 num get angle => _blink.BlinkSVGPathSegArcRel.angle_Getter(this);
4521 4521
4522 @DomName('SVGPathSegArcRel.angle') 4522 @DomName('SVGPathSegArcRel.angle')
4523 @DocsEditable() 4523 @DocsEditable()
4524 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.$angle_Setter(this, value); 4524 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.angle_Setter_float(t his, value);
4525 4525
4526 @DomName('SVGPathSegArcRel.largeArcFlag') 4526 @DomName('SVGPathSegArcRel.largeArcFlag')
4527 @DocsEditable() 4527 @DocsEditable()
4528 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.$largeArcFlag_Getter(thi s); 4528 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.largeArcFlag_Getter(this );
4529 4529
4530 @DomName('SVGPathSegArcRel.largeArcFlag') 4530 @DomName('SVGPathSegArcRel.largeArcFlag')
4531 @DocsEditable() 4531 @DocsEditable()
4532 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.$largeArcFla g_Setter(this, value); 4532 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.largeArcFlag _Setter_boolean(this, value);
4533 4533
4534 @DomName('SVGPathSegArcRel.r1') 4534 @DomName('SVGPathSegArcRel.r1')
4535 @DocsEditable() 4535 @DocsEditable()
4536 num get r1 => _blink.BlinkSVGPathSegArcRel.$r1_Getter(this); 4536 num get r1 => _blink.BlinkSVGPathSegArcRel.r1_Getter(this);
4537 4537
4538 @DomName('SVGPathSegArcRel.r1') 4538 @DomName('SVGPathSegArcRel.r1')
4539 @DocsEditable() 4539 @DocsEditable()
4540 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.$r1_Setter(this, value) ; 4540 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.r1_Setter_float(this, v alue);
4541 4541
4542 @DomName('SVGPathSegArcRel.r2') 4542 @DomName('SVGPathSegArcRel.r2')
4543 @DocsEditable() 4543 @DocsEditable()
4544 num get r2 => _blink.BlinkSVGPathSegArcRel.$r2_Getter(this); 4544 num get r2 => _blink.BlinkSVGPathSegArcRel.r2_Getter(this);
4545 4545
4546 @DomName('SVGPathSegArcRel.r2') 4546 @DomName('SVGPathSegArcRel.r2')
4547 @DocsEditable() 4547 @DocsEditable()
4548 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.$r2_Setter(this, value) ; 4548 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.r2_Setter_float(this, v alue);
4549 4549
4550 @DomName('SVGPathSegArcRel.sweepFlag') 4550 @DomName('SVGPathSegArcRel.sweepFlag')
4551 @DocsEditable() 4551 @DocsEditable()
4552 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.$sweepFlag_Getter(this); 4552 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.sweepFlag_Getter(this);
4553 4553
4554 @DomName('SVGPathSegArcRel.sweepFlag') 4554 @DomName('SVGPathSegArcRel.sweepFlag')
4555 @DocsEditable() 4555 @DocsEditable()
4556 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.$sweepFlag_Sett er(this, value); 4556 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.sweepFlag_Sette r_boolean(this, value);
4557 4557
4558 @DomName('SVGPathSegArcRel.x') 4558 @DomName('SVGPathSegArcRel.x')
4559 @DocsEditable() 4559 @DocsEditable()
4560 num get x => _blink.BlinkSVGPathSegArcRel.$x_Getter(this); 4560 num get x => _blink.BlinkSVGPathSegArcRel.x_Getter(this);
4561 4561
4562 @DomName('SVGPathSegArcRel.x') 4562 @DomName('SVGPathSegArcRel.x')
4563 @DocsEditable() 4563 @DocsEditable()
4564 void set x(num value) => _blink.BlinkSVGPathSegArcRel.$x_Setter(this, value); 4564 void set x(num value) => _blink.BlinkSVGPathSegArcRel.x_Setter_float(this, val ue);
4565 4565
4566 @DomName('SVGPathSegArcRel.y') 4566 @DomName('SVGPathSegArcRel.y')
4567 @DocsEditable() 4567 @DocsEditable()
4568 num get y => _blink.BlinkSVGPathSegArcRel.$y_Getter(this); 4568 num get y => _blink.BlinkSVGPathSegArcRel.y_Getter(this);
4569 4569
4570 @DomName('SVGPathSegArcRel.y') 4570 @DomName('SVGPathSegArcRel.y')
4571 @DocsEditable() 4571 @DocsEditable()
4572 void set y(num value) => _blink.BlinkSVGPathSegArcRel.$y_Setter(this, value); 4572 void set y(num value) => _blink.BlinkSVGPathSegArcRel.y_Setter_float(this, val ue);
4573 4573
4574 } 4574 }
4575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4575 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4576 // for details. All rights reserved. Use of this source code is governed by a 4576 // for details. All rights reserved. Use of this source code is governed by a
4577 // BSD-style license that can be found in the LICENSE file. 4577 // BSD-style license that can be found in the LICENSE file.
4578 4578
4579 // WARNING: Do not edit - generated code. 4579 // WARNING: Do not edit - generated code.
4580 4580
4581 4581
4582 @DocsEditable() 4582 @DocsEditable()
(...skipping 13 matching lines...) Expand all
4596 4596
4597 @DocsEditable() 4597 @DocsEditable()
4598 @DomName('SVGPathSegCurvetoCubicAbs') 4598 @DomName('SVGPathSegCurvetoCubicAbs')
4599 @Unstable() 4599 @Unstable()
4600 class PathSegCurvetoCubicAbs extends PathSeg { 4600 class PathSegCurvetoCubicAbs extends PathSeg {
4601 // To suppress missing implicit constructor warnings. 4601 // To suppress missing implicit constructor warnings.
4602 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); } 4602 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); }
4603 4603
4604 @DomName('SVGPathSegCurvetoCubicAbs.x') 4604 @DomName('SVGPathSegCurvetoCubicAbs.x')
4605 @DocsEditable() 4605 @DocsEditable()
4606 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x_Getter(this); 4606 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Getter(this);
4607 4607
4608 @DomName('SVGPathSegCurvetoCubicAbs.x') 4608 @DomName('SVGPathSegCurvetoCubicAbs.x')
4609 @DocsEditable() 4609 @DocsEditable()
4610 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x_Setter(this, value); 4610 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x_Setter_float( this, value);
4611 4611
4612 @DomName('SVGPathSegCurvetoCubicAbs.x1') 4612 @DomName('SVGPathSegCurvetoCubicAbs.x1')
4613 @DocsEditable() 4613 @DocsEditable()
4614 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x1_Getter(this); 4614 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Getter(this);
4615 4615
4616 @DomName('SVGPathSegCurvetoCubicAbs.x1') 4616 @DomName('SVGPathSegCurvetoCubicAbs.x1')
4617 @DocsEditable() 4617 @DocsEditable()
4618 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x1_Setter(thi s, value); 4618 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x1_Setter_floa t(this, value);
4619 4619
4620 @DomName('SVGPathSegCurvetoCubicAbs.x2') 4620 @DomName('SVGPathSegCurvetoCubicAbs.x2')
4621 @DocsEditable() 4621 @DocsEditable()
4622 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x2_Getter(this); 4622 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Getter(this);
4623 4623
4624 @DomName('SVGPathSegCurvetoCubicAbs.x2') 4624 @DomName('SVGPathSegCurvetoCubicAbs.x2')
4625 @DocsEditable() 4625 @DocsEditable()
4626 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x2_Setter(thi s, value); 4626 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.x2_Setter_floa t(this, value);
4627 4627
4628 @DomName('SVGPathSegCurvetoCubicAbs.y') 4628 @DomName('SVGPathSegCurvetoCubicAbs.y')
4629 @DocsEditable() 4629 @DocsEditable()
4630 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y_Getter(this); 4630 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Getter(this);
4631 4631
4632 @DomName('SVGPathSegCurvetoCubicAbs.y') 4632 @DomName('SVGPathSegCurvetoCubicAbs.y')
4633 @DocsEditable() 4633 @DocsEditable()
4634 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y_Setter(this, value); 4634 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y_Setter_float( this, value);
4635 4635
4636 @DomName('SVGPathSegCurvetoCubicAbs.y1') 4636 @DomName('SVGPathSegCurvetoCubicAbs.y1')
4637 @DocsEditable() 4637 @DocsEditable()
4638 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y1_Getter(this); 4638 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Getter(this);
4639 4639
4640 @DomName('SVGPathSegCurvetoCubicAbs.y1') 4640 @DomName('SVGPathSegCurvetoCubicAbs.y1')
4641 @DocsEditable() 4641 @DocsEditable()
4642 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y1_Setter(thi s, value); 4642 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y1_Setter_floa t(this, value);
4643 4643
4644 @DomName('SVGPathSegCurvetoCubicAbs.y2') 4644 @DomName('SVGPathSegCurvetoCubicAbs.y2')
4645 @DocsEditable() 4645 @DocsEditable()
4646 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y2_Getter(this); 4646 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Getter(this);
4647 4647
4648 @DomName('SVGPathSegCurvetoCubicAbs.y2') 4648 @DomName('SVGPathSegCurvetoCubicAbs.y2')
4649 @DocsEditable() 4649 @DocsEditable()
4650 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y2_Setter(thi s, value); 4650 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.y2_Setter_floa t(this, value);
4651 4651
4652 } 4652 }
4653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4654 // for details. All rights reserved. Use of this source code is governed by a 4654 // for details. All rights reserved. Use of this source code is governed by a
4655 // BSD-style license that can be found in the LICENSE file. 4655 // BSD-style license that can be found in the LICENSE file.
4656 4656
4657 // WARNING: Do not edit - generated code. 4657 // WARNING: Do not edit - generated code.
4658 4658
4659 4659
4660 @DocsEditable() 4660 @DocsEditable()
4661 @DomName('SVGPathSegCurvetoCubicRel') 4661 @DomName('SVGPathSegCurvetoCubicRel')
4662 @Unstable() 4662 @Unstable()
4663 class PathSegCurvetoCubicRel extends PathSeg { 4663 class PathSegCurvetoCubicRel extends PathSeg {
4664 // To suppress missing implicit constructor warnings. 4664 // To suppress missing implicit constructor warnings.
4665 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); } 4665 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); }
4666 4666
4667 @DomName('SVGPathSegCurvetoCubicRel.x') 4667 @DomName('SVGPathSegCurvetoCubicRel.x')
4668 @DocsEditable() 4668 @DocsEditable()
4669 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.$x_Getter(this); 4669 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Getter(this);
4670 4670
4671 @DomName('SVGPathSegCurvetoCubicRel.x') 4671 @DomName('SVGPathSegCurvetoCubicRel.x')
4672 @DocsEditable() 4672 @DocsEditable()
4673 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x_Setter(this, value); 4673 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x_Setter_float( this, value);
4674 4674
4675 @DomName('SVGPathSegCurvetoCubicRel.x1') 4675 @DomName('SVGPathSegCurvetoCubicRel.x1')
4676 @DocsEditable() 4676 @DocsEditable()
4677 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.$x1_Getter(this); 4677 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Getter(this);
4678 4678
4679 @DomName('SVGPathSegCurvetoCubicRel.x1') 4679 @DomName('SVGPathSegCurvetoCubicRel.x1')
4680 @DocsEditable() 4680 @DocsEditable()
4681 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x1_Setter(thi s, value); 4681 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x1_Setter_floa t(this, value);
4682 4682
4683 @DomName('SVGPathSegCurvetoCubicRel.x2') 4683 @DomName('SVGPathSegCurvetoCubicRel.x2')
4684 @DocsEditable() 4684 @DocsEditable()
4685 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.$x2_Getter(this); 4685 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Getter(this);
4686 4686
4687 @DomName('SVGPathSegCurvetoCubicRel.x2') 4687 @DomName('SVGPathSegCurvetoCubicRel.x2')
4688 @DocsEditable() 4688 @DocsEditable()
4689 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x2_Setter(thi s, value); 4689 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.x2_Setter_floa t(this, value);
4690 4690
4691 @DomName('SVGPathSegCurvetoCubicRel.y') 4691 @DomName('SVGPathSegCurvetoCubicRel.y')
4692 @DocsEditable() 4692 @DocsEditable()
4693 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.$y_Getter(this); 4693 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Getter(this);
4694 4694
4695 @DomName('SVGPathSegCurvetoCubicRel.y') 4695 @DomName('SVGPathSegCurvetoCubicRel.y')
4696 @DocsEditable() 4696 @DocsEditable()
4697 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y_Setter(this, value); 4697 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y_Setter_float( this, value);
4698 4698
4699 @DomName('SVGPathSegCurvetoCubicRel.y1') 4699 @DomName('SVGPathSegCurvetoCubicRel.y1')
4700 @DocsEditable() 4700 @DocsEditable()
4701 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.$y1_Getter(this); 4701 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Getter(this);
4702 4702
4703 @DomName('SVGPathSegCurvetoCubicRel.y1') 4703 @DomName('SVGPathSegCurvetoCubicRel.y1')
4704 @DocsEditable() 4704 @DocsEditable()
4705 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y1_Setter(thi s, value); 4705 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y1_Setter_floa t(this, value);
4706 4706
4707 @DomName('SVGPathSegCurvetoCubicRel.y2') 4707 @DomName('SVGPathSegCurvetoCubicRel.y2')
4708 @DocsEditable() 4708 @DocsEditable()
4709 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.$y2_Getter(this); 4709 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Getter(this);
4710 4710
4711 @DomName('SVGPathSegCurvetoCubicRel.y2') 4711 @DomName('SVGPathSegCurvetoCubicRel.y2')
4712 @DocsEditable() 4712 @DocsEditable()
4713 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y2_Setter(thi s, value); 4713 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.y2_Setter_floa t(this, value);
4714 4714
4715 } 4715 }
4716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4717 // for details. All rights reserved. Use of this source code is governed by a 4717 // for details. All rights reserved. Use of this source code is governed by a
4718 // BSD-style license that can be found in the LICENSE file. 4718 // BSD-style license that can be found in the LICENSE file.
4719 4719
4720 // WARNING: Do not edit - generated code. 4720 // WARNING: Do not edit - generated code.
4721 4721
4722 4722
4723 @DocsEditable() 4723 @DocsEditable()
4724 @DomName('SVGPathSegCurvetoCubicSmoothAbs') 4724 @DomName('SVGPathSegCurvetoCubicSmoothAbs')
4725 @Unstable() 4725 @Unstable()
4726 class PathSegCurvetoCubicSmoothAbs extends PathSeg { 4726 class PathSegCurvetoCubicSmoothAbs extends PathSeg {
4727 // To suppress missing implicit constructor warnings. 4727 // To suppress missing implicit constructor warnings.
4728 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); } 4728 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); }
4729 4729
4730 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4730 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4731 @DocsEditable() 4731 @DocsEditable()
4732 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x_Getter(this); 4732 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Getter(this);
4733 4733
4734 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 4734 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
4735 @DocsEditable() 4735 @DocsEditable()
4736 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x_Setter (this, value); 4736 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x_Setter_ float(this, value);
4737 4737
4738 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 4738 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
4739 @DocsEditable() 4739 @DocsEditable()
4740 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x2_Getter(this); 4740 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Getter(this);
4741 4741
4742 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') 4742 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
4743 @DocsEditable() 4743 @DocsEditable()
4744 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x2_Sett er(this, value); 4744 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.x2_Sette r_float(this, value);
4745 4745
4746 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 4746 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
4747 @DocsEditable() 4747 @DocsEditable()
4748 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y_Getter(this); 4748 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Getter(this);
4749 4749
4750 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') 4750 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
4751 @DocsEditable() 4751 @DocsEditable()
4752 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y_Setter (this, value); 4752 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y_Setter_ float(this, value);
4753 4753
4754 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 4754 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
4755 @DocsEditable() 4755 @DocsEditable()
4756 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y2_Getter(this); 4756 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Getter(this);
4757 4757
4758 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') 4758 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
4759 @DocsEditable() 4759 @DocsEditable()
4760 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y2_Sett er(this, value); 4760 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.y2_Sette r_float(this, value);
4761 4761
4762 } 4762 }
4763 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4763 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4764 // for details. All rights reserved. Use of this source code is governed by a 4764 // for details. All rights reserved. Use of this source code is governed by a
4765 // BSD-style license that can be found in the LICENSE file. 4765 // BSD-style license that can be found in the LICENSE file.
4766 4766
4767 // WARNING: Do not edit - generated code. 4767 // WARNING: Do not edit - generated code.
4768 4768
4769 4769
4770 @DocsEditable() 4770 @DocsEditable()
4771 @DomName('SVGPathSegCurvetoCubicSmoothRel') 4771 @DomName('SVGPathSegCurvetoCubicSmoothRel')
4772 @Unstable() 4772 @Unstable()
4773 class PathSegCurvetoCubicSmoothRel extends PathSeg { 4773 class PathSegCurvetoCubicSmoothRel extends PathSeg {
4774 // To suppress missing implicit constructor warnings. 4774 // To suppress missing implicit constructor warnings.
4775 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); } 4775 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); }
4776 4776
4777 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4777 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4778 @DocsEditable() 4778 @DocsEditable()
4779 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x_Getter(this); 4779 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Getter(this);
4780 4780
4781 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 4781 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
4782 @DocsEditable() 4782 @DocsEditable()
4783 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x_Setter (this, value); 4783 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x_Setter_ float(this, value);
4784 4784
4785 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 4785 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
4786 @DocsEditable() 4786 @DocsEditable()
4787 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x2_Getter(this); 4787 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Getter(this);
4788 4788
4789 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') 4789 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
4790 @DocsEditable() 4790 @DocsEditable()
4791 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x2_Sett er(this, value); 4791 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.x2_Sette r_float(this, value);
4792 4792
4793 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 4793 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
4794 @DocsEditable() 4794 @DocsEditable()
4795 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y_Getter(this); 4795 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Getter(this);
4796 4796
4797 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') 4797 @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
4798 @DocsEditable() 4798 @DocsEditable()
4799 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y_Setter (this, value); 4799 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y_Setter_ float(this, value);
4800 4800
4801 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 4801 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
4802 @DocsEditable() 4802 @DocsEditable()
4803 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y2_Getter(this); 4803 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Getter(this);
4804 4804
4805 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') 4805 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
4806 @DocsEditable() 4806 @DocsEditable()
4807 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y2_Sett er(this, value); 4807 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.y2_Sette r_float(this, value);
4808 4808
4809 } 4809 }
4810 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4810 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4811 // for details. All rights reserved. Use of this source code is governed by a 4811 // for details. All rights reserved. Use of this source code is governed by a
4812 // BSD-style license that can be found in the LICENSE file. 4812 // BSD-style license that can be found in the LICENSE file.
4813 4813
4814 // WARNING: Do not edit - generated code. 4814 // WARNING: Do not edit - generated code.
4815 4815
4816 4816
4817 @DocsEditable() 4817 @DocsEditable()
4818 @DomName('SVGPathSegCurvetoQuadraticAbs') 4818 @DomName('SVGPathSegCurvetoQuadraticAbs')
4819 @Unstable() 4819 @Unstable()
4820 class PathSegCurvetoQuadraticAbs extends PathSeg { 4820 class PathSegCurvetoQuadraticAbs extends PathSeg {
4821 // To suppress missing implicit constructor warnings. 4821 // To suppress missing implicit constructor warnings.
4822 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); } 4822 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); }
4823 4823
4824 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4824 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4825 @DocsEditable() 4825 @DocsEditable()
4826 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x_Getter(this); 4826 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Getter(this);
4827 4827
4828 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 4828 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
4829 @DocsEditable() 4829 @DocsEditable()
4830 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x_Setter(t his, value); 4830 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x_Setter_fl oat(this, value);
4831 4831
4832 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 4832 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
4833 @DocsEditable() 4833 @DocsEditable()
4834 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x1_Getter(this); 4834 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Getter(this);
4835 4835
4836 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') 4836 @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
4837 @DocsEditable() 4837 @DocsEditable()
4838 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x1_Setter (this, value); 4838 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.x1_Setter_ float(this, value);
4839 4839
4840 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 4840 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
4841 @DocsEditable() 4841 @DocsEditable()
4842 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y_Getter(this); 4842 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Getter(this);
4843 4843
4844 @DomName('SVGPathSegCurvetoQuadraticAbs.y') 4844 @DomName('SVGPathSegCurvetoQuadraticAbs.y')
4845 @DocsEditable() 4845 @DocsEditable()
4846 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y_Setter(t his, value); 4846 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y_Setter_fl oat(this, value);
4847 4847
4848 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 4848 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
4849 @DocsEditable() 4849 @DocsEditable()
4850 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y1_Getter(this); 4850 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Getter(this);
4851 4851
4852 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') 4852 @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
4853 @DocsEditable() 4853 @DocsEditable()
4854 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y1_Setter (this, value); 4854 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.y1_Setter_ float(this, value);
4855 4855
4856 } 4856 }
4857 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4857 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4858 // for details. All rights reserved. Use of this source code is governed by a 4858 // for details. All rights reserved. Use of this source code is governed by a
4859 // BSD-style license that can be found in the LICENSE file. 4859 // BSD-style license that can be found in the LICENSE file.
4860 4860
4861 // WARNING: Do not edit - generated code. 4861 // WARNING: Do not edit - generated code.
4862 4862
4863 4863
4864 @DocsEditable() 4864 @DocsEditable()
4865 @DomName('SVGPathSegCurvetoQuadraticRel') 4865 @DomName('SVGPathSegCurvetoQuadraticRel')
4866 @Unstable() 4866 @Unstable()
4867 class PathSegCurvetoQuadraticRel extends PathSeg { 4867 class PathSegCurvetoQuadraticRel extends PathSeg {
4868 // To suppress missing implicit constructor warnings. 4868 // To suppress missing implicit constructor warnings.
4869 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); } 4869 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); }
4870 4870
4871 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4871 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4872 @DocsEditable() 4872 @DocsEditable()
4873 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x_Getter(this); 4873 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Getter(this);
4874 4874
4875 @DomName('SVGPathSegCurvetoQuadraticRel.x') 4875 @DomName('SVGPathSegCurvetoQuadraticRel.x')
4876 @DocsEditable() 4876 @DocsEditable()
4877 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x_Setter(t his, value); 4877 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x_Setter_fl oat(this, value);
4878 4878
4879 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 4879 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
4880 @DocsEditable() 4880 @DocsEditable()
4881 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x1_Getter(this); 4881 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Getter(this);
4882 4882
4883 @DomName('SVGPathSegCurvetoQuadraticRel.x1') 4883 @DomName('SVGPathSegCurvetoQuadraticRel.x1')
4884 @DocsEditable() 4884 @DocsEditable()
4885 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x1_Setter (this, value); 4885 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.x1_Setter_ float(this, value);
4886 4886
4887 @DomName('SVGPathSegCurvetoQuadraticRel.y') 4887 @DomName('SVGPathSegCurvetoQuadraticRel.y')
4888 @DocsEditable() 4888 @DocsEditable()
4889 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y_Getter(this); 4889 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Getter(this);
4890 4890
4891 @DomName('SVGPathSegCurvetoQuadraticRel.y') 4891 @DomName('SVGPathSegCurvetoQuadraticRel.y')
4892 @DocsEditable() 4892 @DocsEditable()
4893 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y_Setter(t his, value); 4893 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y_Setter_fl oat(this, value);
4894 4894
4895 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 4895 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
4896 @DocsEditable() 4896 @DocsEditable()
4897 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y1_Getter(this); 4897 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Getter(this);
4898 4898
4899 @DomName('SVGPathSegCurvetoQuadraticRel.y1') 4899 @DomName('SVGPathSegCurvetoQuadraticRel.y1')
4900 @DocsEditable() 4900 @DocsEditable()
4901 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y1_Setter (this, value); 4901 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.y1_Setter_ float(this, value);
4902 4902
4903 } 4903 }
4904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4905 // for details. All rights reserved. Use of this source code is governed by a 4905 // for details. All rights reserved. Use of this source code is governed by a
4906 // BSD-style license that can be found in the LICENSE file. 4906 // BSD-style license that can be found in the LICENSE file.
4907 4907
4908 // WARNING: Do not edit - generated code. 4908 // WARNING: Do not edit - generated code.
4909 4909
4910 4910
4911 @DocsEditable() 4911 @DocsEditable()
4912 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') 4912 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs')
4913 @Unstable() 4913 @Unstable()
4914 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { 4914 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
4915 // To suppress missing implicit constructor warnings. 4915 // To suppress missing implicit constructor warnings.
4916 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); } 4916 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); }
4917 4917
4918 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4918 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4919 @DocsEditable() 4919 @DocsEditable()
4920 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$x_Getter(this); 4920 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Getter(this);
4921 4921
4922 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 4922 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
4923 @DocsEditable() 4923 @DocsEditable()
4924 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$x_Se tter(this, value); 4924 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.x_Set ter_float(this, value);
4925 4925
4926 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4926 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4927 @DocsEditable() 4927 @DocsEditable()
4928 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$y_Getter(this); 4928 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Getter(this);
4929 4929
4930 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') 4930 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
4931 @DocsEditable() 4931 @DocsEditable()
4932 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$y_Se tter(this, value); 4932 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.y_Set ter_float(this, value);
4933 4933
4934 } 4934 }
4935 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4935 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4936 // for details. All rights reserved. Use of this source code is governed by a 4936 // for details. All rights reserved. Use of this source code is governed by a
4937 // BSD-style license that can be found in the LICENSE file. 4937 // BSD-style license that can be found in the LICENSE file.
4938 4938
4939 // WARNING: Do not edit - generated code. 4939 // WARNING: Do not edit - generated code.
4940 4940
4941 4941
4942 @DocsEditable() 4942 @DocsEditable()
4943 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') 4943 @DomName('SVGPathSegCurvetoQuadraticSmoothRel')
4944 @Unstable() 4944 @Unstable()
4945 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { 4945 class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
4946 // To suppress missing implicit constructor warnings. 4946 // To suppress missing implicit constructor warnings.
4947 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); } 4947 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); }
4948 4948
4949 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4949 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4950 @DocsEditable() 4950 @DocsEditable()
4951 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$x_Getter(this); 4951 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Getter(this);
4952 4952
4953 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 4953 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
4954 @DocsEditable() 4954 @DocsEditable()
4955 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$x_Se tter(this, value); 4955 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.x_Set ter_float(this, value);
4956 4956
4957 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4957 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4958 @DocsEditable() 4958 @DocsEditable()
4959 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$y_Getter(this); 4959 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Getter(this);
4960 4960
4961 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') 4961 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
4962 @DocsEditable() 4962 @DocsEditable()
4963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$y_Se tter(this, value); 4963 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.y_Set ter_float(this, value);
4964 4964
4965 } 4965 }
4966 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4966 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4967 // for details. All rights reserved. Use of this source code is governed by a 4967 // for details. All rights reserved. Use of this source code is governed by a
4968 // BSD-style license that can be found in the LICENSE file. 4968 // BSD-style license that can be found in the LICENSE file.
4969 4969
4970 // WARNING: Do not edit - generated code. 4970 // WARNING: Do not edit - generated code.
4971 4971
4972 4972
4973 @DocsEditable() 4973 @DocsEditable()
4974 @DomName('SVGPathSegLinetoAbs') 4974 @DomName('SVGPathSegLinetoAbs')
4975 @Unstable() 4975 @Unstable()
4976 class PathSegLinetoAbs extends PathSeg { 4976 class PathSegLinetoAbs extends PathSeg {
4977 // To suppress missing implicit constructor warnings. 4977 // To suppress missing implicit constructor warnings.
4978 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } 4978 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); }
4979 4979
4980 @DomName('SVGPathSegLinetoAbs.x') 4980 @DomName('SVGPathSegLinetoAbs.x')
4981 @DocsEditable() 4981 @DocsEditable()
4982 num get x => _blink.BlinkSVGPathSegLinetoAbs.$x_Getter(this); 4982 num get x => _blink.BlinkSVGPathSegLinetoAbs.x_Getter(this);
4983 4983
4984 @DomName('SVGPathSegLinetoAbs.x') 4984 @DomName('SVGPathSegLinetoAbs.x')
4985 @DocsEditable() 4985 @DocsEditable()
4986 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.$x_Setter(this, value ); 4986 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.x_Setter_float(this, value);
4987 4987
4988 @DomName('SVGPathSegLinetoAbs.y') 4988 @DomName('SVGPathSegLinetoAbs.y')
4989 @DocsEditable() 4989 @DocsEditable()
4990 num get y => _blink.BlinkSVGPathSegLinetoAbs.$y_Getter(this); 4990 num get y => _blink.BlinkSVGPathSegLinetoAbs.y_Getter(this);
4991 4991
4992 @DomName('SVGPathSegLinetoAbs.y') 4992 @DomName('SVGPathSegLinetoAbs.y')
4993 @DocsEditable() 4993 @DocsEditable()
4994 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.$y_Setter(this, value ); 4994 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.y_Setter_float(this, value);
4995 4995
4996 } 4996 }
4997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4998 // for details. All rights reserved. Use of this source code is governed by a 4998 // for details. All rights reserved. Use of this source code is governed by a
4999 // BSD-style license that can be found in the LICENSE file. 4999 // BSD-style license that can be found in the LICENSE file.
5000 5000
5001 // WARNING: Do not edit - generated code. 5001 // WARNING: Do not edit - generated code.
5002 5002
5003 5003
5004 @DocsEditable() 5004 @DocsEditable()
5005 @DomName('SVGPathSegLinetoHorizontalAbs') 5005 @DomName('SVGPathSegLinetoHorizontalAbs')
5006 @Unstable() 5006 @Unstable()
5007 class PathSegLinetoHorizontalAbs extends PathSeg { 5007 class PathSegLinetoHorizontalAbs extends PathSeg {
5008 // To suppress missing implicit constructor warnings. 5008 // To suppress missing implicit constructor warnings.
5009 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); } 5009 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); }
5010 5010
5011 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5011 @DomName('SVGPathSegLinetoHorizontalAbs.x')
5012 @DocsEditable() 5012 @DocsEditable()
5013 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.$x_Getter(this); 5013 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Getter(this);
5014 5014
5015 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5015 @DomName('SVGPathSegLinetoHorizontalAbs.x')
5016 @DocsEditable() 5016 @DocsEditable()
5017 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.$x_Setter(t his, value); 5017 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.x_Setter_fl oat(this, value);
5018 5018
5019 } 5019 }
5020 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5020 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5021 // for details. All rights reserved. Use of this source code is governed by a 5021 // for details. All rights reserved. Use of this source code is governed by a
5022 // BSD-style license that can be found in the LICENSE file. 5022 // BSD-style license that can be found in the LICENSE file.
5023 5023
5024 // WARNING: Do not edit - generated code. 5024 // WARNING: Do not edit - generated code.
5025 5025
5026 5026
5027 @DocsEditable() 5027 @DocsEditable()
5028 @DomName('SVGPathSegLinetoHorizontalRel') 5028 @DomName('SVGPathSegLinetoHorizontalRel')
5029 @Unstable() 5029 @Unstable()
5030 class PathSegLinetoHorizontalRel extends PathSeg { 5030 class PathSegLinetoHorizontalRel extends PathSeg {
5031 // To suppress missing implicit constructor warnings. 5031 // To suppress missing implicit constructor warnings.
5032 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); } 5032 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); }
5033 5033
5034 @DomName('SVGPathSegLinetoHorizontalRel.x') 5034 @DomName('SVGPathSegLinetoHorizontalRel.x')
5035 @DocsEditable() 5035 @DocsEditable()
5036 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.$x_Getter(this); 5036 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Getter(this);
5037 5037
5038 @DomName('SVGPathSegLinetoHorizontalRel.x') 5038 @DomName('SVGPathSegLinetoHorizontalRel.x')
5039 @DocsEditable() 5039 @DocsEditable()
5040 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.$x_Setter(t his, value); 5040 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.x_Setter_fl oat(this, value);
5041 5041
5042 } 5042 }
5043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5044 // for details. All rights reserved. Use of this source code is governed by a 5044 // for details. All rights reserved. Use of this source code is governed by a
5045 // BSD-style license that can be found in the LICENSE file. 5045 // BSD-style license that can be found in the LICENSE file.
5046 5046
5047 // WARNING: Do not edit - generated code. 5047 // WARNING: Do not edit - generated code.
5048 5048
5049 5049
5050 @DocsEditable() 5050 @DocsEditable()
5051 @DomName('SVGPathSegLinetoRel') 5051 @DomName('SVGPathSegLinetoRel')
5052 @Unstable() 5052 @Unstable()
5053 class PathSegLinetoRel extends PathSeg { 5053 class PathSegLinetoRel extends PathSeg {
5054 // To suppress missing implicit constructor warnings. 5054 // To suppress missing implicit constructor warnings.
5055 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } 5055 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); }
5056 5056
5057 @DomName('SVGPathSegLinetoRel.x') 5057 @DomName('SVGPathSegLinetoRel.x')
5058 @DocsEditable() 5058 @DocsEditable()
5059 num get x => _blink.BlinkSVGPathSegLinetoRel.$x_Getter(this); 5059 num get x => _blink.BlinkSVGPathSegLinetoRel.x_Getter(this);
5060 5060
5061 @DomName('SVGPathSegLinetoRel.x') 5061 @DomName('SVGPathSegLinetoRel.x')
5062 @DocsEditable() 5062 @DocsEditable()
5063 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.$x_Setter(this, value ); 5063 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.x_Setter_float(this, value);
5064 5064
5065 @DomName('SVGPathSegLinetoRel.y') 5065 @DomName('SVGPathSegLinetoRel.y')
5066 @DocsEditable() 5066 @DocsEditable()
5067 num get y => _blink.BlinkSVGPathSegLinetoRel.$y_Getter(this); 5067 num get y => _blink.BlinkSVGPathSegLinetoRel.y_Getter(this);
5068 5068
5069 @DomName('SVGPathSegLinetoRel.y') 5069 @DomName('SVGPathSegLinetoRel.y')
5070 @DocsEditable() 5070 @DocsEditable()
5071 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.$y_Setter(this, value ); 5071 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.y_Setter_float(this, value);
5072 5072
5073 } 5073 }
5074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5075 // for details. All rights reserved. Use of this source code is governed by a 5075 // for details. All rights reserved. Use of this source code is governed by a
5076 // BSD-style license that can be found in the LICENSE file. 5076 // BSD-style license that can be found in the LICENSE file.
5077 5077
5078 // WARNING: Do not edit - generated code. 5078 // WARNING: Do not edit - generated code.
5079 5079
5080 5080
5081 @DocsEditable() 5081 @DocsEditable()
5082 @DomName('SVGPathSegLinetoVerticalAbs') 5082 @DomName('SVGPathSegLinetoVerticalAbs')
5083 @Unstable() 5083 @Unstable()
5084 class PathSegLinetoVerticalAbs extends PathSeg { 5084 class PathSegLinetoVerticalAbs extends PathSeg {
5085 // To suppress missing implicit constructor warnings. 5085 // To suppress missing implicit constructor warnings.
5086 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); } 5086 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); }
5087 5087
5088 @DomName('SVGPathSegLinetoVerticalAbs.y') 5088 @DomName('SVGPathSegLinetoVerticalAbs.y')
5089 @DocsEditable() 5089 @DocsEditable()
5090 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.$y_Getter(this); 5090 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Getter(this);
5091 5091
5092 @DomName('SVGPathSegLinetoVerticalAbs.y') 5092 @DomName('SVGPathSegLinetoVerticalAbs.y')
5093 @DocsEditable() 5093 @DocsEditable()
5094 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.$y_Setter(thi s, value); 5094 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.y_Setter_floa t(this, value);
5095 5095
5096 } 5096 }
5097 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5097 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5098 // for details. All rights reserved. Use of this source code is governed by a 5098 // for details. All rights reserved. Use of this source code is governed by a
5099 // BSD-style license that can be found in the LICENSE file. 5099 // BSD-style license that can be found in the LICENSE file.
5100 5100
5101 // WARNING: Do not edit - generated code. 5101 // WARNING: Do not edit - generated code.
5102 5102
5103 5103
5104 @DocsEditable() 5104 @DocsEditable()
5105 @DomName('SVGPathSegLinetoVerticalRel') 5105 @DomName('SVGPathSegLinetoVerticalRel')
5106 @Unstable() 5106 @Unstable()
5107 class PathSegLinetoVerticalRel extends PathSeg { 5107 class PathSegLinetoVerticalRel extends PathSeg {
5108 // To suppress missing implicit constructor warnings. 5108 // To suppress missing implicit constructor warnings.
5109 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); } 5109 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); }
5110 5110
5111 @DomName('SVGPathSegLinetoVerticalRel.y') 5111 @DomName('SVGPathSegLinetoVerticalRel.y')
5112 @DocsEditable() 5112 @DocsEditable()
5113 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.$y_Getter(this); 5113 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Getter(this);
5114 5114
5115 @DomName('SVGPathSegLinetoVerticalRel.y') 5115 @DomName('SVGPathSegLinetoVerticalRel.y')
5116 @DocsEditable() 5116 @DocsEditable()
5117 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.$y_Setter(thi s, value); 5117 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.y_Setter_floa t(this, value);
5118 5118
5119 } 5119 }
5120 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5120 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5121 // for details. All rights reserved. Use of this source code is governed by a 5121 // for details. All rights reserved. Use of this source code is governed by a
5122 // BSD-style license that can be found in the LICENSE file. 5122 // BSD-style license that can be found in the LICENSE file.
5123 5123
5124 // WARNING: Do not edit - generated code. 5124 // WARNING: Do not edit - generated code.
5125 5125
5126 5126
5127 @DocsEditable() 5127 @DocsEditable()
5128 @DomName('SVGPathSegList') 5128 @DomName('SVGPathSegList')
5129 @Unstable() 5129 @Unstable()
5130 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> { 5130 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu tableListMixin<PathSeg> implements List<PathSeg> {
5131 // To suppress missing implicit constructor warnings. 5131 // To suppress missing implicit constructor warnings.
5132 factory PathSegList._() { throw new UnsupportedError("Not supported"); } 5132 factory PathSegList._() { throw new UnsupportedError("Not supported"); }
5133 5133
5134 @DomName('SVGPathSegList.numberOfItems') 5134 @DomName('SVGPathSegList.numberOfItems')
5135 @DocsEditable() 5135 @DocsEditable()
5136 int get numberOfItems => _blink.BlinkSVGPathSegList.$numberOfItems_Getter(this ); 5136 int get numberOfItems => _blink.BlinkSVGPathSegList.numberOfItems_Getter(this) ;
5137 5137
5138 PathSeg operator[](int index) { 5138 PathSeg operator[](int index) {
5139 if (index < 0 || index >= length) 5139 if (index < 0 || index >= length)
5140 throw new RangeError.range(index, 0, length); 5140 throw new RangeError.range(index, 0, length);
5141 return getItem(index); 5141 return getItem(index);
5142 } 5142 }
5143 5143
5144 void operator[]=(int index, PathSeg value) { 5144 void operator[]=(int index, PathSeg value) {
5145 throw new UnsupportedError("Cannot assign element of immutable List."); 5145 throw new UnsupportedError("Cannot assign element of immutable List.");
5146 } 5146 }
(...skipping 29 matching lines...) Expand all
5176 } 5176 }
5177 if (len == 0) throw new StateError("No elements"); 5177 if (len == 0) throw new StateError("No elements");
5178 throw new StateError("More than one element"); 5178 throw new StateError("More than one element");
5179 } 5179 }
5180 5180
5181 PathSeg elementAt(int index) => this[index]; 5181 PathSeg elementAt(int index) => this[index];
5182 // -- end List<PathSeg> mixins. 5182 // -- end List<PathSeg> mixins.
5183 5183
5184 @DomName('SVGPathSegList.appendItem') 5184 @DomName('SVGPathSegList.appendItem')
5185 @DocsEditable() 5185 @DocsEditable()
5186 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.$appendItem_ Callback(this, newItem); 5186 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.appendItem_C allback_SVGPathSeg(this, newItem);
5187 5187
5188 @DomName('SVGPathSegList.clear') 5188 @DomName('SVGPathSegList.clear')
5189 @DocsEditable() 5189 @DocsEditable()
5190 void clear() => _blink.BlinkSVGPathSegList.$clear_Callback(this); 5190 void clear() => _blink.BlinkSVGPathSegList.clear_Callback(this);
5191 5191
5192 @DomName('SVGPathSegList.getItem') 5192 @DomName('SVGPathSegList.getItem')
5193 @DocsEditable() 5193 @DocsEditable()
5194 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.$getItem_Callback(thi s, index); 5194 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.getItem_Callback_ul(t his, index);
5195 5195
5196 @DomName('SVGPathSegList.initialize') 5196 @DomName('SVGPathSegList.initialize')
5197 @DocsEditable() 5197 @DocsEditable()
5198 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.$initialize_ Callback(this, newItem); 5198 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.initialize_C allback_SVGPathSeg(this, newItem);
5199 5199
5200 @DomName('SVGPathSegList.insertItemBefore') 5200 @DomName('SVGPathSegList.insertItemBefore')
5201 @DocsEditable() 5201 @DocsEditable()
5202 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg List.$insertItemBefore_Callback(this, newItem, index); 5202 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg List.insertItemBefore_Callback_SVGPathSeg_ul(this, newItem, index);
5203 5203
5204 @DomName('SVGPathSegList.removeItem') 5204 @DomName('SVGPathSegList.removeItem')
5205 @DocsEditable() 5205 @DocsEditable()
5206 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.$removeItem_Callba ck(this, index); 5206 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.removeItem_Callbac k_ul(this, index);
5207 5207
5208 @DomName('SVGPathSegList.replaceItem') 5208 @DomName('SVGPathSegList.replaceItem')
5209 @DocsEditable() 5209 @DocsEditable()
5210 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList. $replaceItem_Callback(this, newItem, index); 5210 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList. replaceItem_Callback_SVGPathSeg_ul(this, newItem, index);
5211 5211
5212 } 5212 }
5213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5214 // for details. All rights reserved. Use of this source code is governed by a 5214 // for details. All rights reserved. Use of this source code is governed by a
5215 // BSD-style license that can be found in the LICENSE file. 5215 // BSD-style license that can be found in the LICENSE file.
5216 5216
5217 // WARNING: Do not edit - generated code. 5217 // WARNING: Do not edit - generated code.
5218 5218
5219 5219
5220 @DocsEditable() 5220 @DocsEditable()
5221 @DomName('SVGPathSegMovetoAbs') 5221 @DomName('SVGPathSegMovetoAbs')
5222 @Unstable() 5222 @Unstable()
5223 class PathSegMovetoAbs extends PathSeg { 5223 class PathSegMovetoAbs extends PathSeg {
5224 // To suppress missing implicit constructor warnings. 5224 // To suppress missing implicit constructor warnings.
5225 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } 5225 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); }
5226 5226
5227 @DomName('SVGPathSegMovetoAbs.x') 5227 @DomName('SVGPathSegMovetoAbs.x')
5228 @DocsEditable() 5228 @DocsEditable()
5229 num get x => _blink.BlinkSVGPathSegMovetoAbs.$x_Getter(this); 5229 num get x => _blink.BlinkSVGPathSegMovetoAbs.x_Getter(this);
5230 5230
5231 @DomName('SVGPathSegMovetoAbs.x') 5231 @DomName('SVGPathSegMovetoAbs.x')
5232 @DocsEditable() 5232 @DocsEditable()
5233 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.$x_Setter(this, value ); 5233 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.x_Setter_float(this, value);
5234 5234
5235 @DomName('SVGPathSegMovetoAbs.y') 5235 @DomName('SVGPathSegMovetoAbs.y')
5236 @DocsEditable() 5236 @DocsEditable()
5237 num get y => _blink.BlinkSVGPathSegMovetoAbs.$y_Getter(this); 5237 num get y => _blink.BlinkSVGPathSegMovetoAbs.y_Getter(this);
5238 5238
5239 @DomName('SVGPathSegMovetoAbs.y') 5239 @DomName('SVGPathSegMovetoAbs.y')
5240 @DocsEditable() 5240 @DocsEditable()
5241 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.$y_Setter(this, value ); 5241 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.y_Setter_float(this, value);
5242 5242
5243 } 5243 }
5244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5245 // for details. All rights reserved. Use of this source code is governed by a 5245 // for details. All rights reserved. Use of this source code is governed by a
5246 // BSD-style license that can be found in the LICENSE file. 5246 // BSD-style license that can be found in the LICENSE file.
5247 5247
5248 // WARNING: Do not edit - generated code. 5248 // WARNING: Do not edit - generated code.
5249 5249
5250 5250
5251 @DocsEditable() 5251 @DocsEditable()
5252 @DomName('SVGPathSegMovetoRel') 5252 @DomName('SVGPathSegMovetoRel')
5253 @Unstable() 5253 @Unstable()
5254 class PathSegMovetoRel extends PathSeg { 5254 class PathSegMovetoRel extends PathSeg {
5255 // To suppress missing implicit constructor warnings. 5255 // To suppress missing implicit constructor warnings.
5256 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } 5256 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); }
5257 5257
5258 @DomName('SVGPathSegMovetoRel.x') 5258 @DomName('SVGPathSegMovetoRel.x')
5259 @DocsEditable() 5259 @DocsEditable()
5260 num get x => _blink.BlinkSVGPathSegMovetoRel.$x_Getter(this); 5260 num get x => _blink.BlinkSVGPathSegMovetoRel.x_Getter(this);
5261 5261
5262 @DomName('SVGPathSegMovetoRel.x') 5262 @DomName('SVGPathSegMovetoRel.x')
5263 @DocsEditable() 5263 @DocsEditable()
5264 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.$x_Setter(this, value ); 5264 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.x_Setter_float(this, value);
5265 5265
5266 @DomName('SVGPathSegMovetoRel.y') 5266 @DomName('SVGPathSegMovetoRel.y')
5267 @DocsEditable() 5267 @DocsEditable()
5268 num get y => _blink.BlinkSVGPathSegMovetoRel.$y_Getter(this); 5268 num get y => _blink.BlinkSVGPathSegMovetoRel.y_Getter(this);
5269 5269
5270 @DomName('SVGPathSegMovetoRel.y') 5270 @DomName('SVGPathSegMovetoRel.y')
5271 @DocsEditable() 5271 @DocsEditable()
5272 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.$y_Setter(this, value ); 5272 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.y_Setter_float(this, value);
5273 5273
5274 } 5274 }
5275 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5275 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5276 // for details. All rights reserved. Use of this source code is governed by a 5276 // for details. All rights reserved. Use of this source code is governed by a
5277 // BSD-style license that can be found in the LICENSE file. 5277 // BSD-style license that can be found in the LICENSE file.
5278 5278
5279 // WARNING: Do not edit - generated code. 5279 // WARNING: Do not edit - generated code.
5280 5280
5281 5281
5282 @DocsEditable() 5282 @DocsEditable()
5283 @DomName('SVGPatternElement') 5283 @DomName('SVGPatternElement')
5284 @Unstable() 5284 @Unstable()
5285 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T ests { 5285 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T ests {
5286 // To suppress missing implicit constructor warnings. 5286 // To suppress missing implicit constructor warnings.
5287 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 5287 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
5288 5288
5289 @DomName('SVGPatternElement.SVGPatternElement') 5289 @DomName('SVGPatternElement.SVGPatternElement')
5290 @DocsEditable() 5290 @DocsEditable()
5291 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 5291 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
5292 /** 5292 /**
5293 * Constructor instantiated by the DOM when a custom element has been created. 5293 * Constructor instantiated by the DOM when a custom element has been created.
5294 * 5294 *
5295 * This can only be called by subclasses from their created constructor. 5295 * This can only be called by subclasses from their created constructor.
5296 */ 5296 */
5297 PatternElement.created() : super.created(); 5297 PatternElement.created() : super.created();
5298 5298
5299 @DomName('SVGPatternElement.height') 5299 @DomName('SVGPatternElement.height')
5300 @DocsEditable() 5300 @DocsEditable()
5301 AnimatedLength get height => _blink.BlinkSVGPatternElement.$height_Getter(this ); 5301 AnimatedLength get height => _blink.BlinkSVGPatternElement.height_Getter(this) ;
5302 5302
5303 @DomName('SVGPatternElement.patternContentUnits') 5303 @DomName('SVGPatternElement.patternContentUnits')
5304 @DocsEditable() 5304 @DocsEditable()
5305 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.$ patternContentUnits_Getter(this); 5305 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.p atternContentUnits_Getter(this);
5306 5306
5307 @DomName('SVGPatternElement.patternTransform') 5307 @DomName('SVGPatternElement.patternTransform')
5308 @DocsEditable() 5308 @DocsEditable()
5309 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.$p atternTransform_Getter(this); 5309 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.pa tternTransform_Getter(this);
5310 5310
5311 @DomName('SVGPatternElement.patternUnits') 5311 @DomName('SVGPatternElement.patternUnits')
5312 @DocsEditable() 5312 @DocsEditable()
5313 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.$pattern Units_Getter(this); 5313 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.patternU nits_Getter(this);
5314 5314
5315 @DomName('SVGPatternElement.width') 5315 @DomName('SVGPatternElement.width')
5316 @DocsEditable() 5316 @DocsEditable()
5317 AnimatedLength get width => _blink.BlinkSVGPatternElement.$width_Getter(this); 5317 AnimatedLength get width => _blink.BlinkSVGPatternElement.width_Getter(this);
5318 5318
5319 @DomName('SVGPatternElement.x') 5319 @DomName('SVGPatternElement.x')
5320 @DocsEditable() 5320 @DocsEditable()
5321 AnimatedLength get x => _blink.BlinkSVGPatternElement.$x_Getter(this); 5321 AnimatedLength get x => _blink.BlinkSVGPatternElement.x_Getter(this);
5322 5322
5323 @DomName('SVGPatternElement.y') 5323 @DomName('SVGPatternElement.y')
5324 @DocsEditable() 5324 @DocsEditable()
5325 AnimatedLength get y => _blink.BlinkSVGPatternElement.$y_Getter(this); 5325 AnimatedLength get y => _blink.BlinkSVGPatternElement.y_Getter(this);
5326 5326
5327 @DomName('SVGPatternElement.preserveAspectRatio') 5327 @DomName('SVGPatternElement.preserveAspectRatio')
5328 @DocsEditable() 5328 @DocsEditable()
5329 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE lement.$preserveAspectRatio_Getter(this); 5329 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE lement.preserveAspectRatio_Getter(this);
5330 5330
5331 @DomName('SVGPatternElement.viewBox') 5331 @DomName('SVGPatternElement.viewBox')
5332 @DocsEditable() 5332 @DocsEditable()
5333 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.$viewBox_Getter(this ); 5333 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.viewBox_Getter(this) ;
5334 5334
5335 @DomName('SVGPatternElement.requiredExtensions') 5335 @DomName('SVGPatternElement.requiredExtensions')
5336 @DocsEditable() 5336 @DocsEditable()
5337 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.$requiredEx tensions_Getter(this); 5337 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.requiredExt ensions_Getter(this);
5338 5338
5339 @DomName('SVGPatternElement.requiredFeatures') 5339 @DomName('SVGPatternElement.requiredFeatures')
5340 @DocsEditable() 5340 @DocsEditable()
5341 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.$requiredFeat ures_Getter(this); 5341 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.requiredFeatu res_Getter(this);
5342 5342
5343 @DomName('SVGPatternElement.systemLanguage') 5343 @DomName('SVGPatternElement.systemLanguage')
5344 @DocsEditable() 5344 @DocsEditable()
5345 StringList get systemLanguage => _blink.BlinkSVGPatternElement.$systemLanguage _Getter(this); 5345 StringList get systemLanguage => _blink.BlinkSVGPatternElement.systemLanguage_ Getter(this);
5346 5346
5347 @DomName('SVGPatternElement.hasExtension') 5347 @DomName('SVGPatternElement.hasExtension')
5348 @DocsEditable() 5348 @DocsEditable()
5349 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.$hasExten sion_Callback(this, extension); 5349 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.hasExtens ion_Callback_DOMString(this, extension);
5350 5350
5351 @DomName('SVGPatternElement.href') 5351 @DomName('SVGPatternElement.href')
5352 @DocsEditable() 5352 @DocsEditable()
5353 AnimatedString get href => _blink.BlinkSVGPatternElement.$href_Getter(this); 5353 AnimatedString get href => _blink.BlinkSVGPatternElement.href_Getter(this);
5354 5354
5355 } 5355 }
5356 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5356 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5357 // for details. All rights reserved. Use of this source code is governed by a 5357 // for details. All rights reserved. Use of this source code is governed by a
5358 // BSD-style license that can be found in the LICENSE file. 5358 // BSD-style license that can be found in the LICENSE file.
5359 5359
5360 // WARNING: Do not edit - generated code. 5360 // WARNING: Do not edit - generated code.
5361 5361
5362 5362
5363 @DocsEditable() 5363 @DocsEditable()
5364 @DomName('SVGPoint') 5364 @DomName('SVGPoint')
5365 @Unstable() 5365 @Unstable()
5366 class Point extends NativeFieldWrapperClass2 { 5366 class Point extends NativeFieldWrapperClass2 {
5367 // To suppress missing implicit constructor warnings. 5367 // To suppress missing implicit constructor warnings.
5368 factory Point._() { throw new UnsupportedError("Not supported"); } 5368 factory Point._() { throw new UnsupportedError("Not supported"); }
5369 5369
5370 @DomName('SVGPoint.x') 5370 @DomName('SVGPoint.x')
5371 @DocsEditable() 5371 @DocsEditable()
5372 num get x => _blink.BlinkSVGPoint.$x_Getter(this); 5372 num get x => _blink.BlinkSVGPoint.x_Getter(this);
5373 5373
5374 @DomName('SVGPoint.x') 5374 @DomName('SVGPoint.x')
5375 @DocsEditable() 5375 @DocsEditable()
5376 void set x(num value) => _blink.BlinkSVGPoint.$x_Setter(this, value); 5376 void set x(num value) => _blink.BlinkSVGPoint.x_Setter_float(this, value);
5377 5377
5378 @DomName('SVGPoint.y') 5378 @DomName('SVGPoint.y')
5379 @DocsEditable() 5379 @DocsEditable()
5380 num get y => _blink.BlinkSVGPoint.$y_Getter(this); 5380 num get y => _blink.BlinkSVGPoint.y_Getter(this);
5381 5381
5382 @DomName('SVGPoint.y') 5382 @DomName('SVGPoint.y')
5383 @DocsEditable() 5383 @DocsEditable()
5384 void set y(num value) => _blink.BlinkSVGPoint.$y_Setter(this, value); 5384 void set y(num value) => _blink.BlinkSVGPoint.y_Setter_float(this, value);
5385 5385
5386 @DomName('SVGPoint.matrixTransform') 5386 @DomName('SVGPoint.matrixTransform')
5387 @DocsEditable() 5387 @DocsEditable()
5388 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.$matrixTransform_ Callback(this, matrix); 5388 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.matrixTransform_C allback_SVGMatrix(this, matrix);
5389 5389
5390 } 5390 }
5391 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5391 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5392 // for details. All rights reserved. Use of this source code is governed by a 5392 // for details. All rights reserved. Use of this source code is governed by a
5393 // BSD-style license that can be found in the LICENSE file. 5393 // BSD-style license that can be found in the LICENSE file.
5394 5394
5395 // WARNING: Do not edit - generated code. 5395 // WARNING: Do not edit - generated code.
5396 5396
5397 5397
5398 @DocsEditable() 5398 @DocsEditable()
5399 @DomName('SVGPointList') 5399 @DomName('SVGPointList')
5400 @Unstable() 5400 @Unstable()
5401 class PointList extends NativeFieldWrapperClass2 { 5401 class PointList extends NativeFieldWrapperClass2 {
5402 // To suppress missing implicit constructor warnings. 5402 // To suppress missing implicit constructor warnings.
5403 factory PointList._() { throw new UnsupportedError("Not supported"); } 5403 factory PointList._() { throw new UnsupportedError("Not supported"); }
5404 5404
5405 @DomName('SVGPointList.numberOfItems') 5405 @DomName('SVGPointList.numberOfItems')
5406 @DocsEditable() 5406 @DocsEditable()
5407 int get numberOfItems => _blink.BlinkSVGPointList.$numberOfItems_Getter(this); 5407 int get numberOfItems => _blink.BlinkSVGPointList.numberOfItems_Getter(this);
5408 5408
5409 @DomName('SVGPointList.appendItem') 5409 @DomName('SVGPointList.appendItem')
5410 @DocsEditable() 5410 @DocsEditable()
5411 Point appendItem(Point item) => _blink.BlinkSVGPointList.$appendItem_Callback( this, item); 5411 Point appendItem(Point item) => _blink.BlinkSVGPointList.appendItem_Callback_S VGPoint(this, item);
5412 5412
5413 @DomName('SVGPointList.clear') 5413 @DomName('SVGPointList.clear')
5414 @DocsEditable() 5414 @DocsEditable()
5415 void clear() => _blink.BlinkSVGPointList.$clear_Callback(this); 5415 void clear() => _blink.BlinkSVGPointList.clear_Callback(this);
5416 5416
5417 @DomName('SVGPointList.getItem') 5417 @DomName('SVGPointList.getItem')
5418 @DocsEditable() 5418 @DocsEditable()
5419 Point getItem(int index) => _blink.BlinkSVGPointList.$getItem_Callback(this, i ndex); 5419 Point getItem(int index) => _blink.BlinkSVGPointList.getItem_Callback_ul(this, index);
5420 5420
5421 @DomName('SVGPointList.initialize') 5421 @DomName('SVGPointList.initialize')
5422 @DocsEditable() 5422 @DocsEditable()
5423 Point initialize(Point item) => _blink.BlinkSVGPointList.$initialize_Callback( this, item); 5423 Point initialize(Point item) => _blink.BlinkSVGPointList.initialize_Callback_S VGPoint(this, item);
5424 5424
5425 @DomName('SVGPointList.insertItemBefore') 5425 @DomName('SVGPointList.insertItemBefore')
5426 @DocsEditable() 5426 @DocsEditable()
5427 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.$ins ertItemBefore_Callback(this, item, index); 5427 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inse rtItemBefore_Callback_SVGPoint_ul(this, item, index);
5428 5428
5429 @DomName('SVGPointList.removeItem') 5429 @DomName('SVGPointList.removeItem')
5430 @DocsEditable() 5430 @DocsEditable()
5431 Point removeItem(int index) => _blink.BlinkSVGPointList.$removeItem_Callback(t his, index); 5431 Point removeItem(int index) => _blink.BlinkSVGPointList.removeItem_Callback_ul (this, index);
5432 5432
5433 @DomName('SVGPointList.replaceItem') 5433 @DomName('SVGPointList.replaceItem')
5434 @DocsEditable() 5434 @DocsEditable()
5435 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.$replaceI tem_Callback(this, item, index); 5435 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.replaceIt em_Callback_SVGPoint_ul(this, item, index);
5436 5436
5437 } 5437 }
5438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5439 // for details. All rights reserved. Use of this source code is governed by a 5439 // for details. All rights reserved. Use of this source code is governed by a
5440 // BSD-style license that can be found in the LICENSE file. 5440 // BSD-style license that can be found in the LICENSE file.
5441 5441
5442 // WARNING: Do not edit - generated code. 5442 // WARNING: Do not edit - generated code.
5443 5443
5444 5444
5445 @DocsEditable() 5445 @DocsEditable()
5446 @DomName('SVGPolygonElement') 5446 @DomName('SVGPolygonElement')
5447 @Unstable() 5447 @Unstable()
5448 class PolygonElement extends GeometryElement { 5448 class PolygonElement extends GeometryElement {
5449 // To suppress missing implicit constructor warnings. 5449 // To suppress missing implicit constructor warnings.
5450 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } 5450 factory PolygonElement._() { throw new UnsupportedError("Not supported"); }
5451 5451
5452 @DomName('SVGPolygonElement.SVGPolygonElement') 5452 @DomName('SVGPolygonElement.SVGPolygonElement')
5453 @DocsEditable() 5453 @DocsEditable()
5454 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 5454 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
5455 /** 5455 /**
5456 * Constructor instantiated by the DOM when a custom element has been created. 5456 * Constructor instantiated by the DOM when a custom element has been created.
5457 * 5457 *
5458 * This can only be called by subclasses from their created constructor. 5458 * This can only be called by subclasses from their created constructor.
5459 */ 5459 */
5460 PolygonElement.created() : super.created(); 5460 PolygonElement.created() : super.created();
5461 5461
5462 @DomName('SVGPolygonElement.animatedPoints') 5462 @DomName('SVGPolygonElement.animatedPoints')
5463 @DocsEditable() 5463 @DocsEditable()
5464 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.$animatedPoints_ Getter(this); 5464 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.animatedPoints_G etter(this);
5465 5465
5466 @DomName('SVGPolygonElement.points') 5466 @DomName('SVGPolygonElement.points')
5467 @DocsEditable() 5467 @DocsEditable()
5468 PointList get points => _blink.BlinkSVGPolygonElement.$points_Getter(this); 5468 PointList get points => _blink.BlinkSVGPolygonElement.points_Getter(this);
5469 5469
5470 } 5470 }
5471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5472 // for details. All rights reserved. Use of this source code is governed by a 5472 // for details. All rights reserved. Use of this source code is governed by a
5473 // BSD-style license that can be found in the LICENSE file. 5473 // BSD-style license that can be found in the LICENSE file.
5474 5474
5475 // WARNING: Do not edit - generated code. 5475 // WARNING: Do not edit - generated code.
5476 5476
5477 5477
5478 @DocsEditable() 5478 @DocsEditable()
5479 @DomName('SVGPolylineElement') 5479 @DomName('SVGPolylineElement')
5480 @Unstable() 5480 @Unstable()
5481 class PolylineElement extends GeometryElement { 5481 class PolylineElement extends GeometryElement {
5482 // To suppress missing implicit constructor warnings. 5482 // To suppress missing implicit constructor warnings.
5483 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } 5483 factory PolylineElement._() { throw new UnsupportedError("Not supported"); }
5484 5484
5485 @DomName('SVGPolylineElement.SVGPolylineElement') 5485 @DomName('SVGPolylineElement.SVGPolylineElement')
5486 @DocsEditable() 5486 @DocsEditable()
5487 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 5487 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
5488 /** 5488 /**
5489 * Constructor instantiated by the DOM when a custom element has been created. 5489 * Constructor instantiated by the DOM when a custom element has been created.
5490 * 5490 *
5491 * This can only be called by subclasses from their created constructor. 5491 * This can only be called by subclasses from their created constructor.
5492 */ 5492 */
5493 PolylineElement.created() : super.created(); 5493 PolylineElement.created() : super.created();
5494 5494
5495 @DomName('SVGPolylineElement.animatedPoints') 5495 @DomName('SVGPolylineElement.animatedPoints')
5496 @DocsEditable() 5496 @DocsEditable()
5497 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.$animatedPoints _Getter(this); 5497 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.animatedPoints_ Getter(this);
5498 5498
5499 @DomName('SVGPolylineElement.points') 5499 @DomName('SVGPolylineElement.points')
5500 @DocsEditable() 5500 @DocsEditable()
5501 PointList get points => _blink.BlinkSVGPolylineElement.$points_Getter(this); 5501 PointList get points => _blink.BlinkSVGPolylineElement.points_Getter(this);
5502 5502
5503 } 5503 }
5504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5505 // for details. All rights reserved. Use of this source code is governed by a 5505 // for details. All rights reserved. Use of this source code is governed by a
5506 // BSD-style license that can be found in the LICENSE file. 5506 // BSD-style license that can be found in the LICENSE file.
5507 5507
5508 // WARNING: Do not edit - generated code. 5508 // WARNING: Do not edit - generated code.
5509 5509
5510 5510
5511 @DocsEditable() 5511 @DocsEditable()
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
5566 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID') 5566 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID')
5567 @DocsEditable() 5567 @DocsEditable()
5568 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 5568 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
5569 5569
5570 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') 5570 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN')
5571 @DocsEditable() 5571 @DocsEditable()
5572 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 5572 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
5573 5573
5574 @DomName('SVGPreserveAspectRatio.align') 5574 @DomName('SVGPreserveAspectRatio.align')
5575 @DocsEditable() 5575 @DocsEditable()
5576 int get align => _blink.BlinkSVGPreserveAspectRatio.$align_Getter(this); 5576 int get align => _blink.BlinkSVGPreserveAspectRatio.align_Getter(this);
5577 5577
5578 @DomName('SVGPreserveAspectRatio.align') 5578 @DomName('SVGPreserveAspectRatio.align')
5579 @DocsEditable() 5579 @DocsEditable()
5580 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.$align_Setter( this, value); 5580 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.align_Setter_u s(this, value);
5581 5581
5582 @DomName('SVGPreserveAspectRatio.meetOrSlice') 5582 @DomName('SVGPreserveAspectRatio.meetOrSlice')
5583 @DocsEditable() 5583 @DocsEditable()
5584 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.$meetOrSlice_Getter( this); 5584 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.meetOrSlice_Getter(t his);
5585 5585
5586 @DomName('SVGPreserveAspectRatio.meetOrSlice') 5586 @DomName('SVGPreserveAspectRatio.meetOrSlice')
5587 @DocsEditable() 5587 @DocsEditable()
5588 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.$meetOrS lice_Setter(this, value); 5588 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.meetOrSl ice_Setter_us(this, value);
5589 5589
5590 } 5590 }
5591 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5591 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5592 // for details. All rights reserved. Use of this source code is governed by a 5592 // for details. All rights reserved. Use of this source code is governed by a
5593 // BSD-style license that can be found in the LICENSE file. 5593 // BSD-style license that can be found in the LICENSE file.
5594 5594
5595 // WARNING: Do not edit - generated code. 5595 // WARNING: Do not edit - generated code.
5596 5596
5597 5597
5598 @DocsEditable() 5598 @DocsEditable()
5599 @DomName('SVGRadialGradientElement') 5599 @DomName('SVGRadialGradientElement')
5600 @Unstable() 5600 @Unstable()
5601 class RadialGradientElement extends _GradientElement { 5601 class RadialGradientElement extends _GradientElement {
5602 // To suppress missing implicit constructor warnings. 5602 // To suppress missing implicit constructor warnings.
5603 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); } 5603 factory RadialGradientElement._() { throw new UnsupportedError("Not supported" ); }
5604 5604
5605 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 5605 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
5606 @DocsEditable() 5606 @DocsEditable()
5607 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 5607 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
5608 /** 5608 /**
5609 * Constructor instantiated by the DOM when a custom element has been created. 5609 * Constructor instantiated by the DOM when a custom element has been created.
5610 * 5610 *
5611 * This can only be called by subclasses from their created constructor. 5611 * This can only be called by subclasses from their created constructor.
5612 */ 5612 */
5613 RadialGradientElement.created() : super.created(); 5613 RadialGradientElement.created() : super.created();
5614 5614
5615 @DomName('SVGRadialGradientElement.cx') 5615 @DomName('SVGRadialGradientElement.cx')
5616 @DocsEditable() 5616 @DocsEditable()
5617 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.$cx_Getter(this) ; 5617 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.cx_Getter(this);
5618 5618
5619 @DomName('SVGRadialGradientElement.cy') 5619 @DomName('SVGRadialGradientElement.cy')
5620 @DocsEditable() 5620 @DocsEditable()
5621 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.$cy_Getter(this) ; 5621 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.cy_Getter(this);
5622 5622
5623 @DomName('SVGRadialGradientElement.fr') 5623 @DomName('SVGRadialGradientElement.fr')
5624 @DocsEditable() 5624 @DocsEditable()
5625 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.$fr_Getter(this) ; 5625 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.fr_Getter(this);
5626 5626
5627 @DomName('SVGRadialGradientElement.fx') 5627 @DomName('SVGRadialGradientElement.fx')
5628 @DocsEditable() 5628 @DocsEditable()
5629 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.$fx_Getter(this) ; 5629 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.fx_Getter(this);
5630 5630
5631 @DomName('SVGRadialGradientElement.fy') 5631 @DomName('SVGRadialGradientElement.fy')
5632 @DocsEditable() 5632 @DocsEditable()
5633 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.$fy_Getter(this) ; 5633 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.fy_Getter(this);
5634 5634
5635 @DomName('SVGRadialGradientElement.r') 5635 @DomName('SVGRadialGradientElement.r')
5636 @DocsEditable() 5636 @DocsEditable()
5637 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.$r_Getter(this); 5637 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.r_Getter(this);
5638 5638
5639 } 5639 }
5640 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5640 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5641 // for details. All rights reserved. Use of this source code is governed by a 5641 // for details. All rights reserved. Use of this source code is governed by a
5642 // BSD-style license that can be found in the LICENSE file. 5642 // BSD-style license that can be found in the LICENSE file.
5643 5643
5644 // WARNING: Do not edit - generated code. 5644 // WARNING: Do not edit - generated code.
5645 5645
5646 5646
5647 @DocsEditable() 5647 @DocsEditable()
5648 @DomName('SVGRect') 5648 @DomName('SVGRect')
5649 @Unstable() 5649 @Unstable()
5650 class Rect extends NativeFieldWrapperClass2 { 5650 class Rect extends NativeFieldWrapperClass2 {
5651 // To suppress missing implicit constructor warnings. 5651 // To suppress missing implicit constructor warnings.
5652 factory Rect._() { throw new UnsupportedError("Not supported"); } 5652 factory Rect._() { throw new UnsupportedError("Not supported"); }
5653 5653
5654 @DomName('SVGRect.height') 5654 @DomName('SVGRect.height')
5655 @DocsEditable() 5655 @DocsEditable()
5656 num get height => _blink.BlinkSVGRect.$height_Getter(this); 5656 num get height => _blink.BlinkSVGRect.height_Getter(this);
5657 5657
5658 @DomName('SVGRect.height') 5658 @DomName('SVGRect.height')
5659 @DocsEditable() 5659 @DocsEditable()
5660 void set height(num value) => _blink.BlinkSVGRect.$height_Setter(this, value); 5660 void set height(num value) => _blink.BlinkSVGRect.height_Setter_float(this, va lue);
5661 5661
5662 @DomName('SVGRect.width') 5662 @DomName('SVGRect.width')
5663 @DocsEditable() 5663 @DocsEditable()
5664 num get width => _blink.BlinkSVGRect.$width_Getter(this); 5664 num get width => _blink.BlinkSVGRect.width_Getter(this);
5665 5665
5666 @DomName('SVGRect.width') 5666 @DomName('SVGRect.width')
5667 @DocsEditable() 5667 @DocsEditable()
5668 void set width(num value) => _blink.BlinkSVGRect.$width_Setter(this, value); 5668 void set width(num value) => _blink.BlinkSVGRect.width_Setter_float(this, valu e);
5669 5669
5670 @DomName('SVGRect.x') 5670 @DomName('SVGRect.x')
5671 @DocsEditable() 5671 @DocsEditable()
5672 num get x => _blink.BlinkSVGRect.$x_Getter(this); 5672 num get x => _blink.BlinkSVGRect.x_Getter(this);
5673 5673
5674 @DomName('SVGRect.x') 5674 @DomName('SVGRect.x')
5675 @DocsEditable() 5675 @DocsEditable()
5676 void set x(num value) => _blink.BlinkSVGRect.$x_Setter(this, value); 5676 void set x(num value) => _blink.BlinkSVGRect.x_Setter_float(this, value);
5677 5677
5678 @DomName('SVGRect.y') 5678 @DomName('SVGRect.y')
5679 @DocsEditable() 5679 @DocsEditable()
5680 num get y => _blink.BlinkSVGRect.$y_Getter(this); 5680 num get y => _blink.BlinkSVGRect.y_Getter(this);
5681 5681
5682 @DomName('SVGRect.y') 5682 @DomName('SVGRect.y')
5683 @DocsEditable() 5683 @DocsEditable()
5684 void set y(num value) => _blink.BlinkSVGRect.$y_Setter(this, value); 5684 void set y(num value) => _blink.BlinkSVGRect.y_Setter_float(this, value);
5685 5685
5686 } 5686 }
5687 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5687 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5688 // for details. All rights reserved. Use of this source code is governed by a 5688 // for details. All rights reserved. Use of this source code is governed by a
5689 // BSD-style license that can be found in the LICENSE file. 5689 // BSD-style license that can be found in the LICENSE file.
5690 5690
5691 // WARNING: Do not edit - generated code. 5691 // WARNING: Do not edit - generated code.
5692 5692
5693 5693
5694 @DocsEditable() 5694 @DocsEditable()
5695 @DomName('SVGRectElement') 5695 @DomName('SVGRectElement')
5696 @Unstable() 5696 @Unstable()
5697 class RectElement extends GeometryElement { 5697 class RectElement extends GeometryElement {
5698 // To suppress missing implicit constructor warnings. 5698 // To suppress missing implicit constructor warnings.
5699 factory RectElement._() { throw new UnsupportedError("Not supported"); } 5699 factory RectElement._() { throw new UnsupportedError("Not supported"); }
5700 5700
5701 @DomName('SVGRectElement.SVGRectElement') 5701 @DomName('SVGRectElement.SVGRectElement')
5702 @DocsEditable() 5702 @DocsEditable()
5703 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 5703 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
5704 /** 5704 /**
5705 * Constructor instantiated by the DOM when a custom element has been created. 5705 * Constructor instantiated by the DOM when a custom element has been created.
5706 * 5706 *
5707 * This can only be called by subclasses from their created constructor. 5707 * This can only be called by subclasses from their created constructor.
5708 */ 5708 */
5709 RectElement.created() : super.created(); 5709 RectElement.created() : super.created();
5710 5710
5711 @DomName('SVGRectElement.height') 5711 @DomName('SVGRectElement.height')
5712 @DocsEditable() 5712 @DocsEditable()
5713 AnimatedLength get height => _blink.BlinkSVGRectElement.$height_Getter(this); 5713 AnimatedLength get height => _blink.BlinkSVGRectElement.height_Getter(this);
5714 5714
5715 @DomName('SVGRectElement.rx') 5715 @DomName('SVGRectElement.rx')
5716 @DocsEditable() 5716 @DocsEditable()
5717 AnimatedLength get rx => _blink.BlinkSVGRectElement.$rx_Getter(this); 5717 AnimatedLength get rx => _blink.BlinkSVGRectElement.rx_Getter(this);
5718 5718
5719 @DomName('SVGRectElement.ry') 5719 @DomName('SVGRectElement.ry')
5720 @DocsEditable() 5720 @DocsEditable()
5721 AnimatedLength get ry => _blink.BlinkSVGRectElement.$ry_Getter(this); 5721 AnimatedLength get ry => _blink.BlinkSVGRectElement.ry_Getter(this);
5722 5722
5723 @DomName('SVGRectElement.width') 5723 @DomName('SVGRectElement.width')
5724 @DocsEditable() 5724 @DocsEditable()
5725 AnimatedLength get width => _blink.BlinkSVGRectElement.$width_Getter(this); 5725 AnimatedLength get width => _blink.BlinkSVGRectElement.width_Getter(this);
5726 5726
5727 @DomName('SVGRectElement.x') 5727 @DomName('SVGRectElement.x')
5728 @DocsEditable() 5728 @DocsEditable()
5729 AnimatedLength get x => _blink.BlinkSVGRectElement.$x_Getter(this); 5729 AnimatedLength get x => _blink.BlinkSVGRectElement.x_Getter(this);
5730 5730
5731 @DomName('SVGRectElement.y') 5731 @DomName('SVGRectElement.y')
5732 @DocsEditable() 5732 @DocsEditable()
5733 AnimatedLength get y => _blink.BlinkSVGRectElement.$y_Getter(this); 5733 AnimatedLength get y => _blink.BlinkSVGRectElement.y_Getter(this);
5734 5734
5735 } 5735 }
5736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5737 // for details. All rights reserved. Use of this source code is governed by a 5737 // for details. All rights reserved. Use of this source code is governed by a
5738 // BSD-style license that can be found in the LICENSE file. 5738 // BSD-style license that can be found in the LICENSE file.
5739 5739
5740 // WARNING: Do not edit - generated code. 5740 // WARNING: Do not edit - generated code.
5741 5741
5742 5742
5743 @DocsEditable() 5743 @DocsEditable()
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
5791 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 5791 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
5792 /** 5792 /**
5793 * Constructor instantiated by the DOM when a custom element has been created. 5793 * Constructor instantiated by the DOM when a custom element has been created.
5794 * 5794 *
5795 * This can only be called by subclasses from their created constructor. 5795 * This can only be called by subclasses from their created constructor.
5796 */ 5796 */
5797 ScriptElement.created() : super.created(); 5797 ScriptElement.created() : super.created();
5798 5798
5799 @DomName('SVGScriptElement.type') 5799 @DomName('SVGScriptElement.type')
5800 @DocsEditable() 5800 @DocsEditable()
5801 String get type => _blink.BlinkSVGScriptElement.$type_Getter(this); 5801 String get type => _blink.BlinkSVGScriptElement.type_Getter(this);
5802 5802
5803 @DomName('SVGScriptElement.type') 5803 @DomName('SVGScriptElement.type')
5804 @DocsEditable() 5804 @DocsEditable()
5805 void set type(String value) => _blink.BlinkSVGScriptElement.$type_Setter(this, value); 5805 void set type(String value) => _blink.BlinkSVGScriptElement.type_Setter_DOMStr ing(this, value);
5806 5806
5807 @DomName('SVGScriptElement.href') 5807 @DomName('SVGScriptElement.href')
5808 @DocsEditable() 5808 @DocsEditable()
5809 AnimatedString get href => _blink.BlinkSVGScriptElement.$href_Getter(this); 5809 AnimatedString get href => _blink.BlinkSVGScriptElement.href_Getter(this);
5810 5810
5811 } 5811 }
5812 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5812 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5813 // for details. All rights reserved. Use of this source code is governed by a 5813 // for details. All rights reserved. Use of this source code is governed by a
5814 // BSD-style license that can be found in the LICENSE file. 5814 // BSD-style license that can be found in the LICENSE file.
5815 5815
5816 // WARNING: Do not edit - generated code. 5816 // WARNING: Do not edit - generated code.
5817 5817
5818 5818
5819 @DocsEditable() 5819 @DocsEditable()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
5859 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 5859 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
5860 /** 5860 /**
5861 * Constructor instantiated by the DOM when a custom element has been created. 5861 * Constructor instantiated by the DOM when a custom element has been created.
5862 * 5862 *
5863 * This can only be called by subclasses from their created constructor. 5863 * This can only be called by subclasses from their created constructor.
5864 */ 5864 */
5865 StopElement.created() : super.created(); 5865 StopElement.created() : super.created();
5866 5866
5867 @DomName('SVGStopElement.offset') 5867 @DomName('SVGStopElement.offset')
5868 @DocsEditable() 5868 @DocsEditable()
5869 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.$offset_Getter (this); 5869 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.offset_Getter( this);
5870 5870
5871 } 5871 }
5872 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5872 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5873 // for details. All rights reserved. Use of this source code is governed by a 5873 // for details. All rights reserved. Use of this source code is governed by a
5874 // BSD-style license that can be found in the LICENSE file. 5874 // BSD-style license that can be found in the LICENSE file.
5875 5875
5876 // WARNING: Do not edit - generated code. 5876 // WARNING: Do not edit - generated code.
5877 5877
5878 5878
5879 @DocsEditable() 5879 @DocsEditable()
5880 @DomName('SVGStringList') 5880 @DomName('SVGStringList')
5881 @Unstable() 5881 @Unstable()
5882 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> { 5882 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta bleListMixin<String> implements List<String> {
5883 // To suppress missing implicit constructor warnings. 5883 // To suppress missing implicit constructor warnings.
5884 factory StringList._() { throw new UnsupportedError("Not supported"); } 5884 factory StringList._() { throw new UnsupportedError("Not supported"); }
5885 5885
5886 @DomName('SVGStringList.numberOfItems') 5886 @DomName('SVGStringList.numberOfItems')
5887 @DocsEditable() 5887 @DocsEditable()
5888 int get numberOfItems => _blink.BlinkSVGStringList.$numberOfItems_Getter(this) ; 5888 int get numberOfItems => _blink.BlinkSVGStringList.numberOfItems_Getter(this);
5889 5889
5890 String operator[](int index) { 5890 String operator[](int index) {
5891 if (index < 0 || index >= length) 5891 if (index < 0 || index >= length)
5892 throw new RangeError.range(index, 0, length); 5892 throw new RangeError.range(index, 0, length);
5893 return getItem(index); 5893 return getItem(index);
5894 } 5894 }
5895 5895
5896 void operator[]=(int index, String value) { 5896 void operator[]=(int index, String value) {
5897 throw new UnsupportedError("Cannot assign element of immutable List."); 5897 throw new UnsupportedError("Cannot assign element of immutable List.");
5898 } 5898 }
(...skipping 29 matching lines...) Expand all
5928 } 5928 }
5929 if (len == 0) throw new StateError("No elements"); 5929 if (len == 0) throw new StateError("No elements");
5930 throw new StateError("More than one element"); 5930 throw new StateError("More than one element");
5931 } 5931 }
5932 5932
5933 String elementAt(int index) => this[index]; 5933 String elementAt(int index) => this[index];
5934 // -- end List<String> mixins. 5934 // -- end List<String> mixins.
5935 5935
5936 @DomName('SVGStringList.appendItem') 5936 @DomName('SVGStringList.appendItem')
5937 @DocsEditable() 5937 @DocsEditable()
5938 String appendItem(String item) => _blink.BlinkSVGStringList.$appendItem_Callba ck(this, item); 5938 String appendItem(String item) => _blink.BlinkSVGStringList.appendItem_Callbac k_DOMString(this, item);
5939 5939
5940 @DomName('SVGStringList.clear') 5940 @DomName('SVGStringList.clear')
5941 @DocsEditable() 5941 @DocsEditable()
5942 void clear() => _blink.BlinkSVGStringList.$clear_Callback(this); 5942 void clear() => _blink.BlinkSVGStringList.clear_Callback(this);
5943 5943
5944 @DomName('SVGStringList.getItem') 5944 @DomName('SVGStringList.getItem')
5945 @DocsEditable() 5945 @DocsEditable()
5946 String getItem(int index) => _blink.BlinkSVGStringList.$getItem_Callback(this, index); 5946 String getItem(int index) => _blink.BlinkSVGStringList.getItem_Callback_ul(thi s, index);
5947 5947
5948 @DomName('SVGStringList.initialize') 5948 @DomName('SVGStringList.initialize')
5949 @DocsEditable() 5949 @DocsEditable()
5950 String initialize(String item) => _blink.BlinkSVGStringList.$initialize_Callba ck(this, item); 5950 String initialize(String item) => _blink.BlinkSVGStringList.initialize_Callbac k_DOMString(this, item);
5951 5951
5952 @DomName('SVGStringList.insertItemBefore') 5952 @DomName('SVGStringList.insertItemBefore')
5953 @DocsEditable() 5953 @DocsEditable()
5954 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.$ insertItemBefore_Callback(this, item, index); 5954 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i nsertItemBefore_Callback_DOMString_ul(this, item, index);
5955 5955
5956 @DomName('SVGStringList.removeItem') 5956 @DomName('SVGStringList.removeItem')
5957 @DocsEditable() 5957 @DocsEditable()
5958 String removeItem(int index) => _blink.BlinkSVGStringList.$removeItem_Callback (this, index); 5958 String removeItem(int index) => _blink.BlinkSVGStringList.removeItem_Callback_ ul(this, index);
5959 5959
5960 @DomName('SVGStringList.replaceItem') 5960 @DomName('SVGStringList.replaceItem')
5961 @DocsEditable() 5961 @DocsEditable()
5962 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.$repla ceItem_Callback(this, item, index); 5962 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.replac eItem_Callback_DOMString_ul(this, item, index);
5963 5963
5964 } 5964 }
5965 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5965 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5966 // for details. All rights reserved. Use of this source code is governed by a 5966 // for details. All rights reserved. Use of this source code is governed by a
5967 // BSD-style license that can be found in the LICENSE file. 5967 // BSD-style license that can be found in the LICENSE file.
5968 5968
5969 // WARNING: Do not edit - generated code. 5969 // WARNING: Do not edit - generated code.
5970 5970
5971 5971
5972 @DocsEditable() 5972 @DocsEditable()
5973 @DomName('SVGStyleElement') 5973 @DomName('SVGStyleElement')
5974 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable 5974 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
5975 @Experimental() // nonstandard 5975 @Experimental() // nonstandard
5976 class StyleElement extends SvgElement { 5976 class StyleElement extends SvgElement {
5977 // To suppress missing implicit constructor warnings. 5977 // To suppress missing implicit constructor warnings.
5978 factory StyleElement._() { throw new UnsupportedError("Not supported"); } 5978 factory StyleElement._() { throw new UnsupportedError("Not supported"); }
5979 5979
5980 @DomName('SVGStyleElement.SVGStyleElement') 5980 @DomName('SVGStyleElement.SVGStyleElement')
5981 @DocsEditable() 5981 @DocsEditable()
5982 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 5982 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
5983 /** 5983 /**
5984 * Constructor instantiated by the DOM when a custom element has been created. 5984 * Constructor instantiated by the DOM when a custom element has been created.
5985 * 5985 *
5986 * This can only be called by subclasses from their created constructor. 5986 * This can only be called by subclasses from their created constructor.
5987 */ 5987 */
5988 StyleElement.created() : super.created(); 5988 StyleElement.created() : super.created();
5989 5989
5990 @DomName('SVGStyleElement.disabled') 5990 @DomName('SVGStyleElement.disabled')
5991 @DocsEditable() 5991 @DocsEditable()
5992 bool get disabled => _blink.BlinkSVGStyleElement.$disabled_Getter(this); 5992 bool get disabled => _blink.BlinkSVGStyleElement.disabled_Getter(this);
5993 5993
5994 @DomName('SVGStyleElement.disabled') 5994 @DomName('SVGStyleElement.disabled')
5995 @DocsEditable() 5995 @DocsEditable()
5996 void set disabled(bool value) => _blink.BlinkSVGStyleElement.$disabled_Setter( this, value); 5996 void set disabled(bool value) => _blink.BlinkSVGStyleElement.disabled_Setter_b oolean(this, value);
5997 5997
5998 @DomName('SVGStyleElement.media') 5998 @DomName('SVGStyleElement.media')
5999 @DocsEditable() 5999 @DocsEditable()
6000 String get media => _blink.BlinkSVGStyleElement.$media_Getter(this); 6000 String get media => _blink.BlinkSVGStyleElement.media_Getter(this);
6001 6001
6002 @DomName('SVGStyleElement.media') 6002 @DomName('SVGStyleElement.media')
6003 @DocsEditable() 6003 @DocsEditable()
6004 void set media(String value) => _blink.BlinkSVGStyleElement.$media_Setter(this , value); 6004 void set media(String value) => _blink.BlinkSVGStyleElement.media_Setter_DOMSt ring(this, value);
6005 6005
6006 @DomName('SVGStyleElement.title') 6006 @DomName('SVGStyleElement.title')
6007 @DocsEditable() 6007 @DocsEditable()
6008 String get title => _blink.BlinkSVGStyleElement.$title_Getter(this); 6008 String get title => _blink.BlinkSVGStyleElement.title_Getter(this);
6009 6009
6010 @DomName('SVGStyleElement.title') 6010 @DomName('SVGStyleElement.title')
6011 @DocsEditable() 6011 @DocsEditable()
6012 void set title(String value) => _blink.BlinkSVGStyleElement.$title_Setter(this , value); 6012 void set title(String value) => _blink.BlinkSVGStyleElement.title_Setter_DOMSt ring(this, value);
6013 6013
6014 @DomName('SVGStyleElement.type') 6014 @DomName('SVGStyleElement.type')
6015 @DocsEditable() 6015 @DocsEditable()
6016 String get type => _blink.BlinkSVGStyleElement.$type_Getter(this); 6016 String get type => _blink.BlinkSVGStyleElement.type_Getter(this);
6017 6017
6018 @DomName('SVGStyleElement.type') 6018 @DomName('SVGStyleElement.type')
6019 @DocsEditable() 6019 @DocsEditable()
6020 void set type(String value) => _blink.BlinkSVGStyleElement.$type_Setter(this, value); 6020 void set type(String value) => _blink.BlinkSVGStyleElement.type_Setter_DOMStri ng(this, value);
6021 6021
6022 } 6022 }
6023 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 6023 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6024 // for details. All rights reserved. Use of this source code is governed by a 6024 // for details. All rights reserved. Use of this source code is governed by a
6025 // BSD-style license that can be found in the LICENSE file. 6025 // BSD-style license that can be found in the LICENSE file.
6026 6026
6027 6027
6028 class _AttributeClassSet extends CssClassSetImpl { 6028 class _AttributeClassSet extends CssClassSetImpl {
6029 final Element _element; 6029 final Element _element;
6030 6030
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
6436 /** 6436 /**
6437 * Constructor instantiated by the DOM when a custom element has been created. 6437 * Constructor instantiated by the DOM when a custom element has been created.
6438 * 6438 *
6439 * This can only be called by subclasses from their created constructor. 6439 * This can only be called by subclasses from their created constructor.
6440 */ 6440 */
6441 SvgElement.created() : super.created(); 6441 SvgElement.created() : super.created();
6442 6442
6443 @DomName('SVGElement.className') 6443 @DomName('SVGElement.className')
6444 @DocsEditable() 6444 @DocsEditable()
6445 @Experimental() // untriaged 6445 @Experimental() // untriaged
6446 AnimatedString get _svgClassName => _blink.BlinkSVGElement.$className_Getter(t his); 6446 AnimatedString get _svgClassName => _blink.BlinkSVGElement.className_Getter(th is);
6447 6447
6448 @DomName('SVGElement.ownerSVGElement') 6448 @DomName('SVGElement.ownerSVGElement')
6449 @DocsEditable() 6449 @DocsEditable()
6450 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.$ownerSVGElement_G etter(this); 6450 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.ownerSVGElement_Ge tter(this);
6451 6451
6452 @DomName('SVGElement.style') 6452 @DomName('SVGElement.style')
6453 @DocsEditable() 6453 @DocsEditable()
6454 @Experimental() // untriaged 6454 @Experimental() // untriaged
6455 CssStyleDeclaration get style => _blink.BlinkSVGElement.$style_Getter(this); 6455 CssStyleDeclaration get style => _blink.BlinkSVGElement.style_Getter(this);
6456 6456
6457 @DomName('SVGElement.viewportElement') 6457 @DomName('SVGElement.viewportElement')
6458 @DocsEditable() 6458 @DocsEditable()
6459 SvgElement get viewportElement => _blink.BlinkSVGElement.$viewportElement_Gett er(this); 6459 SvgElement get viewportElement => _blink.BlinkSVGElement.viewportElement_Gette r(this);
6460 6460
6461 @DomName('SVGElement.xmlbase') 6461 @DomName('SVGElement.xmlbase')
6462 @DocsEditable() 6462 @DocsEditable()
6463 String get xmlbase => _blink.BlinkSVGElement.$xmlbase_Getter(this); 6463 String get xmlbase => _blink.BlinkSVGElement.xmlbase_Getter(this);
6464 6464
6465 @DomName('SVGElement.xmlbase') 6465 @DomName('SVGElement.xmlbase')
6466 @DocsEditable() 6466 @DocsEditable()
6467 void set xmlbase(String value) => _blink.BlinkSVGElement.$xmlbase_Setter(this, value); 6467 void set xmlbase(String value) => _blink.BlinkSVGElement.xmlbase_Setter_DOMStr ing(this, value);
6468 6468
6469 @DomName('SVGElement.xmllang') 6469 @DomName('SVGElement.xmllang')
6470 @DocsEditable() 6470 @DocsEditable()
6471 @Experimental() // untriaged 6471 @Experimental() // untriaged
6472 String get xmllang => _blink.BlinkSVGElement.$xmllang_Getter(this); 6472 String get xmllang => _blink.BlinkSVGElement.xmllang_Getter(this);
6473 6473
6474 @DomName('SVGElement.xmllang') 6474 @DomName('SVGElement.xmllang')
6475 @DocsEditable() 6475 @DocsEditable()
6476 @Experimental() // untriaged 6476 @Experimental() // untriaged
6477 void set xmllang(String value) => _blink.BlinkSVGElement.$xmllang_Setter(this, value); 6477 void set xmllang(String value) => _blink.BlinkSVGElement.xmllang_Setter_DOMStr ing(this, value);
6478 6478
6479 @DomName('SVGElement.xmlspace') 6479 @DomName('SVGElement.xmlspace')
6480 @DocsEditable() 6480 @DocsEditable()
6481 @Experimental() // untriaged 6481 @Experimental() // untriaged
6482 String get xmlspace => _blink.BlinkSVGElement.$xmlspace_Getter(this); 6482 String get xmlspace => _blink.BlinkSVGElement.xmlspace_Getter(this);
6483 6483
6484 @DomName('SVGElement.xmlspace') 6484 @DomName('SVGElement.xmlspace')
6485 @DocsEditable() 6485 @DocsEditable()
6486 @Experimental() // untriaged 6486 @Experimental() // untriaged
6487 void set xmlspace(String value) => _blink.BlinkSVGElement.$xmlspace_Setter(thi s, value); 6487 void set xmlspace(String value) => _blink.BlinkSVGElement.xmlspace_Setter_DOMS tring(this, value);
6488 6488
6489 @DomName('SVGElement.onabort') 6489 @DomName('SVGElement.onabort')
6490 @DocsEditable() 6490 @DocsEditable()
6491 @Experimental() // untriaged 6491 @Experimental() // untriaged
6492 ElementStream<Event> get onAbort => abortEvent.forElement(this); 6492 ElementStream<Event> get onAbort => abortEvent.forElement(this);
6493 6493
6494 @DomName('SVGElement.onblur') 6494 @DomName('SVGElement.onblur')
6495 @DocsEditable() 6495 @DocsEditable()
6496 @Experimental() // untriaged 6496 @Experimental() // untriaged
6497 ElementStream<Event> get onBlur => blurEvent.forElement(this); 6497 ElementStream<Event> get onBlur => blurEvent.forElement(this);
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
6766 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 6766 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
6767 /** 6767 /**
6768 * Constructor instantiated by the DOM when a custom element has been created. 6768 * Constructor instantiated by the DOM when a custom element has been created.
6769 * 6769 *
6770 * This can only be called by subclasses from their created constructor. 6770 * This can only be called by subclasses from their created constructor.
6771 */ 6771 */
6772 SvgSvgElement.created() : super.created(); 6772 SvgSvgElement.created() : super.created();
6773 6773
6774 @DomName('SVGSVGElement.currentScale') 6774 @DomName('SVGSVGElement.currentScale')
6775 @DocsEditable() 6775 @DocsEditable()
6776 num get currentScale => _blink.BlinkSVGSVGElement.$currentScale_Getter(this); 6776 num get currentScale => _blink.BlinkSVGSVGElement.currentScale_Getter(this);
6777 6777
6778 @DomName('SVGSVGElement.currentScale') 6778 @DomName('SVGSVGElement.currentScale')
6779 @DocsEditable() 6779 @DocsEditable()
6780 void set currentScale(num value) => _blink.BlinkSVGSVGElement.$currentScale_Se tter(this, value); 6780 void set currentScale(num value) => _blink.BlinkSVGSVGElement.currentScale_Set ter_float(this, value);
6781 6781
6782 @DomName('SVGSVGElement.currentTranslate') 6782 @DomName('SVGSVGElement.currentTranslate')
6783 @DocsEditable() 6783 @DocsEditable()
6784 Point get currentTranslate => _blink.BlinkSVGSVGElement.$currentTranslate_Gett er(this); 6784 Point get currentTranslate => _blink.BlinkSVGSVGElement.currentTranslate_Gette r(this);
6785 6785
6786 @DomName('SVGSVGElement.currentView') 6786 @DomName('SVGSVGElement.currentView')
6787 @DocsEditable() 6787 @DocsEditable()
6788 ViewSpec get currentView => _blink.BlinkSVGSVGElement.$currentView_Getter(this ); 6788 ViewSpec get currentView => _blink.BlinkSVGSVGElement.currentView_Getter(this) ;
6789 6789
6790 @DomName('SVGSVGElement.height') 6790 @DomName('SVGSVGElement.height')
6791 @DocsEditable() 6791 @DocsEditable()
6792 AnimatedLength get height => _blink.BlinkSVGSVGElement.$height_Getter(this); 6792 AnimatedLength get height => _blink.BlinkSVGSVGElement.height_Getter(this);
6793 6793
6794 @DomName('SVGSVGElement.pixelUnitToMillimeterX') 6794 @DomName('SVGSVGElement.pixelUnitToMillimeterX')
6795 @DocsEditable() 6795 @DocsEditable()
6796 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.$pixelUnitToMil limeterX_Getter(this); 6796 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.pixelUnitToMill imeterX_Getter(this);
6797 6797
6798 @DomName('SVGSVGElement.pixelUnitToMillimeterY') 6798 @DomName('SVGSVGElement.pixelUnitToMillimeterY')
6799 @DocsEditable() 6799 @DocsEditable()
6800 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.$pixelUnitToMil limeterY_Getter(this); 6800 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.pixelUnitToMill imeterY_Getter(this);
6801 6801
6802 @DomName('SVGSVGElement.screenPixelToMillimeterX') 6802 @DomName('SVGSVGElement.screenPixelToMillimeterX')
6803 @DocsEditable() 6803 @DocsEditable()
6804 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.$screenPixelT oMillimeterX_Getter(this); 6804 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.screenPixelTo MillimeterX_Getter(this);
6805 6805
6806 @DomName('SVGSVGElement.screenPixelToMillimeterY') 6806 @DomName('SVGSVGElement.screenPixelToMillimeterY')
6807 @DocsEditable() 6807 @DocsEditable()
6808 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.$screenPixelT oMillimeterY_Getter(this); 6808 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.screenPixelTo MillimeterY_Getter(this);
6809 6809
6810 @DomName('SVGSVGElement.useCurrentView') 6810 @DomName('SVGSVGElement.useCurrentView')
6811 @DocsEditable() 6811 @DocsEditable()
6812 bool get useCurrentView => _blink.BlinkSVGSVGElement.$useCurrentView_Getter(th is); 6812 bool get useCurrentView => _blink.BlinkSVGSVGElement.useCurrentView_Getter(thi s);
6813 6813
6814 @DomName('SVGSVGElement.viewport') 6814 @DomName('SVGSVGElement.viewport')
6815 @DocsEditable() 6815 @DocsEditable()
6816 Rect get viewport => _blink.BlinkSVGSVGElement.$viewport_Getter(this); 6816 Rect get viewport => _blink.BlinkSVGSVGElement.viewport_Getter(this);
6817 6817
6818 @DomName('SVGSVGElement.width') 6818 @DomName('SVGSVGElement.width')
6819 @DocsEditable() 6819 @DocsEditable()
6820 AnimatedLength get width => _blink.BlinkSVGSVGElement.$width_Getter(this); 6820 AnimatedLength get width => _blink.BlinkSVGSVGElement.width_Getter(this);
6821 6821
6822 @DomName('SVGSVGElement.x') 6822 @DomName('SVGSVGElement.x')
6823 @DocsEditable() 6823 @DocsEditable()
6824 AnimatedLength get x => _blink.BlinkSVGSVGElement.$x_Getter(this); 6824 AnimatedLength get x => _blink.BlinkSVGSVGElement.x_Getter(this);
6825 6825
6826 @DomName('SVGSVGElement.y') 6826 @DomName('SVGSVGElement.y')
6827 @DocsEditable() 6827 @DocsEditable()
6828 AnimatedLength get y => _blink.BlinkSVGSVGElement.$y_Getter(this); 6828 AnimatedLength get y => _blink.BlinkSVGSVGElement.y_Getter(this);
6829 6829
6830 @DomName('SVGSVGElement.animationsPaused') 6830 @DomName('SVGSVGElement.animationsPaused')
6831 @DocsEditable() 6831 @DocsEditable()
6832 bool animationsPaused() => _blink.BlinkSVGSVGElement.$animationsPaused_Callbac k(this); 6832 bool animationsPaused() => _blink.BlinkSVGSVGElement.animationsPaused_Callback (this);
6833 6833
6834 @DomName('SVGSVGElement.checkEnclosure') 6834 @DomName('SVGSVGElement.checkEnclosure')
6835 @DocsEditable() 6835 @DocsEditable()
6836 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.$checkEnclosure_Callback(this, element, rect); 6836 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen t.checkEnclosure_Callback_SVGElement_SVGRect(this, element, rect);
6837 6837
6838 @DomName('SVGSVGElement.checkIntersection') 6838 @DomName('SVGSVGElement.checkIntersection')
6839 @DocsEditable() 6839 @DocsEditable()
6840 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.$checkIntersection_Callback(this, element, rect); 6840 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle ment.checkIntersection_Callback_SVGElement_SVGRect(this, element, rect);
6841 6841
6842 @DomName('SVGSVGElement.createSVGAngle') 6842 @DomName('SVGSVGElement.createSVGAngle')
6843 @DocsEditable() 6843 @DocsEditable()
6844 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.$createSVGAngle_Callback(t his); 6844 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.createSVGAngle_Callback(th is);
6845 6845
6846 @DomName('SVGSVGElement.createSVGLength') 6846 @DomName('SVGSVGElement.createSVGLength')
6847 @DocsEditable() 6847 @DocsEditable()
6848 Length createSvgLength() => _blink.BlinkSVGSVGElement.$createSVGLength_Callbac k(this); 6848 Length createSvgLength() => _blink.BlinkSVGSVGElement.createSVGLength_Callback (this);
6849 6849
6850 @DomName('SVGSVGElement.createSVGMatrix') 6850 @DomName('SVGSVGElement.createSVGMatrix')
6851 @DocsEditable() 6851 @DocsEditable()
6852 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.$createSVGMatrix_Callbac k(this); 6852 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.createSVGMatrix_Callback (this);
6853 6853
6854 @DomName('SVGSVGElement.createSVGNumber') 6854 @DomName('SVGSVGElement.createSVGNumber')
6855 @DocsEditable() 6855 @DocsEditable()
6856 Number createSvgNumber() => _blink.BlinkSVGSVGElement.$createSVGNumber_Callbac k(this); 6856 Number createSvgNumber() => _blink.BlinkSVGSVGElement.createSVGNumber_Callback (this);
6857 6857
6858 @DomName('SVGSVGElement.createSVGPoint') 6858 @DomName('SVGSVGElement.createSVGPoint')
6859 @DocsEditable() 6859 @DocsEditable()
6860 Point createSvgPoint() => _blink.BlinkSVGSVGElement.$createSVGPoint_Callback(t his); 6860 Point createSvgPoint() => _blink.BlinkSVGSVGElement.createSVGPoint_Callback(th is);
6861 6861
6862 @DomName('SVGSVGElement.createSVGRect') 6862 @DomName('SVGSVGElement.createSVGRect')
6863 @DocsEditable() 6863 @DocsEditable()
6864 Rect createSvgRect() => _blink.BlinkSVGSVGElement.$createSVGRect_Callback(this ); 6864 Rect createSvgRect() => _blink.BlinkSVGSVGElement.createSVGRect_Callback(this) ;
6865 6865
6866 @DomName('SVGSVGElement.createSVGTransform') 6866 @DomName('SVGSVGElement.createSVGTransform')
6867 @DocsEditable() 6867 @DocsEditable()
6868 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.$createSVGTransfor m_Callback(this); 6868 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.createSVGTransform _Callback(this);
6869 6869
6870 @DomName('SVGSVGElement.createSVGTransformFromMatrix') 6870 @DomName('SVGSVGElement.createSVGTransformFromMatrix')
6871 @DocsEditable() 6871 @DocsEditable()
6872 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle ment.$createSVGTransformFromMatrix_Callback(this, matrix); 6872 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle ment.createSVGTransformFromMatrix_Callback_SVGMatrix(this, matrix);
6873 6873
6874 @DomName('SVGSVGElement.deselectAll') 6874 @DomName('SVGSVGElement.deselectAll')
6875 @DocsEditable() 6875 @DocsEditable()
6876 void deselectAll() => _blink.BlinkSVGSVGElement.$deselectAll_Callback(this); 6876 void deselectAll() => _blink.BlinkSVGSVGElement.deselectAll_Callback(this);
6877 6877
6878 @DomName('SVGSVGElement.forceRedraw') 6878 @DomName('SVGSVGElement.forceRedraw')
6879 @DocsEditable() 6879 @DocsEditable()
6880 void forceRedraw() => _blink.BlinkSVGSVGElement.$forceRedraw_Callback(this); 6880 void forceRedraw() => _blink.BlinkSVGSVGElement.forceRedraw_Callback(this);
6881 6881
6882 @DomName('SVGSVGElement.getCurrentTime') 6882 @DomName('SVGSVGElement.getCurrentTime')
6883 @DocsEditable() 6883 @DocsEditable()
6884 double getCurrentTime() => _blink.BlinkSVGSVGElement.$getCurrentTime_Callback( this); 6884 double getCurrentTime() => _blink.BlinkSVGSVGElement.getCurrentTime_Callback(t his);
6885 6885
6886 @DomName('SVGSVGElement.getElementById') 6886 @DomName('SVGSVGElement.getElementById')
6887 @DocsEditable() 6887 @DocsEditable()
6888 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.$getElem entById_Callback(this, elementId); 6888 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.getEleme ntById_Callback_DOMString(this, elementId);
6889 6889
6890 @DomName('SVGSVGElement.getEnclosureList') 6890 @DomName('SVGSVGElement.getEnclosureList')
6891 @DocsEditable() 6891 @DocsEditable()
6892 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink. BlinkSVGSVGElement.$getEnclosureList_Callback(this, rect, referenceElement); 6892 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink. BlinkSVGSVGElement.getEnclosureList_Callback_SVGRect_SVGElement(this, rect, refe renceElement);
6893 6893
6894 @DomName('SVGSVGElement.getIntersectionList') 6894 @DomName('SVGSVGElement.getIntersectionList')
6895 @DocsEditable() 6895 @DocsEditable()
6896 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli nk.BlinkSVGSVGElement.$getIntersectionList_Callback(this, rect, referenceElement ); 6896 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli nk.BlinkSVGSVGElement.getIntersectionList_Callback_SVGRect_SVGElement(this, rect , referenceElement);
6897 6897
6898 @DomName('SVGSVGElement.pauseAnimations') 6898 @DomName('SVGSVGElement.pauseAnimations')
6899 @DocsEditable() 6899 @DocsEditable()
6900 void pauseAnimations() => _blink.BlinkSVGSVGElement.$pauseAnimations_Callback( this); 6900 void pauseAnimations() => _blink.BlinkSVGSVGElement.pauseAnimations_Callback(t his);
6901 6901
6902 @DomName('SVGSVGElement.setCurrentTime') 6902 @DomName('SVGSVGElement.setCurrentTime')
6903 @DocsEditable() 6903 @DocsEditable()
6904 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.$setCurrentTime_ Callback(this, seconds); 6904 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.setCurrentTime_C allback_float(this, seconds);
6905 6905
6906 @DomName('SVGSVGElement.suspendRedraw') 6906 @DomName('SVGSVGElement.suspendRedraw')
6907 @DocsEditable() 6907 @DocsEditable()
6908 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.$suspe ndRedraw_Callback(this, maxWaitMilliseconds); 6908 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.suspen dRedraw_Callback_ul(this, maxWaitMilliseconds);
6909 6909
6910 @DomName('SVGSVGElement.unpauseAnimations') 6910 @DomName('SVGSVGElement.unpauseAnimations')
6911 @DocsEditable() 6911 @DocsEditable()
6912 void unpauseAnimations() => _blink.BlinkSVGSVGElement.$unpauseAnimations_Callb ack(this); 6912 void unpauseAnimations() => _blink.BlinkSVGSVGElement.unpauseAnimations_Callba ck(this);
6913 6913
6914 @DomName('SVGSVGElement.unsuspendRedraw') 6914 @DomName('SVGSVGElement.unsuspendRedraw')
6915 @DocsEditable() 6915 @DocsEditable()
6916 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.$unsusp endRedraw_Callback(this, suspendHandleId); 6916 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.unsuspe ndRedraw_Callback_ul(this, suspendHandleId);
6917 6917
6918 @DomName('SVGSVGElement.unsuspendRedrawAll') 6918 @DomName('SVGSVGElement.unsuspendRedrawAll')
6919 @DocsEditable() 6919 @DocsEditable()
6920 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.$unsuspendRedrawAll_Cal lback(this); 6920 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.unsuspendRedrawAll_Call back(this);
6921 6921
6922 @DomName('SVGSVGElement.preserveAspectRatio') 6922 @DomName('SVGSVGElement.preserveAspectRatio')
6923 @DocsEditable() 6923 @DocsEditable()
6924 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme nt.$preserveAspectRatio_Getter(this); 6924 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme nt.preserveAspectRatio_Getter(this);
6925 6925
6926 @DomName('SVGSVGElement.viewBox') 6926 @DomName('SVGSVGElement.viewBox')
6927 @DocsEditable() 6927 @DocsEditable()
6928 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.$viewBox_Getter(this); 6928 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.viewBox_Getter(this);
6929 6929
6930 @DomName('SVGSVGElement.zoomAndPan') 6930 @DomName('SVGSVGElement.zoomAndPan')
6931 @DocsEditable() 6931 @DocsEditable()
6932 int get zoomAndPan => _blink.BlinkSVGSVGElement.$zoomAndPan_Getter(this); 6932 int get zoomAndPan => _blink.BlinkSVGSVGElement.zoomAndPan_Getter(this);
6933 6933
6934 @DomName('SVGSVGElement.zoomAndPan') 6934 @DomName('SVGSVGElement.zoomAndPan')
6935 @DocsEditable() 6935 @DocsEditable()
6936 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.$zoomAndPan_Setter (this, value); 6936 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.zoomAndPan_Setter_ us(this, value);
6937 6937
6938 } 6938 }
6939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6940 // for details. All rights reserved. Use of this source code is governed by a 6940 // for details. All rights reserved. Use of this source code is governed by a
6941 // BSD-style license that can be found in the LICENSE file. 6941 // BSD-style license that can be found in the LICENSE file.
6942 6942
6943 // WARNING: Do not edit - generated code. 6943 // WARNING: Do not edit - generated code.
6944 6944
6945 6945
6946 @DocsEditable() 6946 @DocsEditable()
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
6980 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 6980 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
6981 /** 6981 /**
6982 * Constructor instantiated by the DOM when a custom element has been created. 6982 * Constructor instantiated by the DOM when a custom element has been created.
6983 * 6983 *
6984 * This can only be called by subclasses from their created constructor. 6984 * This can only be called by subclasses from their created constructor.
6985 */ 6985 */
6986 SymbolElement.created() : super.created(); 6986 SymbolElement.created() : super.created();
6987 6987
6988 @DomName('SVGSymbolElement.preserveAspectRatio') 6988 @DomName('SVGSymbolElement.preserveAspectRatio')
6989 @DocsEditable() 6989 @DocsEditable()
6990 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl ement.$preserveAspectRatio_Getter(this); 6990 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl ement.preserveAspectRatio_Getter(this);
6991 6991
6992 @DomName('SVGSymbolElement.viewBox') 6992 @DomName('SVGSymbolElement.viewBox')
6993 @DocsEditable() 6993 @DocsEditable()
6994 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.$viewBox_Getter(this) ; 6994 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.viewBox_Getter(this);
6995 6995
6996 } 6996 }
6997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6997 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6998 // for details. All rights reserved. Use of this source code is governed by a 6998 // for details. All rights reserved. Use of this source code is governed by a
6999 // BSD-style license that can be found in the LICENSE file. 6999 // BSD-style license that can be found in the LICENSE file.
7000 7000
7001 // WARNING: Do not edit - generated code. 7001 // WARNING: Do not edit - generated code.
7002 7002
7003 7003
7004 @DocsEditable() 7004 @DocsEditable()
(...skipping 23 matching lines...) Expand all
7028 7028
7029 @DocsEditable() 7029 @DocsEditable()
7030 @DomName('SVGTests') 7030 @DomName('SVGTests')
7031 @Unstable() 7031 @Unstable()
7032 abstract class Tests extends NativeFieldWrapperClass2 { 7032 abstract class Tests extends NativeFieldWrapperClass2 {
7033 // To suppress missing implicit constructor warnings. 7033 // To suppress missing implicit constructor warnings.
7034 factory Tests._() { throw new UnsupportedError("Not supported"); } 7034 factory Tests._() { throw new UnsupportedError("Not supported"); }
7035 7035
7036 @DomName('SVGTests.requiredExtensions') 7036 @DomName('SVGTests.requiredExtensions')
7037 @DocsEditable() 7037 @DocsEditable()
7038 StringList get requiredExtensions => _blink.BlinkSVGTests.$requiredExtensions_ Getter(this); 7038 StringList get requiredExtensions => _blink.BlinkSVGTests.requiredExtensions_G etter(this);
7039 7039
7040 @DomName('SVGTests.requiredFeatures') 7040 @DomName('SVGTests.requiredFeatures')
7041 @DocsEditable() 7041 @DocsEditable()
7042 StringList get requiredFeatures => _blink.BlinkSVGTests.$requiredFeatures_Gett er(this); 7042 StringList get requiredFeatures => _blink.BlinkSVGTests.requiredFeatures_Gette r(this);
7043 7043
7044 @DomName('SVGTests.systemLanguage') 7044 @DomName('SVGTests.systemLanguage')
7045 @DocsEditable() 7045 @DocsEditable()
7046 StringList get systemLanguage => _blink.BlinkSVGTests.$systemLanguage_Getter(t his); 7046 StringList get systemLanguage => _blink.BlinkSVGTests.systemLanguage_Getter(th is);
7047 7047
7048 @DomName('SVGTests.hasExtension') 7048 @DomName('SVGTests.hasExtension')
7049 @DocsEditable() 7049 @DocsEditable()
7050 bool hasExtension(String extension) => _blink.BlinkSVGTests.$hasExtension_Call back(this, extension); 7050 bool hasExtension(String extension) => _blink.BlinkSVGTests.hasExtension_Callb ack_DOMString(this, extension);
7051 7051
7052 } 7052 }
7053 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7053 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7054 // for details. All rights reserved. Use of this source code is governed by a 7054 // for details. All rights reserved. Use of this source code is governed by a
7055 // BSD-style license that can be found in the LICENSE file. 7055 // BSD-style license that can be found in the LICENSE file.
7056 7056
7057 // WARNING: Do not edit - generated code. 7057 // WARNING: Do not edit - generated code.
7058 7058
7059 7059
7060 @DocsEditable() 7060 @DocsEditable()
(...skipping 16 matching lines...) Expand all
7077 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') 7077 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
7078 @DocsEditable() 7078 @DocsEditable()
7079 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 7079 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
7080 7080
7081 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') 7081 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
7082 @DocsEditable() 7082 @DocsEditable()
7083 static const int LENGTHADJUST_UNKNOWN = 0; 7083 static const int LENGTHADJUST_UNKNOWN = 0;
7084 7084
7085 @DomName('SVGTextContentElement.lengthAdjust') 7085 @DomName('SVGTextContentElement.lengthAdjust')
7086 @DocsEditable() 7086 @DocsEditable()
7087 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.$len gthAdjust_Getter(this); 7087 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.leng thAdjust_Getter(this);
7088 7088
7089 @DomName('SVGTextContentElement.textLength') 7089 @DomName('SVGTextContentElement.textLength')
7090 @DocsEditable() 7090 @DocsEditable()
7091 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.$textLength _Getter(this); 7091 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.textLength_ Getter(this);
7092 7092
7093 @DomName('SVGTextContentElement.getCharNumAtPosition') 7093 @DomName('SVGTextContentElement.getCharNumAtPosition')
7094 @DocsEditable() 7094 @DocsEditable()
7095 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.$ge tCharNumAtPosition_Callback(this, point); 7095 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.get CharNumAtPosition_Callback_SVGPoint(this, point);
7096 7096
7097 @DomName('SVGTextContentElement.getComputedTextLength') 7097 @DomName('SVGTextContentElement.getComputedTextLength')
7098 @DocsEditable() 7098 @DocsEditable()
7099 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.$getComput edTextLength_Callback(this); 7099 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.getCompute dTextLength_Callback(this);
7100 7100
7101 @DomName('SVGTextContentElement.getEndPositionOfChar') 7101 @DomName('SVGTextContentElement.getEndPositionOfChar')
7102 @DocsEditable() 7102 @DocsEditable()
7103 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.$g etEndPositionOfChar_Callback(this, offset); 7103 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.ge tEndPositionOfChar_Callback_ul(this, offset);
7104 7104
7105 @DomName('SVGTextContentElement.getExtentOfChar') 7105 @DomName('SVGTextContentElement.getExtentOfChar')
7106 @DocsEditable() 7106 @DocsEditable()
7107 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.$getExte ntOfChar_Callback(this, offset); 7107 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.getExten tOfChar_Callback_ul(this, offset);
7108 7108
7109 @DomName('SVGTextContentElement.getNumberOfChars') 7109 @DomName('SVGTextContentElement.getNumberOfChars')
7110 @DocsEditable() 7110 @DocsEditable()
7111 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.$getNumberOfChars_ Callback(this); 7111 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.getNumberOfChars_C allback(this);
7112 7112
7113 @DomName('SVGTextContentElement.getRotationOfChar') 7113 @DomName('SVGTextContentElement.getRotationOfChar')
7114 @DocsEditable() 7114 @DocsEditable()
7115 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.$get RotationOfChar_Callback(this, offset); 7115 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.getR otationOfChar_Callback_ul(this, offset);
7116 7116
7117 @DomName('SVGTextContentElement.getStartPositionOfChar') 7117 @DomName('SVGTextContentElement.getStartPositionOfChar')
7118 @DocsEditable() 7118 @DocsEditable()
7119 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement. $getStartPositionOfChar_Callback(this, offset); 7119 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement. getStartPositionOfChar_Callback_ul(this, offset);
7120 7120
7121 @DomName('SVGTextContentElement.getSubStringLength') 7121 @DomName('SVGTextContentElement.getSubStringLength')
7122 @DocsEditable() 7122 @DocsEditable()
7123 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten tElement.$getSubStringLength_Callback(this, offset, length); 7123 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten tElement.getSubStringLength_Callback_ul_ul(this, offset, length);
7124 7124
7125 @DomName('SVGTextContentElement.selectSubString') 7125 @DomName('SVGTextContentElement.selectSubString')
7126 @DocsEditable() 7126 @DocsEditable()
7127 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem ent.$selectSubString_Callback(this, offset, length); 7127 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem ent.selectSubString_Callback_ul_ul(this, offset, length);
7128 7128
7129 } 7129 }
7130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7131 // for details. All rights reserved. Use of this source code is governed by a 7131 // for details. All rights reserved. Use of this source code is governed by a
7132 // BSD-style license that can be found in the LICENSE file. 7132 // BSD-style license that can be found in the LICENSE file.
7133 7133
7134 // WARNING: Do not edit - generated code. 7134 // WARNING: Do not edit - generated code.
7135 7135
7136 7136
7137 @DocsEditable() 7137 @DocsEditable()
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
7191 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT') 7191 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT')
7192 @DocsEditable() 7192 @DocsEditable()
7193 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 7193 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
7194 7194
7195 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN') 7195 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN')
7196 @DocsEditable() 7196 @DocsEditable()
7197 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 7197 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
7198 7198
7199 @DomName('SVGTextPathElement.method') 7199 @DomName('SVGTextPathElement.method')
7200 @DocsEditable() 7200 @DocsEditable()
7201 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.$method_Gette r(this); 7201 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.method_Getter (this);
7202 7202
7203 @DomName('SVGTextPathElement.spacing') 7203 @DomName('SVGTextPathElement.spacing')
7204 @DocsEditable() 7204 @DocsEditable()
7205 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.$spacing_Get ter(this); 7205 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.spacing_Gett er(this);
7206 7206
7207 @DomName('SVGTextPathElement.startOffset') 7207 @DomName('SVGTextPathElement.startOffset')
7208 @DocsEditable() 7208 @DocsEditable()
7209 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.$startOffset_ Getter(this); 7209 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.startOffset_G etter(this);
7210 7210
7211 @DomName('SVGTextPathElement.href') 7211 @DomName('SVGTextPathElement.href')
7212 @DocsEditable() 7212 @DocsEditable()
7213 AnimatedString get href => _blink.BlinkSVGTextPathElement.$href_Getter(this); 7213 AnimatedString get href => _blink.BlinkSVGTextPathElement.href_Getter(this);
7214 7214
7215 } 7215 }
7216 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7216 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7217 // for details. All rights reserved. Use of this source code is governed by a 7217 // for details. All rights reserved. Use of this source code is governed by a
7218 // BSD-style license that can be found in the LICENSE file. 7218 // BSD-style license that can be found in the LICENSE file.
7219 7219
7220 // WARNING: Do not edit - generated code. 7220 // WARNING: Do not edit - generated code.
7221 7221
7222 7222
7223 @DocsEditable() 7223 @DocsEditable()
7224 @DomName('SVGTextPositioningElement') 7224 @DomName('SVGTextPositioningElement')
7225 @Unstable() 7225 @Unstable()
7226 class TextPositioningElement extends TextContentElement { 7226 class TextPositioningElement extends TextContentElement {
7227 // To suppress missing implicit constructor warnings. 7227 // To suppress missing implicit constructor warnings.
7228 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); } 7228 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
7229 /** 7229 /**
7230 * Constructor instantiated by the DOM when a custom element has been created. 7230 * Constructor instantiated by the DOM when a custom element has been created.
7231 * 7231 *
7232 * This can only be called by subclasses from their created constructor. 7232 * This can only be called by subclasses from their created constructor.
7233 */ 7233 */
7234 TextPositioningElement.created() : super.created(); 7234 TextPositioningElement.created() : super.created();
7235 7235
7236 @DomName('SVGTextPositioningElement.dx') 7236 @DomName('SVGTextPositioningElement.dx')
7237 @DocsEditable() 7237 @DocsEditable()
7238 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.$dx_Getter( this); 7238 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.dx_Getter(t his);
7239 7239
7240 @DomName('SVGTextPositioningElement.dy') 7240 @DomName('SVGTextPositioningElement.dy')
7241 @DocsEditable() 7241 @DocsEditable()
7242 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.$dy_Getter( this); 7242 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.dy_Getter(t his);
7243 7243
7244 @DomName('SVGTextPositioningElement.rotate') 7244 @DomName('SVGTextPositioningElement.rotate')
7245 @DocsEditable() 7245 @DocsEditable()
7246 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.$rotate _Getter(this); 7246 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.rotate_ Getter(this);
7247 7247
7248 @DomName('SVGTextPositioningElement.x') 7248 @DomName('SVGTextPositioningElement.x')
7249 @DocsEditable() 7249 @DocsEditable()
7250 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.$x_Getter(th is); 7250 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.x_Getter(thi s);
7251 7251
7252 @DomName('SVGTextPositioningElement.y') 7252 @DomName('SVGTextPositioningElement.y')
7253 @DocsEditable() 7253 @DocsEditable()
7254 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.$y_Getter(th is); 7254 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.y_Getter(thi s);
7255 7255
7256 } 7256 }
7257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7258 // for details. All rights reserved. Use of this source code is governed by a 7258 // for details. All rights reserved. Use of this source code is governed by a
7259 // BSD-style license that can be found in the LICENSE file. 7259 // BSD-style license that can be found in the LICENSE file.
7260 7260
7261 // WARNING: Do not edit - generated code. 7261 // WARNING: Do not edit - generated code.
7262 7262
7263 7263
7264 @DocsEditable() 7264 @DocsEditable()
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
7316 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') 7316 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE')
7317 @DocsEditable() 7317 @DocsEditable()
7318 static const int SVG_TRANSFORM_TRANSLATE = 2; 7318 static const int SVG_TRANSFORM_TRANSLATE = 2;
7319 7319
7320 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') 7320 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN')
7321 @DocsEditable() 7321 @DocsEditable()
7322 static const int SVG_TRANSFORM_UNKNOWN = 0; 7322 static const int SVG_TRANSFORM_UNKNOWN = 0;
7323 7323
7324 @DomName('SVGTransform.angle') 7324 @DomName('SVGTransform.angle')
7325 @DocsEditable() 7325 @DocsEditable()
7326 double get angle => _blink.BlinkSVGTransform.$angle_Getter(this); 7326 double get angle => _blink.BlinkSVGTransform.angle_Getter(this);
7327 7327
7328 @DomName('SVGTransform.matrix') 7328 @DomName('SVGTransform.matrix')
7329 @DocsEditable() 7329 @DocsEditable()
7330 Matrix get matrix => _blink.BlinkSVGTransform.$matrix_Getter(this); 7330 Matrix get matrix => _blink.BlinkSVGTransform.matrix_Getter(this);
7331 7331
7332 @DomName('SVGTransform.type') 7332 @DomName('SVGTransform.type')
7333 @DocsEditable() 7333 @DocsEditable()
7334 int get type => _blink.BlinkSVGTransform.$type_Getter(this); 7334 int get type => _blink.BlinkSVGTransform.type_Getter(this);
7335 7335
7336 @DomName('SVGTransform.setMatrix') 7336 @DomName('SVGTransform.setMatrix')
7337 @DocsEditable() 7337 @DocsEditable()
7338 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.$setMatrix_Callback( this, matrix); 7338 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.setMatrix_Callback_S VGMatrix(this, matrix);
7339 7339
7340 @DomName('SVGTransform.setRotate') 7340 @DomName('SVGTransform.setRotate')
7341 @DocsEditable() 7341 @DocsEditable()
7342 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.$setRota te_Callback(this, angle, cx, cy); 7342 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.setRotat e_Callback_float_float_float(this, angle, cx, cy);
7343 7343
7344 @DomName('SVGTransform.setScale') 7344 @DomName('SVGTransform.setScale')
7345 @DocsEditable() 7345 @DocsEditable()
7346 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.$setScale_Callback(t his, sx, sy); 7346 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.setScale_Callback_fl oat_float(this, sx, sy);
7347 7347
7348 @DomName('SVGTransform.setSkewX') 7348 @DomName('SVGTransform.setSkewX')
7349 @DocsEditable() 7349 @DocsEditable()
7350 void setSkewX(num angle) => _blink.BlinkSVGTransform.$setSkewX_Callback(this, angle); 7350 void setSkewX(num angle) => _blink.BlinkSVGTransform.setSkewX_Callback_float(t his, angle);
7351 7351
7352 @DomName('SVGTransform.setSkewY') 7352 @DomName('SVGTransform.setSkewY')
7353 @DocsEditable() 7353 @DocsEditable()
7354 void setSkewY(num angle) => _blink.BlinkSVGTransform.$setSkewY_Callback(this, angle); 7354 void setSkewY(num angle) => _blink.BlinkSVGTransform.setSkewY_Callback_float(t his, angle);
7355 7355
7356 @DomName('SVGTransform.setTranslate') 7356 @DomName('SVGTransform.setTranslate')
7357 @DocsEditable() 7357 @DocsEditable()
7358 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.$setTranslate_Ca llback(this, tx, ty); 7358 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.setTranslate_Cal lback_float_float(this, tx, ty);
7359 7359
7360 } 7360 }
7361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7362 // for details. All rights reserved. Use of this source code is governed by a 7362 // for details. All rights reserved. Use of this source code is governed by a
7363 // BSD-style license that can be found in the LICENSE file. 7363 // BSD-style license that can be found in the LICENSE file.
7364 7364
7365 // WARNING: Do not edit - generated code. 7365 // WARNING: Do not edit - generated code.
7366 7366
7367 7367
7368 @DocsEditable() 7368 @DocsEditable()
7369 @DomName('SVGTransformList') 7369 @DomName('SVGTransformList')
7370 @Unstable() 7370 @Unstable()
7371 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> { 7371 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>, ImmutableListMixin<Transform> implements List<Transform> {
7372 // To suppress missing implicit constructor warnings. 7372 // To suppress missing implicit constructor warnings.
7373 factory TransformList._() { throw new UnsupportedError("Not supported"); } 7373 factory TransformList._() { throw new UnsupportedError("Not supported"); }
7374 7374
7375 @DomName('SVGTransformList.numberOfItems') 7375 @DomName('SVGTransformList.numberOfItems')
7376 @DocsEditable() 7376 @DocsEditable()
7377 int get numberOfItems => _blink.BlinkSVGTransformList.$numberOfItems_Getter(th is); 7377 int get numberOfItems => _blink.BlinkSVGTransformList.numberOfItems_Getter(thi s);
7378 7378
7379 Transform operator[](int index) { 7379 Transform operator[](int index) {
7380 if (index < 0 || index >= length) 7380 if (index < 0 || index >= length)
7381 throw new RangeError.range(index, 0, length); 7381 throw new RangeError.range(index, 0, length);
7382 return getItem(index); 7382 return getItem(index);
7383 } 7383 }
7384 7384
7385 void operator[]=(int index, Transform value) { 7385 void operator[]=(int index, Transform value) {
7386 throw new UnsupportedError("Cannot assign element of immutable List."); 7386 throw new UnsupportedError("Cannot assign element of immutable List.");
7387 } 7387 }
(...skipping 29 matching lines...) Expand all
7417 } 7417 }
7418 if (len == 0) throw new StateError("No elements"); 7418 if (len == 0) throw new StateError("No elements");
7419 throw new StateError("More than one element"); 7419 throw new StateError("More than one element");
7420 } 7420 }
7421 7421
7422 Transform elementAt(int index) => this[index]; 7422 Transform elementAt(int index) => this[index];
7423 // -- end List<Transform> mixins. 7423 // -- end List<Transform> mixins.
7424 7424
7425 @DomName('SVGTransformList.appendItem') 7425 @DomName('SVGTransformList.appendItem')
7426 @DocsEditable() 7426 @DocsEditable()
7427 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.$appendIt em_Callback(this, item); 7427 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.appendIte m_Callback_SVGTransform(this, item);
7428 7428
7429 @DomName('SVGTransformList.clear') 7429 @DomName('SVGTransformList.clear')
7430 @DocsEditable() 7430 @DocsEditable()
7431 void clear() => _blink.BlinkSVGTransformList.$clear_Callback(this); 7431 void clear() => _blink.BlinkSVGTransformList.clear_Callback(this);
7432 7432
7433 @DomName('SVGTransformList.consolidate') 7433 @DomName('SVGTransformList.consolidate')
7434 @DocsEditable() 7434 @DocsEditable()
7435 Transform consolidate() => _blink.BlinkSVGTransformList.$consolidate_Callback( this); 7435 Transform consolidate() => _blink.BlinkSVGTransformList.consolidate_Callback(t his);
7436 7436
7437 @DomName('SVGTransformList.createSVGTransformFromMatrix') 7437 @DomName('SVGTransformList.createSVGTransformFromMatrix')
7438 @DocsEditable() 7438 @DocsEditable()
7439 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf ormList.$createSVGTransformFromMatrix_Callback(this, matrix); 7439 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf ormList.createSVGTransformFromMatrix_Callback_SVGMatrix(this, matrix);
7440 7440
7441 @DomName('SVGTransformList.getItem') 7441 @DomName('SVGTransformList.getItem')
7442 @DocsEditable() 7442 @DocsEditable()
7443 Transform getItem(int index) => _blink.BlinkSVGTransformList.$getItem_Callback (this, index); 7443 Transform getItem(int index) => _blink.BlinkSVGTransformList.getItem_Callback_ ul(this, index);
7444 7444
7445 @DomName('SVGTransformList.initialize') 7445 @DomName('SVGTransformList.initialize')
7446 @DocsEditable() 7446 @DocsEditable()
7447 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.$initiali ze_Callback(this, item); 7447 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.initializ e_Callback_SVGTransform(this, item);
7448 7448
7449 @DomName('SVGTransformList.insertItemBefore') 7449 @DomName('SVGTransformList.insertItemBefore')
7450 @DocsEditable() 7450 @DocsEditable()
7451 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf ormList.$insertItemBefore_Callback(this, item, index); 7451 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf ormList.insertItemBefore_Callback_SVGTransform_ul(this, item, index);
7452 7452
7453 @DomName('SVGTransformList.removeItem') 7453 @DomName('SVGTransformList.removeItem')
7454 @DocsEditable() 7454 @DocsEditable()
7455 Transform removeItem(int index) => _blink.BlinkSVGTransformList.$removeItem_Ca llback(this, index); 7455 Transform removeItem(int index) => _blink.BlinkSVGTransformList.removeItem_Cal lback_ul(this, index);
7456 7456
7457 @DomName('SVGTransformList.replaceItem') 7457 @DomName('SVGTransformList.replaceItem')
7458 @DocsEditable() 7458 @DocsEditable()
7459 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi st.$replaceItem_Callback(this, item, index); 7459 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi st.replaceItem_Callback_SVGTransform_ul(this, item, index);
7460 7460
7461 } 7461 }
7462 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7462 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7463 // for details. All rights reserved. Use of this source code is governed by a 7463 // for details. All rights reserved. Use of this source code is governed by a
7464 // BSD-style license that can be found in the LICENSE file. 7464 // BSD-style license that can be found in the LICENSE file.
7465 7465
7466 // WARNING: Do not edit - generated code. 7466 // WARNING: Do not edit - generated code.
7467 7467
7468 7468
7469 @DocsEditable() 7469 @DocsEditable()
(...skipping 25 matching lines...) Expand all
7495 7495
7496 @DocsEditable() 7496 @DocsEditable()
7497 @DomName('SVGURIReference') 7497 @DomName('SVGURIReference')
7498 @Unstable() 7498 @Unstable()
7499 abstract class UriReference extends NativeFieldWrapperClass2 { 7499 abstract class UriReference extends NativeFieldWrapperClass2 {
7500 // To suppress missing implicit constructor warnings. 7500 // To suppress missing implicit constructor warnings.
7501 factory UriReference._() { throw new UnsupportedError("Not supported"); } 7501 factory UriReference._() { throw new UnsupportedError("Not supported"); }
7502 7502
7503 @DomName('SVGURIReference.href') 7503 @DomName('SVGURIReference.href')
7504 @DocsEditable() 7504 @DocsEditable()
7505 AnimatedString get href => _blink.BlinkSVGURIReference.$href_Getter(this); 7505 AnimatedString get href => _blink.BlinkSVGURIReference.href_Getter(this);
7506 7506
7507 } 7507 }
7508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7509 // for details. All rights reserved. Use of this source code is governed by a 7509 // for details. All rights reserved. Use of this source code is governed by a
7510 // BSD-style license that can be found in the LICENSE file. 7510 // BSD-style license that can be found in the LICENSE file.
7511 7511
7512 // WARNING: Do not edit - generated code. 7512 // WARNING: Do not edit - generated code.
7513 7513
7514 7514
7515 @DocsEditable() 7515 @DocsEditable()
7516 @DomName('SVGUseElement') 7516 @DomName('SVGUseElement')
7517 @Unstable() 7517 @Unstable()
7518 class UseElement extends GraphicsElement implements UriReference, Tests { 7518 class UseElement extends GraphicsElement implements UriReference, Tests {
7519 // To suppress missing implicit constructor warnings. 7519 // To suppress missing implicit constructor warnings.
7520 factory UseElement._() { throw new UnsupportedError("Not supported"); } 7520 factory UseElement._() { throw new UnsupportedError("Not supported"); }
7521 7521
7522 @DomName('SVGUseElement.SVGUseElement') 7522 @DomName('SVGUseElement.SVGUseElement')
7523 @DocsEditable() 7523 @DocsEditable()
7524 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 7524 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
7525 /** 7525 /**
7526 * Constructor instantiated by the DOM when a custom element has been created. 7526 * Constructor instantiated by the DOM when a custom element has been created.
7527 * 7527 *
7528 * This can only be called by subclasses from their created constructor. 7528 * This can only be called by subclasses from their created constructor.
7529 */ 7529 */
7530 UseElement.created() : super.created(); 7530 UseElement.created() : super.created();
7531 7531
7532 @DomName('SVGUseElement.animatedInstanceRoot') 7532 @DomName('SVGUseElement.animatedInstanceRoot')
7533 @DocsEditable() 7533 @DocsEditable()
7534 ElementInstance get animatedInstanceRoot => _blink.BlinkSVGUseElement.$animate dInstanceRoot_Getter(this); 7534 ElementInstance get animatedInstanceRoot => _blink.BlinkSVGUseElement.animated InstanceRoot_Getter(this);
7535 7535
7536 @DomName('SVGUseElement.height') 7536 @DomName('SVGUseElement.height')
7537 @DocsEditable() 7537 @DocsEditable()
7538 AnimatedLength get height => _blink.BlinkSVGUseElement.$height_Getter(this); 7538 AnimatedLength get height => _blink.BlinkSVGUseElement.height_Getter(this);
7539 7539
7540 @DomName('SVGUseElement.instanceRoot') 7540 @DomName('SVGUseElement.instanceRoot')
7541 @DocsEditable() 7541 @DocsEditable()
7542 ElementInstance get instanceRoot => _blink.BlinkSVGUseElement.$instanceRoot_Ge tter(this); 7542 ElementInstance get instanceRoot => _blink.BlinkSVGUseElement.instanceRoot_Get ter(this);
7543 7543
7544 @DomName('SVGUseElement.width') 7544 @DomName('SVGUseElement.width')
7545 @DocsEditable() 7545 @DocsEditable()
7546 AnimatedLength get width => _blink.BlinkSVGUseElement.$width_Getter(this); 7546 AnimatedLength get width => _blink.BlinkSVGUseElement.width_Getter(this);
7547 7547
7548 @DomName('SVGUseElement.x') 7548 @DomName('SVGUseElement.x')
7549 @DocsEditable() 7549 @DocsEditable()
7550 AnimatedLength get x => _blink.BlinkSVGUseElement.$x_Getter(this); 7550 AnimatedLength get x => _blink.BlinkSVGUseElement.x_Getter(this);
7551 7551
7552 @DomName('SVGUseElement.y') 7552 @DomName('SVGUseElement.y')
7553 @DocsEditable() 7553 @DocsEditable()
7554 AnimatedLength get y => _blink.BlinkSVGUseElement.$y_Getter(this); 7554 AnimatedLength get y => _blink.BlinkSVGUseElement.y_Getter(this);
7555 7555
7556 @DomName('SVGUseElement.requiredExtensions') 7556 @DomName('SVGUseElement.requiredExtensions')
7557 @DocsEditable() 7557 @DocsEditable()
7558 StringList get requiredExtensions => _blink.BlinkSVGUseElement.$requiredExtens ions_Getter(this); 7558 StringList get requiredExtensions => _blink.BlinkSVGUseElement.requiredExtensi ons_Getter(this);
7559 7559
7560 @DomName('SVGUseElement.requiredFeatures') 7560 @DomName('SVGUseElement.requiredFeatures')
7561 @DocsEditable() 7561 @DocsEditable()
7562 StringList get requiredFeatures => _blink.BlinkSVGUseElement.$requiredFeatures _Getter(this); 7562 StringList get requiredFeatures => _blink.BlinkSVGUseElement.requiredFeatures_ Getter(this);
7563 7563
7564 @DomName('SVGUseElement.systemLanguage') 7564 @DomName('SVGUseElement.systemLanguage')
7565 @DocsEditable() 7565 @DocsEditable()
7566 StringList get systemLanguage => _blink.BlinkSVGUseElement.$systemLanguage_Get ter(this); 7566 StringList get systemLanguage => _blink.BlinkSVGUseElement.systemLanguage_Gett er(this);
7567 7567
7568 @DomName('SVGUseElement.hasExtension') 7568 @DomName('SVGUseElement.hasExtension')
7569 @DocsEditable() 7569 @DocsEditable()
7570 bool hasExtension(String extension) => _blink.BlinkSVGUseElement.$hasExtension _Callback(this, extension); 7570 bool hasExtension(String extension) => _blink.BlinkSVGUseElement.hasExtension_ Callback_DOMString(this, extension);
7571 7571
7572 @DomName('SVGUseElement.href') 7572 @DomName('SVGUseElement.href')
7573 @DocsEditable() 7573 @DocsEditable()
7574 AnimatedString get href => _blink.BlinkSVGUseElement.$href_Getter(this); 7574 AnimatedString get href => _blink.BlinkSVGUseElement.href_Getter(this);
7575 7575
7576 } 7576 }
7577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7578 // for details. All rights reserved. Use of this source code is governed by a 7578 // for details. All rights reserved. Use of this source code is governed by a
7579 // BSD-style license that can be found in the LICENSE file. 7579 // BSD-style license that can be found in the LICENSE file.
7580 7580
7581 // WARNING: Do not edit - generated code. 7581 // WARNING: Do not edit - generated code.
7582 7582
7583 7583
7584 @DocsEditable() 7584 @DocsEditable()
7585 @DomName('SVGViewElement') 7585 @DomName('SVGViewElement')
7586 @Unstable() 7586 @Unstable()
7587 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { 7587 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan {
7588 // To suppress missing implicit constructor warnings. 7588 // To suppress missing implicit constructor warnings.
7589 factory ViewElement._() { throw new UnsupportedError("Not supported"); } 7589 factory ViewElement._() { throw new UnsupportedError("Not supported"); }
7590 7590
7591 @DomName('SVGViewElement.SVGViewElement') 7591 @DomName('SVGViewElement.SVGViewElement')
7592 @DocsEditable() 7592 @DocsEditable()
7593 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 7593 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
7594 /** 7594 /**
7595 * Constructor instantiated by the DOM when a custom element has been created. 7595 * Constructor instantiated by the DOM when a custom element has been created.
7596 * 7596 *
7597 * This can only be called by subclasses from their created constructor. 7597 * This can only be called by subclasses from their created constructor.
7598 */ 7598 */
7599 ViewElement.created() : super.created(); 7599 ViewElement.created() : super.created();
7600 7600
7601 @DomName('SVGViewElement.viewTarget') 7601 @DomName('SVGViewElement.viewTarget')
7602 @DocsEditable() 7602 @DocsEditable()
7603 StringList get viewTarget => _blink.BlinkSVGViewElement.$viewTarget_Getter(thi s); 7603 StringList get viewTarget => _blink.BlinkSVGViewElement.viewTarget_Getter(this );
7604 7604
7605 @DomName('SVGViewElement.preserveAspectRatio') 7605 @DomName('SVGViewElement.preserveAspectRatio')
7606 @DocsEditable() 7606 @DocsEditable()
7607 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem ent.$preserveAspectRatio_Getter(this); 7607 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem ent.preserveAspectRatio_Getter(this);
7608 7608
7609 @DomName('SVGViewElement.viewBox') 7609 @DomName('SVGViewElement.viewBox')
7610 @DocsEditable() 7610 @DocsEditable()
7611 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.$viewBox_Getter(this); 7611 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.viewBox_Getter(this);
7612 7612
7613 @DomName('SVGViewElement.zoomAndPan') 7613 @DomName('SVGViewElement.zoomAndPan')
7614 @DocsEditable() 7614 @DocsEditable()
7615 int get zoomAndPan => _blink.BlinkSVGViewElement.$zoomAndPan_Getter(this); 7615 int get zoomAndPan => _blink.BlinkSVGViewElement.zoomAndPan_Getter(this);
7616 7616
7617 @DomName('SVGViewElement.zoomAndPan') 7617 @DomName('SVGViewElement.zoomAndPan')
7618 @DocsEditable() 7618 @DocsEditable()
7619 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.$zoomAndPan_Sette r(this, value); 7619 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.zoomAndPan_Setter _us(this, value);
7620 7620
7621 } 7621 }
7622 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7622 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7623 // for details. All rights reserved. Use of this source code is governed by a 7623 // for details. All rights reserved. Use of this source code is governed by a
7624 // BSD-style license that can be found in the LICENSE file. 7624 // BSD-style license that can be found in the LICENSE file.
7625 7625
7626 // WARNING: Do not edit - generated code. 7626 // WARNING: Do not edit - generated code.
7627 7627
7628 7628
7629 @DocsEditable() 7629 @DocsEditable()
7630 @DomName('SVGViewSpec') 7630 @DomName('SVGViewSpec')
7631 @Unstable() 7631 @Unstable()
7632 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd Pan { 7632 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd Pan {
7633 // To suppress missing implicit constructor warnings. 7633 // To suppress missing implicit constructor warnings.
7634 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } 7634 factory ViewSpec._() { throw new UnsupportedError("Not supported"); }
7635 7635
7636 @DomName('SVGViewSpec.preserveAspectRatioString') 7636 @DomName('SVGViewSpec.preserveAspectRatioString')
7637 @DocsEditable() 7637 @DocsEditable()
7638 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.$preserveAspec tRatioString_Getter(this); 7638 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.preserveAspect RatioString_Getter(this);
7639 7639
7640 @DomName('SVGViewSpec.transform') 7640 @DomName('SVGViewSpec.transform')
7641 @DocsEditable() 7641 @DocsEditable()
7642 TransformList get transform => _blink.BlinkSVGViewSpec.$transform_Getter(this) ; 7642 TransformList get transform => _blink.BlinkSVGViewSpec.transform_Getter(this);
7643 7643
7644 @DomName('SVGViewSpec.transformString') 7644 @DomName('SVGViewSpec.transformString')
7645 @DocsEditable() 7645 @DocsEditable()
7646 String get transformString => _blink.BlinkSVGViewSpec.$transformString_Getter( this); 7646 String get transformString => _blink.BlinkSVGViewSpec.transformString_Getter(t his);
7647 7647
7648 @DomName('SVGViewSpec.viewBoxString') 7648 @DomName('SVGViewSpec.viewBoxString')
7649 @DocsEditable() 7649 @DocsEditable()
7650 String get viewBoxString => _blink.BlinkSVGViewSpec.$viewBoxString_Getter(this ); 7650 String get viewBoxString => _blink.BlinkSVGViewSpec.viewBoxString_Getter(this) ;
7651 7651
7652 @DomName('SVGViewSpec.viewTarget') 7652 @DomName('SVGViewSpec.viewTarget')
7653 @DocsEditable() 7653 @DocsEditable()
7654 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.$viewTarget_Getter(this); 7654 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.viewTarget_Getter(this);
7655 7655
7656 @DomName('SVGViewSpec.viewTargetString') 7656 @DomName('SVGViewSpec.viewTargetString')
7657 @DocsEditable() 7657 @DocsEditable()
7658 String get viewTargetString => _blink.BlinkSVGViewSpec.$viewTargetString_Gette r(this); 7658 String get viewTargetString => _blink.BlinkSVGViewSpec.viewTargetString_Getter (this);
7659 7659
7660 @DomName('SVGViewSpec.preserveAspectRatio') 7660 @DomName('SVGViewSpec.preserveAspectRatio')
7661 @DocsEditable() 7661 @DocsEditable()
7662 @Experimental() // nonstandard 7662 @Experimental() // nonstandard
7663 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec .$preserveAspectRatio_Getter(this); 7663 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec .preserveAspectRatio_Getter(this);
7664 7664
7665 @DomName('SVGViewSpec.viewBox') 7665 @DomName('SVGViewSpec.viewBox')
7666 @DocsEditable() 7666 @DocsEditable()
7667 @Experimental() // nonstandard 7667 @Experimental() // nonstandard
7668 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.$viewBox_Getter(this); 7668 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.viewBox_Getter(this);
7669 7669
7670 @DomName('SVGViewSpec.zoomAndPan') 7670 @DomName('SVGViewSpec.zoomAndPan')
7671 @DocsEditable() 7671 @DocsEditable()
7672 @Experimental() // nonstandard 7672 @Experimental() // nonstandard
7673 int get zoomAndPan => _blink.BlinkSVGViewSpec.$zoomAndPan_Getter(this); 7673 int get zoomAndPan => _blink.BlinkSVGViewSpec.zoomAndPan_Getter(this);
7674 7674
7675 @DomName('SVGViewSpec.zoomAndPan') 7675 @DomName('SVGViewSpec.zoomAndPan')
7676 @DocsEditable() 7676 @DocsEditable()
7677 @Experimental() // nonstandard 7677 @Experimental() // nonstandard
7678 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.$zoomAndPan_Setter(t his, value); 7678 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.zoomAndPan_Setter_us (this, value);
7679 7679
7680 } 7680 }
7681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7681 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7682 // for details. All rights reserved. Use of this source code is governed by a 7682 // for details. All rights reserved. Use of this source code is governed by a
7683 // BSD-style license that can be found in the LICENSE file. 7683 // BSD-style license that can be found in the LICENSE file.
7684 7684
7685 // WARNING: Do not edit - generated code. 7685 // WARNING: Do not edit - generated code.
7686 7686
7687 7687
7688 @DocsEditable() 7688 @DocsEditable()
(...skipping 10 matching lines...) Expand all
7699 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') 7699 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY')
7700 @DocsEditable() 7700 @DocsEditable()
7701 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 7701 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
7702 7702
7703 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') 7703 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN')
7704 @DocsEditable() 7704 @DocsEditable()
7705 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; 7705 static const int SVG_ZOOMANDPAN_UNKNOWN = 0;
7706 7706
7707 @DomName('SVGZoomAndPan.zoomAndPan') 7707 @DomName('SVGZoomAndPan.zoomAndPan')
7708 @DocsEditable() 7708 @DocsEditable()
7709 int get zoomAndPan => _blink.BlinkSVGZoomAndPan.$zoomAndPan_Getter(this); 7709 int get zoomAndPan => _blink.BlinkSVGZoomAndPan.zoomAndPan_Getter(this);
7710 7710
7711 @DomName('SVGZoomAndPan.zoomAndPan') 7711 @DomName('SVGZoomAndPan.zoomAndPan')
7712 @DocsEditable() 7712 @DocsEditable()
7713 void set zoomAndPan(int value) => _blink.BlinkSVGZoomAndPan.$zoomAndPan_Setter (this, value); 7713 void set zoomAndPan(int value) => _blink.BlinkSVGZoomAndPan.zoomAndPan_Setter_ us(this, value);
7714 7714
7715 } 7715 }
7716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7716 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7717 // for details. All rights reserved. Use of this source code is governed by a 7717 // for details. All rights reserved. Use of this source code is governed by a
7718 // BSD-style license that can be found in the LICENSE file. 7718 // BSD-style license that can be found in the LICENSE file.
7719 7719
7720 // WARNING: Do not edit - generated code. 7720 // WARNING: Do not edit - generated code.
7721 7721
7722 7722
7723 @DocsEditable() 7723 @DocsEditable()
7724 @DomName('SVGZoomEvent') 7724 @DomName('SVGZoomEvent')
7725 @Unstable() 7725 @Unstable()
7726 class ZoomEvent extends UIEvent { 7726 class ZoomEvent extends UIEvent {
7727 // To suppress missing implicit constructor warnings. 7727 // To suppress missing implicit constructor warnings.
7728 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } 7728 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); }
7729 7729
7730 @DomName('SVGZoomEvent.newScale') 7730 @DomName('SVGZoomEvent.newScale')
7731 @DocsEditable() 7731 @DocsEditable()
7732 double get newScale => _blink.BlinkSVGZoomEvent.$newScale_Getter(this); 7732 double get newScale => _blink.BlinkSVGZoomEvent.newScale_Getter(this);
7733 7733
7734 @DomName('SVGZoomEvent.newTranslate') 7734 @DomName('SVGZoomEvent.newTranslate')
7735 @DocsEditable() 7735 @DocsEditable()
7736 Point get newTranslate => _blink.BlinkSVGZoomEvent.$newTranslate_Getter(this); 7736 Point get newTranslate => _blink.BlinkSVGZoomEvent.newTranslate_Getter(this);
7737 7737
7738 @DomName('SVGZoomEvent.previousScale') 7738 @DomName('SVGZoomEvent.previousScale')
7739 @DocsEditable() 7739 @DocsEditable()
7740 double get previousScale => _blink.BlinkSVGZoomEvent.$previousScale_Getter(thi s); 7740 double get previousScale => _blink.BlinkSVGZoomEvent.previousScale_Getter(this );
7741 7741
7742 @DomName('SVGZoomEvent.previousTranslate') 7742 @DomName('SVGZoomEvent.previousTranslate')
7743 @DocsEditable() 7743 @DocsEditable()
7744 Point get previousTranslate => _blink.BlinkSVGZoomEvent.$previousTranslate_Get ter(this); 7744 Point get previousTranslate => _blink.BlinkSVGZoomEvent.previousTranslate_Gett er(this);
7745 7745
7746 @DomName('SVGZoomEvent.zoomRectScreen') 7746 @DomName('SVGZoomEvent.zoomRectScreen')
7747 @DocsEditable() 7747 @DocsEditable()
7748 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.$zoomRectScreen_Getter(thi s); 7748 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.zoomRectScreen_Getter(this );
7749 7749
7750 } 7750 }
7751 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7751 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7752 // for details. All rights reserved. Use of this source code is governed by a 7752 // for details. All rights reserved. Use of this source code is governed by a
7753 // BSD-style license that can be found in the LICENSE file. 7753 // BSD-style license that can be found in the LICENSE file.
7754 7754
7755 // WARNING: Do not edit - generated code. 7755 // WARNING: Do not edit - generated code.
7756 7756
7757 7757
7758 @DocsEditable() 7758 @DocsEditable()
7759 @DomName('SVGElementInstanceList') 7759 @DomName('SVGElementInstanceList')
7760 @Unstable() 7760 @Unstable()
7761 class _ElementInstanceList extends NativeFieldWrapperClass2 with ListMixin<Eleme ntInstance>, ImmutableListMixin<ElementInstance> implements List<ElementInstance > { 7761 class _ElementInstanceList extends NativeFieldWrapperClass2 with ListMixin<Eleme ntInstance>, ImmutableListMixin<ElementInstance> implements List<ElementInstance > {
7762 // To suppress missing implicit constructor warnings. 7762 // To suppress missing implicit constructor warnings.
7763 factory _ElementInstanceList._() { throw new UnsupportedError("Not supported") ; } 7763 factory _ElementInstanceList._() { throw new UnsupportedError("Not supported") ; }
7764 7764
7765 @DomName('SVGElementInstanceList.length') 7765 @DomName('SVGElementInstanceList.length')
7766 @DocsEditable() 7766 @DocsEditable()
7767 int get length => _blink.BlinkSVGElementInstanceList.$length_Getter(this); 7767 int get length => _blink.BlinkSVGElementInstanceList.length_Getter(this);
7768 7768
7769 ElementInstance operator[](int index) { 7769 ElementInstance operator[](int index) {
7770 if (index < 0 || index >= length) 7770 if (index < 0 || index >= length)
7771 throw new RangeError.range(index, 0, length); 7771 throw new RangeError.range(index, 0, length);
7772 return _blink.BlinkSVGElementInstanceList.$NativeIndexed_Getter(this, index) ; 7772 return _blink.BlinkSVGElementInstanceList.item_Callback_ul(this, index);
7773 } 7773 }
7774 7774
7775 ElementInstance _nativeIndexedGetter(int index) => _blink.BlinkSVGElementInsta nceList.$NativeIndexed_Getter(this, index); 7775 ElementInstance _nativeIndexedGetter(int index) => _blink.BlinkSVGElementInsta nceList.item_Callback_ul(this, index);
7776 7776
7777 void operator[]=(int index, ElementInstance value) { 7777 void operator[]=(int index, ElementInstance value) {
7778 throw new UnsupportedError("Cannot assign element of immutable List."); 7778 throw new UnsupportedError("Cannot assign element of immutable List.");
7779 } 7779 }
7780 // -- start List<ElementInstance> mixins. 7780 // -- start List<ElementInstance> mixins.
7781 // ElementInstance is the element type. 7781 // ElementInstance is the element type.
7782 7782
7783 7783
7784 void set length(int value) { 7784 void set length(int value) {
7785 throw new UnsupportedError("Cannot resize immutable List."); 7785 throw new UnsupportedError("Cannot resize immutable List.");
(...skipping 21 matching lines...) Expand all
7807 } 7807 }
7808 if (len == 0) throw new StateError("No elements"); 7808 if (len == 0) throw new StateError("No elements");
7809 throw new StateError("More than one element"); 7809 throw new StateError("More than one element");
7810 } 7810 }
7811 7811
7812 ElementInstance elementAt(int index) => this[index]; 7812 ElementInstance elementAt(int index) => this[index];
7813 // -- end List<ElementInstance> mixins. 7813 // -- end List<ElementInstance> mixins.
7814 7814
7815 @DomName('SVGElementInstanceList.item') 7815 @DomName('SVGElementInstanceList.item')
7816 @DocsEditable() 7816 @DocsEditable()
7817 ElementInstance item(int index) => _blink.BlinkSVGElementInstanceList.$item_Ca llback(this, index); 7817 ElementInstance item(int index) => _blink.BlinkSVGElementInstanceList.item_Cal lback_ul(this, index);
7818 7818
7819 } 7819 }
7820 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7820 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7821 // for details. All rights reserved. Use of this source code is governed by a 7821 // for details. All rights reserved. Use of this source code is governed by a
7822 // BSD-style license that can be found in the LICENSE file. 7822 // BSD-style license that can be found in the LICENSE file.
7823 7823
7824 // WARNING: Do not edit - generated code. 7824 // WARNING: Do not edit - generated code.
7825 7825
7826 7826
7827 @DocsEditable() 7827 @DocsEditable()
(...skipping 20 matching lines...) Expand all
7848 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') 7848 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
7849 @DocsEditable() 7849 @DocsEditable()
7850 static const int SVG_SPREADMETHOD_REPEAT = 3; 7850 static const int SVG_SPREADMETHOD_REPEAT = 3;
7851 7851
7852 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN') 7852 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN')
7853 @DocsEditable() 7853 @DocsEditable()
7854 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 7854 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
7855 7855
7856 @DomName('SVGGradientElement.gradientTransform') 7856 @DomName('SVGGradientElement.gradientTransform')
7857 @DocsEditable() 7857 @DocsEditable()
7858 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement. $gradientTransform_Getter(this); 7858 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement. gradientTransform_Getter(this);
7859 7859
7860 @DomName('SVGGradientElement.gradientUnits') 7860 @DomName('SVGGradientElement.gradientUnits')
7861 @DocsEditable() 7861 @DocsEditable()
7862 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.$gradi entUnits_Getter(this); 7862 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.gradie ntUnits_Getter(this);
7863 7863
7864 @DomName('SVGGradientElement.spreadMethod') 7864 @DomName('SVGGradientElement.spreadMethod')
7865 @DocsEditable() 7865 @DocsEditable()
7866 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.$spread Method_Getter(this); 7866 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.spreadM ethod_Getter(this);
7867 7867
7868 @DomName('SVGGradientElement.href') 7868 @DomName('SVGGradientElement.href')
7869 @DocsEditable() 7869 @DocsEditable()
7870 AnimatedString get href => _blink.BlinkSVGGradientElement.$href_Getter(this); 7870 AnimatedString get href => _blink.BlinkSVGGradientElement.href_Getter(this);
7871 7871
7872 } 7872 }
7873 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7873 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7874 // for details. All rights reserved. Use of this source code is governed by a 7874 // for details. All rights reserved. Use of this source code is governed by a
7875 // BSD-style license that can be found in the LICENSE file. 7875 // BSD-style license that can be found in the LICENSE file.
7876 7876
7877 // WARNING: Do not edit - generated code. 7877 // WARNING: Do not edit - generated code.
7878 7878
7879 7879
7880 @DocsEditable() 7880 @DocsEditable()
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
8242 @DocsEditable() 8242 @DocsEditable()
8243 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8243 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8244 /** 8244 /**
8245 * Constructor instantiated by the DOM when a custom element has been created. 8245 * Constructor instantiated by the DOM when a custom element has been created.
8246 * 8246 *
8247 * This can only be called by subclasses from their created constructor. 8247 * This can only be called by subclasses from their created constructor.
8248 */ 8248 */
8249 _SVGVKernElement.created() : super.created(); 8249 _SVGVKernElement.created() : super.created();
8250 8250
8251 } 8251 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698