| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
| 3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
| 4 * | 4 * |
| 5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
| 6 * refer to the | 6 * refer to the |
| 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
| 8 */ | 8 */ |
| 9 library dart.dom.svg; | 9 library dart.dom.svg; |
| 10 | 10 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 @DocsEditable() | 191 @DocsEditable() |
| 192 @DomName('SVGAElement') | 192 @DomName('SVGAElement') |
| 193 @Unstable() | 193 @Unstable() |
| 194 class AElement extends GraphicsElement implements UriReference { | 194 class AElement extends GraphicsElement implements UriReference { |
| 195 // To suppress missing implicit constructor warnings. | 195 // To suppress missing implicit constructor warnings. |
| 196 factory AElement._() { throw new UnsupportedError("Not supported"); } | 196 factory AElement._() { throw new UnsupportedError("Not supported"); } |
| 197 | 197 |
| 198 @DomName('SVGAElement.SVGAElement') | 198 @DomName('SVGAElement.SVGAElement') |
| 199 @DocsEditable() | 199 @DocsEditable() |
| 200 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); | 200 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); |
| 201 | |
| 202 | |
| 203 static AElement internalCreateAElement() { | |
| 204 return new AElement._internalWrap(); | |
| 205 } | |
| 206 | |
| 207 factory AElement._internalWrap() { | |
| 208 return new AElement._internal(); | |
| 209 } | |
| 210 | |
| 211 AElement._internal() : super._internal(); | |
| 212 | |
| 213 /** | 201 /** |
| 214 * Constructor instantiated by the DOM when a custom element has been created. | 202 * Constructor instantiated by the DOM when a custom element has been created. |
| 215 * | 203 * |
| 216 * This can only be called by subclasses from their created constructor. | 204 * This can only be called by subclasses from their created constructor. |
| 217 */ | 205 */ |
| 218 AElement.created() : super.created(); | 206 AElement.created() : super.created(); |
| 219 | 207 |
| 220 @DomName('SVGAElement.target') | 208 @DomName('SVGAElement.target') |
| 221 @DocsEditable() | 209 @DocsEditable() |
| 222 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); | 210 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 239 @SupportedBrowser(SupportedBrowser.FIREFOX) | 227 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 240 @SupportedBrowser(SupportedBrowser.SAFARI) | 228 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 241 @Unstable() | 229 @Unstable() |
| 242 class AltGlyphElement extends TextPositioningElement implements UriReference { | 230 class AltGlyphElement extends TextPositioningElement implements UriReference { |
| 243 // To suppress missing implicit constructor warnings. | 231 // To suppress missing implicit constructor warnings. |
| 244 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } | 232 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 245 | 233 |
| 246 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') | 234 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') |
| 247 @DocsEditable() | 235 @DocsEditable() |
| 248 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); | 236 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); |
| 249 | |
| 250 | |
| 251 static AltGlyphElement internalCreateAltGlyphElement() { | |
| 252 return new AltGlyphElement._internalWrap(); | |
| 253 } | |
| 254 | |
| 255 factory AltGlyphElement._internalWrap() { | |
| 256 return new AltGlyphElement._internal(); | |
| 257 } | |
| 258 | |
| 259 AltGlyphElement._internal() : super._internal(); | |
| 260 | |
| 261 /** | 237 /** |
| 262 * Constructor instantiated by the DOM when a custom element has been created. | 238 * Constructor instantiated by the DOM when a custom element has been created. |
| 263 * | 239 * |
| 264 * This can only be called by subclasses from their created constructor. | 240 * This can only be called by subclasses from their created constructor. |
| 265 */ | 241 */ |
| 266 AltGlyphElement.created() : super.created(); | 242 AltGlyphElement.created() : super.created(); |
| 267 | 243 |
| 268 /// Checks if this type is supported on the current platform. | 244 /// Checks if this type is supported on the current platform. |
| 269 static bool get supported => true; | 245 static bool get supported => true; |
| 270 | 246 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 296 // WARNING: Do not edit - generated code. | 272 // WARNING: Do not edit - generated code. |
| 297 | 273 |
| 298 | 274 |
| 299 @DocsEditable() | 275 @DocsEditable() |
| 300 @DomName('SVGAngle') | 276 @DomName('SVGAngle') |
| 301 @Unstable() | 277 @Unstable() |
| 302 class Angle extends NativeFieldWrapperClass2 { | 278 class Angle extends NativeFieldWrapperClass2 { |
| 303 // To suppress missing implicit constructor warnings. | 279 // To suppress missing implicit constructor warnings. |
| 304 factory Angle._() { throw new UnsupportedError("Not supported"); } | 280 factory Angle._() { throw new UnsupportedError("Not supported"); } |
| 305 | 281 |
| 306 static Angle internalCreateAngle() { | |
| 307 return new Angle._internalWrap(); | |
| 308 } | |
| 309 | |
| 310 JsObject blink_jsObject = null; | |
| 311 | |
| 312 factory Angle._internalWrap() { | |
| 313 return new Angle._internal(); | |
| 314 } | |
| 315 | |
| 316 Angle._internal() { } | |
| 317 | |
| 318 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 319 | |
| 320 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 282 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
| 321 @DocsEditable() | 283 @DocsEditable() |
| 322 static const int SVG_ANGLETYPE_DEG = 2; | 284 static const int SVG_ANGLETYPE_DEG = 2; |
| 323 | 285 |
| 324 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') | 286 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') |
| 325 @DocsEditable() | 287 @DocsEditable() |
| 326 static const int SVG_ANGLETYPE_GRAD = 4; | 288 static const int SVG_ANGLETYPE_GRAD = 4; |
| 327 | 289 |
| 328 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') | 290 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') |
| 329 @DocsEditable() | 291 @DocsEditable() |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 @SupportedBrowser(SupportedBrowser.FIREFOX) | 349 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 388 @SupportedBrowser(SupportedBrowser.SAFARI) | 350 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 389 @Unstable() | 351 @Unstable() |
| 390 class AnimateElement extends AnimationElement { | 352 class AnimateElement extends AnimationElement { |
| 391 // To suppress missing implicit constructor warnings. | 353 // To suppress missing implicit constructor warnings. |
| 392 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } | 354 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } |
| 393 | 355 |
| 394 @DomName('SVGAnimateElement.SVGAnimateElement') | 356 @DomName('SVGAnimateElement.SVGAnimateElement') |
| 395 @DocsEditable() | 357 @DocsEditable() |
| 396 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); | 358 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); |
| 397 | |
| 398 | |
| 399 static AnimateElement internalCreateAnimateElement() { | |
| 400 return new AnimateElement._internalWrap(); | |
| 401 } | |
| 402 | |
| 403 factory AnimateElement._internalWrap() { | |
| 404 return new AnimateElement._internal(); | |
| 405 } | |
| 406 | |
| 407 AnimateElement._internal() : super._internal(); | |
| 408 | |
| 409 /** | 359 /** |
| 410 * Constructor instantiated by the DOM when a custom element has been created. | 360 * Constructor instantiated by the DOM when a custom element has been created. |
| 411 * | 361 * |
| 412 * This can only be called by subclasses from their created constructor. | 362 * This can only be called by subclasses from their created constructor. |
| 413 */ | 363 */ |
| 414 AnimateElement.created() : super.created(); | 364 AnimateElement.created() : super.created(); |
| 415 | 365 |
| 416 /// Checks if this type is supported on the current platform. | 366 /// Checks if this type is supported on the current platform. |
| 417 static bool get supported => true; | 367 static bool get supported => true; |
| 418 | 368 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 430 @SupportedBrowser(SupportedBrowser.FIREFOX) | 380 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 431 @SupportedBrowser(SupportedBrowser.SAFARI) | 381 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 432 @Unstable() | 382 @Unstable() |
| 433 class AnimateMotionElement extends AnimationElement { | 383 class AnimateMotionElement extends AnimationElement { |
| 434 // To suppress missing implicit constructor warnings. | 384 // To suppress missing implicit constructor warnings. |
| 435 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } | 385 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } |
| 436 | 386 |
| 437 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') | 387 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') |
| 438 @DocsEditable() | 388 @DocsEditable() |
| 439 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); | 389 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); |
| 440 | |
| 441 | |
| 442 static AnimateMotionElement internalCreateAnimateMotionElement() { | |
| 443 return new AnimateMotionElement._internalWrap(); | |
| 444 } | |
| 445 | |
| 446 factory AnimateMotionElement._internalWrap() { | |
| 447 return new AnimateMotionElement._internal(); | |
| 448 } | |
| 449 | |
| 450 AnimateMotionElement._internal() : super._internal(); | |
| 451 | |
| 452 /** | 390 /** |
| 453 * Constructor instantiated by the DOM when a custom element has been created. | 391 * Constructor instantiated by the DOM when a custom element has been created. |
| 454 * | 392 * |
| 455 * This can only be called by subclasses from their created constructor. | 393 * This can only be called by subclasses from their created constructor. |
| 456 */ | 394 */ |
| 457 AnimateMotionElement.created() : super.created(); | 395 AnimateMotionElement.created() : super.created(); |
| 458 | 396 |
| 459 /// Checks if this type is supported on the current platform. | 397 /// Checks if this type is supported on the current platform. |
| 460 static bool get supported => true; | 398 static bool get supported => true; |
| 461 | 399 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 473 @SupportedBrowser(SupportedBrowser.FIREFOX) | 411 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 474 @SupportedBrowser(SupportedBrowser.SAFARI) | 412 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 475 @Unstable() | 413 @Unstable() |
| 476 class AnimateTransformElement extends AnimationElement { | 414 class AnimateTransformElement extends AnimationElement { |
| 477 // To suppress missing implicit constructor warnings. | 415 // To suppress missing implicit constructor warnings. |
| 478 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } | 416 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 479 | 417 |
| 480 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') | 418 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') |
| 481 @DocsEditable() | 419 @DocsEditable() |
| 482 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); | 420 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); |
| 483 | |
| 484 | |
| 485 static AnimateTransformElement internalCreateAnimateTransformElement() { | |
| 486 return new AnimateTransformElement._internalWrap(); | |
| 487 } | |
| 488 | |
| 489 factory AnimateTransformElement._internalWrap() { | |
| 490 return new AnimateTransformElement._internal(); | |
| 491 } | |
| 492 | |
| 493 AnimateTransformElement._internal() : super._internal(); | |
| 494 | |
| 495 /** | 421 /** |
| 496 * Constructor instantiated by the DOM when a custom element has been created. | 422 * Constructor instantiated by the DOM when a custom element has been created. |
| 497 * | 423 * |
| 498 * This can only be called by subclasses from their created constructor. | 424 * This can only be called by subclasses from their created constructor. |
| 499 */ | 425 */ |
| 500 AnimateTransformElement.created() : super.created(); | 426 AnimateTransformElement.created() : super.created(); |
| 501 | 427 |
| 502 /// Checks if this type is supported on the current platform. | 428 /// Checks if this type is supported on the current platform. |
| 503 static bool get supported => true; | 429 static bool get supported => true; |
| 504 | 430 |
| 505 } | 431 } |
| 506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 507 // for details. All rights reserved. Use of this source code is governed by a | 433 // for details. All rights reserved. Use of this source code is governed by a |
| 508 // BSD-style license that can be found in the LICENSE file. | 434 // BSD-style license that can be found in the LICENSE file. |
| 509 | 435 |
| 510 // WARNING: Do not edit - generated code. | 436 // WARNING: Do not edit - generated code. |
| 511 | 437 |
| 512 | 438 |
| 513 @DocsEditable() | 439 @DocsEditable() |
| 514 @DomName('SVGAnimatedAngle') | 440 @DomName('SVGAnimatedAngle') |
| 515 @Unstable() | 441 @Unstable() |
| 516 class AnimatedAngle extends NativeFieldWrapperClass2 { | 442 class AnimatedAngle extends NativeFieldWrapperClass2 { |
| 517 // To suppress missing implicit constructor warnings. | 443 // To suppress missing implicit constructor warnings. |
| 518 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 444 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
| 519 | 445 |
| 520 static AnimatedAngle internalCreateAnimatedAngle() { | |
| 521 return new AnimatedAngle._internalWrap(); | |
| 522 } | |
| 523 | |
| 524 JsObject blink_jsObject = null; | |
| 525 | |
| 526 factory AnimatedAngle._internalWrap() { | |
| 527 return new AnimatedAngle._internal(); | |
| 528 } | |
| 529 | |
| 530 AnimatedAngle._internal() { } | |
| 531 | |
| 532 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 533 | |
| 534 @DomName('SVGAnimatedAngle.animVal') | 446 @DomName('SVGAnimatedAngle.animVal') |
| 535 @DocsEditable() | 447 @DocsEditable() |
| 536 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); | 448 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
| 537 | 449 |
| 538 @DomName('SVGAnimatedAngle.baseVal') | 450 @DomName('SVGAnimatedAngle.baseVal') |
| 539 @DocsEditable() | 451 @DocsEditable() |
| 540 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); | 452 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); |
| 541 | 453 |
| 542 } | 454 } |
| 543 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 455 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 544 // for details. All rights reserved. Use of this source code is governed by a | 456 // for details. All rights reserved. Use of this source code is governed by a |
| 545 // BSD-style license that can be found in the LICENSE file. | 457 // BSD-style license that can be found in the LICENSE file. |
| 546 | 458 |
| 547 // WARNING: Do not edit - generated code. | 459 // WARNING: Do not edit - generated code. |
| 548 | 460 |
| 549 | 461 |
| 550 @DocsEditable() | 462 @DocsEditable() |
| 551 @DomName('SVGAnimatedBoolean') | 463 @DomName('SVGAnimatedBoolean') |
| 552 @Unstable() | 464 @Unstable() |
| 553 class AnimatedBoolean extends NativeFieldWrapperClass2 { | 465 class AnimatedBoolean extends NativeFieldWrapperClass2 { |
| 554 // To suppress missing implicit constructor warnings. | 466 // To suppress missing implicit constructor warnings. |
| 555 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 467 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
| 556 | 468 |
| 557 static AnimatedBoolean internalCreateAnimatedBoolean() { | |
| 558 return new AnimatedBoolean._internalWrap(); | |
| 559 } | |
| 560 | |
| 561 JsObject blink_jsObject = null; | |
| 562 | |
| 563 factory AnimatedBoolean._internalWrap() { | |
| 564 return new AnimatedBoolean._internal(); | |
| 565 } | |
| 566 | |
| 567 AnimatedBoolean._internal() { } | |
| 568 | |
| 569 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 570 | |
| 571 @DomName('SVGAnimatedBoolean.animVal') | 469 @DomName('SVGAnimatedBoolean.animVal') |
| 572 @DocsEditable() | 470 @DocsEditable() |
| 573 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); | 471 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); |
| 574 | 472 |
| 575 @DomName('SVGAnimatedBoolean.baseVal') | 473 @DomName('SVGAnimatedBoolean.baseVal') |
| 576 @DocsEditable() | 474 @DocsEditable() |
| 577 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); | 475 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); |
| 578 | 476 |
| 579 @DomName('SVGAnimatedBoolean.baseVal') | 477 @DomName('SVGAnimatedBoolean.baseVal') |
| 580 @DocsEditable() | 478 @DocsEditable() |
| 581 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(unwrap_jso(this), value); | 479 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(unwrap_jso(this), value); |
| 582 | 480 |
| 583 } | 481 } |
| 584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 482 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 585 // for details. All rights reserved. Use of this source code is governed by a | 483 // for details. All rights reserved. Use of this source code is governed by a |
| 586 // BSD-style license that can be found in the LICENSE file. | 484 // BSD-style license that can be found in the LICENSE file. |
| 587 | 485 |
| 588 // WARNING: Do not edit - generated code. | 486 // WARNING: Do not edit - generated code. |
| 589 | 487 |
| 590 | 488 |
| 591 @DocsEditable() | 489 @DocsEditable() |
| 592 @DomName('SVGAnimatedEnumeration') | 490 @DomName('SVGAnimatedEnumeration') |
| 593 @Unstable() | 491 @Unstable() |
| 594 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 492 class AnimatedEnumeration extends NativeFieldWrapperClass2 { |
| 595 // To suppress missing implicit constructor warnings. | 493 // To suppress missing implicit constructor warnings. |
| 596 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 494 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
| 597 | 495 |
| 598 static AnimatedEnumeration internalCreateAnimatedEnumeration() { | |
| 599 return new AnimatedEnumeration._internalWrap(); | |
| 600 } | |
| 601 | |
| 602 JsObject blink_jsObject = null; | |
| 603 | |
| 604 factory AnimatedEnumeration._internalWrap() { | |
| 605 return new AnimatedEnumeration._internal(); | |
| 606 } | |
| 607 | |
| 608 AnimatedEnumeration._internal() { } | |
| 609 | |
| 610 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 611 | |
| 612 @DomName('SVGAnimatedEnumeration.animVal') | 496 @DomName('SVGAnimatedEnumeration.animVal') |
| 613 @DocsEditable() | 497 @DocsEditable() |
| 614 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); | 498 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); |
| 615 | 499 |
| 616 @DomName('SVGAnimatedEnumeration.baseVal') | 500 @DomName('SVGAnimatedEnumeration.baseVal') |
| 617 @DocsEditable() | 501 @DocsEditable() |
| 618 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); | 502 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); |
| 619 | 503 |
| 620 @DomName('SVGAnimatedEnumeration.baseVal') | 504 @DomName('SVGAnimatedEnumeration.baseVal') |
| 621 @DocsEditable() | 505 @DocsEditable() |
| 622 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(unwrap_jso(this), value); | 506 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(unwrap_jso(this), value); |
| 623 | 507 |
| 624 } | 508 } |
| 625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 509 // 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 | 510 // 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. | 511 // BSD-style license that can be found in the LICENSE file. |
| 628 | 512 |
| 629 // WARNING: Do not edit - generated code. | 513 // WARNING: Do not edit - generated code. |
| 630 | 514 |
| 631 | 515 |
| 632 @DocsEditable() | 516 @DocsEditable() |
| 633 @DomName('SVGAnimatedInteger') | 517 @DomName('SVGAnimatedInteger') |
| 634 @Unstable() | 518 @Unstable() |
| 635 class AnimatedInteger extends NativeFieldWrapperClass2 { | 519 class AnimatedInteger extends NativeFieldWrapperClass2 { |
| 636 // To suppress missing implicit constructor warnings. | 520 // To suppress missing implicit constructor warnings. |
| 637 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 521 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
| 638 | 522 |
| 639 static AnimatedInteger internalCreateAnimatedInteger() { | |
| 640 return new AnimatedInteger._internalWrap(); | |
| 641 } | |
| 642 | |
| 643 JsObject blink_jsObject = null; | |
| 644 | |
| 645 factory AnimatedInteger._internalWrap() { | |
| 646 return new AnimatedInteger._internal(); | |
| 647 } | |
| 648 | |
| 649 AnimatedInteger._internal() { } | |
| 650 | |
| 651 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 652 | |
| 653 @DomName('SVGAnimatedInteger.animVal') | 523 @DomName('SVGAnimatedInteger.animVal') |
| 654 @DocsEditable() | 524 @DocsEditable() |
| 655 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); | 525 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); |
| 656 | 526 |
| 657 @DomName('SVGAnimatedInteger.baseVal') | 527 @DomName('SVGAnimatedInteger.baseVal') |
| 658 @DocsEditable() | 528 @DocsEditable() |
| 659 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); | 529 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); |
| 660 | 530 |
| 661 @DomName('SVGAnimatedInteger.baseVal') | 531 @DomName('SVGAnimatedInteger.baseVal') |
| 662 @DocsEditable() | 532 @DocsEditable() |
| 663 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(unwrap_jso(this), value); | 533 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(unwrap_jso(this), value); |
| 664 | 534 |
| 665 } | 535 } |
| 666 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 667 // for details. All rights reserved. Use of this source code is governed by a | 537 // for details. All rights reserved. Use of this source code is governed by a |
| 668 // BSD-style license that can be found in the LICENSE file. | 538 // BSD-style license that can be found in the LICENSE file. |
| 669 | 539 |
| 670 // WARNING: Do not edit - generated code. | 540 // WARNING: Do not edit - generated code. |
| 671 | 541 |
| 672 | 542 |
| 673 @DocsEditable() | 543 @DocsEditable() |
| 674 @DomName('SVGAnimatedLength') | 544 @DomName('SVGAnimatedLength') |
| 675 @Unstable() | 545 @Unstable() |
| 676 class AnimatedLength extends NativeFieldWrapperClass2 { | 546 class AnimatedLength extends NativeFieldWrapperClass2 { |
| 677 // To suppress missing implicit constructor warnings. | 547 // To suppress missing implicit constructor warnings. |
| 678 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 548 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
| 679 | 549 |
| 680 static AnimatedLength internalCreateAnimatedLength() { | |
| 681 return new AnimatedLength._internalWrap(); | |
| 682 } | |
| 683 | |
| 684 JsObject blink_jsObject = null; | |
| 685 | |
| 686 factory AnimatedLength._internalWrap() { | |
| 687 return new AnimatedLength._internal(); | |
| 688 } | |
| 689 | |
| 690 AnimatedLength._internal() { } | |
| 691 | |
| 692 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 693 | |
| 694 @DomName('SVGAnimatedLength.animVal') | 550 @DomName('SVGAnimatedLength.animVal') |
| 695 @DocsEditable() | 551 @DocsEditable() |
| 696 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); | 552 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
| 697 | 553 |
| 698 @DomName('SVGAnimatedLength.baseVal') | 554 @DomName('SVGAnimatedLength.baseVal') |
| 699 @DocsEditable() | 555 @DocsEditable() |
| 700 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); | 556 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); |
| 701 | 557 |
| 702 } | 558 } |
| 703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 559 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 704 // for details. All rights reserved. Use of this source code is governed by a | 560 // for details. All rights reserved. Use of this source code is governed by a |
| 705 // BSD-style license that can be found in the LICENSE file. | 561 // BSD-style license that can be found in the LICENSE file. |
| 706 | 562 |
| 707 // WARNING: Do not edit - generated code. | 563 // WARNING: Do not edit - generated code. |
| 708 | 564 |
| 709 | 565 |
| 710 @DocsEditable() | 566 @DocsEditable() |
| 711 @DomName('SVGAnimatedLengthList') | 567 @DomName('SVGAnimatedLengthList') |
| 712 @Unstable() | 568 @Unstable() |
| 713 class AnimatedLengthList extends NativeFieldWrapperClass2 { | 569 class AnimatedLengthList extends NativeFieldWrapperClass2 { |
| 714 // To suppress missing implicit constructor warnings. | 570 // To suppress missing implicit constructor warnings. |
| 715 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 571 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
| 716 | 572 |
| 717 static AnimatedLengthList internalCreateAnimatedLengthList() { | |
| 718 return new AnimatedLengthList._internalWrap(); | |
| 719 } | |
| 720 | |
| 721 JsObject blink_jsObject = null; | |
| 722 | |
| 723 factory AnimatedLengthList._internalWrap() { | |
| 724 return new AnimatedLengthList._internal(); | |
| 725 } | |
| 726 | |
| 727 AnimatedLengthList._internal() { } | |
| 728 | |
| 729 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 730 | |
| 731 @DomName('SVGAnimatedLengthList.animVal') | 573 @DomName('SVGAnimatedLengthList.animVal') |
| 732 @DocsEditable() | 574 @DocsEditable() |
| 733 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); | 575 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 734 | 576 |
| 735 @DomName('SVGAnimatedLengthList.baseVal') | 577 @DomName('SVGAnimatedLengthList.baseVal') |
| 736 @DocsEditable() | 578 @DocsEditable() |
| 737 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); | 579 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 738 | 580 |
| 739 } | 581 } |
| 740 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 582 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 741 // for details. All rights reserved. Use of this source code is governed by a | 583 // for details. All rights reserved. Use of this source code is governed by a |
| 742 // BSD-style license that can be found in the LICENSE file. | 584 // BSD-style license that can be found in the LICENSE file. |
| 743 | 585 |
| 744 // WARNING: Do not edit - generated code. | 586 // WARNING: Do not edit - generated code. |
| 745 | 587 |
| 746 | 588 |
| 747 @DocsEditable() | 589 @DocsEditable() |
| 748 @DomName('SVGAnimatedNumber') | 590 @DomName('SVGAnimatedNumber') |
| 749 @Unstable() | 591 @Unstable() |
| 750 class AnimatedNumber extends NativeFieldWrapperClass2 { | 592 class AnimatedNumber extends NativeFieldWrapperClass2 { |
| 751 // To suppress missing implicit constructor warnings. | 593 // To suppress missing implicit constructor warnings. |
| 752 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 594 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
| 753 | 595 |
| 754 static AnimatedNumber internalCreateAnimatedNumber() { | |
| 755 return new AnimatedNumber._internalWrap(); | |
| 756 } | |
| 757 | |
| 758 JsObject blink_jsObject = null; | |
| 759 | |
| 760 factory AnimatedNumber._internalWrap() { | |
| 761 return new AnimatedNumber._internal(); | |
| 762 } | |
| 763 | |
| 764 AnimatedNumber._internal() { } | |
| 765 | |
| 766 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 767 | |
| 768 @DomName('SVGAnimatedNumber.animVal') | 596 @DomName('SVGAnimatedNumber.animVal') |
| 769 @DocsEditable() | 597 @DocsEditable() |
| 770 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u
nwrap_jso(this)); | 598 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 771 | 599 |
| 772 @DomName('SVGAnimatedNumber.baseVal') | 600 @DomName('SVGAnimatedNumber.baseVal') |
| 773 @DocsEditable() | 601 @DocsEditable() |
| 774 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); | 602 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); |
| 775 | 603 |
| 776 @DomName('SVGAnimatedNumber.baseVal') | 604 @DomName('SVGAnimatedNumber.baseVal') |
| 777 @DocsEditable() | 605 @DocsEditable() |
| 778 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(unwrap_jso(this), value); | 606 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(unwrap_jso(this), value); |
| 779 | 607 |
| 780 } | 608 } |
| 781 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 782 // for details. All rights reserved. Use of this source code is governed by a | 610 // for details. All rights reserved. Use of this source code is governed by a |
| 783 // BSD-style license that can be found in the LICENSE file. | 611 // BSD-style license that can be found in the LICENSE file. |
| 784 | 612 |
| 785 // WARNING: Do not edit - generated code. | 613 // WARNING: Do not edit - generated code. |
| 786 | 614 |
| 787 | 615 |
| 788 @DocsEditable() | 616 @DocsEditable() |
| 789 @DomName('SVGAnimatedNumberList') | 617 @DomName('SVGAnimatedNumberList') |
| 790 @Unstable() | 618 @Unstable() |
| 791 class AnimatedNumberList extends NativeFieldWrapperClass2 { | 619 class AnimatedNumberList extends NativeFieldWrapperClass2 { |
| 792 // To suppress missing implicit constructor warnings. | 620 // To suppress missing implicit constructor warnings. |
| 793 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 621 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
| 794 | 622 |
| 795 static AnimatedNumberList internalCreateAnimatedNumberList() { | |
| 796 return new AnimatedNumberList._internalWrap(); | |
| 797 } | |
| 798 | |
| 799 JsObject blink_jsObject = null; | |
| 800 | |
| 801 factory AnimatedNumberList._internalWrap() { | |
| 802 return new AnimatedNumberList._internal(); | |
| 803 } | |
| 804 | |
| 805 AnimatedNumberList._internal() { } | |
| 806 | |
| 807 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 808 | |
| 809 @DomName('SVGAnimatedNumberList.animVal') | 623 @DomName('SVGAnimatedNumberList.animVal') |
| 810 @DocsEditable() | 624 @DocsEditable() |
| 811 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); | 625 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 812 | 626 |
| 813 @DomName('SVGAnimatedNumberList.baseVal') | 627 @DomName('SVGAnimatedNumberList.baseVal') |
| 814 @DocsEditable() | 628 @DocsEditable() |
| 815 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); | 629 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 816 | 630 |
| 817 } | 631 } |
| 818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 632 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 819 // for details. All rights reserved. Use of this source code is governed by a | 633 // for details. All rights reserved. Use of this source code is governed by a |
| 820 // BSD-style license that can be found in the LICENSE file. | 634 // BSD-style license that can be found in the LICENSE file. |
| 821 | 635 |
| 822 // WARNING: Do not edit - generated code. | 636 // WARNING: Do not edit - generated code. |
| 823 | 637 |
| 824 | 638 |
| 825 @DocsEditable() | 639 @DocsEditable() |
| 826 @DomName('SVGAnimatedPreserveAspectRatio') | 640 @DomName('SVGAnimatedPreserveAspectRatio') |
| 827 @Unstable() | 641 @Unstable() |
| 828 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { | 642 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 829 // To suppress missing implicit constructor warnings. | 643 // To suppress missing implicit constructor warnings. |
| 830 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 644 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
| 831 | 645 |
| 832 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ | |
| 833 return new AnimatedPreserveAspectRatio._internalWrap(); | |
| 834 } | |
| 835 | |
| 836 JsObject blink_jsObject = null; | |
| 837 | |
| 838 factory AnimatedPreserveAspectRatio._internalWrap() { | |
| 839 return new AnimatedPreserveAspectRatio._internal(); | |
| 840 } | |
| 841 | |
| 842 AnimatedPreserveAspectRatio._internal() { } | |
| 843 | |
| 844 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 845 | |
| 846 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 646 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
| 847 @DocsEditable() | 647 @DocsEditable() |
| 848 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); | 648 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
| 849 | 649 |
| 850 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 650 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
| 851 @DocsEditable() | 651 @DocsEditable() |
| 852 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); | 652 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); |
| 853 | 653 |
| 854 } | 654 } |
| 855 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 655 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 856 // for details. All rights reserved. Use of this source code is governed by a | 656 // for details. All rights reserved. Use of this source code is governed by a |
| 857 // BSD-style license that can be found in the LICENSE file. | 657 // BSD-style license that can be found in the LICENSE file. |
| 858 | 658 |
| 859 // WARNING: Do not edit - generated code. | 659 // WARNING: Do not edit - generated code. |
| 860 | 660 |
| 861 | 661 |
| 862 @DocsEditable() | 662 @DocsEditable() |
| 863 @DomName('SVGAnimatedRect') | 663 @DomName('SVGAnimatedRect') |
| 864 @Unstable() | 664 @Unstable() |
| 865 class AnimatedRect extends NativeFieldWrapperClass2 { | 665 class AnimatedRect extends NativeFieldWrapperClass2 { |
| 866 // To suppress missing implicit constructor warnings. | 666 // To suppress missing implicit constructor warnings. |
| 867 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 667 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
| 868 | 668 |
| 869 static AnimatedRect internalCreateAnimatedRect() { | |
| 870 return new AnimatedRect._internalWrap(); | |
| 871 } | |
| 872 | |
| 873 JsObject blink_jsObject = null; | |
| 874 | |
| 875 factory AnimatedRect._internalWrap() { | |
| 876 return new AnimatedRect._internal(); | |
| 877 } | |
| 878 | |
| 879 AnimatedRect._internal() { } | |
| 880 | |
| 881 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 882 | |
| 883 @DomName('SVGAnimatedRect.animVal') | 669 @DomName('SVGAnimatedRect.animVal') |
| 884 @DocsEditable() | 670 @DocsEditable() |
| 885 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); | 671 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
| 886 | 672 |
| 887 @DomName('SVGAnimatedRect.baseVal') | 673 @DomName('SVGAnimatedRect.baseVal') |
| 888 @DocsEditable() | 674 @DocsEditable() |
| 889 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); | 675 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); |
| 890 | 676 |
| 891 } | 677 } |
| 892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 893 // for details. All rights reserved. Use of this source code is governed by a | 679 // for details. All rights reserved. Use of this source code is governed by a |
| 894 // BSD-style license that can be found in the LICENSE file. | 680 // BSD-style license that can be found in the LICENSE file. |
| 895 | 681 |
| 896 // WARNING: Do not edit - generated code. | 682 // WARNING: Do not edit - generated code. |
| 897 | 683 |
| 898 | 684 |
| 899 @DocsEditable() | 685 @DocsEditable() |
| 900 @DomName('SVGAnimatedString') | 686 @DomName('SVGAnimatedString') |
| 901 @Unstable() | 687 @Unstable() |
| 902 class AnimatedString extends NativeFieldWrapperClass2 { | 688 class AnimatedString extends NativeFieldWrapperClass2 { |
| 903 // To suppress missing implicit constructor warnings. | 689 // To suppress missing implicit constructor warnings. |
| 904 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 690 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
| 905 | 691 |
| 906 static AnimatedString internalCreateAnimatedString() { | |
| 907 return new AnimatedString._internalWrap(); | |
| 908 } | |
| 909 | |
| 910 JsObject blink_jsObject = null; | |
| 911 | |
| 912 factory AnimatedString._internalWrap() { | |
| 913 return new AnimatedString._internal(); | |
| 914 } | |
| 915 | |
| 916 AnimatedString._internal() { } | |
| 917 | |
| 918 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 919 | |
| 920 @DomName('SVGAnimatedString.animVal') | 692 @DomName('SVGAnimatedString.animVal') |
| 921 @DocsEditable() | 693 @DocsEditable() |
| 922 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); | 694 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 923 | 695 |
| 924 @DomName('SVGAnimatedString.baseVal') | 696 @DomName('SVGAnimatedString.baseVal') |
| 925 @DocsEditable() | 697 @DocsEditable() |
| 926 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); | 698 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); |
| 927 | 699 |
| 928 @DomName('SVGAnimatedString.baseVal') | 700 @DomName('SVGAnimatedString.baseVal') |
| 929 @DocsEditable() | 701 @DocsEditable() |
| 930 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(unwrap_jso(this), value); | 702 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(unwrap_jso(this), value); |
| 931 | 703 |
| 932 } | 704 } |
| 933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 934 // for details. All rights reserved. Use of this source code is governed by a | 706 // for details. All rights reserved. Use of this source code is governed by a |
| 935 // BSD-style license that can be found in the LICENSE file. | 707 // BSD-style license that can be found in the LICENSE file. |
| 936 | 708 |
| 937 // WARNING: Do not edit - generated code. | 709 // WARNING: Do not edit - generated code. |
| 938 | 710 |
| 939 | 711 |
| 940 @DocsEditable() | 712 @DocsEditable() |
| 941 @DomName('SVGAnimatedTransformList') | 713 @DomName('SVGAnimatedTransformList') |
| 942 @Unstable() | 714 @Unstable() |
| 943 class AnimatedTransformList extends NativeFieldWrapperClass2 { | 715 class AnimatedTransformList extends NativeFieldWrapperClass2 { |
| 944 // To suppress missing implicit constructor warnings. | 716 // To suppress missing implicit constructor warnings. |
| 945 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 717 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
| 946 | 718 |
| 947 static AnimatedTransformList internalCreateAnimatedTransformList() { | |
| 948 return new AnimatedTransformList._internalWrap(); | |
| 949 } | |
| 950 | |
| 951 JsObject blink_jsObject = null; | |
| 952 | |
| 953 factory AnimatedTransformList._internalWrap() { | |
| 954 return new AnimatedTransformList._internal(); | |
| 955 } | |
| 956 | |
| 957 AnimatedTransformList._internal() { } | |
| 958 | |
| 959 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 960 | |
| 961 @DomName('SVGAnimatedTransformList.animVal') | 719 @DomName('SVGAnimatedTransformList.animVal') |
| 962 @DocsEditable() | 720 @DocsEditable() |
| 963 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); | 721 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); |
| 964 | 722 |
| 965 @DomName('SVGAnimatedTransformList.baseVal') | 723 @DomName('SVGAnimatedTransformList.baseVal') |
| 966 @DocsEditable() | 724 @DocsEditable() |
| 967 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); | 725 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); |
| 968 | 726 |
| 969 } | 727 } |
| 970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 971 // for details. All rights reserved. Use of this source code is governed by a | 729 // for details. All rights reserved. Use of this source code is governed by a |
| 972 // BSD-style license that can be found in the LICENSE file. | 730 // BSD-style license that can be found in the LICENSE file. |
| 973 | 731 |
| 974 // WARNING: Do not edit - generated code. | 732 // WARNING: Do not edit - generated code. |
| 975 | 733 |
| 976 | 734 |
| 977 @DocsEditable() | 735 @DocsEditable() |
| 978 @DomName('SVGAnimationElement') | 736 @DomName('SVGAnimationElement') |
| 979 @Unstable() | 737 @Unstable() |
| 980 class AnimationElement extends SvgElement implements Tests { | 738 class AnimationElement extends SvgElement implements Tests { |
| 981 // To suppress missing implicit constructor warnings. | 739 // To suppress missing implicit constructor warnings. |
| 982 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } | 740 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } |
| 983 | 741 |
| 984 @DomName('SVGAnimationElement.SVGAnimationElement') | 742 @DomName('SVGAnimationElement.SVGAnimationElement') |
| 985 @DocsEditable() | 743 @DocsEditable() |
| 986 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); | 744 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); |
| 987 | |
| 988 | |
| 989 static AnimationElement internalCreateAnimationElement() { | |
| 990 return new AnimationElement._internalWrap(); | |
| 991 } | |
| 992 | |
| 993 factory AnimationElement._internalWrap() { | |
| 994 return new AnimationElement._internal(); | |
| 995 } | |
| 996 | |
| 997 AnimationElement._internal() : super._internal(); | |
| 998 | |
| 999 /** | 745 /** |
| 1000 * Constructor instantiated by the DOM when a custom element has been created. | 746 * Constructor instantiated by the DOM when a custom element has been created. |
| 1001 * | 747 * |
| 1002 * This can only be called by subclasses from their created constructor. | 748 * This can only be called by subclasses from their created constructor. |
| 1003 */ | 749 */ |
| 1004 AnimationElement.created() : super.created(); | 750 AnimationElement.created() : super.created(); |
| 1005 | 751 |
| 1006 @DomName('SVGAnimationElement.targetElement') | 752 @DomName('SVGAnimationElement.targetElement') |
| 1007 @DocsEditable() | 753 @DocsEditable() |
| 1008 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); | 754 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 @DocsEditable() | 808 @DocsEditable() |
| 1063 @DomName('SVGCircleElement') | 809 @DomName('SVGCircleElement') |
| 1064 @Unstable() | 810 @Unstable() |
| 1065 class CircleElement extends GeometryElement { | 811 class CircleElement extends GeometryElement { |
| 1066 // To suppress missing implicit constructor warnings. | 812 // To suppress missing implicit constructor warnings. |
| 1067 factory CircleElement._() { throw new UnsupportedError("Not supported"); } | 813 factory CircleElement._() { throw new UnsupportedError("Not supported"); } |
| 1068 | 814 |
| 1069 @DomName('SVGCircleElement.SVGCircleElement') | 815 @DomName('SVGCircleElement.SVGCircleElement') |
| 1070 @DocsEditable() | 816 @DocsEditable() |
| 1071 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); | 817 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); |
| 1072 | |
| 1073 | |
| 1074 static CircleElement internalCreateCircleElement() { | |
| 1075 return new CircleElement._internalWrap(); | |
| 1076 } | |
| 1077 | |
| 1078 factory CircleElement._internalWrap() { | |
| 1079 return new CircleElement._internal(); | |
| 1080 } | |
| 1081 | |
| 1082 CircleElement._internal() : super._internal(); | |
| 1083 | |
| 1084 /** | 818 /** |
| 1085 * Constructor instantiated by the DOM when a custom element has been created. | 819 * Constructor instantiated by the DOM when a custom element has been created. |
| 1086 * | 820 * |
| 1087 * This can only be called by subclasses from their created constructor. | 821 * This can only be called by subclasses from their created constructor. |
| 1088 */ | 822 */ |
| 1089 CircleElement.created() : super.created(); | 823 CircleElement.created() : super.created(); |
| 1090 | 824 |
| 1091 @DomName('SVGCircleElement.cx') | 825 @DomName('SVGCircleElement.cx') |
| 1092 @DocsEditable() | 826 @DocsEditable() |
| 1093 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); | 827 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1111 @DocsEditable() | 845 @DocsEditable() |
| 1112 @DomName('SVGClipPathElement') | 846 @DomName('SVGClipPathElement') |
| 1113 @Unstable() | 847 @Unstable() |
| 1114 class ClipPathElement extends GraphicsElement { | 848 class ClipPathElement extends GraphicsElement { |
| 1115 // To suppress missing implicit constructor warnings. | 849 // To suppress missing implicit constructor warnings. |
| 1116 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } | 850 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } |
| 1117 | 851 |
| 1118 @DomName('SVGClipPathElement.SVGClipPathElement') | 852 @DomName('SVGClipPathElement.SVGClipPathElement') |
| 1119 @DocsEditable() | 853 @DocsEditable() |
| 1120 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); | 854 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); |
| 1121 | |
| 1122 | |
| 1123 static ClipPathElement internalCreateClipPathElement() { | |
| 1124 return new ClipPathElement._internalWrap(); | |
| 1125 } | |
| 1126 | |
| 1127 factory ClipPathElement._internalWrap() { | |
| 1128 return new ClipPathElement._internal(); | |
| 1129 } | |
| 1130 | |
| 1131 ClipPathElement._internal() : super._internal(); | |
| 1132 | |
| 1133 /** | 855 /** |
| 1134 * Constructor instantiated by the DOM when a custom element has been created. | 856 * Constructor instantiated by the DOM when a custom element has been created. |
| 1135 * | 857 * |
| 1136 * This can only be called by subclasses from their created constructor. | 858 * This can only be called by subclasses from their created constructor. |
| 1137 */ | 859 */ |
| 1138 ClipPathElement.created() : super.created(); | 860 ClipPathElement.created() : super.created(); |
| 1139 | 861 |
| 1140 @DomName('SVGClipPathElement.clipPathUnits') | 862 @DomName('SVGClipPathElement.clipPathUnits') |
| 1141 @DocsEditable() | 863 @DocsEditable() |
| 1142 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); | 864 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); |
| 1143 | 865 |
| 1144 } | 866 } |
| 1145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 867 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1146 // for details. All rights reserved. Use of this source code is governed by a | 868 // for details. All rights reserved. Use of this source code is governed by a |
| 1147 // BSD-style license that can be found in the LICENSE file. | 869 // BSD-style license that can be found in the LICENSE file. |
| 1148 | 870 |
| 1149 // WARNING: Do not edit - generated code. | 871 // WARNING: Do not edit - generated code. |
| 1150 | 872 |
| 1151 | 873 |
| 1152 @DocsEditable() | 874 @DocsEditable() |
| 1153 @DomName('SVGDefsElement') | 875 @DomName('SVGDefsElement') |
| 1154 @Unstable() | 876 @Unstable() |
| 1155 class DefsElement extends GraphicsElement { | 877 class DefsElement extends GraphicsElement { |
| 1156 // To suppress missing implicit constructor warnings. | 878 // To suppress missing implicit constructor warnings. |
| 1157 factory DefsElement._() { throw new UnsupportedError("Not supported"); } | 879 factory DefsElement._() { throw new UnsupportedError("Not supported"); } |
| 1158 | 880 |
| 1159 @DomName('SVGDefsElement.SVGDefsElement') | 881 @DomName('SVGDefsElement.SVGDefsElement') |
| 1160 @DocsEditable() | 882 @DocsEditable() |
| 1161 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); | 883 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); |
| 1162 | |
| 1163 | |
| 1164 static DefsElement internalCreateDefsElement() { | |
| 1165 return new DefsElement._internalWrap(); | |
| 1166 } | |
| 1167 | |
| 1168 factory DefsElement._internalWrap() { | |
| 1169 return new DefsElement._internal(); | |
| 1170 } | |
| 1171 | |
| 1172 DefsElement._internal() : super._internal(); | |
| 1173 | |
| 1174 /** | 884 /** |
| 1175 * Constructor instantiated by the DOM when a custom element has been created. | 885 * Constructor instantiated by the DOM when a custom element has been created. |
| 1176 * | 886 * |
| 1177 * This can only be called by subclasses from their created constructor. | 887 * This can only be called by subclasses from their created constructor. |
| 1178 */ | 888 */ |
| 1179 DefsElement.created() : super.created(); | 889 DefsElement.created() : super.created(); |
| 1180 | 890 |
| 1181 } | 891 } |
| 1182 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1183 // for details. All rights reserved. Use of this source code is governed by a | 893 // for details. All rights reserved. Use of this source code is governed by a |
| 1184 // BSD-style license that can be found in the LICENSE file. | 894 // BSD-style license that can be found in the LICENSE file. |
| 1185 | 895 |
| 1186 // WARNING: Do not edit - generated code. | 896 // WARNING: Do not edit - generated code. |
| 1187 | 897 |
| 1188 | 898 |
| 1189 @DocsEditable() | 899 @DocsEditable() |
| 1190 @DomName('SVGDescElement') | 900 @DomName('SVGDescElement') |
| 1191 @Unstable() | 901 @Unstable() |
| 1192 class DescElement extends SvgElement { | 902 class DescElement extends SvgElement { |
| 1193 // To suppress missing implicit constructor warnings. | 903 // To suppress missing implicit constructor warnings. |
| 1194 factory DescElement._() { throw new UnsupportedError("Not supported"); } | 904 factory DescElement._() { throw new UnsupportedError("Not supported"); } |
| 1195 | 905 |
| 1196 @DomName('SVGDescElement.SVGDescElement') | 906 @DomName('SVGDescElement.SVGDescElement') |
| 1197 @DocsEditable() | 907 @DocsEditable() |
| 1198 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); | 908 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); |
| 1199 | |
| 1200 | |
| 1201 static DescElement internalCreateDescElement() { | |
| 1202 return new DescElement._internalWrap(); | |
| 1203 } | |
| 1204 | |
| 1205 factory DescElement._internalWrap() { | |
| 1206 return new DescElement._internal(); | |
| 1207 } | |
| 1208 | |
| 1209 DescElement._internal() : super._internal(); | |
| 1210 | |
| 1211 /** | 909 /** |
| 1212 * Constructor instantiated by the DOM when a custom element has been created. | 910 * Constructor instantiated by the DOM when a custom element has been created. |
| 1213 * | 911 * |
| 1214 * This can only be called by subclasses from their created constructor. | 912 * This can only be called by subclasses from their created constructor. |
| 1215 */ | 913 */ |
| 1216 DescElement.created() : super.created(); | 914 DescElement.created() : super.created(); |
| 1217 | 915 |
| 1218 } | 916 } |
| 1219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1220 // for details. All rights reserved. Use of this source code is governed by a | 918 // for details. All rights reserved. Use of this source code is governed by a |
| 1221 // BSD-style license that can be found in the LICENSE file. | 919 // BSD-style license that can be found in the LICENSE file. |
| 1222 | 920 |
| 1223 // WARNING: Do not edit - generated code. | 921 // WARNING: Do not edit - generated code. |
| 1224 | 922 |
| 1225 | 923 |
| 1226 @DocsEditable() | 924 @DocsEditable() |
| 1227 @DomName('SVGDiscardElement') | 925 @DomName('SVGDiscardElement') |
| 1228 @Experimental() // untriaged | 926 @Experimental() // untriaged |
| 1229 class DiscardElement extends SvgElement { | 927 class DiscardElement extends SvgElement { |
| 1230 // To suppress missing implicit constructor warnings. | 928 // To suppress missing implicit constructor warnings. |
| 1231 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } | 929 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } |
| 1232 | |
| 1233 | |
| 1234 static DiscardElement internalCreateDiscardElement() { | |
| 1235 return new DiscardElement._internalWrap(); | |
| 1236 } | |
| 1237 | |
| 1238 factory DiscardElement._internalWrap() { | |
| 1239 return new DiscardElement._internal(); | |
| 1240 } | |
| 1241 | |
| 1242 DiscardElement._internal() : super._internal(); | |
| 1243 | |
| 1244 /** | 930 /** |
| 1245 * Constructor instantiated by the DOM when a custom element has been created. | 931 * Constructor instantiated by the DOM when a custom element has been created. |
| 1246 * | 932 * |
| 1247 * This can only be called by subclasses from their created constructor. | 933 * This can only be called by subclasses from their created constructor. |
| 1248 */ | 934 */ |
| 1249 DiscardElement.created() : super.created(); | 935 DiscardElement.created() : super.created(); |
| 1250 | 936 |
| 1251 } | 937 } |
| 1252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1253 // for details. All rights reserved. Use of this source code is governed by a | 939 // for details. All rights reserved. Use of this source code is governed by a |
| 1254 // BSD-style license that can be found in the LICENSE file. | 940 // BSD-style license that can be found in the LICENSE file. |
| 1255 | 941 |
| 1256 // WARNING: Do not edit - generated code. | 942 // WARNING: Do not edit - generated code. |
| 1257 | 943 |
| 1258 | 944 |
| 1259 @DocsEditable() | 945 @DocsEditable() |
| 1260 @DomName('SVGEllipseElement') | 946 @DomName('SVGEllipseElement') |
| 1261 @Unstable() | 947 @Unstable() |
| 1262 class EllipseElement extends GeometryElement { | 948 class EllipseElement extends GeometryElement { |
| 1263 // To suppress missing implicit constructor warnings. | 949 // To suppress missing implicit constructor warnings. |
| 1264 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } | 950 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } |
| 1265 | 951 |
| 1266 @DomName('SVGEllipseElement.SVGEllipseElement') | 952 @DomName('SVGEllipseElement.SVGEllipseElement') |
| 1267 @DocsEditable() | 953 @DocsEditable() |
| 1268 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 954 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
| 1269 | |
| 1270 | |
| 1271 static EllipseElement internalCreateEllipseElement() { | |
| 1272 return new EllipseElement._internalWrap(); | |
| 1273 } | |
| 1274 | |
| 1275 factory EllipseElement._internalWrap() { | |
| 1276 return new EllipseElement._internal(); | |
| 1277 } | |
| 1278 | |
| 1279 EllipseElement._internal() : super._internal(); | |
| 1280 | |
| 1281 /** | 955 /** |
| 1282 * Constructor instantiated by the DOM when a custom element has been created. | 956 * Constructor instantiated by the DOM when a custom element has been created. |
| 1283 * | 957 * |
| 1284 * This can only be called by subclasses from their created constructor. | 958 * This can only be called by subclasses from their created constructor. |
| 1285 */ | 959 */ |
| 1286 EllipseElement.created() : super.created(); | 960 EllipseElement.created() : super.created(); |
| 1287 | 961 |
| 1288 @DomName('SVGEllipseElement.cx') | 962 @DomName('SVGEllipseElement.cx') |
| 1289 @DocsEditable() | 963 @DocsEditable() |
| 1290 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); | 964 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1316 @SupportedBrowser(SupportedBrowser.IE, '10') | 990 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1317 @SupportedBrowser(SupportedBrowser.SAFARI) | 991 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1318 @Unstable() | 992 @Unstable() |
| 1319 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 993 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 1320 // To suppress missing implicit constructor warnings. | 994 // To suppress missing implicit constructor warnings. |
| 1321 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } | 995 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } |
| 1322 | 996 |
| 1323 @DomName('SVGFEBlendElement.SVGFEBlendElement') | 997 @DomName('SVGFEBlendElement.SVGFEBlendElement') |
| 1324 @DocsEditable() | 998 @DocsEditable() |
| 1325 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); | 999 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); |
| 1326 | |
| 1327 | |
| 1328 static FEBlendElement internalCreateFEBlendElement() { | |
| 1329 return new FEBlendElement._internalWrap(); | |
| 1330 } | |
| 1331 | |
| 1332 factory FEBlendElement._internalWrap() { | |
| 1333 return new FEBlendElement._internal(); | |
| 1334 } | |
| 1335 | |
| 1336 FEBlendElement._internal() : super._internal(); | |
| 1337 | |
| 1338 /** | 1000 /** |
| 1339 * Constructor instantiated by the DOM when a custom element has been created. | 1001 * Constructor instantiated by the DOM when a custom element has been created. |
| 1340 * | 1002 * |
| 1341 * This can only be called by subclasses from their created constructor. | 1003 * This can only be called by subclasses from their created constructor. |
| 1342 */ | 1004 */ |
| 1343 FEBlendElement.created() : super.created(); | 1005 FEBlendElement.created() : super.created(); |
| 1344 | 1006 |
| 1345 /// Checks if this type is supported on the current platform. | 1007 /// Checks if this type is supported on the current platform. |
| 1346 static bool get supported => true; | 1008 static bool get supported => true; |
| 1347 | 1009 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 @SupportedBrowser(SupportedBrowser.IE, '10') | 1078 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1417 @SupportedBrowser(SupportedBrowser.SAFARI) | 1079 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1418 @Unstable() | 1080 @Unstable() |
| 1419 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { | 1081 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
| 1420 // To suppress missing implicit constructor warnings. | 1082 // To suppress missing implicit constructor warnings. |
| 1421 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } | 1083 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } |
| 1422 | 1084 |
| 1423 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') | 1085 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') |
| 1424 @DocsEditable() | 1086 @DocsEditable() |
| 1425 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); | 1087 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); |
| 1426 | |
| 1427 | |
| 1428 static FEColorMatrixElement internalCreateFEColorMatrixElement() { | |
| 1429 return new FEColorMatrixElement._internalWrap(); | |
| 1430 } | |
| 1431 | |
| 1432 factory FEColorMatrixElement._internalWrap() { | |
| 1433 return new FEColorMatrixElement._internal(); | |
| 1434 } | |
| 1435 | |
| 1436 FEColorMatrixElement._internal() : super._internal(); | |
| 1437 | |
| 1438 /** | 1088 /** |
| 1439 * Constructor instantiated by the DOM when a custom element has been created. | 1089 * Constructor instantiated by the DOM when a custom element has been created. |
| 1440 * | 1090 * |
| 1441 * This can only be called by subclasses from their created constructor. | 1091 * This can only be called by subclasses from their created constructor. |
| 1442 */ | 1092 */ |
| 1443 FEColorMatrixElement.created() : super.created(); | 1093 FEColorMatrixElement.created() : super.created(); |
| 1444 | 1094 |
| 1445 /// Checks if this type is supported on the current platform. | 1095 /// Checks if this type is supported on the current platform. |
| 1446 static bool get supported => true; | 1096 static bool get supported => true; |
| 1447 | 1097 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1512 @SupportedBrowser(SupportedBrowser.IE, '10') | 1162 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1513 @SupportedBrowser(SupportedBrowser.SAFARI) | 1163 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1514 @Unstable() | 1164 @Unstable() |
| 1515 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { | 1165 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
| 1516 // To suppress missing implicit constructor warnings. | 1166 // To suppress missing implicit constructor warnings. |
| 1517 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } | 1167 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } |
| 1518 | 1168 |
| 1519 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') | 1169 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') |
| 1520 @DocsEditable() | 1170 @DocsEditable() |
| 1521 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); | 1171 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); |
| 1522 | |
| 1523 | |
| 1524 static FEComponentTransferElement internalCreateFEComponentTransferElement() { | |
| 1525 return new FEComponentTransferElement._internalWrap(); | |
| 1526 } | |
| 1527 | |
| 1528 factory FEComponentTransferElement._internalWrap() { | |
| 1529 return new FEComponentTransferElement._internal(); | |
| 1530 } | |
| 1531 | |
| 1532 FEComponentTransferElement._internal() : super._internal(); | |
| 1533 | |
| 1534 /** | 1172 /** |
| 1535 * Constructor instantiated by the DOM when a custom element has been created. | 1173 * Constructor instantiated by the DOM when a custom element has been created. |
| 1536 * | 1174 * |
| 1537 * This can only be called by subclasses from their created constructor. | 1175 * This can only be called by subclasses from their created constructor. |
| 1538 */ | 1176 */ |
| 1539 FEComponentTransferElement.created() : super.created(); | 1177 FEComponentTransferElement.created() : super.created(); |
| 1540 | 1178 |
| 1541 /// Checks if this type is supported on the current platform. | 1179 /// Checks if this type is supported on the current platform. |
| 1542 static bool get supported => true; | 1180 static bool get supported => true; |
| 1543 | 1181 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1572 | 1210 |
| 1573 // WARNING: Do not edit - generated code. | 1211 // WARNING: Do not edit - generated code. |
| 1574 | 1212 |
| 1575 | 1213 |
| 1576 @DocsEditable() | 1214 @DocsEditable() |
| 1577 @DomName('SVGFECompositeElement') | 1215 @DomName('SVGFECompositeElement') |
| 1578 @Unstable() | 1216 @Unstable() |
| 1579 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { | 1217 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
| 1580 // To suppress missing implicit constructor warnings. | 1218 // To suppress missing implicit constructor warnings. |
| 1581 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} | 1219 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} |
| 1582 | |
| 1583 | |
| 1584 static FECompositeElement internalCreateFECompositeElement() { | |
| 1585 return new FECompositeElement._internalWrap(); | |
| 1586 } | |
| 1587 | |
| 1588 factory FECompositeElement._internalWrap() { | |
| 1589 return new FECompositeElement._internal(); | |
| 1590 } | |
| 1591 | |
| 1592 FECompositeElement._internal() : super._internal(); | |
| 1593 | |
| 1594 /** | 1220 /** |
| 1595 * Constructor instantiated by the DOM when a custom element has been created. | 1221 * Constructor instantiated by the DOM when a custom element has been created. |
| 1596 * | 1222 * |
| 1597 * This can only be called by subclasses from their created constructor. | 1223 * This can only be called by subclasses from their created constructor. |
| 1598 */ | 1224 */ |
| 1599 FECompositeElement.created() : super.created(); | 1225 FECompositeElement.created() : super.created(); |
| 1600 | 1226 |
| 1601 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') | 1227 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') |
| 1602 @DocsEditable() | 1228 @DocsEditable() |
| 1603 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 1229 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1689 @SupportedBrowser(SupportedBrowser.IE, '10') | 1315 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1690 @SupportedBrowser(SupportedBrowser.SAFARI) | 1316 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1691 @Unstable() | 1317 @Unstable() |
| 1692 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 1318 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
| 1693 // To suppress missing implicit constructor warnings. | 1319 // To suppress missing implicit constructor warnings. |
| 1694 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } | 1320 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 1695 | 1321 |
| 1696 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') | 1322 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') |
| 1697 @DocsEditable() | 1323 @DocsEditable() |
| 1698 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); | 1324 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); |
| 1699 | |
| 1700 | |
| 1701 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { | |
| 1702 return new FEConvolveMatrixElement._internalWrap(); | |
| 1703 } | |
| 1704 | |
| 1705 factory FEConvolveMatrixElement._internalWrap() { | |
| 1706 return new FEConvolveMatrixElement._internal(); | |
| 1707 } | |
| 1708 | |
| 1709 FEConvolveMatrixElement._internal() : super._internal(); | |
| 1710 | |
| 1711 /** | 1325 /** |
| 1712 * Constructor instantiated by the DOM when a custom element has been created. | 1326 * Constructor instantiated by the DOM when a custom element has been created. |
| 1713 * | 1327 * |
| 1714 * This can only be called by subclasses from their created constructor. | 1328 * This can only be called by subclasses from their created constructor. |
| 1715 */ | 1329 */ |
| 1716 FEConvolveMatrixElement.created() : super.created(); | 1330 FEConvolveMatrixElement.created() : super.created(); |
| 1717 | 1331 |
| 1718 /// Checks if this type is supported on the current platform. | 1332 /// Checks if this type is supported on the current platform. |
| 1719 static bool get supported => true; | 1333 static bool get supported => true; |
| 1720 | 1334 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1817 @SupportedBrowser(SupportedBrowser.IE, '10') | 1431 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1818 @SupportedBrowser(SupportedBrowser.SAFARI) | 1432 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1819 @Unstable() | 1433 @Unstable() |
| 1820 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1434 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 1821 // To suppress missing implicit constructor warnings. | 1435 // To suppress missing implicit constructor warnings. |
| 1822 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } | 1436 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } |
| 1823 | 1437 |
| 1824 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') | 1438 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') |
| 1825 @DocsEditable() | 1439 @DocsEditable() |
| 1826 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); | 1440 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); |
| 1827 | |
| 1828 | |
| 1829 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { | |
| 1830 return new FEDiffuseLightingElement._internalWrap(); | |
| 1831 } | |
| 1832 | |
| 1833 factory FEDiffuseLightingElement._internalWrap() { | |
| 1834 return new FEDiffuseLightingElement._internal(); | |
| 1835 } | |
| 1836 | |
| 1837 FEDiffuseLightingElement._internal() : super._internal(); | |
| 1838 | |
| 1839 /** | 1441 /** |
| 1840 * Constructor instantiated by the DOM when a custom element has been created. | 1442 * Constructor instantiated by the DOM when a custom element has been created. |
| 1841 * | 1443 * |
| 1842 * This can only be called by subclasses from their created constructor. | 1444 * This can only be called by subclasses from their created constructor. |
| 1843 */ | 1445 */ |
| 1844 FEDiffuseLightingElement.created() : super.created(); | 1446 FEDiffuseLightingElement.created() : super.created(); |
| 1845 | 1447 |
| 1846 /// Checks if this type is supported on the current platform. | 1448 /// Checks if this type is supported on the current platform. |
| 1847 static bool get supported => true; | 1449 static bool get supported => true; |
| 1848 | 1450 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1901 @SupportedBrowser(SupportedBrowser.IE, '10') | 1503 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1902 @SupportedBrowser(SupportedBrowser.SAFARI) | 1504 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1903 @Unstable() | 1505 @Unstable() |
| 1904 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1506 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 1905 // To suppress missing implicit constructor warnings. | 1507 // To suppress missing implicit constructor warnings. |
| 1906 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } | 1508 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } |
| 1907 | 1509 |
| 1908 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') | 1510 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') |
| 1909 @DocsEditable() | 1511 @DocsEditable() |
| 1910 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); | 1512 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); |
| 1911 | |
| 1912 | |
| 1913 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { | |
| 1914 return new FEDisplacementMapElement._internalWrap(); | |
| 1915 } | |
| 1916 | |
| 1917 factory FEDisplacementMapElement._internalWrap() { | |
| 1918 return new FEDisplacementMapElement._internal(); | |
| 1919 } | |
| 1920 | |
| 1921 FEDisplacementMapElement._internal() : super._internal(); | |
| 1922 | |
| 1923 /** | 1513 /** |
| 1924 * Constructor instantiated by the DOM when a custom element has been created. | 1514 * Constructor instantiated by the DOM when a custom element has been created. |
| 1925 * | 1515 * |
| 1926 * This can only be called by subclasses from their created constructor. | 1516 * This can only be called by subclasses from their created constructor. |
| 1927 */ | 1517 */ |
| 1928 FEDisplacementMapElement.created() : super.created(); | 1518 FEDisplacementMapElement.created() : super.created(); |
| 1929 | 1519 |
| 1930 /// Checks if this type is supported on the current platform. | 1520 /// Checks if this type is supported on the current platform. |
| 1931 static bool get supported => true; | 1521 static bool get supported => true; |
| 1932 | 1522 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2005 @SupportedBrowser(SupportedBrowser.IE, '10') | 1595 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2006 @SupportedBrowser(SupportedBrowser.SAFARI) | 1596 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2007 @Unstable() | 1597 @Unstable() |
| 2008 class FEDistantLightElement extends SvgElement { | 1598 class FEDistantLightElement extends SvgElement { |
| 2009 // To suppress missing implicit constructor warnings. | 1599 // To suppress missing implicit constructor warnings. |
| 2010 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } | 1600 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } |
| 2011 | 1601 |
| 2012 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') | 1602 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') |
| 2013 @DocsEditable() | 1603 @DocsEditable() |
| 2014 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); | 1604 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); |
| 2015 | |
| 2016 | |
| 2017 static FEDistantLightElement internalCreateFEDistantLightElement() { | |
| 2018 return new FEDistantLightElement._internalWrap(); | |
| 2019 } | |
| 2020 | |
| 2021 factory FEDistantLightElement._internalWrap() { | |
| 2022 return new FEDistantLightElement._internal(); | |
| 2023 } | |
| 2024 | |
| 2025 FEDistantLightElement._internal() : super._internal(); | |
| 2026 | |
| 2027 /** | 1605 /** |
| 2028 * Constructor instantiated by the DOM when a custom element has been created. | 1606 * Constructor instantiated by the DOM when a custom element has been created. |
| 2029 * | 1607 * |
| 2030 * This can only be called by subclasses from their created constructor. | 1608 * This can only be called by subclasses from their created constructor. |
| 2031 */ | 1609 */ |
| 2032 FEDistantLightElement.created() : super.created(); | 1610 FEDistantLightElement.created() : super.created(); |
| 2033 | 1611 |
| 2034 /// Checks if this type is supported on the current platform. | 1612 /// Checks if this type is supported on the current platform. |
| 2035 static bool get supported => true; | 1613 static bool get supported => true; |
| 2036 | 1614 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 2057 @SupportedBrowser(SupportedBrowser.IE, '10') | 1635 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2058 @SupportedBrowser(SupportedBrowser.SAFARI) | 1636 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2059 @Unstable() | 1637 @Unstable() |
| 2060 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1638 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2061 // To suppress missing implicit constructor warnings. | 1639 // To suppress missing implicit constructor warnings. |
| 2062 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } | 1640 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } |
| 2063 | 1641 |
| 2064 @DomName('SVGFEFloodElement.SVGFEFloodElement') | 1642 @DomName('SVGFEFloodElement.SVGFEFloodElement') |
| 2065 @DocsEditable() | 1643 @DocsEditable() |
| 2066 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); | 1644 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); |
| 2067 | |
| 2068 | |
| 2069 static FEFloodElement internalCreateFEFloodElement() { | |
| 2070 return new FEFloodElement._internalWrap(); | |
| 2071 } | |
| 2072 | |
| 2073 factory FEFloodElement._internalWrap() { | |
| 2074 return new FEFloodElement._internal(); | |
| 2075 } | |
| 2076 | |
| 2077 FEFloodElement._internal() : super._internal(); | |
| 2078 | |
| 2079 /** | 1645 /** |
| 2080 * Constructor instantiated by the DOM when a custom element has been created. | 1646 * Constructor instantiated by the DOM when a custom element has been created. |
| 2081 * | 1647 * |
| 2082 * This can only be called by subclasses from their created constructor. | 1648 * This can only be called by subclasses from their created constructor. |
| 2083 */ | 1649 */ |
| 2084 FEFloodElement.created() : super.created(); | 1650 FEFloodElement.created() : super.created(); |
| 2085 | 1651 |
| 2086 /// Checks if this type is supported on the current platform. | 1652 /// Checks if this type is supported on the current platform. |
| 2087 static bool get supported => true; | 1653 static bool get supported => true; |
| 2088 | 1654 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2121 @SupportedBrowser(SupportedBrowser.IE, '10') | 1687 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2122 @SupportedBrowser(SupportedBrowser.SAFARI) | 1688 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2123 @Unstable() | 1689 @Unstable() |
| 2124 class FEFuncAElement extends _SVGComponentTransferFunctionElement { | 1690 class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
| 2125 // To suppress missing implicit constructor warnings. | 1691 // To suppress missing implicit constructor warnings. |
| 2126 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } | 1692 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } |
| 2127 | 1693 |
| 2128 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') | 1694 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') |
| 2129 @DocsEditable() | 1695 @DocsEditable() |
| 2130 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); | 1696 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); |
| 2131 | |
| 2132 | |
| 2133 static FEFuncAElement internalCreateFEFuncAElement() { | |
| 2134 return new FEFuncAElement._internalWrap(); | |
| 2135 } | |
| 2136 | |
| 2137 factory FEFuncAElement._internalWrap() { | |
| 2138 return new FEFuncAElement._internal(); | |
| 2139 } | |
| 2140 | |
| 2141 FEFuncAElement._internal() : super._internal(); | |
| 2142 | |
| 2143 /** | 1697 /** |
| 2144 * Constructor instantiated by the DOM when a custom element has been created. | 1698 * Constructor instantiated by the DOM when a custom element has been created. |
| 2145 * | 1699 * |
| 2146 * This can only be called by subclasses from their created constructor. | 1700 * This can only be called by subclasses from their created constructor. |
| 2147 */ | 1701 */ |
| 2148 FEFuncAElement.created() : super.created(); | 1702 FEFuncAElement.created() : super.created(); |
| 2149 | 1703 |
| 2150 /// Checks if this type is supported on the current platform. | 1704 /// Checks if this type is supported on the current platform. |
| 2151 static bool get supported => true; | 1705 static bool get supported => true; |
| 2152 | 1706 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2165 @SupportedBrowser(SupportedBrowser.IE, '10') | 1719 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2166 @SupportedBrowser(SupportedBrowser.SAFARI) | 1720 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2167 @Unstable() | 1721 @Unstable() |
| 2168 class FEFuncBElement extends _SVGComponentTransferFunctionElement { | 1722 class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
| 2169 // To suppress missing implicit constructor warnings. | 1723 // To suppress missing implicit constructor warnings. |
| 2170 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } | 1724 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } |
| 2171 | 1725 |
| 2172 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') | 1726 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') |
| 2173 @DocsEditable() | 1727 @DocsEditable() |
| 2174 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); | 1728 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); |
| 2175 | |
| 2176 | |
| 2177 static FEFuncBElement internalCreateFEFuncBElement() { | |
| 2178 return new FEFuncBElement._internalWrap(); | |
| 2179 } | |
| 2180 | |
| 2181 factory FEFuncBElement._internalWrap() { | |
| 2182 return new FEFuncBElement._internal(); | |
| 2183 } | |
| 2184 | |
| 2185 FEFuncBElement._internal() : super._internal(); | |
| 2186 | |
| 2187 /** | 1729 /** |
| 2188 * Constructor instantiated by the DOM when a custom element has been created. | 1730 * Constructor instantiated by the DOM when a custom element has been created. |
| 2189 * | 1731 * |
| 2190 * This can only be called by subclasses from their created constructor. | 1732 * This can only be called by subclasses from their created constructor. |
| 2191 */ | 1733 */ |
| 2192 FEFuncBElement.created() : super.created(); | 1734 FEFuncBElement.created() : super.created(); |
| 2193 | 1735 |
| 2194 /// Checks if this type is supported on the current platform. | 1736 /// Checks if this type is supported on the current platform. |
| 2195 static bool get supported => true; | 1737 static bool get supported => true; |
| 2196 | 1738 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2209 @SupportedBrowser(SupportedBrowser.IE, '10') | 1751 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2210 @SupportedBrowser(SupportedBrowser.SAFARI) | 1752 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2211 @Unstable() | 1753 @Unstable() |
| 2212 class FEFuncGElement extends _SVGComponentTransferFunctionElement { | 1754 class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
| 2213 // To suppress missing implicit constructor warnings. | 1755 // To suppress missing implicit constructor warnings. |
| 2214 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } | 1756 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } |
| 2215 | 1757 |
| 2216 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') | 1758 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') |
| 2217 @DocsEditable() | 1759 @DocsEditable() |
| 2218 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); | 1760 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); |
| 2219 | |
| 2220 | |
| 2221 static FEFuncGElement internalCreateFEFuncGElement() { | |
| 2222 return new FEFuncGElement._internalWrap(); | |
| 2223 } | |
| 2224 | |
| 2225 factory FEFuncGElement._internalWrap() { | |
| 2226 return new FEFuncGElement._internal(); | |
| 2227 } | |
| 2228 | |
| 2229 FEFuncGElement._internal() : super._internal(); | |
| 2230 | |
| 2231 /** | 1761 /** |
| 2232 * Constructor instantiated by the DOM when a custom element has been created. | 1762 * Constructor instantiated by the DOM when a custom element has been created. |
| 2233 * | 1763 * |
| 2234 * This can only be called by subclasses from their created constructor. | 1764 * This can only be called by subclasses from their created constructor. |
| 2235 */ | 1765 */ |
| 2236 FEFuncGElement.created() : super.created(); | 1766 FEFuncGElement.created() : super.created(); |
| 2237 | 1767 |
| 2238 /// Checks if this type is supported on the current platform. | 1768 /// Checks if this type is supported on the current platform. |
| 2239 static bool get supported => true; | 1769 static bool get supported => true; |
| 2240 | 1770 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2253 @SupportedBrowser(SupportedBrowser.IE, '10') | 1783 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2254 @SupportedBrowser(SupportedBrowser.SAFARI) | 1784 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2255 @Unstable() | 1785 @Unstable() |
| 2256 class FEFuncRElement extends _SVGComponentTransferFunctionElement { | 1786 class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
| 2257 // To suppress missing implicit constructor warnings. | 1787 // To suppress missing implicit constructor warnings. |
| 2258 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } | 1788 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } |
| 2259 | 1789 |
| 2260 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') | 1790 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') |
| 2261 @DocsEditable() | 1791 @DocsEditable() |
| 2262 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); | 1792 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); |
| 2263 | |
| 2264 | |
| 2265 static FEFuncRElement internalCreateFEFuncRElement() { | |
| 2266 return new FEFuncRElement._internalWrap(); | |
| 2267 } | |
| 2268 | |
| 2269 factory FEFuncRElement._internalWrap() { | |
| 2270 return new FEFuncRElement._internal(); | |
| 2271 } | |
| 2272 | |
| 2273 FEFuncRElement._internal() : super._internal(); | |
| 2274 | |
| 2275 /** | 1793 /** |
| 2276 * Constructor instantiated by the DOM when a custom element has been created. | 1794 * Constructor instantiated by the DOM when a custom element has been created. |
| 2277 * | 1795 * |
| 2278 * This can only be called by subclasses from their created constructor. | 1796 * This can only be called by subclasses from their created constructor. |
| 2279 */ | 1797 */ |
| 2280 FEFuncRElement.created() : super.created(); | 1798 FEFuncRElement.created() : super.created(); |
| 2281 | 1799 |
| 2282 /// Checks if this type is supported on the current platform. | 1800 /// Checks if this type is supported on the current platform. |
| 2283 static bool get supported => true; | 1801 static bool get supported => true; |
| 2284 | 1802 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2297 @SupportedBrowser(SupportedBrowser.IE, '10') | 1815 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2298 @SupportedBrowser(SupportedBrowser.SAFARI) | 1816 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2299 @Unstable() | 1817 @Unstable() |
| 2300 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { | 1818 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
| 2301 // To suppress missing implicit constructor warnings. | 1819 // To suppress missing implicit constructor warnings. |
| 2302 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } | 1820 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } |
| 2303 | 1821 |
| 2304 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') | 1822 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') |
| 2305 @DocsEditable() | 1823 @DocsEditable() |
| 2306 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); | 1824 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); |
| 2307 | |
| 2308 | |
| 2309 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { | |
| 2310 return new FEGaussianBlurElement._internalWrap(); | |
| 2311 } | |
| 2312 | |
| 2313 factory FEGaussianBlurElement._internalWrap() { | |
| 2314 return new FEGaussianBlurElement._internal(); | |
| 2315 } | |
| 2316 | |
| 2317 FEGaussianBlurElement._internal() : super._internal(); | |
| 2318 | |
| 2319 /** | 1825 /** |
| 2320 * Constructor instantiated by the DOM when a custom element has been created. | 1826 * Constructor instantiated by the DOM when a custom element has been created. |
| 2321 * | 1827 * |
| 2322 * This can only be called by subclasses from their created constructor. | 1828 * This can only be called by subclasses from their created constructor. |
| 2323 */ | 1829 */ |
| 2324 FEGaussianBlurElement.created() : super.created(); | 1830 FEGaussianBlurElement.created() : super.created(); |
| 2325 | 1831 |
| 2326 /// Checks if this type is supported on the current platform. | 1832 /// Checks if this type is supported on the current platform. |
| 2327 static bool get supported => true; | 1833 static bool get supported => true; |
| 2328 | 1834 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2377 @SupportedBrowser(SupportedBrowser.IE, '10') | 1883 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2378 @SupportedBrowser(SupportedBrowser.SAFARI) | 1884 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2379 @Unstable() | 1885 @Unstable() |
| 2380 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { | 1886 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { |
| 2381 // To suppress missing implicit constructor warnings. | 1887 // To suppress missing implicit constructor warnings. |
| 2382 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } | 1888 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } |
| 2383 | 1889 |
| 2384 @DomName('SVGFEImageElement.SVGFEImageElement') | 1890 @DomName('SVGFEImageElement.SVGFEImageElement') |
| 2385 @DocsEditable() | 1891 @DocsEditable() |
| 2386 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); | 1892 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); |
| 2387 | |
| 2388 | |
| 2389 static FEImageElement internalCreateFEImageElement() { | |
| 2390 return new FEImageElement._internalWrap(); | |
| 2391 } | |
| 2392 | |
| 2393 factory FEImageElement._internalWrap() { | |
| 2394 return new FEImageElement._internal(); | |
| 2395 } | |
| 2396 | |
| 2397 FEImageElement._internal() : super._internal(); | |
| 2398 | |
| 2399 /** | 1893 /** |
| 2400 * Constructor instantiated by the DOM when a custom element has been created. | 1894 * Constructor instantiated by the DOM when a custom element has been created. |
| 2401 * | 1895 * |
| 2402 * This can only be called by subclasses from their created constructor. | 1896 * This can only be called by subclasses from their created constructor. |
| 2403 */ | 1897 */ |
| 2404 FEImageElement.created() : super.created(); | 1898 FEImageElement.created() : super.created(); |
| 2405 | 1899 |
| 2406 /// Checks if this type is supported on the current platform. | 1900 /// Checks if this type is supported on the current platform. |
| 2407 static bool get supported => true; | 1901 static bool get supported => true; |
| 2408 | 1902 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2449 @SupportedBrowser(SupportedBrowser.IE, '10') | 1943 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2450 @SupportedBrowser(SupportedBrowser.SAFARI) | 1944 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2451 @Unstable() | 1945 @Unstable() |
| 2452 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1946 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2453 // To suppress missing implicit constructor warnings. | 1947 // To suppress missing implicit constructor warnings. |
| 2454 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } | 1948 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } |
| 2455 | 1949 |
| 2456 @DomName('SVGFEMergeElement.SVGFEMergeElement') | 1950 @DomName('SVGFEMergeElement.SVGFEMergeElement') |
| 2457 @DocsEditable() | 1951 @DocsEditable() |
| 2458 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); | 1952 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); |
| 2459 | |
| 2460 | |
| 2461 static FEMergeElement internalCreateFEMergeElement() { | |
| 2462 return new FEMergeElement._internalWrap(); | |
| 2463 } | |
| 2464 | |
| 2465 factory FEMergeElement._internalWrap() { | |
| 2466 return new FEMergeElement._internal(); | |
| 2467 } | |
| 2468 | |
| 2469 FEMergeElement._internal() : super._internal(); | |
| 2470 | |
| 2471 /** | 1953 /** |
| 2472 * Constructor instantiated by the DOM when a custom element has been created. | 1954 * Constructor instantiated by the DOM when a custom element has been created. |
| 2473 * | 1955 * |
| 2474 * This can only be called by subclasses from their created constructor. | 1956 * This can only be called by subclasses from their created constructor. |
| 2475 */ | 1957 */ |
| 2476 FEMergeElement.created() : super.created(); | 1958 FEMergeElement.created() : super.created(); |
| 2477 | 1959 |
| 2478 /// Checks if this type is supported on the current platform. | 1960 /// Checks if this type is supported on the current platform. |
| 2479 static bool get supported => true; | 1961 static bool get supported => true; |
| 2480 | 1962 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2513 @SupportedBrowser(SupportedBrowser.IE, '10') | 1995 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2514 @SupportedBrowser(SupportedBrowser.SAFARI) | 1996 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2515 @Unstable() | 1997 @Unstable() |
| 2516 class FEMergeNodeElement extends SvgElement { | 1998 class FEMergeNodeElement extends SvgElement { |
| 2517 // To suppress missing implicit constructor warnings. | 1999 // To suppress missing implicit constructor warnings. |
| 2518 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} | 2000 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} |
| 2519 | 2001 |
| 2520 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') | 2002 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') |
| 2521 @DocsEditable() | 2003 @DocsEditable() |
| 2522 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); | 2004 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); |
| 2523 | |
| 2524 | |
| 2525 static FEMergeNodeElement internalCreateFEMergeNodeElement() { | |
| 2526 return new FEMergeNodeElement._internalWrap(); | |
| 2527 } | |
| 2528 | |
| 2529 factory FEMergeNodeElement._internalWrap() { | |
| 2530 return new FEMergeNodeElement._internal(); | |
| 2531 } | |
| 2532 | |
| 2533 FEMergeNodeElement._internal() : super._internal(); | |
| 2534 | |
| 2535 /** | 2005 /** |
| 2536 * Constructor instantiated by the DOM when a custom element has been created. | 2006 * Constructor instantiated by the DOM when a custom element has been created. |
| 2537 * | 2007 * |
| 2538 * This can only be called by subclasses from their created constructor. | 2008 * This can only be called by subclasses from their created constructor. |
| 2539 */ | 2009 */ |
| 2540 FEMergeNodeElement.created() : super.created(); | 2010 FEMergeNodeElement.created() : super.created(); |
| 2541 | 2011 |
| 2542 /// Checks if this type is supported on the current platform. | 2012 /// Checks if this type is supported on the current platform. |
| 2543 static bool get supported => true; | 2013 static bool get supported => true; |
| 2544 | 2014 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2557 @DocsEditable() | 2027 @DocsEditable() |
| 2558 @DomName('SVGFEMorphologyElement') | 2028 @DomName('SVGFEMorphologyElement') |
| 2559 @SupportedBrowser(SupportedBrowser.CHROME) | 2029 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2560 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2030 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2561 @SupportedBrowser(SupportedBrowser.IE, '10') | 2031 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2562 @SupportedBrowser(SupportedBrowser.SAFARI) | 2032 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2563 @Unstable() | 2033 @Unstable() |
| 2564 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2034 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2565 // To suppress missing implicit constructor warnings. | 2035 // To suppress missing implicit constructor warnings. |
| 2566 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} | 2036 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} |
| 2567 | |
| 2568 | |
| 2569 static FEMorphologyElement internalCreateFEMorphologyElement() { | |
| 2570 return new FEMorphologyElement._internalWrap(); | |
| 2571 } | |
| 2572 | |
| 2573 factory FEMorphologyElement._internalWrap() { | |
| 2574 return new FEMorphologyElement._internal(); | |
| 2575 } | |
| 2576 | |
| 2577 FEMorphologyElement._internal() : super._internal(); | |
| 2578 | |
| 2579 /** | 2037 /** |
| 2580 * Constructor instantiated by the DOM when a custom element has been created. | 2038 * Constructor instantiated by the DOM when a custom element has been created. |
| 2581 * | 2039 * |
| 2582 * This can only be called by subclasses from their created constructor. | 2040 * This can only be called by subclasses from their created constructor. |
| 2583 */ | 2041 */ |
| 2584 FEMorphologyElement.created() : super.created(); | 2042 FEMorphologyElement.created() : super.created(); |
| 2585 | 2043 |
| 2586 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') | 2044 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') |
| 2587 @DocsEditable() | 2045 @DocsEditable() |
| 2588 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 2046 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2646 @SupportedBrowser(SupportedBrowser.IE, '10') | 2104 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2647 @SupportedBrowser(SupportedBrowser.SAFARI) | 2105 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2648 @Unstable() | 2106 @Unstable() |
| 2649 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { | 2107 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
| 2650 // To suppress missing implicit constructor warnings. | 2108 // To suppress missing implicit constructor warnings. |
| 2651 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } | 2109 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } |
| 2652 | 2110 |
| 2653 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') | 2111 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') |
| 2654 @DocsEditable() | 2112 @DocsEditable() |
| 2655 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); | 2113 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); |
| 2656 | |
| 2657 | |
| 2658 static FEOffsetElement internalCreateFEOffsetElement() { | |
| 2659 return new FEOffsetElement._internalWrap(); | |
| 2660 } | |
| 2661 | |
| 2662 factory FEOffsetElement._internalWrap() { | |
| 2663 return new FEOffsetElement._internal(); | |
| 2664 } | |
| 2665 | |
| 2666 FEOffsetElement._internal() : super._internal(); | |
| 2667 | |
| 2668 /** | 2114 /** |
| 2669 * Constructor instantiated by the DOM when a custom element has been created. | 2115 * Constructor instantiated by the DOM when a custom element has been created. |
| 2670 * | 2116 * |
| 2671 * This can only be called by subclasses from their created constructor. | 2117 * This can only be called by subclasses from their created constructor. |
| 2672 */ | 2118 */ |
| 2673 FEOffsetElement.created() : super.created(); | 2119 FEOffsetElement.created() : super.created(); |
| 2674 | 2120 |
| 2675 /// Checks if this type is supported on the current platform. | 2121 /// Checks if this type is supported on the current platform. |
| 2676 static bool get supported => true; | 2122 static bool get supported => true; |
| 2677 | 2123 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2722 @SupportedBrowser(SupportedBrowser.IE, '10') | 2168 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2723 @SupportedBrowser(SupportedBrowser.SAFARI) | 2169 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2724 @Unstable() | 2170 @Unstable() |
| 2725 class FEPointLightElement extends SvgElement { | 2171 class FEPointLightElement extends SvgElement { |
| 2726 // To suppress missing implicit constructor warnings. | 2172 // To suppress missing implicit constructor warnings. |
| 2727 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} | 2173 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} |
| 2728 | 2174 |
| 2729 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') | 2175 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') |
| 2730 @DocsEditable() | 2176 @DocsEditable() |
| 2731 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); | 2177 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); |
| 2732 | |
| 2733 | |
| 2734 static FEPointLightElement internalCreateFEPointLightElement() { | |
| 2735 return new FEPointLightElement._internalWrap(); | |
| 2736 } | |
| 2737 | |
| 2738 factory FEPointLightElement._internalWrap() { | |
| 2739 return new FEPointLightElement._internal(); | |
| 2740 } | |
| 2741 | |
| 2742 FEPointLightElement._internal() : super._internal(); | |
| 2743 | |
| 2744 /** | 2178 /** |
| 2745 * Constructor instantiated by the DOM when a custom element has been created. | 2179 * Constructor instantiated by the DOM when a custom element has been created. |
| 2746 * | 2180 * |
| 2747 * This can only be called by subclasses from their created constructor. | 2181 * This can only be called by subclasses from their created constructor. |
| 2748 */ | 2182 */ |
| 2749 FEPointLightElement.created() : super.created(); | 2183 FEPointLightElement.created() : super.created(); |
| 2750 | 2184 |
| 2751 /// Checks if this type is supported on the current platform. | 2185 /// Checks if this type is supported on the current platform. |
| 2752 static bool get supported => true; | 2186 static bool get supported => true; |
| 2753 | 2187 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 2778 @SupportedBrowser(SupportedBrowser.IE, '10') | 2212 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2779 @SupportedBrowser(SupportedBrowser.SAFARI) | 2213 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2780 @Unstable() | 2214 @Unstable() |
| 2781 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { | 2215 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
| 2782 // To suppress missing implicit constructor warnings. | 2216 // To suppress missing implicit constructor warnings. |
| 2783 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } | 2217 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 2784 | 2218 |
| 2785 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') | 2219 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') |
| 2786 @DocsEditable() | 2220 @DocsEditable() |
| 2787 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); | 2221 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); |
| 2788 | |
| 2789 | |
| 2790 static FESpecularLightingElement internalCreateFESpecularLightingElement() { | |
| 2791 return new FESpecularLightingElement._internalWrap(); | |
| 2792 } | |
| 2793 | |
| 2794 factory FESpecularLightingElement._internalWrap() { | |
| 2795 return new FESpecularLightingElement._internal(); | |
| 2796 } | |
| 2797 | |
| 2798 FESpecularLightingElement._internal() : super._internal(); | |
| 2799 | |
| 2800 /** | 2222 /** |
| 2801 * Constructor instantiated by the DOM when a custom element has been created. | 2223 * Constructor instantiated by the DOM when a custom element has been created. |
| 2802 * | 2224 * |
| 2803 * This can only be called by subclasses from their created constructor. | 2225 * This can only be called by subclasses from their created constructor. |
| 2804 */ | 2226 */ |
| 2805 FESpecularLightingElement.created() : super.created(); | 2227 FESpecularLightingElement.created() : super.created(); |
| 2806 | 2228 |
| 2807 /// Checks if this type is supported on the current platform. | 2229 /// Checks if this type is supported on the current platform. |
| 2808 static bool get supported => true; | 2230 static bool get supported => true; |
| 2809 | 2231 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2858 @SupportedBrowser(SupportedBrowser.IE, '10') | 2280 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2859 @SupportedBrowser(SupportedBrowser.SAFARI) | 2281 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2860 @Unstable() | 2282 @Unstable() |
| 2861 class FESpotLightElement extends SvgElement { | 2283 class FESpotLightElement extends SvgElement { |
| 2862 // To suppress missing implicit constructor warnings. | 2284 // To suppress missing implicit constructor warnings. |
| 2863 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} | 2285 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} |
| 2864 | 2286 |
| 2865 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') | 2287 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') |
| 2866 @DocsEditable() | 2288 @DocsEditable() |
| 2867 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); | 2289 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); |
| 2868 | |
| 2869 | |
| 2870 static FESpotLightElement internalCreateFESpotLightElement() { | |
| 2871 return new FESpotLightElement._internalWrap(); | |
| 2872 } | |
| 2873 | |
| 2874 factory FESpotLightElement._internalWrap() { | |
| 2875 return new FESpotLightElement._internal(); | |
| 2876 } | |
| 2877 | |
| 2878 FESpotLightElement._internal() : super._internal(); | |
| 2879 | |
| 2880 /** | 2290 /** |
| 2881 * Constructor instantiated by the DOM when a custom element has been created. | 2291 * Constructor instantiated by the DOM when a custom element has been created. |
| 2882 * | 2292 * |
| 2883 * This can only be called by subclasses from their created constructor. | 2293 * This can only be called by subclasses from their created constructor. |
| 2884 */ | 2294 */ |
| 2885 FESpotLightElement.created() : super.created(); | 2295 FESpotLightElement.created() : super.created(); |
| 2886 | 2296 |
| 2887 /// Checks if this type is supported on the current platform. | 2297 /// Checks if this type is supported on the current platform. |
| 2888 static bool get supported => true; | 2298 static bool get supported => true; |
| 2889 | 2299 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2934 @SupportedBrowser(SupportedBrowser.IE, '10') | 2344 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2935 @SupportedBrowser(SupportedBrowser.SAFARI) | 2345 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2936 @Unstable() | 2346 @Unstable() |
| 2937 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { | 2347 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
| 2938 // To suppress missing implicit constructor warnings. | 2348 // To suppress missing implicit constructor warnings. |
| 2939 factory FETileElement._() { throw new UnsupportedError("Not supported"); } | 2349 factory FETileElement._() { throw new UnsupportedError("Not supported"); } |
| 2940 | 2350 |
| 2941 @DomName('SVGFETileElement.SVGFETileElement') | 2351 @DomName('SVGFETileElement.SVGFETileElement') |
| 2942 @DocsEditable() | 2352 @DocsEditable() |
| 2943 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); | 2353 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); |
| 2944 | |
| 2945 | |
| 2946 static FETileElement internalCreateFETileElement() { | |
| 2947 return new FETileElement._internalWrap(); | |
| 2948 } | |
| 2949 | |
| 2950 factory FETileElement._internalWrap() { | |
| 2951 return new FETileElement._internal(); | |
| 2952 } | |
| 2953 | |
| 2954 FETileElement._internal() : super._internal(); | |
| 2955 | |
| 2956 /** | 2354 /** |
| 2957 * Constructor instantiated by the DOM when a custom element has been created. | 2355 * Constructor instantiated by the DOM when a custom element has been created. |
| 2958 * | 2356 * |
| 2959 * This can only be called by subclasses from their created constructor. | 2357 * This can only be called by subclasses from their created constructor. |
| 2960 */ | 2358 */ |
| 2961 FETileElement.created() : super.created(); | 2359 FETileElement.created() : super.created(); |
| 2962 | 2360 |
| 2963 /// Checks if this type is supported on the current platform. | 2361 /// Checks if this type is supported on the current platform. |
| 2964 static bool get supported => true; | 2362 static bool get supported => true; |
| 2965 | 2363 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3002 @SupportedBrowser(SupportedBrowser.IE, '10') | 2400 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3003 @SupportedBrowser(SupportedBrowser.SAFARI) | 2401 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3004 @Unstable() | 2402 @Unstable() |
| 3005 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2403 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 3006 // To suppress missing implicit constructor warnings. | 2404 // To suppress missing implicit constructor warnings. |
| 3007 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} | 2405 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} |
| 3008 | 2406 |
| 3009 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') | 2407 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') |
| 3010 @DocsEditable() | 2408 @DocsEditable() |
| 3011 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); | 2409 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); |
| 3012 | |
| 3013 | |
| 3014 static FETurbulenceElement internalCreateFETurbulenceElement() { | |
| 3015 return new FETurbulenceElement._internalWrap(); | |
| 3016 } | |
| 3017 | |
| 3018 factory FETurbulenceElement._internalWrap() { | |
| 3019 return new FETurbulenceElement._internal(); | |
| 3020 } | |
| 3021 | |
| 3022 FETurbulenceElement._internal() : super._internal(); | |
| 3023 | |
| 3024 /** | 2410 /** |
| 3025 * Constructor instantiated by the DOM when a custom element has been created. | 2411 * Constructor instantiated by the DOM when a custom element has been created. |
| 3026 * | 2412 * |
| 3027 * This can only be called by subclasses from their created constructor. | 2413 * This can only be called by subclasses from their created constructor. |
| 3028 */ | 2414 */ |
| 3029 FETurbulenceElement.created() : super.created(); | 2415 FETurbulenceElement.created() : super.created(); |
| 3030 | 2416 |
| 3031 /// Checks if this type is supported on the current platform. | 2417 /// Checks if this type is supported on the current platform. |
| 3032 static bool get supported => true; | 2418 static bool get supported => true; |
| 3033 | 2419 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3114 @SupportedBrowser(SupportedBrowser.IE, '10') | 2500 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3115 @SupportedBrowser(SupportedBrowser.SAFARI) | 2501 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3116 @Unstable() | 2502 @Unstable() |
| 3117 class FilterElement extends SvgElement implements UriReference { | 2503 class FilterElement extends SvgElement implements UriReference { |
| 3118 // To suppress missing implicit constructor warnings. | 2504 // To suppress missing implicit constructor warnings. |
| 3119 factory FilterElement._() { throw new UnsupportedError("Not supported"); } | 2505 factory FilterElement._() { throw new UnsupportedError("Not supported"); } |
| 3120 | 2506 |
| 3121 @DomName('SVGFilterElement.SVGFilterElement') | 2507 @DomName('SVGFilterElement.SVGFilterElement') |
| 3122 @DocsEditable() | 2508 @DocsEditable() |
| 3123 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); | 2509 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); |
| 3124 | |
| 3125 | |
| 3126 static FilterElement internalCreateFilterElement() { | |
| 3127 return new FilterElement._internalWrap(); | |
| 3128 } | |
| 3129 | |
| 3130 factory FilterElement._internalWrap() { | |
| 3131 return new FilterElement._internal(); | |
| 3132 } | |
| 3133 | |
| 3134 FilterElement._internal() : super._internal(); | |
| 3135 | |
| 3136 /** | 2510 /** |
| 3137 * Constructor instantiated by the DOM when a custom element has been created. | 2511 * Constructor instantiated by the DOM when a custom element has been created. |
| 3138 * | 2512 * |
| 3139 * This can only be called by subclasses from their created constructor. | 2513 * This can only be called by subclasses from their created constructor. |
| 3140 */ | 2514 */ |
| 3141 FilterElement.created() : super.created(); | 2515 FilterElement.created() : super.created(); |
| 3142 | 2516 |
| 3143 /// Checks if this type is supported on the current platform. | 2517 /// Checks if this type is supported on the current platform. |
| 3144 static bool get supported => true; | 2518 static bool get supported => true; |
| 3145 | 2519 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3191 // WARNING: Do not edit - generated code. | 2565 // WARNING: Do not edit - generated code. |
| 3192 | 2566 |
| 3193 | 2567 |
| 3194 @DocsEditable() | 2568 @DocsEditable() |
| 3195 @DomName('SVGFilterPrimitiveStandardAttributes') | 2569 @DomName('SVGFilterPrimitiveStandardAttributes') |
| 3196 @Unstable() | 2570 @Unstable() |
| 3197 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { | 2571 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { |
| 3198 // To suppress missing implicit constructor warnings. | 2572 // To suppress missing implicit constructor warnings. |
| 3199 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } | 2573 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } |
| 3200 | 2574 |
| 3201 static FilterPrimitiveStandardAttributes internalCreateFilterPrimitiveStandard
Attributes() { | |
| 3202 return new FilterPrimitiveStandardAttributes._internalWrap(); | |
| 3203 } | |
| 3204 | |
| 3205 JsObject blink_jsObject = null; | |
| 3206 | |
| 3207 factory FilterPrimitiveStandardAttributes._internalWrap() { | |
| 3208 return new FilterPrimitiveStandardAttributes._internal(); | |
| 3209 } | |
| 3210 | |
| 3211 FilterPrimitiveStandardAttributes._internal() { } | |
| 3212 | |
| 3213 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3214 | |
| 3215 @DomName('SVGFilterPrimitiveStandardAttributes.height') | 2575 @DomName('SVGFilterPrimitiveStandardAttributes.height') |
| 3216 @DocsEditable() | 2576 @DocsEditable() |
| 3217 AnimatedLength get height; | 2577 AnimatedLength get height; |
| 3218 | 2578 |
| 3219 @DomName('SVGFilterPrimitiveStandardAttributes.result') | 2579 @DomName('SVGFilterPrimitiveStandardAttributes.result') |
| 3220 @DocsEditable() | 2580 @DocsEditable() |
| 3221 AnimatedString get result; | 2581 AnimatedString get result; |
| 3222 | 2582 |
| 3223 @DomName('SVGFilterPrimitiveStandardAttributes.width') | 2583 @DomName('SVGFilterPrimitiveStandardAttributes.width') |
| 3224 @DocsEditable() | 2584 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3240 // WARNING: Do not edit - generated code. | 2600 // WARNING: Do not edit - generated code. |
| 3241 | 2601 |
| 3242 | 2602 |
| 3243 @DocsEditable() | 2603 @DocsEditable() |
| 3244 @DomName('SVGFitToViewBox') | 2604 @DomName('SVGFitToViewBox') |
| 3245 @Unstable() | 2605 @Unstable() |
| 3246 abstract class FitToViewBox extends NativeFieldWrapperClass2 { | 2606 abstract class FitToViewBox extends NativeFieldWrapperClass2 { |
| 3247 // To suppress missing implicit constructor warnings. | 2607 // To suppress missing implicit constructor warnings. |
| 3248 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } | 2608 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } |
| 3249 | 2609 |
| 3250 static FitToViewBox internalCreateFitToViewBox() { | |
| 3251 return new FitToViewBox._internalWrap(); | |
| 3252 } | |
| 3253 | |
| 3254 JsObject blink_jsObject = null; | |
| 3255 | |
| 3256 factory FitToViewBox._internalWrap() { | |
| 3257 return new FitToViewBox._internal(); | |
| 3258 } | |
| 3259 | |
| 3260 FitToViewBox._internal() { } | |
| 3261 | |
| 3262 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3263 | |
| 3264 @DomName('SVGFitToViewBox.preserveAspectRatio') | 2610 @DomName('SVGFitToViewBox.preserveAspectRatio') |
| 3265 @DocsEditable() | 2611 @DocsEditable() |
| 3266 AnimatedPreserveAspectRatio get preserveAspectRatio; | 2612 AnimatedPreserveAspectRatio get preserveAspectRatio; |
| 3267 | 2613 |
| 3268 @DomName('SVGFitToViewBox.viewBox') | 2614 @DomName('SVGFitToViewBox.viewBox') |
| 3269 @DocsEditable() | 2615 @DocsEditable() |
| 3270 AnimatedRect get viewBox; | 2616 AnimatedRect get viewBox; |
| 3271 | 2617 |
| 3272 } | 2618 } |
| 3273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3274 // for details. All rights reserved. Use of this source code is governed by a | 2620 // for details. All rights reserved. Use of this source code is governed by a |
| 3275 // BSD-style license that can be found in the LICENSE file. | 2621 // BSD-style license that can be found in the LICENSE file. |
| 3276 | 2622 |
| 3277 // WARNING: Do not edit - generated code. | 2623 // WARNING: Do not edit - generated code. |
| 3278 | 2624 |
| 3279 | 2625 |
| 3280 @DocsEditable() | 2626 @DocsEditable() |
| 3281 @DomName('SVGForeignObjectElement') | 2627 @DomName('SVGForeignObjectElement') |
| 3282 @SupportedBrowser(SupportedBrowser.CHROME) | 2628 @SupportedBrowser(SupportedBrowser.CHROME) |
| 3283 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2629 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 3284 @SupportedBrowser(SupportedBrowser.SAFARI) | 2630 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3285 @Unstable() | 2631 @Unstable() |
| 3286 class ForeignObjectElement extends GraphicsElement { | 2632 class ForeignObjectElement extends GraphicsElement { |
| 3287 // To suppress missing implicit constructor warnings. | 2633 // To suppress missing implicit constructor warnings. |
| 3288 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } | 2634 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } |
| 3289 | 2635 |
| 3290 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') | 2636 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') |
| 3291 @DocsEditable() | 2637 @DocsEditable() |
| 3292 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); | 2638 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); |
| 3293 | |
| 3294 | |
| 3295 static ForeignObjectElement internalCreateForeignObjectElement() { | |
| 3296 return new ForeignObjectElement._internalWrap(); | |
| 3297 } | |
| 3298 | |
| 3299 factory ForeignObjectElement._internalWrap() { | |
| 3300 return new ForeignObjectElement._internal(); | |
| 3301 } | |
| 3302 | |
| 3303 ForeignObjectElement._internal() : super._internal(); | |
| 3304 | |
| 3305 /** | 2639 /** |
| 3306 * Constructor instantiated by the DOM when a custom element has been created. | 2640 * Constructor instantiated by the DOM when a custom element has been created. |
| 3307 * | 2641 * |
| 3308 * This can only be called by subclasses from their created constructor. | 2642 * This can only be called by subclasses from their created constructor. |
| 3309 */ | 2643 */ |
| 3310 ForeignObjectElement.created() : super.created(); | 2644 ForeignObjectElement.created() : super.created(); |
| 3311 | 2645 |
| 3312 /// Checks if this type is supported on the current platform. | 2646 /// Checks if this type is supported on the current platform. |
| 3313 static bool get supported => true; | 2647 static bool get supported => true; |
| 3314 | 2648 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3339 @DocsEditable() | 2673 @DocsEditable() |
| 3340 @DomName('SVGGElement') | 2674 @DomName('SVGGElement') |
| 3341 @Unstable() | 2675 @Unstable() |
| 3342 class GElement extends GraphicsElement { | 2676 class GElement extends GraphicsElement { |
| 3343 // To suppress missing implicit constructor warnings. | 2677 // To suppress missing implicit constructor warnings. |
| 3344 factory GElement._() { throw new UnsupportedError("Not supported"); } | 2678 factory GElement._() { throw new UnsupportedError("Not supported"); } |
| 3345 | 2679 |
| 3346 @DomName('SVGGElement.SVGGElement') | 2680 @DomName('SVGGElement.SVGGElement') |
| 3347 @DocsEditable() | 2681 @DocsEditable() |
| 3348 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); | 2682 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); |
| 3349 | |
| 3350 | |
| 3351 static GElement internalCreateGElement() { | |
| 3352 return new GElement._internalWrap(); | |
| 3353 } | |
| 3354 | |
| 3355 factory GElement._internalWrap() { | |
| 3356 return new GElement._internal(); | |
| 3357 } | |
| 3358 | |
| 3359 GElement._internal() : super._internal(); | |
| 3360 | |
| 3361 /** | 2683 /** |
| 3362 * Constructor instantiated by the DOM when a custom element has been created. | 2684 * Constructor instantiated by the DOM when a custom element has been created. |
| 3363 * | 2685 * |
| 3364 * This can only be called by subclasses from their created constructor. | 2686 * This can only be called by subclasses from their created constructor. |
| 3365 */ | 2687 */ |
| 3366 GElement.created() : super.created(); | 2688 GElement.created() : super.created(); |
| 3367 | 2689 |
| 3368 } | 2690 } |
| 3369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2691 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3370 // for details. All rights reserved. Use of this source code is governed by a | 2692 // for details. All rights reserved. Use of this source code is governed by a |
| 3371 // BSD-style license that can be found in the LICENSE file. | 2693 // BSD-style license that can be found in the LICENSE file. |
| 3372 | 2694 |
| 3373 // WARNING: Do not edit - generated code. | 2695 // WARNING: Do not edit - generated code. |
| 3374 | 2696 |
| 3375 | 2697 |
| 3376 @DocsEditable() | 2698 @DocsEditable() |
| 3377 @DomName('SVGGeometryElement') | 2699 @DomName('SVGGeometryElement') |
| 3378 @Experimental() // untriaged | 2700 @Experimental() // untriaged |
| 3379 class GeometryElement extends GraphicsElement { | 2701 class GeometryElement extends GraphicsElement { |
| 3380 // To suppress missing implicit constructor warnings. | 2702 // To suppress missing implicit constructor warnings. |
| 3381 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } | 2703 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } |
| 3382 | |
| 3383 | |
| 3384 static GeometryElement internalCreateGeometryElement() { | |
| 3385 return new GeometryElement._internalWrap(); | |
| 3386 } | |
| 3387 | |
| 3388 factory GeometryElement._internalWrap() { | |
| 3389 return new GeometryElement._internal(); | |
| 3390 } | |
| 3391 | |
| 3392 GeometryElement._internal() : super._internal(); | |
| 3393 | |
| 3394 /** | 2704 /** |
| 3395 * Constructor instantiated by the DOM when a custom element has been created. | 2705 * Constructor instantiated by the DOM when a custom element has been created. |
| 3396 * | 2706 * |
| 3397 * This can only be called by subclasses from their created constructor. | 2707 * This can only be called by subclasses from their created constructor. |
| 3398 */ | 2708 */ |
| 3399 GeometryElement.created() : super.created(); | 2709 GeometryElement.created() : super.created(); |
| 3400 | 2710 |
| 3401 @DomName('SVGGeometryElement.isPointInFill') | 2711 @DomName('SVGGeometryElement.isPointInFill') |
| 3402 @DocsEditable() | 2712 @DocsEditable() |
| 3403 @Experimental() // untriaged | 2713 @Experimental() // untriaged |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3415 | 2725 |
| 3416 // WARNING: Do not edit - generated code. | 2726 // WARNING: Do not edit - generated code. |
| 3417 | 2727 |
| 3418 | 2728 |
| 3419 @DocsEditable() | 2729 @DocsEditable() |
| 3420 @DomName('SVGGraphicsElement') | 2730 @DomName('SVGGraphicsElement') |
| 3421 @Experimental() // untriaged | 2731 @Experimental() // untriaged |
| 3422 class GraphicsElement extends SvgElement implements Tests { | 2732 class GraphicsElement extends SvgElement implements Tests { |
| 3423 // To suppress missing implicit constructor warnings. | 2733 // To suppress missing implicit constructor warnings. |
| 3424 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } | 2734 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } |
| 3425 | |
| 3426 | |
| 3427 static GraphicsElement internalCreateGraphicsElement() { | |
| 3428 return new GraphicsElement._internalWrap(); | |
| 3429 } | |
| 3430 | |
| 3431 factory GraphicsElement._internalWrap() { | |
| 3432 return new GraphicsElement._internal(); | |
| 3433 } | |
| 3434 | |
| 3435 GraphicsElement._internal() : super._internal(); | |
| 3436 | |
| 3437 /** | 2735 /** |
| 3438 * Constructor instantiated by the DOM when a custom element has been created. | 2736 * Constructor instantiated by the DOM when a custom element has been created. |
| 3439 * | 2737 * |
| 3440 * This can only be called by subclasses from their created constructor. | 2738 * This can only be called by subclasses from their created constructor. |
| 3441 */ | 2739 */ |
| 3442 GraphicsElement.created() : super.created(); | 2740 GraphicsElement.created() : super.created(); |
| 3443 | 2741 |
| 3444 @DomName('SVGGraphicsElement.farthestViewportElement') | 2742 @DomName('SVGGraphicsElement.farthestViewportElement') |
| 3445 @DocsEditable() | 2743 @DocsEditable() |
| 3446 @Experimental() // untriaged | 2744 @Experimental() // untriaged |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3507 @DocsEditable() | 2805 @DocsEditable() |
| 3508 @DomName('SVGImageElement') | 2806 @DomName('SVGImageElement') |
| 3509 @Unstable() | 2807 @Unstable() |
| 3510 class ImageElement extends GraphicsElement implements UriReference { | 2808 class ImageElement extends GraphicsElement implements UriReference { |
| 3511 // To suppress missing implicit constructor warnings. | 2809 // To suppress missing implicit constructor warnings. |
| 3512 factory ImageElement._() { throw new UnsupportedError("Not supported"); } | 2810 factory ImageElement._() { throw new UnsupportedError("Not supported"); } |
| 3513 | 2811 |
| 3514 @DomName('SVGImageElement.SVGImageElement') | 2812 @DomName('SVGImageElement.SVGImageElement') |
| 3515 @DocsEditable() | 2813 @DocsEditable() |
| 3516 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); | 2814 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); |
| 3517 | |
| 3518 | |
| 3519 static ImageElement internalCreateImageElement() { | |
| 3520 return new ImageElement._internalWrap(); | |
| 3521 } | |
| 3522 | |
| 3523 factory ImageElement._internalWrap() { | |
| 3524 return new ImageElement._internal(); | |
| 3525 } | |
| 3526 | |
| 3527 ImageElement._internal() : super._internal(); | |
| 3528 | |
| 3529 /** | 2815 /** |
| 3530 * Constructor instantiated by the DOM when a custom element has been created. | 2816 * Constructor instantiated by the DOM when a custom element has been created. |
| 3531 * | 2817 * |
| 3532 * This can only be called by subclasses from their created constructor. | 2818 * This can only be called by subclasses from their created constructor. |
| 3533 */ | 2819 */ |
| 3534 ImageElement.created() : super.created(); | 2820 ImageElement.created() : super.created(); |
| 3535 | 2821 |
| 3536 @DomName('SVGImageElement.height') | 2822 @DomName('SVGImageElement.height') |
| 3537 @DocsEditable() | 2823 @DocsEditable() |
| 3538 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); | 2824 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 3565 // WARNING: Do not edit - generated code. | 2851 // WARNING: Do not edit - generated code. |
| 3566 | 2852 |
| 3567 | 2853 |
| 3568 @DocsEditable() | 2854 @DocsEditable() |
| 3569 @DomName('SVGLength') | 2855 @DomName('SVGLength') |
| 3570 @Unstable() | 2856 @Unstable() |
| 3571 class Length extends NativeFieldWrapperClass2 { | 2857 class Length extends NativeFieldWrapperClass2 { |
| 3572 // To suppress missing implicit constructor warnings. | 2858 // To suppress missing implicit constructor warnings. |
| 3573 factory Length._() { throw new UnsupportedError("Not supported"); } | 2859 factory Length._() { throw new UnsupportedError("Not supported"); } |
| 3574 | 2860 |
| 3575 static Length internalCreateLength() { | |
| 3576 return new Length._internalWrap(); | |
| 3577 } | |
| 3578 | |
| 3579 JsObject blink_jsObject = null; | |
| 3580 | |
| 3581 factory Length._internalWrap() { | |
| 3582 return new Length._internal(); | |
| 3583 } | |
| 3584 | |
| 3585 Length._internal() { } | |
| 3586 | |
| 3587 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3588 | |
| 3589 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 2861 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
| 3590 @DocsEditable() | 2862 @DocsEditable() |
| 3591 static const int SVG_LENGTHTYPE_CM = 6; | 2863 static const int SVG_LENGTHTYPE_CM = 6; |
| 3592 | 2864 |
| 3593 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') | 2865 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') |
| 3594 @DocsEditable() | 2866 @DocsEditable() |
| 3595 static const int SVG_LENGTHTYPE_EMS = 3; | 2867 static const int SVG_LENGTHTYPE_EMS = 3; |
| 3596 | 2868 |
| 3597 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') | 2869 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') |
| 3598 @DocsEditable() | 2870 @DocsEditable() |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3674 // WARNING: Do not edit - generated code. | 2946 // WARNING: Do not edit - generated code. |
| 3675 | 2947 |
| 3676 | 2948 |
| 3677 @DocsEditable() | 2949 @DocsEditable() |
| 3678 @DomName('SVGLengthList') | 2950 @DomName('SVGLengthList') |
| 3679 @Unstable() | 2951 @Unstable() |
| 3680 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { | 2952 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { |
| 3681 // To suppress missing implicit constructor warnings. | 2953 // To suppress missing implicit constructor warnings. |
| 3682 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 2954 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
| 3683 | 2955 |
| 3684 static LengthList internalCreateLengthList() { | |
| 3685 return new LengthList._internalWrap(); | |
| 3686 } | |
| 3687 | |
| 3688 JsObject blink_jsObject = null; | |
| 3689 | |
| 3690 factory LengthList._internalWrap() { | |
| 3691 return new LengthList._internal(); | |
| 3692 } | |
| 3693 | |
| 3694 LengthList._internal() { } | |
| 3695 | |
| 3696 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3697 | |
| 3698 @DomName('SVGLengthList.length') | 2956 @DomName('SVGLengthList.length') |
| 3699 @DocsEditable() | 2957 @DocsEditable() |
| 3700 @Experimental() // untriaged | 2958 @Experimental() // untriaged |
| 3701 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); | 2959 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); |
| 3702 | 2960 |
| 3703 @DomName('SVGLengthList.numberOfItems') | 2961 @DomName('SVGLengthList.numberOfItems') |
| 3704 @DocsEditable() | 2962 @DocsEditable() |
| 3705 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 2963 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 3706 | 2964 |
| 3707 Length operator[](int index) { | 2965 Length operator[](int index) { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3792 @DocsEditable() | 3050 @DocsEditable() |
| 3793 @DomName('SVGLineElement') | 3051 @DomName('SVGLineElement') |
| 3794 @Unstable() | 3052 @Unstable() |
| 3795 class LineElement extends GeometryElement { | 3053 class LineElement extends GeometryElement { |
| 3796 // To suppress missing implicit constructor warnings. | 3054 // To suppress missing implicit constructor warnings. |
| 3797 factory LineElement._() { throw new UnsupportedError("Not supported"); } | 3055 factory LineElement._() { throw new UnsupportedError("Not supported"); } |
| 3798 | 3056 |
| 3799 @DomName('SVGLineElement.SVGLineElement') | 3057 @DomName('SVGLineElement.SVGLineElement') |
| 3800 @DocsEditable() | 3058 @DocsEditable() |
| 3801 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); | 3059 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); |
| 3802 | |
| 3803 | |
| 3804 static LineElement internalCreateLineElement() { | |
| 3805 return new LineElement._internalWrap(); | |
| 3806 } | |
| 3807 | |
| 3808 factory LineElement._internalWrap() { | |
| 3809 return new LineElement._internal(); | |
| 3810 } | |
| 3811 | |
| 3812 LineElement._internal() : super._internal(); | |
| 3813 | |
| 3814 /** | 3060 /** |
| 3815 * Constructor instantiated by the DOM when a custom element has been created. | 3061 * Constructor instantiated by the DOM when a custom element has been created. |
| 3816 * | 3062 * |
| 3817 * This can only be called by subclasses from their created constructor. | 3063 * This can only be called by subclasses from their created constructor. |
| 3818 */ | 3064 */ |
| 3819 LineElement.created() : super.created(); | 3065 LineElement.created() : super.created(); |
| 3820 | 3066 |
| 3821 @DomName('SVGLineElement.x1') | 3067 @DomName('SVGLineElement.x1') |
| 3822 @DocsEditable() | 3068 @DocsEditable() |
| 3823 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); | 3069 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 3845 @DocsEditable() | 3091 @DocsEditable() |
| 3846 @DomName('SVGLinearGradientElement') | 3092 @DomName('SVGLinearGradientElement') |
| 3847 @Unstable() | 3093 @Unstable() |
| 3848 class LinearGradientElement extends _GradientElement { | 3094 class LinearGradientElement extends _GradientElement { |
| 3849 // To suppress missing implicit constructor warnings. | 3095 // To suppress missing implicit constructor warnings. |
| 3850 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } | 3096 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 3851 | 3097 |
| 3852 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') | 3098 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
| 3853 @DocsEditable() | 3099 @DocsEditable() |
| 3854 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); | 3100 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); |
| 3855 | |
| 3856 | |
| 3857 static LinearGradientElement internalCreateLinearGradientElement() { | |
| 3858 return new LinearGradientElement._internalWrap(); | |
| 3859 } | |
| 3860 | |
| 3861 factory LinearGradientElement._internalWrap() { | |
| 3862 return new LinearGradientElement._internal(); | |
| 3863 } | |
| 3864 | |
| 3865 LinearGradientElement._internal() : super._internal(); | |
| 3866 | |
| 3867 /** | 3101 /** |
| 3868 * Constructor instantiated by the DOM when a custom element has been created. | 3102 * Constructor instantiated by the DOM when a custom element has been created. |
| 3869 * | 3103 * |
| 3870 * This can only be called by subclasses from their created constructor. | 3104 * This can only be called by subclasses from their created constructor. |
| 3871 */ | 3105 */ |
| 3872 LinearGradientElement.created() : super.created(); | 3106 LinearGradientElement.created() : super.created(); |
| 3873 | 3107 |
| 3874 @DomName('SVGLinearGradientElement.x1') | 3108 @DomName('SVGLinearGradientElement.x1') |
| 3875 @DocsEditable() | 3109 @DocsEditable() |
| 3876 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); | 3110 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 3898 @DocsEditable() | 3132 @DocsEditable() |
| 3899 @DomName('SVGMarkerElement') | 3133 @DomName('SVGMarkerElement') |
| 3900 @Unstable() | 3134 @Unstable() |
| 3901 class MarkerElement extends SvgElement implements FitToViewBox { | 3135 class MarkerElement extends SvgElement implements FitToViewBox { |
| 3902 // To suppress missing implicit constructor warnings. | 3136 // To suppress missing implicit constructor warnings. |
| 3903 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } | 3137 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } |
| 3904 | 3138 |
| 3905 @DomName('SVGMarkerElement.SVGMarkerElement') | 3139 @DomName('SVGMarkerElement.SVGMarkerElement') |
| 3906 @DocsEditable() | 3140 @DocsEditable() |
| 3907 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); | 3141 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); |
| 3908 | |
| 3909 | |
| 3910 static MarkerElement internalCreateMarkerElement() { | |
| 3911 return new MarkerElement._internalWrap(); | |
| 3912 } | |
| 3913 | |
| 3914 factory MarkerElement._internalWrap() { | |
| 3915 return new MarkerElement._internal(); | |
| 3916 } | |
| 3917 | |
| 3918 MarkerElement._internal() : super._internal(); | |
| 3919 | |
| 3920 /** | 3142 /** |
| 3921 * Constructor instantiated by the DOM when a custom element has been created. | 3143 * Constructor instantiated by the DOM when a custom element has been created. |
| 3922 * | 3144 * |
| 3923 * This can only be called by subclasses from their created constructor. | 3145 * This can only be called by subclasses from their created constructor. |
| 3924 */ | 3146 */ |
| 3925 MarkerElement.created() : super.created(); | 3147 MarkerElement.created() : super.created(); |
| 3926 | 3148 |
| 3927 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') | 3149 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
| 3928 @DocsEditable() | 3150 @DocsEditable() |
| 3929 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; | 3151 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4003 @DocsEditable() | 3225 @DocsEditable() |
| 4004 @DomName('SVGMaskElement') | 3226 @DomName('SVGMaskElement') |
| 4005 @Unstable() | 3227 @Unstable() |
| 4006 class MaskElement extends SvgElement implements Tests { | 3228 class MaskElement extends SvgElement implements Tests { |
| 4007 // To suppress missing implicit constructor warnings. | 3229 // To suppress missing implicit constructor warnings. |
| 4008 factory MaskElement._() { throw new UnsupportedError("Not supported"); } | 3230 factory MaskElement._() { throw new UnsupportedError("Not supported"); } |
| 4009 | 3231 |
| 4010 @DomName('SVGMaskElement.SVGMaskElement') | 3232 @DomName('SVGMaskElement.SVGMaskElement') |
| 4011 @DocsEditable() | 3233 @DocsEditable() |
| 4012 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); | 3234 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); |
| 4013 | |
| 4014 | |
| 4015 static MaskElement internalCreateMaskElement() { | |
| 4016 return new MaskElement._internalWrap(); | |
| 4017 } | |
| 4018 | |
| 4019 factory MaskElement._internalWrap() { | |
| 4020 return new MaskElement._internal(); | |
| 4021 } | |
| 4022 | |
| 4023 MaskElement._internal() : super._internal(); | |
| 4024 | |
| 4025 /** | 3235 /** |
| 4026 * Constructor instantiated by the DOM when a custom element has been created. | 3236 * Constructor instantiated by the DOM when a custom element has been created. |
| 4027 * | 3237 * |
| 4028 * This can only be called by subclasses from their created constructor. | 3238 * This can only be called by subclasses from their created constructor. |
| 4029 */ | 3239 */ |
| 4030 MaskElement.created() : super.created(); | 3240 MaskElement.created() : super.created(); |
| 4031 | 3241 |
| 4032 @DomName('SVGMaskElement.height') | 3242 @DomName('SVGMaskElement.height') |
| 4033 @DocsEditable() | 3243 @DocsEditable() |
| 4034 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 3244 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4077 // WARNING: Do not edit - generated code. | 3287 // WARNING: Do not edit - generated code. |
| 4078 | 3288 |
| 4079 | 3289 |
| 4080 @DocsEditable() | 3290 @DocsEditable() |
| 4081 @DomName('SVGMatrix') | 3291 @DomName('SVGMatrix') |
| 4082 @Unstable() | 3292 @Unstable() |
| 4083 class Matrix extends NativeFieldWrapperClass2 { | 3293 class Matrix extends NativeFieldWrapperClass2 { |
| 4084 // To suppress missing implicit constructor warnings. | 3294 // To suppress missing implicit constructor warnings. |
| 4085 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 3295 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
| 4086 | 3296 |
| 4087 static Matrix internalCreateMatrix() { | |
| 4088 return new Matrix._internalWrap(); | |
| 4089 } | |
| 4090 | |
| 4091 JsObject blink_jsObject = null; | |
| 4092 | |
| 4093 factory Matrix._internalWrap() { | |
| 4094 return new Matrix._internal(); | |
| 4095 } | |
| 4096 | |
| 4097 Matrix._internal() { } | |
| 4098 | |
| 4099 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4100 | |
| 4101 @DomName('SVGMatrix.a') | 3297 @DomName('SVGMatrix.a') |
| 4102 @DocsEditable() | 3298 @DocsEditable() |
| 4103 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); | 3299 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); |
| 4104 | 3300 |
| 4105 @DomName('SVGMatrix.a') | 3301 @DomName('SVGMatrix.a') |
| 4106 @DocsEditable() | 3302 @DocsEditable() |
| 4107 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t
his), value); | 3303 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t
his), value); |
| 4108 | 3304 |
| 4109 @DomName('SVGMatrix.b') | 3305 @DomName('SVGMatrix.b') |
| 4110 @DocsEditable() | 3306 @DocsEditable() |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4197 | 3393 |
| 4198 // WARNING: Do not edit - generated code. | 3394 // WARNING: Do not edit - generated code. |
| 4199 | 3395 |
| 4200 | 3396 |
| 4201 @DocsEditable() | 3397 @DocsEditable() |
| 4202 @DomName('SVGMetadataElement') | 3398 @DomName('SVGMetadataElement') |
| 4203 @Unstable() | 3399 @Unstable() |
| 4204 class MetadataElement extends SvgElement { | 3400 class MetadataElement extends SvgElement { |
| 4205 // To suppress missing implicit constructor warnings. | 3401 // To suppress missing implicit constructor warnings. |
| 4206 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } | 3402 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } |
| 4207 | |
| 4208 | |
| 4209 static MetadataElement internalCreateMetadataElement() { | |
| 4210 return new MetadataElement._internalWrap(); | |
| 4211 } | |
| 4212 | |
| 4213 factory MetadataElement._internalWrap() { | |
| 4214 return new MetadataElement._internal(); | |
| 4215 } | |
| 4216 | |
| 4217 MetadataElement._internal() : super._internal(); | |
| 4218 | |
| 4219 /** | 3403 /** |
| 4220 * Constructor instantiated by the DOM when a custom element has been created. | 3404 * Constructor instantiated by the DOM when a custom element has been created. |
| 4221 * | 3405 * |
| 4222 * This can only be called by subclasses from their created constructor. | 3406 * This can only be called by subclasses from their created constructor. |
| 4223 */ | 3407 */ |
| 4224 MetadataElement.created() : super.created(); | 3408 MetadataElement.created() : super.created(); |
| 4225 | 3409 |
| 4226 } | 3410 } |
| 4227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4228 // for details. All rights reserved. Use of this source code is governed by a | 3412 // for details. All rights reserved. Use of this source code is governed by a |
| 4229 // BSD-style license that can be found in the LICENSE file. | 3413 // BSD-style license that can be found in the LICENSE file. |
| 4230 | 3414 |
| 4231 // WARNING: Do not edit - generated code. | 3415 // WARNING: Do not edit - generated code. |
| 4232 | 3416 |
| 4233 | 3417 |
| 4234 @DocsEditable() | 3418 @DocsEditable() |
| 4235 @DomName('SVGNumber') | 3419 @DomName('SVGNumber') |
| 4236 @Unstable() | 3420 @Unstable() |
| 4237 class Number extends NativeFieldWrapperClass2 { | 3421 class Number extends NativeFieldWrapperClass2 { |
| 4238 // To suppress missing implicit constructor warnings. | 3422 // To suppress missing implicit constructor warnings. |
| 4239 factory Number._() { throw new UnsupportedError("Not supported"); } | 3423 factory Number._() { throw new UnsupportedError("Not supported"); } |
| 4240 | 3424 |
| 4241 static Number internalCreateNumber() { | |
| 4242 return new Number._internalWrap(); | |
| 4243 } | |
| 4244 | |
| 4245 JsObject blink_jsObject = null; | |
| 4246 | |
| 4247 factory Number._internalWrap() { | |
| 4248 return new Number._internal(); | |
| 4249 } | |
| 4250 | |
| 4251 Number._internal() { } | |
| 4252 | |
| 4253 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4254 | |
| 4255 @DomName('SVGNumber.value') | 3425 @DomName('SVGNumber.value') |
| 4256 @DocsEditable() | 3426 @DocsEditable() |
| 4257 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); | 3427 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
| 4258 | 3428 |
| 4259 @DomName('SVGNumber.value') | 3429 @DomName('SVGNumber.value') |
| 4260 @DocsEditable() | 3430 @DocsEditable() |
| 4261 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr
ap_jso(this), value); | 3431 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr
ap_jso(this), value); |
| 4262 | 3432 |
| 4263 } | 3433 } |
| 4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4265 // for details. All rights reserved. Use of this source code is governed by a | 3435 // for details. All rights reserved. Use of this source code is governed by a |
| 4266 // BSD-style license that can be found in the LICENSE file. | 3436 // BSD-style license that can be found in the LICENSE file. |
| 4267 | 3437 |
| 4268 // WARNING: Do not edit - generated code. | 3438 // WARNING: Do not edit - generated code. |
| 4269 | 3439 |
| 4270 | 3440 |
| 4271 @DocsEditable() | 3441 @DocsEditable() |
| 4272 @DomName('SVGNumberList') | 3442 @DomName('SVGNumberList') |
| 4273 @Unstable() | 3443 @Unstable() |
| 4274 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { | 3444 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { |
| 4275 // To suppress missing implicit constructor warnings. | 3445 // To suppress missing implicit constructor warnings. |
| 4276 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 3446 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
| 4277 | 3447 |
| 4278 static NumberList internalCreateNumberList() { | |
| 4279 return new NumberList._internalWrap(); | |
| 4280 } | |
| 4281 | |
| 4282 JsObject blink_jsObject = null; | |
| 4283 | |
| 4284 factory NumberList._internalWrap() { | |
| 4285 return new NumberList._internal(); | |
| 4286 } | |
| 4287 | |
| 4288 NumberList._internal() { } | |
| 4289 | |
| 4290 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4291 | |
| 4292 @DomName('SVGNumberList.length') | 3448 @DomName('SVGNumberList.length') |
| 4293 @DocsEditable() | 3449 @DocsEditable() |
| 4294 @Experimental() // untriaged | 3450 @Experimental() // untriaged |
| 4295 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); | 3451 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); |
| 4296 | 3452 |
| 4297 @DomName('SVGNumberList.numberOfItems') | 3453 @DomName('SVGNumberList.numberOfItems') |
| 4298 @DocsEditable() | 3454 @DocsEditable() |
| 4299 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 3455 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 4300 | 3456 |
| 4301 Number operator[](int index) { | 3457 Number operator[](int index) { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4386 @DocsEditable() | 3542 @DocsEditable() |
| 4387 @DomName('SVGPathElement') | 3543 @DomName('SVGPathElement') |
| 4388 @Unstable() | 3544 @Unstable() |
| 4389 class PathElement extends GeometryElement { | 3545 class PathElement extends GeometryElement { |
| 4390 // To suppress missing implicit constructor warnings. | 3546 // To suppress missing implicit constructor warnings. |
| 4391 factory PathElement._() { throw new UnsupportedError("Not supported"); } | 3547 factory PathElement._() { throw new UnsupportedError("Not supported"); } |
| 4392 | 3548 |
| 4393 @DomName('SVGPathElement.SVGPathElement') | 3549 @DomName('SVGPathElement.SVGPathElement') |
| 4394 @DocsEditable() | 3550 @DocsEditable() |
| 4395 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); | 3551 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); |
| 4396 | |
| 4397 | |
| 4398 static PathElement internalCreatePathElement() { | |
| 4399 return new PathElement._internalWrap(); | |
| 4400 } | |
| 4401 | |
| 4402 factory PathElement._internalWrap() { | |
| 4403 return new PathElement._internal(); | |
| 4404 } | |
| 4405 | |
| 4406 PathElement._internal() : super._internal(); | |
| 4407 | |
| 4408 /** | 3552 /** |
| 4409 * Constructor instantiated by the DOM when a custom element has been created. | 3553 * Constructor instantiated by the DOM when a custom element has been created. |
| 4410 * | 3554 * |
| 4411 * This can only be called by subclasses from their created constructor. | 3555 * This can only be called by subclasses from their created constructor. |
| 4412 */ | 3556 */ |
| 4413 PathElement.created() : super.created(); | 3557 PathElement.created() : super.created(); |
| 4414 | 3558 |
| 4415 @DomName('SVGPathElement.animatedNormalizedPathSegList') | 3559 @DomName('SVGPathElement.animatedNormalizedPathSegList') |
| 4416 @DocsEditable() | 3560 @DocsEditable() |
| 4417 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); | 3561 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4528 // WARNING: Do not edit - generated code. | 3672 // WARNING: Do not edit - generated code. |
| 4529 | 3673 |
| 4530 | 3674 |
| 4531 @DocsEditable() | 3675 @DocsEditable() |
| 4532 @DomName('SVGPathSeg') | 3676 @DomName('SVGPathSeg') |
| 4533 @Unstable() | 3677 @Unstable() |
| 4534 class PathSeg extends NativeFieldWrapperClass2 { | 3678 class PathSeg extends NativeFieldWrapperClass2 { |
| 4535 // To suppress missing implicit constructor warnings. | 3679 // To suppress missing implicit constructor warnings. |
| 4536 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 3680 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
| 4537 | 3681 |
| 4538 static PathSeg internalCreatePathSeg() { | |
| 4539 return new PathSeg._internalWrap(); | |
| 4540 } | |
| 4541 | |
| 4542 JsObject blink_jsObject = null; | |
| 4543 | |
| 4544 factory PathSeg._internalWrap() { | |
| 4545 return new PathSeg._internal(); | |
| 4546 } | |
| 4547 | |
| 4548 PathSeg._internal() { } | |
| 4549 | |
| 4550 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4551 | |
| 4552 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 3682 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
| 4553 @DocsEditable() | 3683 @DocsEditable() |
| 4554 static const int PATHSEG_ARC_ABS = 10; | 3684 static const int PATHSEG_ARC_ABS = 10; |
| 4555 | 3685 |
| 4556 @DomName('SVGPathSeg.PATHSEG_ARC_REL') | 3686 @DomName('SVGPathSeg.PATHSEG_ARC_REL') |
| 4557 @DocsEditable() | 3687 @DocsEditable() |
| 4558 static const int PATHSEG_ARC_REL = 11; | 3688 static const int PATHSEG_ARC_REL = 11; |
| 4559 | 3689 |
| 4560 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') | 3690 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') |
| 4561 @DocsEditable() | 3691 @DocsEditable() |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4645 // WARNING: Do not edit - generated code. | 3775 // WARNING: Do not edit - generated code. |
| 4646 | 3776 |
| 4647 | 3777 |
| 4648 @DocsEditable() | 3778 @DocsEditable() |
| 4649 @DomName('SVGPathSegArcAbs') | 3779 @DomName('SVGPathSegArcAbs') |
| 4650 @Unstable() | 3780 @Unstable() |
| 4651 class PathSegArcAbs extends PathSeg { | 3781 class PathSegArcAbs extends PathSeg { |
| 4652 // To suppress missing implicit constructor warnings. | 3782 // To suppress missing implicit constructor warnings. |
| 4653 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 3783 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
| 4654 | 3784 |
| 4655 | |
| 4656 static PathSegArcAbs internalCreatePathSegArcAbs() { | |
| 4657 return new PathSegArcAbs._internalWrap(); | |
| 4658 } | |
| 4659 | |
| 4660 factory PathSegArcAbs._internalWrap() { | |
| 4661 return new PathSegArcAbs._internal(); | |
| 4662 } | |
| 4663 | |
| 4664 PathSegArcAbs._internal() : super._internal(); | |
| 4665 | |
| 4666 | |
| 4667 @DomName('SVGPathSegArcAbs.angle') | 3785 @DomName('SVGPathSegArcAbs.angle') |
| 4668 @DocsEditable() | 3786 @DocsEditable() |
| 4669 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); | 3787 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); |
| 4670 | 3788 |
| 4671 @DomName('SVGPathSegArcAbs.angle') | 3789 @DomName('SVGPathSegArcAbs.angle') |
| 4672 @DocsEditable() | 3790 @DocsEditable() |
| 4673 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(unwrap_jso(this), value); | 3791 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4674 | 3792 |
| 4675 @DomName('SVGPathSegArcAbs.largeArcFlag') | 3793 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 4676 @DocsEditable() | 3794 @DocsEditable() |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4728 // WARNING: Do not edit - generated code. | 3846 // WARNING: Do not edit - generated code. |
| 4729 | 3847 |
| 4730 | 3848 |
| 4731 @DocsEditable() | 3849 @DocsEditable() |
| 4732 @DomName('SVGPathSegArcRel') | 3850 @DomName('SVGPathSegArcRel') |
| 4733 @Unstable() | 3851 @Unstable() |
| 4734 class PathSegArcRel extends PathSeg { | 3852 class PathSegArcRel extends PathSeg { |
| 4735 // To suppress missing implicit constructor warnings. | 3853 // To suppress missing implicit constructor warnings. |
| 4736 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 3854 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
| 4737 | 3855 |
| 4738 | |
| 4739 static PathSegArcRel internalCreatePathSegArcRel() { | |
| 4740 return new PathSegArcRel._internalWrap(); | |
| 4741 } | |
| 4742 | |
| 4743 factory PathSegArcRel._internalWrap() { | |
| 4744 return new PathSegArcRel._internal(); | |
| 4745 } | |
| 4746 | |
| 4747 PathSegArcRel._internal() : super._internal(); | |
| 4748 | |
| 4749 | |
| 4750 @DomName('SVGPathSegArcRel.angle') | 3856 @DomName('SVGPathSegArcRel.angle') |
| 4751 @DocsEditable() | 3857 @DocsEditable() |
| 4752 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); | 3858 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); |
| 4753 | 3859 |
| 4754 @DomName('SVGPathSegArcRel.angle') | 3860 @DomName('SVGPathSegArcRel.angle') |
| 4755 @DocsEditable() | 3861 @DocsEditable() |
| 4756 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(unwrap_jso(this), value); | 3862 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4757 | 3863 |
| 4758 @DomName('SVGPathSegArcRel.largeArcFlag') | 3864 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 4759 @DocsEditable() | 3865 @DocsEditable() |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4811 // WARNING: Do not edit - generated code. | 3917 // WARNING: Do not edit - generated code. |
| 4812 | 3918 |
| 4813 | 3919 |
| 4814 @DocsEditable() | 3920 @DocsEditable() |
| 4815 @DomName('SVGPathSegClosePath') | 3921 @DomName('SVGPathSegClosePath') |
| 4816 @Unstable() | 3922 @Unstable() |
| 4817 class PathSegClosePath extends PathSeg { | 3923 class PathSegClosePath extends PathSeg { |
| 4818 // To suppress missing implicit constructor warnings. | 3924 // To suppress missing implicit constructor warnings. |
| 4819 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } | 3925 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } |
| 4820 | 3926 |
| 4821 | |
| 4822 static PathSegClosePath internalCreatePathSegClosePath() { | |
| 4823 return new PathSegClosePath._internalWrap(); | |
| 4824 } | |
| 4825 | |
| 4826 factory PathSegClosePath._internalWrap() { | |
| 4827 return new PathSegClosePath._internal(); | |
| 4828 } | |
| 4829 | |
| 4830 PathSegClosePath._internal() : super._internal(); | |
| 4831 | |
| 4832 | |
| 4833 } | 3927 } |
| 4834 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4835 // for details. All rights reserved. Use of this source code is governed by a | 3929 // for details. All rights reserved. Use of this source code is governed by a |
| 4836 // BSD-style license that can be found in the LICENSE file. | 3930 // BSD-style license that can be found in the LICENSE file. |
| 4837 | 3931 |
| 4838 // WARNING: Do not edit - generated code. | 3932 // WARNING: Do not edit - generated code. |
| 4839 | 3933 |
| 4840 | 3934 |
| 4841 @DocsEditable() | 3935 @DocsEditable() |
| 4842 @DomName('SVGPathSegCurvetoCubicAbs') | 3936 @DomName('SVGPathSegCurvetoCubicAbs') |
| 4843 @Unstable() | 3937 @Unstable() |
| 4844 class PathSegCurvetoCubicAbs extends PathSeg { | 3938 class PathSegCurvetoCubicAbs extends PathSeg { |
| 4845 // To suppress missing implicit constructor warnings. | 3939 // To suppress missing implicit constructor warnings. |
| 4846 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 3940 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
| 4847 | 3941 |
| 4848 | |
| 4849 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { | |
| 4850 return new PathSegCurvetoCubicAbs._internalWrap(); | |
| 4851 } | |
| 4852 | |
| 4853 factory PathSegCurvetoCubicAbs._internalWrap() { | |
| 4854 return new PathSegCurvetoCubicAbs._internal(); | |
| 4855 } | |
| 4856 | |
| 4857 PathSegCurvetoCubicAbs._internal() : super._internal(); | |
| 4858 | |
| 4859 | |
| 4860 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3942 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 4861 @DocsEditable() | 3943 @DocsEditable() |
| 4862 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); | 3944 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); |
| 4863 | 3945 |
| 4864 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3946 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 4865 @DocsEditable() | 3947 @DocsEditable() |
| 4866 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(unwrap_jso(this), value); | 3948 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(unwrap_jso(this), value); |
| 4867 | 3949 |
| 4868 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 3950 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 4869 @DocsEditable() | 3951 @DocsEditable() |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4913 // WARNING: Do not edit - generated code. | 3995 // WARNING: Do not edit - generated code. |
| 4914 | 3996 |
| 4915 | 3997 |
| 4916 @DocsEditable() | 3998 @DocsEditable() |
| 4917 @DomName('SVGPathSegCurvetoCubicRel') | 3999 @DomName('SVGPathSegCurvetoCubicRel') |
| 4918 @Unstable() | 4000 @Unstable() |
| 4919 class PathSegCurvetoCubicRel extends PathSeg { | 4001 class PathSegCurvetoCubicRel extends PathSeg { |
| 4920 // To suppress missing implicit constructor warnings. | 4002 // To suppress missing implicit constructor warnings. |
| 4921 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 4003 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
| 4922 | 4004 |
| 4923 | |
| 4924 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { | |
| 4925 return new PathSegCurvetoCubicRel._internalWrap(); | |
| 4926 } | |
| 4927 | |
| 4928 factory PathSegCurvetoCubicRel._internalWrap() { | |
| 4929 return new PathSegCurvetoCubicRel._internal(); | |
| 4930 } | |
| 4931 | |
| 4932 PathSegCurvetoCubicRel._internal() : super._internal(); | |
| 4933 | |
| 4934 | |
| 4935 @DomName('SVGPathSegCurvetoCubicRel.x') | 4005 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 4936 @DocsEditable() | 4006 @DocsEditable() |
| 4937 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); | 4007 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); |
| 4938 | 4008 |
| 4939 @DomName('SVGPathSegCurvetoCubicRel.x') | 4009 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 4940 @DocsEditable() | 4010 @DocsEditable() |
| 4941 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(unwrap_jso(this), value); | 4011 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(unwrap_jso(this), value); |
| 4942 | 4012 |
| 4943 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4013 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 4944 @DocsEditable() | 4014 @DocsEditable() |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4988 // WARNING: Do not edit - generated code. | 4058 // WARNING: Do not edit - generated code. |
| 4989 | 4059 |
| 4990 | 4060 |
| 4991 @DocsEditable() | 4061 @DocsEditable() |
| 4992 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 4062 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
| 4993 @Unstable() | 4063 @Unstable() |
| 4994 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 4064 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
| 4995 // To suppress missing implicit constructor warnings. | 4065 // To suppress missing implicit constructor warnings. |
| 4996 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 4066 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
| 4997 | 4067 |
| 4998 | |
| 4999 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { | |
| 5000 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); | |
| 5001 } | |
| 5002 | |
| 5003 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { | |
| 5004 return new PathSegCurvetoCubicSmoothAbs._internal(); | |
| 5005 } | |
| 5006 | |
| 5007 PathSegCurvetoCubicSmoothAbs._internal() : super._internal(); | |
| 5008 | |
| 5009 | |
| 5010 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4068 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5011 @DocsEditable() | 4069 @DocsEditable() |
| 5012 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); | 4070 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); |
| 5013 | 4071 |
| 5014 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4072 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5015 @DocsEditable() | 4073 @DocsEditable() |
| 5016 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(unwrap_jso(this), value); | 4074 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(unwrap_jso(this), value); |
| 5017 | 4075 |
| 5018 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 4076 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 5019 @DocsEditable() | 4077 @DocsEditable() |
| (...skipping 27 matching lines...) Expand all Loading... |
| 5047 // WARNING: Do not edit - generated code. | 4105 // WARNING: Do not edit - generated code. |
| 5048 | 4106 |
| 5049 | 4107 |
| 5050 @DocsEditable() | 4108 @DocsEditable() |
| 5051 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 4109 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
| 5052 @Unstable() | 4110 @Unstable() |
| 5053 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 4111 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
| 5054 // To suppress missing implicit constructor warnings. | 4112 // To suppress missing implicit constructor warnings. |
| 5055 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 4113 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
| 5056 | 4114 |
| 5057 | |
| 5058 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { | |
| 5059 return new PathSegCurvetoCubicSmoothRel._internalWrap(); | |
| 5060 } | |
| 5061 | |
| 5062 factory PathSegCurvetoCubicSmoothRel._internalWrap() { | |
| 5063 return new PathSegCurvetoCubicSmoothRel._internal(); | |
| 5064 } | |
| 5065 | |
| 5066 PathSegCurvetoCubicSmoothRel._internal() : super._internal(); | |
| 5067 | |
| 5068 | |
| 5069 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4115 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5070 @DocsEditable() | 4116 @DocsEditable() |
| 5071 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); | 4117 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); |
| 5072 | 4118 |
| 5073 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4119 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5074 @DocsEditable() | 4120 @DocsEditable() |
| 5075 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(unwrap_jso(this), value); | 4121 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(unwrap_jso(this), value); |
| 5076 | 4122 |
| 5077 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 4123 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 5078 @DocsEditable() | 4124 @DocsEditable() |
| (...skipping 27 matching lines...) Expand all Loading... |
| 5106 // WARNING: Do not edit - generated code. | 4152 // WARNING: Do not edit - generated code. |
| 5107 | 4153 |
| 5108 | 4154 |
| 5109 @DocsEditable() | 4155 @DocsEditable() |
| 5110 @DomName('SVGPathSegCurvetoQuadraticAbs') | 4156 @DomName('SVGPathSegCurvetoQuadraticAbs') |
| 5111 @Unstable() | 4157 @Unstable() |
| 5112 class PathSegCurvetoQuadraticAbs extends PathSeg { | 4158 class PathSegCurvetoQuadraticAbs extends PathSeg { |
| 5113 // To suppress missing implicit constructor warnings. | 4159 // To suppress missing implicit constructor warnings. |
| 5114 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4160 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5115 | 4161 |
| 5116 | |
| 5117 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { | |
| 5118 return new PathSegCurvetoQuadraticAbs._internalWrap(); | |
| 5119 } | |
| 5120 | |
| 5121 factory PathSegCurvetoQuadraticAbs._internalWrap() { | |
| 5122 return new PathSegCurvetoQuadraticAbs._internal(); | |
| 5123 } | |
| 5124 | |
| 5125 PathSegCurvetoQuadraticAbs._internal() : super._internal(); | |
| 5126 | |
| 5127 | |
| 5128 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4162 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5129 @DocsEditable() | 4163 @DocsEditable() |
| 5130 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); | 4164 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5131 | 4165 |
| 5132 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4166 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5133 @DocsEditable() | 4167 @DocsEditable() |
| 5134 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(unwrap_jso(this), value); | 4168 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5135 | 4169 |
| 5136 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 4170 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 5137 @DocsEditable() | 4171 @DocsEditable() |
| (...skipping 27 matching lines...) Expand all Loading... |
| 5165 // WARNING: Do not edit - generated code. | 4199 // WARNING: Do not edit - generated code. |
| 5166 | 4200 |
| 5167 | 4201 |
| 5168 @DocsEditable() | 4202 @DocsEditable() |
| 5169 @DomName('SVGPathSegCurvetoQuadraticRel') | 4203 @DomName('SVGPathSegCurvetoQuadraticRel') |
| 5170 @Unstable() | 4204 @Unstable() |
| 5171 class PathSegCurvetoQuadraticRel extends PathSeg { | 4205 class PathSegCurvetoQuadraticRel extends PathSeg { |
| 5172 // To suppress missing implicit constructor warnings. | 4206 // To suppress missing implicit constructor warnings. |
| 5173 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4207 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5174 | 4208 |
| 5175 | |
| 5176 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { | |
| 5177 return new PathSegCurvetoQuadraticRel._internalWrap(); | |
| 5178 } | |
| 5179 | |
| 5180 factory PathSegCurvetoQuadraticRel._internalWrap() { | |
| 5181 return new PathSegCurvetoQuadraticRel._internal(); | |
| 5182 } | |
| 5183 | |
| 5184 PathSegCurvetoQuadraticRel._internal() : super._internal(); | |
| 5185 | |
| 5186 | |
| 5187 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4209 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5188 @DocsEditable() | 4210 @DocsEditable() |
| 5189 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); | 4211 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5190 | 4212 |
| 5191 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4213 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5192 @DocsEditable() | 4214 @DocsEditable() |
| 5193 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(unwrap_jso(this), value); | 4215 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5194 | 4216 |
| 5195 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 4217 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 5196 @DocsEditable() | 4218 @DocsEditable() |
| (...skipping 27 matching lines...) Expand all Loading... |
| 5224 // WARNING: Do not edit - generated code. | 4246 // WARNING: Do not edit - generated code. |
| 5225 | 4247 |
| 5226 | 4248 |
| 5227 @DocsEditable() | 4249 @DocsEditable() |
| 5228 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 4250 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
| 5229 @Unstable() | 4251 @Unstable() |
| 5230 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 4252 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
| 5231 // To suppress missing implicit constructor warnings. | 4253 // To suppress missing implicit constructor warnings. |
| 5232 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 4254 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
| 5233 | 4255 |
| 5234 | |
| 5235 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { | |
| 5236 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); | |
| 5237 } | |
| 5238 | |
| 5239 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { | |
| 5240 return new PathSegCurvetoQuadraticSmoothAbs._internal(); | |
| 5241 } | |
| 5242 | |
| 5243 PathSegCurvetoQuadraticSmoothAbs._internal() : super._internal(); | |
| 5244 | |
| 5245 | |
| 5246 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4256 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5247 @DocsEditable() | 4257 @DocsEditable() |
| 5248 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); | 4258 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); |
| 5249 | 4259 |
| 5250 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4260 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5251 @DocsEditable() | 4261 @DocsEditable() |
| 5252 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(unwrap_jso(this), value); | 4262 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5253 | 4263 |
| 5254 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 4264 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 5255 @DocsEditable() | 4265 @DocsEditable() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5267 // WARNING: Do not edit - generated code. | 4277 // WARNING: Do not edit - generated code. |
| 5268 | 4278 |
| 5269 | 4279 |
| 5270 @DocsEditable() | 4280 @DocsEditable() |
| 5271 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 4281 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
| 5272 @Unstable() | 4282 @Unstable() |
| 5273 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 4283 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
| 5274 // To suppress missing implicit constructor warnings. | 4284 // To suppress missing implicit constructor warnings. |
| 5275 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 4285 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
| 5276 | 4286 |
| 5277 | |
| 5278 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { | |
| 5279 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); | |
| 5280 } | |
| 5281 | |
| 5282 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { | |
| 5283 return new PathSegCurvetoQuadraticSmoothRel._internal(); | |
| 5284 } | |
| 5285 | |
| 5286 PathSegCurvetoQuadraticSmoothRel._internal() : super._internal(); | |
| 5287 | |
| 5288 | |
| 5289 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4287 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5290 @DocsEditable() | 4288 @DocsEditable() |
| 5291 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); | 4289 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); |
| 5292 | 4290 |
| 5293 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4291 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5294 @DocsEditable() | 4292 @DocsEditable() |
| 5295 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(unwrap_jso(this), value); | 4293 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5296 | 4294 |
| 5297 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 4295 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 5298 @DocsEditable() | 4296 @DocsEditable() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5310 // WARNING: Do not edit - generated code. | 4308 // WARNING: Do not edit - generated code. |
| 5311 | 4309 |
| 5312 | 4310 |
| 5313 @DocsEditable() | 4311 @DocsEditable() |
| 5314 @DomName('SVGPathSegLinetoAbs') | 4312 @DomName('SVGPathSegLinetoAbs') |
| 5315 @Unstable() | 4313 @Unstable() |
| 5316 class PathSegLinetoAbs extends PathSeg { | 4314 class PathSegLinetoAbs extends PathSeg { |
| 5317 // To suppress missing implicit constructor warnings. | 4315 // To suppress missing implicit constructor warnings. |
| 5318 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 4316 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 5319 | 4317 |
| 5320 | |
| 5321 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { | |
| 5322 return new PathSegLinetoAbs._internalWrap(); | |
| 5323 } | |
| 5324 | |
| 5325 factory PathSegLinetoAbs._internalWrap() { | |
| 5326 return new PathSegLinetoAbs._internal(); | |
| 5327 } | |
| 5328 | |
| 5329 PathSegLinetoAbs._internal() : super._internal(); | |
| 5330 | |
| 5331 | |
| 5332 @DomName('SVGPathSegLinetoAbs.x') | 4318 @DomName('SVGPathSegLinetoAbs.x') |
| 5333 @DocsEditable() | 4319 @DocsEditable() |
| 5334 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 4320 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5335 | 4321 |
| 5336 @DomName('SVGPathSegLinetoAbs.x') | 4322 @DomName('SVGPathSegLinetoAbs.x') |
| 5337 @DocsEditable() | 4323 @DocsEditable() |
| 5338 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(un
wrap_jso(this), value); | 4324 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5339 | 4325 |
| 5340 @DomName('SVGPathSegLinetoAbs.y') | 4326 @DomName('SVGPathSegLinetoAbs.y') |
| 5341 @DocsEditable() | 4327 @DocsEditable() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5353 // WARNING: Do not edit - generated code. | 4339 // WARNING: Do not edit - generated code. |
| 5354 | 4340 |
| 5355 | 4341 |
| 5356 @DocsEditable() | 4342 @DocsEditable() |
| 5357 @DomName('SVGPathSegLinetoHorizontalAbs') | 4343 @DomName('SVGPathSegLinetoHorizontalAbs') |
| 5358 @Unstable() | 4344 @Unstable() |
| 5359 class PathSegLinetoHorizontalAbs extends PathSeg { | 4345 class PathSegLinetoHorizontalAbs extends PathSeg { |
| 5360 // To suppress missing implicit constructor warnings. | 4346 // To suppress missing implicit constructor warnings. |
| 5361 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4347 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5362 | 4348 |
| 5363 | |
| 5364 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { | |
| 5365 return new PathSegLinetoHorizontalAbs._internalWrap(); | |
| 5366 } | |
| 5367 | |
| 5368 factory PathSegLinetoHorizontalAbs._internalWrap() { | |
| 5369 return new PathSegLinetoHorizontalAbs._internal(); | |
| 5370 } | |
| 5371 | |
| 5372 PathSegLinetoHorizontalAbs._internal() : super._internal(); | |
| 5373 | |
| 5374 | |
| 5375 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4349 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5376 @DocsEditable() | 4350 @DocsEditable() |
| 5377 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); | 4351 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5378 | 4352 |
| 5379 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4353 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5380 @DocsEditable() | 4354 @DocsEditable() |
| 5381 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(unwrap_jso(this), value); | 4355 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5382 | 4356 |
| 5383 } | 4357 } |
| 5384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5385 // for details. All rights reserved. Use of this source code is governed by a | 4359 // for details. All rights reserved. Use of this source code is governed by a |
| 5386 // BSD-style license that can be found in the LICENSE file. | 4360 // BSD-style license that can be found in the LICENSE file. |
| 5387 | 4361 |
| 5388 // WARNING: Do not edit - generated code. | 4362 // WARNING: Do not edit - generated code. |
| 5389 | 4363 |
| 5390 | 4364 |
| 5391 @DocsEditable() | 4365 @DocsEditable() |
| 5392 @DomName('SVGPathSegLinetoHorizontalRel') | 4366 @DomName('SVGPathSegLinetoHorizontalRel') |
| 5393 @Unstable() | 4367 @Unstable() |
| 5394 class PathSegLinetoHorizontalRel extends PathSeg { | 4368 class PathSegLinetoHorizontalRel extends PathSeg { |
| 5395 // To suppress missing implicit constructor warnings. | 4369 // To suppress missing implicit constructor warnings. |
| 5396 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4370 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5397 | 4371 |
| 5398 | |
| 5399 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { | |
| 5400 return new PathSegLinetoHorizontalRel._internalWrap(); | |
| 5401 } | |
| 5402 | |
| 5403 factory PathSegLinetoHorizontalRel._internalWrap() { | |
| 5404 return new PathSegLinetoHorizontalRel._internal(); | |
| 5405 } | |
| 5406 | |
| 5407 PathSegLinetoHorizontalRel._internal() : super._internal(); | |
| 5408 | |
| 5409 | |
| 5410 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4372 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5411 @DocsEditable() | 4373 @DocsEditable() |
| 5412 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); | 4374 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5413 | 4375 |
| 5414 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4376 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5415 @DocsEditable() | 4377 @DocsEditable() |
| 5416 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(unwrap_jso(this), value); | 4378 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5417 | 4379 |
| 5418 } | 4380 } |
| 5419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5420 // for details. All rights reserved. Use of this source code is governed by a | 4382 // for details. All rights reserved. Use of this source code is governed by a |
| 5421 // BSD-style license that can be found in the LICENSE file. | 4383 // BSD-style license that can be found in the LICENSE file. |
| 5422 | 4384 |
| 5423 // WARNING: Do not edit - generated code. | 4385 // WARNING: Do not edit - generated code. |
| 5424 | 4386 |
| 5425 | 4387 |
| 5426 @DocsEditable() | 4388 @DocsEditable() |
| 5427 @DomName('SVGPathSegLinetoRel') | 4389 @DomName('SVGPathSegLinetoRel') |
| 5428 @Unstable() | 4390 @Unstable() |
| 5429 class PathSegLinetoRel extends PathSeg { | 4391 class PathSegLinetoRel extends PathSeg { |
| 5430 // To suppress missing implicit constructor warnings. | 4392 // To suppress missing implicit constructor warnings. |
| 5431 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 4393 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
| 5432 | 4394 |
| 5433 | |
| 5434 static PathSegLinetoRel internalCreatePathSegLinetoRel() { | |
| 5435 return new PathSegLinetoRel._internalWrap(); | |
| 5436 } | |
| 5437 | |
| 5438 factory PathSegLinetoRel._internalWrap() { | |
| 5439 return new PathSegLinetoRel._internal(); | |
| 5440 } | |
| 5441 | |
| 5442 PathSegLinetoRel._internal() : super._internal(); | |
| 5443 | |
| 5444 | |
| 5445 @DomName('SVGPathSegLinetoRel.x') | 4395 @DomName('SVGPathSegLinetoRel.x') |
| 5446 @DocsEditable() | 4396 @DocsEditable() |
| 5447 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 4397 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5448 | 4398 |
| 5449 @DomName('SVGPathSegLinetoRel.x') | 4399 @DomName('SVGPathSegLinetoRel.x') |
| 5450 @DocsEditable() | 4400 @DocsEditable() |
| 5451 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(un
wrap_jso(this), value); | 4401 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5452 | 4402 |
| 5453 @DomName('SVGPathSegLinetoRel.y') | 4403 @DomName('SVGPathSegLinetoRel.y') |
| 5454 @DocsEditable() | 4404 @DocsEditable() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5466 // WARNING: Do not edit - generated code. | 4416 // WARNING: Do not edit - generated code. |
| 5467 | 4417 |
| 5468 | 4418 |
| 5469 @DocsEditable() | 4419 @DocsEditable() |
| 5470 @DomName('SVGPathSegLinetoVerticalAbs') | 4420 @DomName('SVGPathSegLinetoVerticalAbs') |
| 5471 @Unstable() | 4421 @Unstable() |
| 5472 class PathSegLinetoVerticalAbs extends PathSeg { | 4422 class PathSegLinetoVerticalAbs extends PathSeg { |
| 5473 // To suppress missing implicit constructor warnings. | 4423 // To suppress missing implicit constructor warnings. |
| 5474 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 4424 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
| 5475 | 4425 |
| 5476 | |
| 5477 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { | |
| 5478 return new PathSegLinetoVerticalAbs._internalWrap(); | |
| 5479 } | |
| 5480 | |
| 5481 factory PathSegLinetoVerticalAbs._internalWrap() { | |
| 5482 return new PathSegLinetoVerticalAbs._internal(); | |
| 5483 } | |
| 5484 | |
| 5485 PathSegLinetoVerticalAbs._internal() : super._internal(); | |
| 5486 | |
| 5487 | |
| 5488 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4426 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5489 @DocsEditable() | 4427 @DocsEditable() |
| 5490 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); | 4428 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); |
| 5491 | 4429 |
| 5492 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4430 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5493 @DocsEditable() | 4431 @DocsEditable() |
| 5494 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(unwrap_jso(this), value); | 4432 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5495 | 4433 |
| 5496 } | 4434 } |
| 5497 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4435 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5498 // for details. All rights reserved. Use of this source code is governed by a | 4436 // for details. All rights reserved. Use of this source code is governed by a |
| 5499 // BSD-style license that can be found in the LICENSE file. | 4437 // BSD-style license that can be found in the LICENSE file. |
| 5500 | 4438 |
| 5501 // WARNING: Do not edit - generated code. | 4439 // WARNING: Do not edit - generated code. |
| 5502 | 4440 |
| 5503 | 4441 |
| 5504 @DocsEditable() | 4442 @DocsEditable() |
| 5505 @DomName('SVGPathSegLinetoVerticalRel') | 4443 @DomName('SVGPathSegLinetoVerticalRel') |
| 5506 @Unstable() | 4444 @Unstable() |
| 5507 class PathSegLinetoVerticalRel extends PathSeg { | 4445 class PathSegLinetoVerticalRel extends PathSeg { |
| 5508 // To suppress missing implicit constructor warnings. | 4446 // To suppress missing implicit constructor warnings. |
| 5509 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 4447 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
| 5510 | 4448 |
| 5511 | |
| 5512 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { | |
| 5513 return new PathSegLinetoVerticalRel._internalWrap(); | |
| 5514 } | |
| 5515 | |
| 5516 factory PathSegLinetoVerticalRel._internalWrap() { | |
| 5517 return new PathSegLinetoVerticalRel._internal(); | |
| 5518 } | |
| 5519 | |
| 5520 PathSegLinetoVerticalRel._internal() : super._internal(); | |
| 5521 | |
| 5522 | |
| 5523 @DomName('SVGPathSegLinetoVerticalRel.y') | 4449 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5524 @DocsEditable() | 4450 @DocsEditable() |
| 5525 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); | 4451 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); |
| 5526 | 4452 |
| 5527 @DomName('SVGPathSegLinetoVerticalRel.y') | 4453 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5528 @DocsEditable() | 4454 @DocsEditable() |
| 5529 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(unwrap_jso(this), value); | 4455 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5530 | 4456 |
| 5531 } | 4457 } |
| 5532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4458 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5533 // for details. All rights reserved. Use of this source code is governed by a | 4459 // for details. All rights reserved. Use of this source code is governed by a |
| 5534 // BSD-style license that can be found in the LICENSE file. | 4460 // BSD-style license that can be found in the LICENSE file. |
| 5535 | 4461 |
| 5536 // WARNING: Do not edit - generated code. | 4462 // WARNING: Do not edit - generated code. |
| 5537 | 4463 |
| 5538 | 4464 |
| 5539 @DocsEditable() | 4465 @DocsEditable() |
| 5540 @DomName('SVGPathSegList') | 4466 @DomName('SVGPathSegList') |
| 5541 @Unstable() | 4467 @Unstable() |
| 5542 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { | 4468 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { |
| 5543 // To suppress missing implicit constructor warnings. | 4469 // To suppress missing implicit constructor warnings. |
| 5544 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 4470 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
| 5545 | 4471 |
| 5546 static PathSegList internalCreatePathSegList() { | |
| 5547 return new PathSegList._internalWrap(); | |
| 5548 } | |
| 5549 | |
| 5550 JsObject blink_jsObject = null; | |
| 5551 | |
| 5552 factory PathSegList._internalWrap() { | |
| 5553 return new PathSegList._internal(); | |
| 5554 } | |
| 5555 | |
| 5556 PathSegList._internal() { } | |
| 5557 | |
| 5558 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 5559 | |
| 5560 @DomName('SVGPathSegList.length') | 4472 @DomName('SVGPathSegList.length') |
| 5561 @DocsEditable() | 4473 @DocsEditable() |
| 5562 @Experimental() // untriaged | 4474 @Experimental() // untriaged |
| 5563 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); | 4475 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); |
| 5564 | 4476 |
| 5565 @DomName('SVGPathSegList.numberOfItems') | 4477 @DomName('SVGPathSegList.numberOfItems') |
| 5566 @DocsEditable() | 4478 @DocsEditable() |
| 5567 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); | 4479 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); |
| 5568 | 4480 |
| 5569 PathSeg operator[](int index) { | 4481 PathSeg operator[](int index) { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5651 // WARNING: Do not edit - generated code. | 4563 // WARNING: Do not edit - generated code. |
| 5652 | 4564 |
| 5653 | 4565 |
| 5654 @DocsEditable() | 4566 @DocsEditable() |
| 5655 @DomName('SVGPathSegMovetoAbs') | 4567 @DomName('SVGPathSegMovetoAbs') |
| 5656 @Unstable() | 4568 @Unstable() |
| 5657 class PathSegMovetoAbs extends PathSeg { | 4569 class PathSegMovetoAbs extends PathSeg { |
| 5658 // To suppress missing implicit constructor warnings. | 4570 // To suppress missing implicit constructor warnings. |
| 5659 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 4571 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 5660 | 4572 |
| 5661 | |
| 5662 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { | |
| 5663 return new PathSegMovetoAbs._internalWrap(); | |
| 5664 } | |
| 5665 | |
| 5666 factory PathSegMovetoAbs._internalWrap() { | |
| 5667 return new PathSegMovetoAbs._internal(); | |
| 5668 } | |
| 5669 | |
| 5670 PathSegMovetoAbs._internal() : super._internal(); | |
| 5671 | |
| 5672 | |
| 5673 @DomName('SVGPathSegMovetoAbs.x') | 4573 @DomName('SVGPathSegMovetoAbs.x') |
| 5674 @DocsEditable() | 4574 @DocsEditable() |
| 5675 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 4575 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5676 | 4576 |
| 5677 @DomName('SVGPathSegMovetoAbs.x') | 4577 @DomName('SVGPathSegMovetoAbs.x') |
| 5678 @DocsEditable() | 4578 @DocsEditable() |
| 5679 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(un
wrap_jso(this), value); | 4579 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5680 | 4580 |
| 5681 @DomName('SVGPathSegMovetoAbs.y') | 4581 @DomName('SVGPathSegMovetoAbs.y') |
| 5682 @DocsEditable() | 4582 @DocsEditable() |
| (...skipping 11 matching lines...) Expand all Loading... |
| 5694 // WARNING: Do not edit - generated code. | 4594 // WARNING: Do not edit - generated code. |
| 5695 | 4595 |
| 5696 | 4596 |
| 5697 @DocsEditable() | 4597 @DocsEditable() |
| 5698 @DomName('SVGPathSegMovetoRel') | 4598 @DomName('SVGPathSegMovetoRel') |
| 5699 @Unstable() | 4599 @Unstable() |
| 5700 class PathSegMovetoRel extends PathSeg { | 4600 class PathSegMovetoRel extends PathSeg { |
| 5701 // To suppress missing implicit constructor warnings. | 4601 // To suppress missing implicit constructor warnings. |
| 5702 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 4602 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
| 5703 | 4603 |
| 5704 | |
| 5705 static PathSegMovetoRel internalCreatePathSegMovetoRel() { | |
| 5706 return new PathSegMovetoRel._internalWrap(); | |
| 5707 } | |
| 5708 | |
| 5709 factory PathSegMovetoRel._internalWrap() { | |
| 5710 return new PathSegMovetoRel._internal(); | |
| 5711 } | |
| 5712 | |
| 5713 PathSegMovetoRel._internal() : super._internal(); | |
| 5714 | |
| 5715 | |
| 5716 @DomName('SVGPathSegMovetoRel.x') | 4604 @DomName('SVGPathSegMovetoRel.x') |
| 5717 @DocsEditable() | 4605 @DocsEditable() |
| 5718 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 4606 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5719 | 4607 |
| 5720 @DomName('SVGPathSegMovetoRel.x') | 4608 @DomName('SVGPathSegMovetoRel.x') |
| 5721 @DocsEditable() | 4609 @DocsEditable() |
| 5722 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(un
wrap_jso(this), value); | 4610 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5723 | 4611 |
| 5724 @DomName('SVGPathSegMovetoRel.y') | 4612 @DomName('SVGPathSegMovetoRel.y') |
| 5725 @DocsEditable() | 4613 @DocsEditable() |
| (...skipping 14 matching lines...) Expand all Loading... |
| 5740 @DocsEditable() | 4628 @DocsEditable() |
| 5741 @DomName('SVGPatternElement') | 4629 @DomName('SVGPatternElement') |
| 5742 @Unstable() | 4630 @Unstable() |
| 5743 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { | 4631 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { |
| 5744 // To suppress missing implicit constructor warnings. | 4632 // To suppress missing implicit constructor warnings. |
| 5745 factory PatternElement._() { throw new UnsupportedError("Not supported"); } | 4633 factory PatternElement._() { throw new UnsupportedError("Not supported"); } |
| 5746 | 4634 |
| 5747 @DomName('SVGPatternElement.SVGPatternElement') | 4635 @DomName('SVGPatternElement.SVGPatternElement') |
| 5748 @DocsEditable() | 4636 @DocsEditable() |
| 5749 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); | 4637 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); |
| 5750 | |
| 5751 | |
| 5752 static PatternElement internalCreatePatternElement() { | |
| 5753 return new PatternElement._internalWrap(); | |
| 5754 } | |
| 5755 | |
| 5756 factory PatternElement._internalWrap() { | |
| 5757 return new PatternElement._internal(); | |
| 5758 } | |
| 5759 | |
| 5760 PatternElement._internal() : super._internal(); | |
| 5761 | |
| 5762 /** | 4638 /** |
| 5763 * Constructor instantiated by the DOM when a custom element has been created. | 4639 * Constructor instantiated by the DOM when a custom element has been created. |
| 5764 * | 4640 * |
| 5765 * This can only be called by subclasses from their created constructor. | 4641 * This can only be called by subclasses from their created constructor. |
| 5766 */ | 4642 */ |
| 5767 PatternElement.created() : super.created(); | 4643 PatternElement.created() : super.created(); |
| 5768 | 4644 |
| 5769 @DomName('SVGPatternElement.height') | 4645 @DomName('SVGPatternElement.height') |
| 5770 @DocsEditable() | 4646 @DocsEditable() |
| 5771 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); | 4647 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5830 // WARNING: Do not edit - generated code. | 4706 // WARNING: Do not edit - generated code. |
| 5831 | 4707 |
| 5832 | 4708 |
| 5833 @DocsEditable() | 4709 @DocsEditable() |
| 5834 @DomName('SVGPoint') | 4710 @DomName('SVGPoint') |
| 5835 @Unstable() | 4711 @Unstable() |
| 5836 class Point extends NativeFieldWrapperClass2 { | 4712 class Point extends NativeFieldWrapperClass2 { |
| 5837 // To suppress missing implicit constructor warnings. | 4713 // To suppress missing implicit constructor warnings. |
| 5838 factory Point._() { throw new UnsupportedError("Not supported"); } | 4714 factory Point._() { throw new UnsupportedError("Not supported"); } |
| 5839 | 4715 |
| 5840 static Point internalCreatePoint() { | |
| 5841 return new Point._internalWrap(); | |
| 5842 } | |
| 5843 | |
| 5844 JsObject blink_jsObject = null; | |
| 5845 | |
| 5846 factory Point._internalWrap() { | |
| 5847 return new Point._internal(); | |
| 5848 } | |
| 5849 | |
| 5850 Point._internal() { } | |
| 5851 | |
| 5852 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 5853 | |
| 5854 @DomName('SVGPoint.x') | 4716 @DomName('SVGPoint.x') |
| 5855 @DocsEditable() | 4717 @DocsEditable() |
| 5856 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); | 4718 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); |
| 5857 | 4719 |
| 5858 @DomName('SVGPoint.x') | 4720 @DomName('SVGPoint.x') |
| 5859 @DocsEditable() | 4721 @DocsEditable() |
| 5860 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th
is), value); | 4722 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th
is), value); |
| 5861 | 4723 |
| 5862 @DomName('SVGPoint.y') | 4724 @DomName('SVGPoint.y') |
| 5863 @DocsEditable() | 4725 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 5879 // WARNING: Do not edit - generated code. | 4741 // WARNING: Do not edit - generated code. |
| 5880 | 4742 |
| 5881 | 4743 |
| 5882 @DocsEditable() | 4744 @DocsEditable() |
| 5883 @DomName('SVGPointList') | 4745 @DomName('SVGPointList') |
| 5884 @Unstable() | 4746 @Unstable() |
| 5885 class PointList extends NativeFieldWrapperClass2 { | 4747 class PointList extends NativeFieldWrapperClass2 { |
| 5886 // To suppress missing implicit constructor warnings. | 4748 // To suppress missing implicit constructor warnings. |
| 5887 factory PointList._() { throw new UnsupportedError("Not supported"); } | 4749 factory PointList._() { throw new UnsupportedError("Not supported"); } |
| 5888 | 4750 |
| 5889 static PointList internalCreatePointList() { | |
| 5890 return new PointList._internalWrap(); | |
| 5891 } | |
| 5892 | |
| 5893 JsObject blink_jsObject = null; | |
| 5894 | |
| 5895 factory PointList._internalWrap() { | |
| 5896 return new PointList._internal(); | |
| 5897 } | |
| 5898 | |
| 5899 PointList._internal() { } | |
| 5900 | |
| 5901 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 5902 | |
| 5903 @DomName('SVGPointList.length') | 4751 @DomName('SVGPointList.length') |
| 5904 @DocsEditable() | 4752 @DocsEditable() |
| 5905 @Experimental() // untriaged | 4753 @Experimental() // untriaged |
| 5906 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); | 4754 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); |
| 5907 | 4755 |
| 5908 @DomName('SVGPointList.numberOfItems') | 4756 @DomName('SVGPointList.numberOfItems') |
| 5909 @DocsEditable() | 4757 @DocsEditable() |
| 5910 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); | 4758 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); |
| 5911 | 4759 |
| 5912 @DomName('SVGPointList.__setter__') | 4760 @DomName('SVGPointList.__setter__') |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5953 @DocsEditable() | 4801 @DocsEditable() |
| 5954 @DomName('SVGPolygonElement') | 4802 @DomName('SVGPolygonElement') |
| 5955 @Unstable() | 4803 @Unstable() |
| 5956 class PolygonElement extends GeometryElement { | 4804 class PolygonElement extends GeometryElement { |
| 5957 // To suppress missing implicit constructor warnings. | 4805 // To suppress missing implicit constructor warnings. |
| 5958 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } | 4806 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } |
| 5959 | 4807 |
| 5960 @DomName('SVGPolygonElement.SVGPolygonElement') | 4808 @DomName('SVGPolygonElement.SVGPolygonElement') |
| 5961 @DocsEditable() | 4809 @DocsEditable() |
| 5962 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); | 4810 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); |
| 5963 | |
| 5964 | |
| 5965 static PolygonElement internalCreatePolygonElement() { | |
| 5966 return new PolygonElement._internalWrap(); | |
| 5967 } | |
| 5968 | |
| 5969 factory PolygonElement._internalWrap() { | |
| 5970 return new PolygonElement._internal(); | |
| 5971 } | |
| 5972 | |
| 5973 PolygonElement._internal() : super._internal(); | |
| 5974 | |
| 5975 /** | 4811 /** |
| 5976 * Constructor instantiated by the DOM when a custom element has been created. | 4812 * Constructor instantiated by the DOM when a custom element has been created. |
| 5977 * | 4813 * |
| 5978 * This can only be called by subclasses from their created constructor. | 4814 * This can only be called by subclasses from their created constructor. |
| 5979 */ | 4815 */ |
| 5980 PolygonElement.created() : super.created(); | 4816 PolygonElement.created() : super.created(); |
| 5981 | 4817 |
| 5982 @DomName('SVGPolygonElement.animatedPoints') | 4818 @DomName('SVGPolygonElement.animatedPoints') |
| 5983 @DocsEditable() | 4819 @DocsEditable() |
| 5984 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); | 4820 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5998 @DocsEditable() | 4834 @DocsEditable() |
| 5999 @DomName('SVGPolylineElement') | 4835 @DomName('SVGPolylineElement') |
| 6000 @Unstable() | 4836 @Unstable() |
| 6001 class PolylineElement extends GeometryElement { | 4837 class PolylineElement extends GeometryElement { |
| 6002 // To suppress missing implicit constructor warnings. | 4838 // To suppress missing implicit constructor warnings. |
| 6003 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } | 4839 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } |
| 6004 | 4840 |
| 6005 @DomName('SVGPolylineElement.SVGPolylineElement') | 4841 @DomName('SVGPolylineElement.SVGPolylineElement') |
| 6006 @DocsEditable() | 4842 @DocsEditable() |
| 6007 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); | 4843 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); |
| 6008 | |
| 6009 | |
| 6010 static PolylineElement internalCreatePolylineElement() { | |
| 6011 return new PolylineElement._internalWrap(); | |
| 6012 } | |
| 6013 | |
| 6014 factory PolylineElement._internalWrap() { | |
| 6015 return new PolylineElement._internal(); | |
| 6016 } | |
| 6017 | |
| 6018 PolylineElement._internal() : super._internal(); | |
| 6019 | |
| 6020 /** | 4844 /** |
| 6021 * Constructor instantiated by the DOM when a custom element has been created. | 4845 * Constructor instantiated by the DOM when a custom element has been created. |
| 6022 * | 4846 * |
| 6023 * This can only be called by subclasses from their created constructor. | 4847 * This can only be called by subclasses from their created constructor. |
| 6024 */ | 4848 */ |
| 6025 PolylineElement.created() : super.created(); | 4849 PolylineElement.created() : super.created(); |
| 6026 | 4850 |
| 6027 @DomName('SVGPolylineElement.animatedPoints') | 4851 @DomName('SVGPolylineElement.animatedPoints') |
| 6028 @DocsEditable() | 4852 @DocsEditable() |
| 6029 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); | 4853 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6040 // WARNING: Do not edit - generated code. | 4864 // WARNING: Do not edit - generated code. |
| 6041 | 4865 |
| 6042 | 4866 |
| 6043 @DocsEditable() | 4867 @DocsEditable() |
| 6044 @DomName('SVGPreserveAspectRatio') | 4868 @DomName('SVGPreserveAspectRatio') |
| 6045 @Unstable() | 4869 @Unstable() |
| 6046 class PreserveAspectRatio extends NativeFieldWrapperClass2 { | 4870 class PreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 6047 // To suppress missing implicit constructor warnings. | 4871 // To suppress missing implicit constructor warnings. |
| 6048 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 4872 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
| 6049 | 4873 |
| 6050 static PreserveAspectRatio internalCreatePreserveAspectRatio() { | |
| 6051 return new PreserveAspectRatio._internalWrap(); | |
| 6052 } | |
| 6053 | |
| 6054 JsObject blink_jsObject = null; | |
| 6055 | |
| 6056 factory PreserveAspectRatio._internalWrap() { | |
| 6057 return new PreserveAspectRatio._internal(); | |
| 6058 } | |
| 6059 | |
| 6060 PreserveAspectRatio._internal() { } | |
| 6061 | |
| 6062 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6063 | |
| 6064 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 4874 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
| 6065 @DocsEditable() | 4875 @DocsEditable() |
| 6066 static const int SVG_MEETORSLICE_MEET = 1; | 4876 static const int SVG_MEETORSLICE_MEET = 1; |
| 6067 | 4877 |
| 6068 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') | 4878 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') |
| 6069 @DocsEditable() | 4879 @DocsEditable() |
| 6070 static const int SVG_MEETORSLICE_SLICE = 2; | 4880 static const int SVG_MEETORSLICE_SLICE = 2; |
| 6071 | 4881 |
| 6072 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') | 4882 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') |
| 6073 @DocsEditable() | 4883 @DocsEditable() |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6144 @DocsEditable() | 4954 @DocsEditable() |
| 6145 @DomName('SVGRadialGradientElement') | 4955 @DomName('SVGRadialGradientElement') |
| 6146 @Unstable() | 4956 @Unstable() |
| 6147 class RadialGradientElement extends _GradientElement { | 4957 class RadialGradientElement extends _GradientElement { |
| 6148 // To suppress missing implicit constructor warnings. | 4958 // To suppress missing implicit constructor warnings. |
| 6149 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } | 4959 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 6150 | 4960 |
| 6151 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') | 4961 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
| 6152 @DocsEditable() | 4962 @DocsEditable() |
| 6153 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); | 4963 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); |
| 6154 | |
| 6155 | |
| 6156 static RadialGradientElement internalCreateRadialGradientElement() { | |
| 6157 return new RadialGradientElement._internalWrap(); | |
| 6158 } | |
| 6159 | |
| 6160 factory RadialGradientElement._internalWrap() { | |
| 6161 return new RadialGradientElement._internal(); | |
| 6162 } | |
| 6163 | |
| 6164 RadialGradientElement._internal() : super._internal(); | |
| 6165 | |
| 6166 /** | 4964 /** |
| 6167 * Constructor instantiated by the DOM when a custom element has been created. | 4965 * Constructor instantiated by the DOM when a custom element has been created. |
| 6168 * | 4966 * |
| 6169 * This can only be called by subclasses from their created constructor. | 4967 * This can only be called by subclasses from their created constructor. |
| 6170 */ | 4968 */ |
| 6171 RadialGradientElement.created() : super.created(); | 4969 RadialGradientElement.created() : super.created(); |
| 6172 | 4970 |
| 6173 @DomName('SVGRadialGradientElement.cx') | 4971 @DomName('SVGRadialGradientElement.cx') |
| 6174 @DocsEditable() | 4972 @DocsEditable() |
| 6175 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); | 4973 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6202 // WARNING: Do not edit - generated code. | 5000 // WARNING: Do not edit - generated code. |
| 6203 | 5001 |
| 6204 | 5002 |
| 6205 @DocsEditable() | 5003 @DocsEditable() |
| 6206 @DomName('SVGRect') | 5004 @DomName('SVGRect') |
| 6207 @Unstable() | 5005 @Unstable() |
| 6208 class Rect extends NativeFieldWrapperClass2 { | 5006 class Rect extends NativeFieldWrapperClass2 { |
| 6209 // To suppress missing implicit constructor warnings. | 5007 // To suppress missing implicit constructor warnings. |
| 6210 factory Rect._() { throw new UnsupportedError("Not supported"); } | 5008 factory Rect._() { throw new UnsupportedError("Not supported"); } |
| 6211 | 5009 |
| 6212 static Rect internalCreateRect() { | |
| 6213 return new Rect._internalWrap(); | |
| 6214 } | |
| 6215 | |
| 6216 JsObject blink_jsObject = null; | |
| 6217 | |
| 6218 factory Rect._internalWrap() { | |
| 6219 return new Rect._internal(); | |
| 6220 } | |
| 6221 | |
| 6222 Rect._internal() { } | |
| 6223 | |
| 6224 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6225 | |
| 6226 @DomName('SVGRect.height') | 5010 @DomName('SVGRect.height') |
| 6227 @DocsEditable() | 5011 @DocsEditable() |
| 6228 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); | 5012 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); |
| 6229 | 5013 |
| 6230 @DomName('SVGRect.height') | 5014 @DomName('SVGRect.height') |
| 6231 @DocsEditable() | 5015 @DocsEditable() |
| 6232 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr
ap_jso(this), value); | 5016 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr
ap_jso(this), value); |
| 6233 | 5017 |
| 6234 @DomName('SVGRect.width') | 5018 @DomName('SVGRect.width') |
| 6235 @DocsEditable() | 5019 @DocsEditable() |
| (...skipping 30 matching lines...) Expand all Loading... |
| 6266 @DocsEditable() | 5050 @DocsEditable() |
| 6267 @DomName('SVGRectElement') | 5051 @DomName('SVGRectElement') |
| 6268 @Unstable() | 5052 @Unstable() |
| 6269 class RectElement extends GeometryElement { | 5053 class RectElement extends GeometryElement { |
| 6270 // To suppress missing implicit constructor warnings. | 5054 // To suppress missing implicit constructor warnings. |
| 6271 factory RectElement._() { throw new UnsupportedError("Not supported"); } | 5055 factory RectElement._() { throw new UnsupportedError("Not supported"); } |
| 6272 | 5056 |
| 6273 @DomName('SVGRectElement.SVGRectElement') | 5057 @DomName('SVGRectElement.SVGRectElement') |
| 6274 @DocsEditable() | 5058 @DocsEditable() |
| 6275 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); | 5059 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); |
| 6276 | |
| 6277 | |
| 6278 static RectElement internalCreateRectElement() { | |
| 6279 return new RectElement._internalWrap(); | |
| 6280 } | |
| 6281 | |
| 6282 factory RectElement._internalWrap() { | |
| 6283 return new RectElement._internal(); | |
| 6284 } | |
| 6285 | |
| 6286 RectElement._internal() : super._internal(); | |
| 6287 | |
| 6288 /** | 5060 /** |
| 6289 * Constructor instantiated by the DOM when a custom element has been created. | 5061 * Constructor instantiated by the DOM when a custom element has been created. |
| 6290 * | 5062 * |
| 6291 * This can only be called by subclasses from their created constructor. | 5063 * This can only be called by subclasses from their created constructor. |
| 6292 */ | 5064 */ |
| 6293 RectElement.created() : super.created(); | 5065 RectElement.created() : super.created(); |
| 6294 | 5066 |
| 6295 @DomName('SVGRectElement.height') | 5067 @DomName('SVGRectElement.height') |
| 6296 @DocsEditable() | 5068 @DocsEditable() |
| 6297 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 5069 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6324 // WARNING: Do not edit - generated code. | 5096 // WARNING: Do not edit - generated code. |
| 6325 | 5097 |
| 6326 | 5098 |
| 6327 @DocsEditable() | 5099 @DocsEditable() |
| 6328 @DomName('SVGRenderingIntent') | 5100 @DomName('SVGRenderingIntent') |
| 6329 @Unstable() | 5101 @Unstable() |
| 6330 class RenderingIntent extends NativeFieldWrapperClass2 { | 5102 class RenderingIntent extends NativeFieldWrapperClass2 { |
| 6331 // To suppress missing implicit constructor warnings. | 5103 // To suppress missing implicit constructor warnings. |
| 6332 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 5104 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
| 6333 | 5105 |
| 6334 static RenderingIntent internalCreateRenderingIntent() { | |
| 6335 return new RenderingIntent._internalWrap(); | |
| 6336 } | |
| 6337 | |
| 6338 JsObject blink_jsObject = null; | |
| 6339 | |
| 6340 factory RenderingIntent._internalWrap() { | |
| 6341 return new RenderingIntent._internal(); | |
| 6342 } | |
| 6343 | |
| 6344 RenderingIntent._internal() { } | |
| 6345 | |
| 6346 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6347 | |
| 6348 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 5106 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
| 6349 @DocsEditable() | 5107 @DocsEditable() |
| 6350 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 5108 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 6351 | 5109 |
| 6352 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') | 5110 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') |
| 6353 @DocsEditable() | 5111 @DocsEditable() |
| 6354 static const int RENDERING_INTENT_AUTO = 1; | 5112 static const int RENDERING_INTENT_AUTO = 1; |
| 6355 | 5113 |
| 6356 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') | 5114 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') |
| 6357 @DocsEditable() | 5115 @DocsEditable() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6380 @DocsEditable() | 5138 @DocsEditable() |
| 6381 @DomName('SVGScriptElement') | 5139 @DomName('SVGScriptElement') |
| 6382 @Unstable() | 5140 @Unstable() |
| 6383 class ScriptElement extends SvgElement implements UriReference { | 5141 class ScriptElement extends SvgElement implements UriReference { |
| 6384 // To suppress missing implicit constructor warnings. | 5142 // To suppress missing implicit constructor warnings. |
| 6385 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } | 5143 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } |
| 6386 | 5144 |
| 6387 @DomName('SVGScriptElement.SVGScriptElement') | 5145 @DomName('SVGScriptElement.SVGScriptElement') |
| 6388 @DocsEditable() | 5146 @DocsEditable() |
| 6389 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); | 5147 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); |
| 6390 | |
| 6391 | |
| 6392 static ScriptElement internalCreateScriptElement() { | |
| 6393 return new ScriptElement._internalWrap(); | |
| 6394 } | |
| 6395 | |
| 6396 factory ScriptElement._internalWrap() { | |
| 6397 return new ScriptElement._internal(); | |
| 6398 } | |
| 6399 | |
| 6400 ScriptElement._internal() : super._internal(); | |
| 6401 | |
| 6402 /** | 5148 /** |
| 6403 * Constructor instantiated by the DOM when a custom element has been created. | 5149 * Constructor instantiated by the DOM when a custom element has been created. |
| 6404 * | 5150 * |
| 6405 * This can only be called by subclasses from their created constructor. | 5151 * This can only be called by subclasses from their created constructor. |
| 6406 */ | 5152 */ |
| 6407 ScriptElement.created() : super.created(); | 5153 ScriptElement.created() : super.created(); |
| 6408 | 5154 |
| 6409 @DomName('SVGScriptElement.type') | 5155 @DomName('SVGScriptElement.type') |
| 6410 @DocsEditable() | 5156 @DocsEditable() |
| 6411 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); | 5157 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 6432 @SupportedBrowser(SupportedBrowser.FIREFOX) | 5178 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 6433 @SupportedBrowser(SupportedBrowser.SAFARI) | 5179 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 6434 @Unstable() | 5180 @Unstable() |
| 6435 class SetElement extends AnimationElement { | 5181 class SetElement extends AnimationElement { |
| 6436 // To suppress missing implicit constructor warnings. | 5182 // To suppress missing implicit constructor warnings. |
| 6437 factory SetElement._() { throw new UnsupportedError("Not supported"); } | 5183 factory SetElement._() { throw new UnsupportedError("Not supported"); } |
| 6438 | 5184 |
| 6439 @DomName('SVGSetElement.SVGSetElement') | 5185 @DomName('SVGSetElement.SVGSetElement') |
| 6440 @DocsEditable() | 5186 @DocsEditable() |
| 6441 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; | 5187 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; |
| 6442 | |
| 6443 | |
| 6444 static SetElement internalCreateSetElement() { | |
| 6445 return new SetElement._internalWrap(); | |
| 6446 } | |
| 6447 | |
| 6448 factory SetElement._internalWrap() { | |
| 6449 return new SetElement._internal(); | |
| 6450 } | |
| 6451 | |
| 6452 SetElement._internal() : super._internal(); | |
| 6453 | |
| 6454 /** | 5188 /** |
| 6455 * Constructor instantiated by the DOM when a custom element has been created. | 5189 * Constructor instantiated by the DOM when a custom element has been created. |
| 6456 * | 5190 * |
| 6457 * This can only be called by subclasses from their created constructor. | 5191 * This can only be called by subclasses from their created constructor. |
| 6458 */ | 5192 */ |
| 6459 SetElement.created() : super.created(); | 5193 SetElement.created() : super.created(); |
| 6460 | 5194 |
| 6461 /// Checks if this type is supported on the current platform. | 5195 /// Checks if this type is supported on the current platform. |
| 6462 static bool get supported => true; | 5196 static bool get supported => true; |
| 6463 | 5197 |
| 6464 } | 5198 } |
| 6465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6466 // for details. All rights reserved. Use of this source code is governed by a | 5200 // for details. All rights reserved. Use of this source code is governed by a |
| 6467 // BSD-style license that can be found in the LICENSE file. | 5201 // BSD-style license that can be found in the LICENSE file. |
| 6468 | 5202 |
| 6469 // WARNING: Do not edit - generated code. | 5203 // WARNING: Do not edit - generated code. |
| 6470 | 5204 |
| 6471 | 5205 |
| 6472 @DocsEditable() | 5206 @DocsEditable() |
| 6473 @DomName('SVGStopElement') | 5207 @DomName('SVGStopElement') |
| 6474 @Unstable() | 5208 @Unstable() |
| 6475 class StopElement extends SvgElement { | 5209 class StopElement extends SvgElement { |
| 6476 // To suppress missing implicit constructor warnings. | 5210 // To suppress missing implicit constructor warnings. |
| 6477 factory StopElement._() { throw new UnsupportedError("Not supported"); } | 5211 factory StopElement._() { throw new UnsupportedError("Not supported"); } |
| 6478 | 5212 |
| 6479 @DomName('SVGStopElement.SVGStopElement') | 5213 @DomName('SVGStopElement.SVGStopElement') |
| 6480 @DocsEditable() | 5214 @DocsEditable() |
| 6481 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); | 5215 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); |
| 6482 | |
| 6483 | |
| 6484 static StopElement internalCreateStopElement() { | |
| 6485 return new StopElement._internalWrap(); | |
| 6486 } | |
| 6487 | |
| 6488 factory StopElement._internalWrap() { | |
| 6489 return new StopElement._internal(); | |
| 6490 } | |
| 6491 | |
| 6492 StopElement._internal() : super._internal(); | |
| 6493 | |
| 6494 /** | 5216 /** |
| 6495 * Constructor instantiated by the DOM when a custom element has been created. | 5217 * Constructor instantiated by the DOM when a custom element has been created. |
| 6496 * | 5218 * |
| 6497 * This can only be called by subclasses from their created constructor. | 5219 * This can only be called by subclasses from their created constructor. |
| 6498 */ | 5220 */ |
| 6499 StopElement.created() : super.created(); | 5221 StopElement.created() : super.created(); |
| 6500 | 5222 |
| 6501 @DomName('SVGStopElement.offset') | 5223 @DomName('SVGStopElement.offset') |
| 6502 @DocsEditable() | 5224 @DocsEditable() |
| 6503 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); | 5225 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); |
| 6504 | 5226 |
| 6505 } | 5227 } |
| 6506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5228 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6507 // for details. All rights reserved. Use of this source code is governed by a | 5229 // for details. All rights reserved. Use of this source code is governed by a |
| 6508 // BSD-style license that can be found in the LICENSE file. | 5230 // BSD-style license that can be found in the LICENSE file. |
| 6509 | 5231 |
| 6510 // WARNING: Do not edit - generated code. | 5232 // WARNING: Do not edit - generated code. |
| 6511 | 5233 |
| 6512 | 5234 |
| 6513 @DocsEditable() | 5235 @DocsEditable() |
| 6514 @DomName('SVGStringList') | 5236 @DomName('SVGStringList') |
| 6515 @Unstable() | 5237 @Unstable() |
| 6516 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { | 5238 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { |
| 6517 // To suppress missing implicit constructor warnings. | 5239 // To suppress missing implicit constructor warnings. |
| 6518 factory StringList._() { throw new UnsupportedError("Not supported"); } | 5240 factory StringList._() { throw new UnsupportedError("Not supported"); } |
| 6519 | 5241 |
| 6520 static StringList internalCreateStringList() { | |
| 6521 return new StringList._internalWrap(); | |
| 6522 } | |
| 6523 | |
| 6524 JsObject blink_jsObject = null; | |
| 6525 | |
| 6526 factory StringList._internalWrap() { | |
| 6527 return new StringList._internal(); | |
| 6528 } | |
| 6529 | |
| 6530 StringList._internal() { } | |
| 6531 | |
| 6532 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6533 | |
| 6534 @DomName('SVGStringList.length') | 5242 @DomName('SVGStringList.length') |
| 6535 @DocsEditable() | 5243 @DocsEditable() |
| 6536 @Experimental() // untriaged | 5244 @Experimental() // untriaged |
| 6537 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); | 5245 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); |
| 6538 | 5246 |
| 6539 @DomName('SVGStringList.numberOfItems') | 5247 @DomName('SVGStringList.numberOfItems') |
| 6540 @DocsEditable() | 5248 @DocsEditable() |
| 6541 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 5249 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 6542 | 5250 |
| 6543 String operator[](int index) { | 5251 String operator[](int index) { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6629 @DomName('SVGStyleElement') | 5337 @DomName('SVGStyleElement') |
| 6630 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable | 5338 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable |
| 6631 @Experimental() // nonstandard | 5339 @Experimental() // nonstandard |
| 6632 class StyleElement extends SvgElement { | 5340 class StyleElement extends SvgElement { |
| 6633 // To suppress missing implicit constructor warnings. | 5341 // To suppress missing implicit constructor warnings. |
| 6634 factory StyleElement._() { throw new UnsupportedError("Not supported"); } | 5342 factory StyleElement._() { throw new UnsupportedError("Not supported"); } |
| 6635 | 5343 |
| 6636 @DomName('SVGStyleElement.SVGStyleElement') | 5344 @DomName('SVGStyleElement.SVGStyleElement') |
| 6637 @DocsEditable() | 5345 @DocsEditable() |
| 6638 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); | 5346 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); |
| 6639 | |
| 6640 | |
| 6641 static StyleElement internalCreateStyleElement() { | |
| 6642 return new StyleElement._internalWrap(); | |
| 6643 } | |
| 6644 | |
| 6645 factory StyleElement._internalWrap() { | |
| 6646 return new StyleElement._internal(); | |
| 6647 } | |
| 6648 | |
| 6649 StyleElement._internal() : super._internal(); | |
| 6650 | |
| 6651 /** | 5347 /** |
| 6652 * Constructor instantiated by the DOM when a custom element has been created. | 5348 * Constructor instantiated by the DOM when a custom element has been created. |
| 6653 * | 5349 * |
| 6654 * This can only be called by subclasses from their created constructor. | 5350 * This can only be called by subclasses from their created constructor. |
| 6655 */ | 5351 */ |
| 6656 StyleElement.created() : super.created(); | 5352 StyleElement.created() : super.created(); |
| 6657 | 5353 |
| 6658 @DomName('SVGStyleElement.disabled') | 5354 @DomName('SVGStyleElement.disabled') |
| 6659 @DocsEditable() | 5355 @DocsEditable() |
| 6660 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); | 5356 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7094 | 5790 |
| 7095 @DomName('SVGElement.volumechangeEvent') | 5791 @DomName('SVGElement.volumechangeEvent') |
| 7096 @DocsEditable() | 5792 @DocsEditable() |
| 7097 @Experimental() // untriaged | 5793 @Experimental() // untriaged |
| 7098 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); | 5794 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); |
| 7099 | 5795 |
| 7100 @DomName('SVGElement.waitingEvent') | 5796 @DomName('SVGElement.waitingEvent') |
| 7101 @DocsEditable() | 5797 @DocsEditable() |
| 7102 @Experimental() // untriaged | 5798 @Experimental() // untriaged |
| 7103 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); | 5799 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); |
| 7104 | |
| 7105 | |
| 7106 static SvgElement internalCreateSvgElement() { | |
| 7107 return new SvgElement._internalWrap(); | |
| 7108 } | |
| 7109 | |
| 7110 factory SvgElement._internalWrap() { | |
| 7111 return new SvgElement._internal(); | |
| 7112 } | |
| 7113 | |
| 7114 SvgElement._internal() : super._internal(); | |
| 7115 | |
| 7116 /** | 5800 /** |
| 7117 * Constructor instantiated by the DOM when a custom element has been created. | 5801 * Constructor instantiated by the DOM when a custom element has been created. |
| 7118 * | 5802 * |
| 7119 * This can only be called by subclasses from their created constructor. | 5803 * This can only be called by subclasses from their created constructor. |
| 7120 */ | 5804 */ |
| 7121 SvgElement.created() : super.created(); | 5805 SvgElement.created() : super.created(); |
| 7122 | 5806 |
| 7123 @DomName('SVGElement.className') | 5807 @DomName('SVGElement.className') |
| 7124 @DocsEditable() | 5808 @DocsEditable() |
| 7125 @Experimental() // untriaged | 5809 @Experimental() // untriaged |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7447 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ | 6131 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ |
| 7448 factory SvgSvgElement() { | 6132 factory SvgSvgElement() { |
| 7449 final el = new SvgElement.tag("svg"); | 6133 final el = new SvgElement.tag("svg"); |
| 7450 // The SVG spec requires the version attribute to match the spec version | 6134 // The SVG spec requires the version attribute to match the spec version |
| 7451 el.attributes['version'] = "1.1"; | 6135 el.attributes['version'] = "1.1"; |
| 7452 return el; | 6136 return el; |
| 7453 } | 6137 } |
| 7454 | 6138 |
| 7455 // To suppress missing implicit constructor warnings. | 6139 // To suppress missing implicit constructor warnings. |
| 7456 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } | 6140 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } |
| 7457 | |
| 7458 | |
| 7459 static SvgSvgElement internalCreateSvgSvgElement() { | |
| 7460 return new SvgSvgElement._internalWrap(); | |
| 7461 } | |
| 7462 | |
| 7463 factory SvgSvgElement._internalWrap() { | |
| 7464 return new SvgSvgElement._internal(); | |
| 7465 } | |
| 7466 | |
| 7467 SvgSvgElement._internal() : super._internal(); | |
| 7468 | |
| 7469 /** | 6141 /** |
| 7470 * Constructor instantiated by the DOM when a custom element has been created. | 6142 * Constructor instantiated by the DOM when a custom element has been created. |
| 7471 * | 6143 * |
| 7472 * This can only be called by subclasses from their created constructor. | 6144 * This can only be called by subclasses from their created constructor. |
| 7473 */ | 6145 */ |
| 7474 SvgSvgElement.created() : super.created(); | 6146 SvgSvgElement.created() : super.created(); |
| 7475 | 6147 |
| 7476 @DomName('SVGSVGElement.currentScale') | 6148 @DomName('SVGSVGElement.currentScale') |
| 7477 @DocsEditable() | 6149 @DocsEditable() |
| 7478 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); | 6150 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7648 @DocsEditable() | 6320 @DocsEditable() |
| 7649 @DomName('SVGSwitchElement') | 6321 @DomName('SVGSwitchElement') |
| 7650 @Unstable() | 6322 @Unstable() |
| 7651 class SwitchElement extends GraphicsElement { | 6323 class SwitchElement extends GraphicsElement { |
| 7652 // To suppress missing implicit constructor warnings. | 6324 // To suppress missing implicit constructor warnings. |
| 7653 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } | 6325 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } |
| 7654 | 6326 |
| 7655 @DomName('SVGSwitchElement.SVGSwitchElement') | 6327 @DomName('SVGSwitchElement.SVGSwitchElement') |
| 7656 @DocsEditable() | 6328 @DocsEditable() |
| 7657 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); | 6329 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); |
| 7658 | |
| 7659 | |
| 7660 static SwitchElement internalCreateSwitchElement() { | |
| 7661 return new SwitchElement._internalWrap(); | |
| 7662 } | |
| 7663 | |
| 7664 factory SwitchElement._internalWrap() { | |
| 7665 return new SwitchElement._internal(); | |
| 7666 } | |
| 7667 | |
| 7668 SwitchElement._internal() : super._internal(); | |
| 7669 | |
| 7670 /** | 6330 /** |
| 7671 * Constructor instantiated by the DOM when a custom element has been created. | 6331 * Constructor instantiated by the DOM when a custom element has been created. |
| 7672 * | 6332 * |
| 7673 * This can only be called by subclasses from their created constructor. | 6333 * This can only be called by subclasses from their created constructor. |
| 7674 */ | 6334 */ |
| 7675 SwitchElement.created() : super.created(); | 6335 SwitchElement.created() : super.created(); |
| 7676 | 6336 |
| 7677 } | 6337 } |
| 7678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7679 // for details. All rights reserved. Use of this source code is governed by a | 6339 // for details. All rights reserved. Use of this source code is governed by a |
| 7680 // BSD-style license that can be found in the LICENSE file. | 6340 // BSD-style license that can be found in the LICENSE file. |
| 7681 | 6341 |
| 7682 // WARNING: Do not edit - generated code. | 6342 // WARNING: Do not edit - generated code. |
| 7683 | 6343 |
| 7684 | 6344 |
| 7685 @DocsEditable() | 6345 @DocsEditable() |
| 7686 @DomName('SVGSymbolElement') | 6346 @DomName('SVGSymbolElement') |
| 7687 @Unstable() | 6347 @Unstable() |
| 7688 class SymbolElement extends SvgElement implements FitToViewBox { | 6348 class SymbolElement extends SvgElement implements FitToViewBox { |
| 7689 // To suppress missing implicit constructor warnings. | 6349 // To suppress missing implicit constructor warnings. |
| 7690 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } | 6350 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } |
| 7691 | 6351 |
| 7692 @DomName('SVGSymbolElement.SVGSymbolElement') | 6352 @DomName('SVGSymbolElement.SVGSymbolElement') |
| 7693 @DocsEditable() | 6353 @DocsEditable() |
| 7694 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); | 6354 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); |
| 7695 | |
| 7696 | |
| 7697 static SymbolElement internalCreateSymbolElement() { | |
| 7698 return new SymbolElement._internalWrap(); | |
| 7699 } | |
| 7700 | |
| 7701 factory SymbolElement._internalWrap() { | |
| 7702 return new SymbolElement._internal(); | |
| 7703 } | |
| 7704 | |
| 7705 SymbolElement._internal() : super._internal(); | |
| 7706 | |
| 7707 /** | 6355 /** |
| 7708 * Constructor instantiated by the DOM when a custom element has been created. | 6356 * Constructor instantiated by the DOM when a custom element has been created. |
| 7709 * | 6357 * |
| 7710 * This can only be called by subclasses from their created constructor. | 6358 * This can only be called by subclasses from their created constructor. |
| 7711 */ | 6359 */ |
| 7712 SymbolElement.created() : super.created(); | 6360 SymbolElement.created() : super.created(); |
| 7713 | 6361 |
| 7714 @DomName('SVGSymbolElement.preserveAspectRatio') | 6362 @DomName('SVGSymbolElement.preserveAspectRatio') |
| 7715 @DocsEditable() | 6363 @DocsEditable() |
| 7716 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); | 6364 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 7730 @DocsEditable() | 6378 @DocsEditable() |
| 7731 @DomName('SVGTSpanElement') | 6379 @DomName('SVGTSpanElement') |
| 7732 @Unstable() | 6380 @Unstable() |
| 7733 class TSpanElement extends TextPositioningElement { | 6381 class TSpanElement extends TextPositioningElement { |
| 7734 // To suppress missing implicit constructor warnings. | 6382 // To suppress missing implicit constructor warnings. |
| 7735 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } | 6383 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } |
| 7736 | 6384 |
| 7737 @DomName('SVGTSpanElement.SVGTSpanElement') | 6385 @DomName('SVGTSpanElement.SVGTSpanElement') |
| 7738 @DocsEditable() | 6386 @DocsEditable() |
| 7739 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); | 6387 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); |
| 7740 | |
| 7741 | |
| 7742 static TSpanElement internalCreateTSpanElement() { | |
| 7743 return new TSpanElement._internalWrap(); | |
| 7744 } | |
| 7745 | |
| 7746 factory TSpanElement._internalWrap() { | |
| 7747 return new TSpanElement._internal(); | |
| 7748 } | |
| 7749 | |
| 7750 TSpanElement._internal() : super._internal(); | |
| 7751 | |
| 7752 /** | 6388 /** |
| 7753 * Constructor instantiated by the DOM when a custom element has been created. | 6389 * Constructor instantiated by the DOM when a custom element has been created. |
| 7754 * | 6390 * |
| 7755 * This can only be called by subclasses from their created constructor. | 6391 * This can only be called by subclasses from their created constructor. |
| 7756 */ | 6392 */ |
| 7757 TSpanElement.created() : super.created(); | 6393 TSpanElement.created() : super.created(); |
| 7758 | 6394 |
| 7759 } | 6395 } |
| 7760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7761 // for details. All rights reserved. Use of this source code is governed by a | 6397 // for details. All rights reserved. Use of this source code is governed by a |
| 7762 // BSD-style license that can be found in the LICENSE file. | 6398 // BSD-style license that can be found in the LICENSE file. |
| 7763 | 6399 |
| 7764 // WARNING: Do not edit - generated code. | 6400 // WARNING: Do not edit - generated code. |
| 7765 | 6401 |
| 7766 | 6402 |
| 7767 @DocsEditable() | 6403 @DocsEditable() |
| 7768 @DomName('SVGTests') | 6404 @DomName('SVGTests') |
| 7769 @Unstable() | 6405 @Unstable() |
| 7770 abstract class Tests extends NativeFieldWrapperClass2 { | 6406 abstract class Tests extends NativeFieldWrapperClass2 { |
| 7771 // To suppress missing implicit constructor warnings. | 6407 // To suppress missing implicit constructor warnings. |
| 7772 factory Tests._() { throw new UnsupportedError("Not supported"); } | 6408 factory Tests._() { throw new UnsupportedError("Not supported"); } |
| 7773 | 6409 |
| 7774 static Tests internalCreateTests() { | |
| 7775 return new Tests._internalWrap(); | |
| 7776 } | |
| 7777 | |
| 7778 JsObject blink_jsObject = null; | |
| 7779 | |
| 7780 factory Tests._internalWrap() { | |
| 7781 return new Tests._internal(); | |
| 7782 } | |
| 7783 | |
| 7784 Tests._internal() { } | |
| 7785 | |
| 7786 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 7787 | |
| 7788 @DomName('SVGTests.requiredExtensions') | 6410 @DomName('SVGTests.requiredExtensions') |
| 7789 @DocsEditable() | 6411 @DocsEditable() |
| 7790 StringList get requiredExtensions; | 6412 StringList get requiredExtensions; |
| 7791 | 6413 |
| 7792 @DomName('SVGTests.requiredFeatures') | 6414 @DomName('SVGTests.requiredFeatures') |
| 7793 @DocsEditable() | 6415 @DocsEditable() |
| 7794 StringList get requiredFeatures; | 6416 StringList get requiredFeatures; |
| 7795 | 6417 |
| 7796 @DomName('SVGTests.systemLanguage') | 6418 @DomName('SVGTests.systemLanguage') |
| 7797 @DocsEditable() | 6419 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 7808 | 6430 |
| 7809 // WARNING: Do not edit - generated code. | 6431 // WARNING: Do not edit - generated code. |
| 7810 | 6432 |
| 7811 | 6433 |
| 7812 @DocsEditable() | 6434 @DocsEditable() |
| 7813 @DomName('SVGTextContentElement') | 6435 @DomName('SVGTextContentElement') |
| 7814 @Unstable() | 6436 @Unstable() |
| 7815 class TextContentElement extends GraphicsElement { | 6437 class TextContentElement extends GraphicsElement { |
| 7816 // To suppress missing implicit constructor warnings. | 6438 // To suppress missing implicit constructor warnings. |
| 7817 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} | 6439 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} |
| 7818 | |
| 7819 | |
| 7820 static TextContentElement internalCreateTextContentElement() { | |
| 7821 return new TextContentElement._internalWrap(); | |
| 7822 } | |
| 7823 | |
| 7824 factory TextContentElement._internalWrap() { | |
| 7825 return new TextContentElement._internal(); | |
| 7826 } | |
| 7827 | |
| 7828 TextContentElement._internal() : super._internal(); | |
| 7829 | |
| 7830 /** | 6440 /** |
| 7831 * Constructor instantiated by the DOM when a custom element has been created. | 6441 * Constructor instantiated by the DOM when a custom element has been created. |
| 7832 * | 6442 * |
| 7833 * This can only be called by subclasses from their created constructor. | 6443 * This can only be called by subclasses from their created constructor. |
| 7834 */ | 6444 */ |
| 7835 TextContentElement.created() : super.created(); | 6445 TextContentElement.created() : super.created(); |
| 7836 | 6446 |
| 7837 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') | 6447 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
| 7838 @DocsEditable() | 6448 @DocsEditable() |
| 7839 static const int LENGTHADJUST_SPACING = 1; | 6449 static const int LENGTHADJUST_SPACING = 1; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7901 @DocsEditable() | 6511 @DocsEditable() |
| 7902 @DomName('SVGTextElement') | 6512 @DomName('SVGTextElement') |
| 7903 @Unstable() | 6513 @Unstable() |
| 7904 class TextElement extends TextPositioningElement { | 6514 class TextElement extends TextPositioningElement { |
| 7905 // To suppress missing implicit constructor warnings. | 6515 // To suppress missing implicit constructor warnings. |
| 7906 factory TextElement._() { throw new UnsupportedError("Not supported"); } | 6516 factory TextElement._() { throw new UnsupportedError("Not supported"); } |
| 7907 | 6517 |
| 7908 @DomName('SVGTextElement.SVGTextElement') | 6518 @DomName('SVGTextElement.SVGTextElement') |
| 7909 @DocsEditable() | 6519 @DocsEditable() |
| 7910 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); | 6520 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); |
| 7911 | |
| 7912 | |
| 7913 static TextElement internalCreateTextElement() { | |
| 7914 return new TextElement._internalWrap(); | |
| 7915 } | |
| 7916 | |
| 7917 factory TextElement._internalWrap() { | |
| 7918 return new TextElement._internal(); | |
| 7919 } | |
| 7920 | |
| 7921 TextElement._internal() : super._internal(); | |
| 7922 | |
| 7923 /** | 6521 /** |
| 7924 * Constructor instantiated by the DOM when a custom element has been created. | 6522 * Constructor instantiated by the DOM when a custom element has been created. |
| 7925 * | 6523 * |
| 7926 * This can only be called by subclasses from their created constructor. | 6524 * This can only be called by subclasses from their created constructor. |
| 7927 */ | 6525 */ |
| 7928 TextElement.created() : super.created(); | 6526 TextElement.created() : super.created(); |
| 7929 | 6527 |
| 7930 } | 6528 } |
| 7931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7932 // for details. All rights reserved. Use of this source code is governed by a | 6530 // for details. All rights reserved. Use of this source code is governed by a |
| 7933 // BSD-style license that can be found in the LICENSE file. | 6531 // BSD-style license that can be found in the LICENSE file. |
| 7934 | 6532 |
| 7935 // WARNING: Do not edit - generated code. | 6533 // WARNING: Do not edit - generated code. |
| 7936 | 6534 |
| 7937 | 6535 |
| 7938 @DocsEditable() | 6536 @DocsEditable() |
| 7939 @DomName('SVGTextPathElement') | 6537 @DomName('SVGTextPathElement') |
| 7940 @Unstable() | 6538 @Unstable() |
| 7941 class TextPathElement extends TextContentElement implements UriReference { | 6539 class TextPathElement extends TextContentElement implements UriReference { |
| 7942 // To suppress missing implicit constructor warnings. | 6540 // To suppress missing implicit constructor warnings. |
| 7943 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } | 6541 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } |
| 7944 | |
| 7945 | |
| 7946 static TextPathElement internalCreateTextPathElement() { | |
| 7947 return new TextPathElement._internalWrap(); | |
| 7948 } | |
| 7949 | |
| 7950 factory TextPathElement._internalWrap() { | |
| 7951 return new TextPathElement._internal(); | |
| 7952 } | |
| 7953 | |
| 7954 TextPathElement._internal() : super._internal(); | |
| 7955 | |
| 7956 /** | 6542 /** |
| 7957 * Constructor instantiated by the DOM when a custom element has been created. | 6543 * Constructor instantiated by the DOM when a custom element has been created. |
| 7958 * | 6544 * |
| 7959 * This can only be called by subclasses from their created constructor. | 6545 * This can only be called by subclasses from their created constructor. |
| 7960 */ | 6546 */ |
| 7961 TextPathElement.created() : super.created(); | 6547 TextPathElement.created() : super.created(); |
| 7962 | 6548 |
| 7963 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') | 6549 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
| 7964 @DocsEditable() | 6550 @DocsEditable() |
| 7965 static const int TEXTPATH_METHODTYPE_ALIGN = 1; | 6551 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8007 | 6593 |
| 8008 // WARNING: Do not edit - generated code. | 6594 // WARNING: Do not edit - generated code. |
| 8009 | 6595 |
| 8010 | 6596 |
| 8011 @DocsEditable() | 6597 @DocsEditable() |
| 8012 @DomName('SVGTextPositioningElement') | 6598 @DomName('SVGTextPositioningElement') |
| 8013 @Unstable() | 6599 @Unstable() |
| 8014 class TextPositioningElement extends TextContentElement { | 6600 class TextPositioningElement extends TextContentElement { |
| 8015 // To suppress missing implicit constructor warnings. | 6601 // To suppress missing implicit constructor warnings. |
| 8016 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } | 6602 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } |
| 8017 | |
| 8018 | |
| 8019 static TextPositioningElement internalCreateTextPositioningElement() { | |
| 8020 return new TextPositioningElement._internalWrap(); | |
| 8021 } | |
| 8022 | |
| 8023 factory TextPositioningElement._internalWrap() { | |
| 8024 return new TextPositioningElement._internal(); | |
| 8025 } | |
| 8026 | |
| 8027 TextPositioningElement._internal() : super._internal(); | |
| 8028 | |
| 8029 /** | 6603 /** |
| 8030 * Constructor instantiated by the DOM when a custom element has been created. | 6604 * Constructor instantiated by the DOM when a custom element has been created. |
| 8031 * | 6605 * |
| 8032 * This can only be called by subclasses from their created constructor. | 6606 * This can only be called by subclasses from their created constructor. |
| 8033 */ | 6607 */ |
| 8034 TextPositioningElement.created() : super.created(); | 6608 TextPositioningElement.created() : super.created(); |
| 8035 | 6609 |
| 8036 @DomName('SVGTextPositioningElement.dx') | 6610 @DomName('SVGTextPositioningElement.dx') |
| 8037 @DocsEditable() | 6611 @DocsEditable() |
| 8038 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); | 6612 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 8064 @DocsEditable() | 6638 @DocsEditable() |
| 8065 @DomName('SVGTitleElement') | 6639 @DomName('SVGTitleElement') |
| 8066 @Unstable() | 6640 @Unstable() |
| 8067 class TitleElement extends SvgElement { | 6641 class TitleElement extends SvgElement { |
| 8068 // To suppress missing implicit constructor warnings. | 6642 // To suppress missing implicit constructor warnings. |
| 8069 factory TitleElement._() { throw new UnsupportedError("Not supported"); } | 6643 factory TitleElement._() { throw new UnsupportedError("Not supported"); } |
| 8070 | 6644 |
| 8071 @DomName('SVGTitleElement.SVGTitleElement') | 6645 @DomName('SVGTitleElement.SVGTitleElement') |
| 8072 @DocsEditable() | 6646 @DocsEditable() |
| 8073 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); | 6647 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); |
| 8074 | |
| 8075 | |
| 8076 static TitleElement internalCreateTitleElement() { | |
| 8077 return new TitleElement._internalWrap(); | |
| 8078 } | |
| 8079 | |
| 8080 factory TitleElement._internalWrap() { | |
| 8081 return new TitleElement._internal(); | |
| 8082 } | |
| 8083 | |
| 8084 TitleElement._internal() : super._internal(); | |
| 8085 | |
| 8086 /** | 6648 /** |
| 8087 * Constructor instantiated by the DOM when a custom element has been created. | 6649 * Constructor instantiated by the DOM when a custom element has been created. |
| 8088 * | 6650 * |
| 8089 * This can only be called by subclasses from their created constructor. | 6651 * This can only be called by subclasses from their created constructor. |
| 8090 */ | 6652 */ |
| 8091 TitleElement.created() : super.created(); | 6653 TitleElement.created() : super.created(); |
| 8092 | 6654 |
| 8093 } | 6655 } |
| 8094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6656 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8095 // for details. All rights reserved. Use of this source code is governed by a | 6657 // for details. All rights reserved. Use of this source code is governed by a |
| 8096 // BSD-style license that can be found in the LICENSE file. | 6658 // BSD-style license that can be found in the LICENSE file. |
| 8097 | 6659 |
| 8098 // WARNING: Do not edit - generated code. | 6660 // WARNING: Do not edit - generated code. |
| 8099 | 6661 |
| 8100 | 6662 |
| 8101 @DocsEditable() | 6663 @DocsEditable() |
| 8102 @DomName('SVGTransform') | 6664 @DomName('SVGTransform') |
| 8103 @Unstable() | 6665 @Unstable() |
| 8104 class Transform extends NativeFieldWrapperClass2 { | 6666 class Transform extends NativeFieldWrapperClass2 { |
| 8105 // To suppress missing implicit constructor warnings. | 6667 // To suppress missing implicit constructor warnings. |
| 8106 factory Transform._() { throw new UnsupportedError("Not supported"); } | 6668 factory Transform._() { throw new UnsupportedError("Not supported"); } |
| 8107 | 6669 |
| 8108 static Transform internalCreateTransform() { | |
| 8109 return new Transform._internalWrap(); | |
| 8110 } | |
| 8111 | |
| 8112 JsObject blink_jsObject = null; | |
| 8113 | |
| 8114 factory Transform._internalWrap() { | |
| 8115 return new Transform._internal(); | |
| 8116 } | |
| 8117 | |
| 8118 Transform._internal() { } | |
| 8119 | |
| 8120 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8121 | |
| 8122 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 6670 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
| 8123 @DocsEditable() | 6671 @DocsEditable() |
| 8124 static const int SVG_TRANSFORM_MATRIX = 1; | 6672 static const int SVG_TRANSFORM_MATRIX = 1; |
| 8125 | 6673 |
| 8126 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') | 6674 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') |
| 8127 @DocsEditable() | 6675 @DocsEditable() |
| 8128 static const int SVG_TRANSFORM_ROTATE = 4; | 6676 static const int SVG_TRANSFORM_ROTATE = 4; |
| 8129 | 6677 |
| 8130 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') | 6678 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') |
| 8131 @DocsEditable() | 6679 @DocsEditable() |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8191 // WARNING: Do not edit - generated code. | 6739 // WARNING: Do not edit - generated code. |
| 8192 | 6740 |
| 8193 | 6741 |
| 8194 @DocsEditable() | 6742 @DocsEditable() |
| 8195 @DomName('SVGTransformList') | 6743 @DomName('SVGTransformList') |
| 8196 @Unstable() | 6744 @Unstable() |
| 8197 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { | 6745 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { |
| 8198 // To suppress missing implicit constructor warnings. | 6746 // To suppress missing implicit constructor warnings. |
| 8199 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 6747 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
| 8200 | 6748 |
| 8201 static TransformList internalCreateTransformList() { | |
| 8202 return new TransformList._internalWrap(); | |
| 8203 } | |
| 8204 | |
| 8205 JsObject blink_jsObject = null; | |
| 8206 | |
| 8207 factory TransformList._internalWrap() { | |
| 8208 return new TransformList._internal(); | |
| 8209 } | |
| 8210 | |
| 8211 TransformList._internal() { } | |
| 8212 | |
| 8213 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8214 | |
| 8215 @DomName('SVGTransformList.length') | 6749 @DomName('SVGTransformList.length') |
| 8216 @DocsEditable() | 6750 @DocsEditable() |
| 8217 @Experimental() // untriaged | 6751 @Experimental() // untriaged |
| 8218 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); | 6752 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); |
| 8219 | 6753 |
| 8220 @DomName('SVGTransformList.numberOfItems') | 6754 @DomName('SVGTransformList.numberOfItems') |
| 8221 @DocsEditable() | 6755 @DocsEditable() |
| 8222 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); | 6756 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); |
| 8223 | 6757 |
| 8224 Transform operator[](int index) { | 6758 Transform operator[](int index) { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8314 // WARNING: Do not edit - generated code. | 6848 // WARNING: Do not edit - generated code. |
| 8315 | 6849 |
| 8316 | 6850 |
| 8317 @DocsEditable() | 6851 @DocsEditable() |
| 8318 @DomName('SVGUnitTypes') | 6852 @DomName('SVGUnitTypes') |
| 8319 @Unstable() | 6853 @Unstable() |
| 8320 class UnitTypes extends NativeFieldWrapperClass2 { | 6854 class UnitTypes extends NativeFieldWrapperClass2 { |
| 8321 // To suppress missing implicit constructor warnings. | 6855 // To suppress missing implicit constructor warnings. |
| 8322 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 6856 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
| 8323 | 6857 |
| 8324 static UnitTypes internalCreateUnitTypes() { | |
| 8325 return new UnitTypes._internalWrap(); | |
| 8326 } | |
| 8327 | |
| 8328 JsObject blink_jsObject = null; | |
| 8329 | |
| 8330 factory UnitTypes._internalWrap() { | |
| 8331 return new UnitTypes._internal(); | |
| 8332 } | |
| 8333 | |
| 8334 UnitTypes._internal() { } | |
| 8335 | |
| 8336 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8337 | |
| 8338 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 6858 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
| 8339 @DocsEditable() | 6859 @DocsEditable() |
| 8340 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 6860 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 8341 | 6861 |
| 8342 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') | 6862 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') |
| 8343 @DocsEditable() | 6863 @DocsEditable() |
| 8344 static const int SVG_UNIT_TYPE_UNKNOWN = 0; | 6864 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 8345 | 6865 |
| 8346 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') | 6866 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') |
| 8347 @DocsEditable() | 6867 @DocsEditable() |
| 8348 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | 6868 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 8349 | 6869 |
| 8350 } | 6870 } |
| 8351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6871 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8352 // for details. All rights reserved. Use of this source code is governed by a | 6872 // for details. All rights reserved. Use of this source code is governed by a |
| 8353 // BSD-style license that can be found in the LICENSE file. | 6873 // BSD-style license that can be found in the LICENSE file. |
| 8354 | 6874 |
| 8355 // WARNING: Do not edit - generated code. | 6875 // WARNING: Do not edit - generated code. |
| 8356 | 6876 |
| 8357 | 6877 |
| 8358 @DocsEditable() | 6878 @DocsEditable() |
| 8359 @DomName('SVGURIReference') | 6879 @DomName('SVGURIReference') |
| 8360 @Unstable() | 6880 @Unstable() |
| 8361 abstract class UriReference extends NativeFieldWrapperClass2 { | 6881 abstract class UriReference extends NativeFieldWrapperClass2 { |
| 8362 // To suppress missing implicit constructor warnings. | 6882 // To suppress missing implicit constructor warnings. |
| 8363 factory UriReference._() { throw new UnsupportedError("Not supported"); } | 6883 factory UriReference._() { throw new UnsupportedError("Not supported"); } |
| 8364 | 6884 |
| 8365 static UriReference internalCreateUriReference() { | |
| 8366 return new UriReference._internalWrap(); | |
| 8367 } | |
| 8368 | |
| 8369 JsObject blink_jsObject = null; | |
| 8370 | |
| 8371 factory UriReference._internalWrap() { | |
| 8372 return new UriReference._internal(); | |
| 8373 } | |
| 8374 | |
| 8375 UriReference._internal() { } | |
| 8376 | |
| 8377 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8378 | |
| 8379 @DomName('SVGURIReference.href') | 6885 @DomName('SVGURIReference.href') |
| 8380 @DocsEditable() | 6886 @DocsEditable() |
| 8381 AnimatedString get href; | 6887 AnimatedString get href; |
| 8382 | 6888 |
| 8383 } | 6889 } |
| 8384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8385 // for details. All rights reserved. Use of this source code is governed by a | 6891 // for details. All rights reserved. Use of this source code is governed by a |
| 8386 // BSD-style license that can be found in the LICENSE file. | 6892 // BSD-style license that can be found in the LICENSE file. |
| 8387 | 6893 |
| 8388 // WARNING: Do not edit - generated code. | 6894 // WARNING: Do not edit - generated code. |
| 8389 | 6895 |
| 8390 | 6896 |
| 8391 @DocsEditable() | 6897 @DocsEditable() |
| 8392 @DomName('SVGUseElement') | 6898 @DomName('SVGUseElement') |
| 8393 @Unstable() | 6899 @Unstable() |
| 8394 class UseElement extends GraphicsElement implements UriReference { | 6900 class UseElement extends GraphicsElement implements UriReference { |
| 8395 // To suppress missing implicit constructor warnings. | 6901 // To suppress missing implicit constructor warnings. |
| 8396 factory UseElement._() { throw new UnsupportedError("Not supported"); } | 6902 factory UseElement._() { throw new UnsupportedError("Not supported"); } |
| 8397 | 6903 |
| 8398 @DomName('SVGUseElement.SVGUseElement') | 6904 @DomName('SVGUseElement.SVGUseElement') |
| 8399 @DocsEditable() | 6905 @DocsEditable() |
| 8400 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; | 6906 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; |
| 8401 | |
| 8402 | |
| 8403 static UseElement internalCreateUseElement() { | |
| 8404 return new UseElement._internalWrap(); | |
| 8405 } | |
| 8406 | |
| 8407 factory UseElement._internalWrap() { | |
| 8408 return new UseElement._internal(); | |
| 8409 } | |
| 8410 | |
| 8411 UseElement._internal() : super._internal(); | |
| 8412 | |
| 8413 /** | 6907 /** |
| 8414 * Constructor instantiated by the DOM when a custom element has been created. | 6908 * Constructor instantiated by the DOM when a custom element has been created. |
| 8415 * | 6909 * |
| 8416 * This can only be called by subclasses from their created constructor. | 6910 * This can only be called by subclasses from their created constructor. |
| 8417 */ | 6911 */ |
| 8418 UseElement.created() : super.created(); | 6912 UseElement.created() : super.created(); |
| 8419 | 6913 |
| 8420 @DomName('SVGUseElement.height') | 6914 @DomName('SVGUseElement.height') |
| 8421 @DocsEditable() | 6915 @DocsEditable() |
| 8422 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); | 6916 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 8448 @DocsEditable() | 6942 @DocsEditable() |
| 8449 @DomName('SVGViewElement') | 6943 @DomName('SVGViewElement') |
| 8450 @Unstable() | 6944 @Unstable() |
| 8451 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { | 6945 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { |
| 8452 // To suppress missing implicit constructor warnings. | 6946 // To suppress missing implicit constructor warnings. |
| 8453 factory ViewElement._() { throw new UnsupportedError("Not supported"); } | 6947 factory ViewElement._() { throw new UnsupportedError("Not supported"); } |
| 8454 | 6948 |
| 8455 @DomName('SVGViewElement.SVGViewElement') | 6949 @DomName('SVGViewElement.SVGViewElement') |
| 8456 @DocsEditable() | 6950 @DocsEditable() |
| 8457 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); | 6951 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); |
| 8458 | |
| 8459 | |
| 8460 static ViewElement internalCreateViewElement() { | |
| 8461 return new ViewElement._internalWrap(); | |
| 8462 } | |
| 8463 | |
| 8464 factory ViewElement._internalWrap() { | |
| 8465 return new ViewElement._internal(); | |
| 8466 } | |
| 8467 | |
| 8468 ViewElement._internal() : super._internal(); | |
| 8469 | |
| 8470 /** | 6952 /** |
| 8471 * Constructor instantiated by the DOM when a custom element has been created. | 6953 * Constructor instantiated by the DOM when a custom element has been created. |
| 8472 * | 6954 * |
| 8473 * This can only be called by subclasses from their created constructor. | 6955 * This can only be called by subclasses from their created constructor. |
| 8474 */ | 6956 */ |
| 8475 ViewElement.created() : super.created(); | 6957 ViewElement.created() : super.created(); |
| 8476 | 6958 |
| 8477 @DomName('SVGViewElement.viewTarget') | 6959 @DomName('SVGViewElement.viewTarget') |
| 8478 @DocsEditable() | 6960 @DocsEditable() |
| 8479 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); | 6961 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 8502 // WARNING: Do not edit - generated code. | 6984 // WARNING: Do not edit - generated code. |
| 8503 | 6985 |
| 8504 | 6986 |
| 8505 @DocsEditable() | 6987 @DocsEditable() |
| 8506 @DomName('SVGViewSpec') | 6988 @DomName('SVGViewSpec') |
| 8507 @Unstable() | 6989 @Unstable() |
| 8508 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { | 6990 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { |
| 8509 // To suppress missing implicit constructor warnings. | 6991 // To suppress missing implicit constructor warnings. |
| 8510 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 6992 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
| 8511 | 6993 |
| 8512 static ViewSpec internalCreateViewSpec() { | |
| 8513 return new ViewSpec._internalWrap(); | |
| 8514 } | |
| 8515 | |
| 8516 JsObject blink_jsObject = null; | |
| 8517 | |
| 8518 factory ViewSpec._internalWrap() { | |
| 8519 return new ViewSpec._internal(); | |
| 8520 } | |
| 8521 | |
| 8522 ViewSpec._internal() { } | |
| 8523 | |
| 8524 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8525 | |
| 8526 @DomName('SVGViewSpec.preserveAspectRatioString') | 6994 @DomName('SVGViewSpec.preserveAspectRatioString') |
| 8527 @DocsEditable() | 6995 @DocsEditable() |
| 8528 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); | 6996 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); |
| 8529 | 6997 |
| 8530 @DomName('SVGViewSpec.transform') | 6998 @DomName('SVGViewSpec.transform') |
| 8531 @DocsEditable() | 6999 @DocsEditable() |
| 8532 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); | 7000 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); |
| 8533 | 7001 |
| 8534 @DomName('SVGViewSpec.transformString') | 7002 @DomName('SVGViewSpec.transformString') |
| 8535 @DocsEditable() | 7003 @DocsEditable() |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8575 // WARNING: Do not edit - generated code. | 7043 // WARNING: Do not edit - generated code. |
| 8576 | 7044 |
| 8577 | 7045 |
| 8578 @DocsEditable() | 7046 @DocsEditable() |
| 8579 @DomName('SVGZoomAndPan') | 7047 @DomName('SVGZoomAndPan') |
| 8580 @Unstable() | 7048 @Unstable() |
| 8581 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { | 7049 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { |
| 8582 // To suppress missing implicit constructor warnings. | 7050 // To suppress missing implicit constructor warnings. |
| 8583 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } | 7051 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } |
| 8584 | 7052 |
| 8585 static ZoomAndPan internalCreateZoomAndPan() { | |
| 8586 return new ZoomAndPan._internalWrap(); | |
| 8587 } | |
| 8588 | |
| 8589 JsObject blink_jsObject = null; | |
| 8590 | |
| 8591 factory ZoomAndPan._internalWrap() { | |
| 8592 return new ZoomAndPan._internal(); | |
| 8593 } | |
| 8594 | |
| 8595 ZoomAndPan._internal() { } | |
| 8596 | |
| 8597 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8598 | |
| 8599 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') | 7053 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') |
| 8600 @DocsEditable() | 7054 @DocsEditable() |
| 8601 static const int SVG_ZOOMANDPAN_DISABLE = 1; | 7055 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
| 8602 | 7056 |
| 8603 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') | 7057 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') |
| 8604 @DocsEditable() | 7058 @DocsEditable() |
| 8605 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; | 7059 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 8606 | 7060 |
| 8607 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') | 7061 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') |
| 8608 @DocsEditable() | 7062 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 8624 // WARNING: Do not edit - generated code. | 7078 // WARNING: Do not edit - generated code. |
| 8625 | 7079 |
| 8626 | 7080 |
| 8627 @DocsEditable() | 7081 @DocsEditable() |
| 8628 @DomName('SVGZoomEvent') | 7082 @DomName('SVGZoomEvent') |
| 8629 @Unstable() | 7083 @Unstable() |
| 8630 class ZoomEvent extends UIEvent { | 7084 class ZoomEvent extends UIEvent { |
| 8631 // To suppress missing implicit constructor warnings. | 7085 // To suppress missing implicit constructor warnings. |
| 8632 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } | 7086 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } |
| 8633 | 7087 |
| 8634 | |
| 8635 static ZoomEvent internalCreateZoomEvent() { | |
| 8636 return new ZoomEvent._internalWrap(); | |
| 8637 } | |
| 8638 | |
| 8639 factory ZoomEvent._internalWrap() { | |
| 8640 return new ZoomEvent._internal(); | |
| 8641 } | |
| 8642 | |
| 8643 ZoomEvent._internal() : super._internal(); | |
| 8644 | |
| 8645 | |
| 8646 @DomName('SVGZoomEvent.newScale') | 7088 @DomName('SVGZoomEvent.newScale') |
| 8647 @DocsEditable() | 7089 @DocsEditable() |
| 8648 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwr
ap_jso(this)); | 7090 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwr
ap_jso(this)); |
| 8649 | 7091 |
| 8650 @DomName('SVGZoomEvent.newTranslate') | 7092 @DomName('SVGZoomEvent.newTranslate') |
| 8651 @DocsEditable() | 7093 @DocsEditable() |
| 8652 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); | 7094 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); |
| 8653 | 7095 |
| 8654 @DomName('SVGZoomEvent.previousScale') | 7096 @DomName('SVGZoomEvent.previousScale') |
| 8655 @DocsEditable() | 7097 @DocsEditable() |
| (...skipping 14 matching lines...) Expand all Loading... |
| 8670 | 7112 |
| 8671 // WARNING: Do not edit - generated code. | 7113 // WARNING: Do not edit - generated code. |
| 8672 | 7114 |
| 8673 | 7115 |
| 8674 @DocsEditable() | 7116 @DocsEditable() |
| 8675 @DomName('SVGGradientElement') | 7117 @DomName('SVGGradientElement') |
| 8676 @Unstable() | 7118 @Unstable() |
| 8677 class _GradientElement extends SvgElement implements UriReference { | 7119 class _GradientElement extends SvgElement implements UriReference { |
| 8678 // To suppress missing implicit constructor warnings. | 7120 // To suppress missing implicit constructor warnings. |
| 8679 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } | 7121 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } |
| 8680 | |
| 8681 | |
| 8682 static _GradientElement internalCreate_GradientElement() { | |
| 8683 return new _GradientElement._internalWrap(); | |
| 8684 } | |
| 8685 | |
| 8686 factory _GradientElement._internalWrap() { | |
| 8687 return new _GradientElement._internal(); | |
| 8688 } | |
| 8689 | |
| 8690 _GradientElement._internal() : super._internal(); | |
| 8691 | |
| 8692 /** | 7122 /** |
| 8693 * Constructor instantiated by the DOM when a custom element has been created. | 7123 * Constructor instantiated by the DOM when a custom element has been created. |
| 8694 * | 7124 * |
| 8695 * This can only be called by subclasses from their created constructor. | 7125 * This can only be called by subclasses from their created constructor. |
| 8696 */ | 7126 */ |
| 8697 _GradientElement.created() : super.created(); | 7127 _GradientElement.created() : super.created(); |
| 8698 | 7128 |
| 8699 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') | 7129 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
| 8700 @DocsEditable() | 7130 @DocsEditable() |
| 8701 static const int SVG_SPREADMETHOD_PAD = 1; | 7131 static const int SVG_SPREADMETHOD_PAD = 1; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8735 | 7165 |
| 8736 // WARNING: Do not edit - generated code. | 7166 // WARNING: Do not edit - generated code. |
| 8737 | 7167 |
| 8738 | 7168 |
| 8739 @DocsEditable() | 7169 @DocsEditable() |
| 8740 @DomName('SVGAltGlyphDefElement') | 7170 @DomName('SVGAltGlyphDefElement') |
| 8741 @Unstable() | 7171 @Unstable() |
| 8742 abstract class _SVGAltGlyphDefElement extends SvgElement { | 7172 abstract class _SVGAltGlyphDefElement extends SvgElement { |
| 8743 // To suppress missing implicit constructor warnings. | 7173 // To suppress missing implicit constructor warnings. |
| 8744 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } | 7174 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } |
| 8745 | |
| 8746 | |
| 8747 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { | |
| 8748 return new _SVGAltGlyphDefElement._internalWrap(); | |
| 8749 } | |
| 8750 | |
| 8751 factory _SVGAltGlyphDefElement._internalWrap() { | |
| 8752 return new _SVGAltGlyphDefElement._internal(); | |
| 8753 } | |
| 8754 | |
| 8755 _SVGAltGlyphDefElement._internal() : super._internal(); | |
| 8756 | |
| 8757 /** | 7175 /** |
| 8758 * Constructor instantiated by the DOM when a custom element has been created. | 7176 * Constructor instantiated by the DOM when a custom element has been created. |
| 8759 * | 7177 * |
| 8760 * This can only be called by subclasses from their created constructor. | 7178 * This can only be called by subclasses from their created constructor. |
| 8761 */ | 7179 */ |
| 8762 _SVGAltGlyphDefElement.created() : super.created(); | 7180 _SVGAltGlyphDefElement.created() : super.created(); |
| 8763 | 7181 |
| 8764 } | 7182 } |
| 8765 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8766 // for details. All rights reserved. Use of this source code is governed by a | 7184 // for details. All rights reserved. Use of this source code is governed by a |
| 8767 // BSD-style license that can be found in the LICENSE file. | 7185 // BSD-style license that can be found in the LICENSE file. |
| 8768 | 7186 |
| 8769 // WARNING: Do not edit - generated code. | 7187 // WARNING: Do not edit - generated code. |
| 8770 | 7188 |
| 8771 | 7189 |
| 8772 @DocsEditable() | 7190 @DocsEditable() |
| 8773 @DomName('SVGAltGlyphItemElement') | 7191 @DomName('SVGAltGlyphItemElement') |
| 8774 @Unstable() | 7192 @Unstable() |
| 8775 abstract class _SVGAltGlyphItemElement extends SvgElement { | 7193 abstract class _SVGAltGlyphItemElement extends SvgElement { |
| 8776 // To suppress missing implicit constructor warnings. | 7194 // To suppress missing implicit constructor warnings. |
| 8777 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } | 7195 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 8778 | |
| 8779 | |
| 8780 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { | |
| 8781 return new _SVGAltGlyphItemElement._internalWrap(); | |
| 8782 } | |
| 8783 | |
| 8784 factory _SVGAltGlyphItemElement._internalWrap() { | |
| 8785 return new _SVGAltGlyphItemElement._internal(); | |
| 8786 } | |
| 8787 | |
| 8788 _SVGAltGlyphItemElement._internal() : super._internal(); | |
| 8789 | |
| 8790 /** | 7196 /** |
| 8791 * Constructor instantiated by the DOM when a custom element has been created. | 7197 * Constructor instantiated by the DOM when a custom element has been created. |
| 8792 * | 7198 * |
| 8793 * This can only be called by subclasses from their created constructor. | 7199 * This can only be called by subclasses from their created constructor. |
| 8794 */ | 7200 */ |
| 8795 _SVGAltGlyphItemElement.created() : super.created(); | 7201 _SVGAltGlyphItemElement.created() : super.created(); |
| 8796 | 7202 |
| 8797 } | 7203 } |
| 8798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8799 // for details. All rights reserved. Use of this source code is governed by a | 7205 // for details. All rights reserved. Use of this source code is governed by a |
| 8800 // BSD-style license that can be found in the LICENSE file. | 7206 // BSD-style license that can be found in the LICENSE file. |
| 8801 | 7207 |
| 8802 // WARNING: Do not edit - generated code. | 7208 // WARNING: Do not edit - generated code. |
| 8803 | 7209 |
| 8804 | 7210 |
| 8805 @DocsEditable() | 7211 @DocsEditable() |
| 8806 @DomName('SVGComponentTransferFunctionElement') | 7212 @DomName('SVGComponentTransferFunctionElement') |
| 8807 @Unstable() | 7213 @Unstable() |
| 8808 abstract class _SVGComponentTransferFunctionElement extends SvgElement { | 7214 abstract class _SVGComponentTransferFunctionElement extends SvgElement { |
| 8809 // To suppress missing implicit constructor warnings. | 7215 // To suppress missing implicit constructor warnings. |
| 8810 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } | 7216 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } |
| 8811 | |
| 8812 | |
| 8813 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { | |
| 8814 return new _SVGComponentTransferFunctionElement._internalWrap(); | |
| 8815 } | |
| 8816 | |
| 8817 factory _SVGComponentTransferFunctionElement._internalWrap() { | |
| 8818 return new _SVGComponentTransferFunctionElement._internal(); | |
| 8819 } | |
| 8820 | |
| 8821 _SVGComponentTransferFunctionElement._internal() : super._internal(); | |
| 8822 | |
| 8823 /** | 7217 /** |
| 8824 * Constructor instantiated by the DOM when a custom element has been created. | 7218 * Constructor instantiated by the DOM when a custom element has been created. |
| 8825 * | 7219 * |
| 8826 * This can only be called by subclasses from their created constructor. | 7220 * This can only be called by subclasses from their created constructor. |
| 8827 */ | 7221 */ |
| 8828 _SVGComponentTransferFunctionElement.created() : super.created(); | 7222 _SVGComponentTransferFunctionElement.created() : super.created(); |
| 8829 | 7223 |
| 8830 } | 7224 } |
| 8831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8832 // for details. All rights reserved. Use of this source code is governed by a | 7226 // for details. All rights reserved. Use of this source code is governed by a |
| 8833 // BSD-style license that can be found in the LICENSE file. | 7227 // BSD-style license that can be found in the LICENSE file. |
| 8834 | 7228 |
| 8835 // WARNING: Do not edit - generated code. | 7229 // WARNING: Do not edit - generated code. |
| 8836 | 7230 |
| 8837 | 7231 |
| 8838 @DocsEditable() | 7232 @DocsEditable() |
| 8839 @DomName('SVGCursorElement') | 7233 @DomName('SVGCursorElement') |
| 8840 @Unstable() | 7234 @Unstable() |
| 8841 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { | 7235 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { |
| 8842 // To suppress missing implicit constructor warnings. | 7236 // To suppress missing implicit constructor warnings. |
| 8843 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } | 7237 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } |
| 8844 | 7238 |
| 8845 @DomName('SVGCursorElement.SVGCursorElement') | 7239 @DomName('SVGCursorElement.SVGCursorElement') |
| 8846 @DocsEditable() | 7240 @DocsEditable() |
| 8847 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); | 7241 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); |
| 8848 | |
| 8849 | |
| 8850 static _SVGCursorElement internalCreate_SVGCursorElement() { | |
| 8851 return new _SVGCursorElement._internalWrap(); | |
| 8852 } | |
| 8853 | |
| 8854 factory _SVGCursorElement._internalWrap() { | |
| 8855 return new _SVGCursorElement._internal(); | |
| 8856 } | |
| 8857 | |
| 8858 _SVGCursorElement._internal() : super._internal(); | |
| 8859 | |
| 8860 /** | 7242 /** |
| 8861 * Constructor instantiated by the DOM when a custom element has been created. | 7243 * Constructor instantiated by the DOM when a custom element has been created. |
| 8862 * | 7244 * |
| 8863 * This can only be called by subclasses from their created constructor. | 7245 * This can only be called by subclasses from their created constructor. |
| 8864 */ | 7246 */ |
| 8865 _SVGCursorElement.created() : super.created(); | 7247 _SVGCursorElement.created() : super.created(); |
| 8866 | 7248 |
| 8867 /// Checks if this type is supported on the current platform. | 7249 /// Checks if this type is supported on the current platform. |
| 8868 static bool get supported => true; | 7250 static bool get supported => true; |
| 8869 | 7251 |
| 8870 } | 7252 } |
| 8871 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8872 // for details. All rights reserved. Use of this source code is governed by a | 7254 // for details. All rights reserved. Use of this source code is governed by a |
| 8873 // BSD-style license that can be found in the LICENSE file. | 7255 // BSD-style license that can be found in the LICENSE file. |
| 8874 | 7256 |
| 8875 // WARNING: Do not edit - generated code. | 7257 // WARNING: Do not edit - generated code. |
| 8876 | 7258 |
| 8877 | 7259 |
| 8878 @DocsEditable() | 7260 @DocsEditable() |
| 8879 @DomName('SVGFEDropShadowElement') | 7261 @DomName('SVGFEDropShadowElement') |
| 8880 @Experimental() // nonstandard | 7262 @Experimental() // nonstandard |
| 8881 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { | 7263 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { |
| 8882 // To suppress missing implicit constructor warnings. | 7264 // To suppress missing implicit constructor warnings. |
| 8883 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } | 7265 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 8884 | |
| 8885 | |
| 8886 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { | |
| 8887 return new _SVGFEDropShadowElement._internalWrap(); | |
| 8888 } | |
| 8889 | |
| 8890 factory _SVGFEDropShadowElement._internalWrap() { | |
| 8891 return new _SVGFEDropShadowElement._internal(); | |
| 8892 } | |
| 8893 | |
| 8894 _SVGFEDropShadowElement._internal() : super._internal(); | |
| 8895 | |
| 8896 /** | 7266 /** |
| 8897 * Constructor instantiated by the DOM when a custom element has been created. | 7267 * Constructor instantiated by the DOM when a custom element has been created. |
| 8898 * | 7268 * |
| 8899 * This can only be called by subclasses from their created constructor. | 7269 * This can only be called by subclasses from their created constructor. |
| 8900 */ | 7270 */ |
| 8901 _SVGFEDropShadowElement.created() : super.created(); | 7271 _SVGFEDropShadowElement.created() : super.created(); |
| 8902 | 7272 |
| 8903 } | 7273 } |
| 8904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8905 // for details. All rights reserved. Use of this source code is governed by a | 7275 // for details. All rights reserved. Use of this source code is governed by a |
| 8906 // BSD-style license that can be found in the LICENSE file. | 7276 // BSD-style license that can be found in the LICENSE file. |
| 8907 | 7277 |
| 8908 // WARNING: Do not edit - generated code. | 7278 // WARNING: Do not edit - generated code. |
| 8909 | 7279 |
| 8910 | 7280 |
| 8911 @DocsEditable() | 7281 @DocsEditable() |
| 8912 @DomName('SVGFontElement') | 7282 @DomName('SVGFontElement') |
| 8913 @Unstable() | 7283 @Unstable() |
| 8914 abstract class _SVGFontElement extends SvgElement { | 7284 abstract class _SVGFontElement extends SvgElement { |
| 8915 // To suppress missing implicit constructor warnings. | 7285 // To suppress missing implicit constructor warnings. |
| 8916 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } | 7286 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } |
| 8917 | |
| 8918 | |
| 8919 static _SVGFontElement internalCreate_SVGFontElement() { | |
| 8920 return new _SVGFontElement._internalWrap(); | |
| 8921 } | |
| 8922 | |
| 8923 factory _SVGFontElement._internalWrap() { | |
| 8924 return new _SVGFontElement._internal(); | |
| 8925 } | |
| 8926 | |
| 8927 _SVGFontElement._internal() : super._internal(); | |
| 8928 | |
| 8929 /** | 7287 /** |
| 8930 * Constructor instantiated by the DOM when a custom element has been created. | 7288 * Constructor instantiated by the DOM when a custom element has been created. |
| 8931 * | 7289 * |
| 8932 * This can only be called by subclasses from their created constructor. | 7290 * This can only be called by subclasses from their created constructor. |
| 8933 */ | 7291 */ |
| 8934 _SVGFontElement.created() : super.created(); | 7292 _SVGFontElement.created() : super.created(); |
| 8935 | 7293 |
| 8936 } | 7294 } |
| 8937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8938 // for details. All rights reserved. Use of this source code is governed by a | 7296 // for details. All rights reserved. Use of this source code is governed by a |
| 8939 // BSD-style license that can be found in the LICENSE file. | 7297 // BSD-style license that can be found in the LICENSE file. |
| 8940 | 7298 |
| 8941 // WARNING: Do not edit - generated code. | 7299 // WARNING: Do not edit - generated code. |
| 8942 | 7300 |
| 8943 | 7301 |
| 8944 @DocsEditable() | 7302 @DocsEditable() |
| 8945 @DomName('SVGFontFaceElement') | 7303 @DomName('SVGFontFaceElement') |
| 8946 @Unstable() | 7304 @Unstable() |
| 8947 abstract class _SVGFontFaceElement extends SvgElement { | 7305 abstract class _SVGFontFaceElement extends SvgElement { |
| 8948 // To suppress missing implicit constructor warnings. | 7306 // To suppress missing implicit constructor warnings. |
| 8949 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} | 7307 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} |
| 8950 | |
| 8951 | |
| 8952 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { | |
| 8953 return new _SVGFontFaceElement._internalWrap(); | |
| 8954 } | |
| 8955 | |
| 8956 factory _SVGFontFaceElement._internalWrap() { | |
| 8957 return new _SVGFontFaceElement._internal(); | |
| 8958 } | |
| 8959 | |
| 8960 _SVGFontFaceElement._internal() : super._internal(); | |
| 8961 | |
| 8962 /** | 7308 /** |
| 8963 * Constructor instantiated by the DOM when a custom element has been created. | 7309 * Constructor instantiated by the DOM when a custom element has been created. |
| 8964 * | 7310 * |
| 8965 * This can only be called by subclasses from their created constructor. | 7311 * This can only be called by subclasses from their created constructor. |
| 8966 */ | 7312 */ |
| 8967 _SVGFontFaceElement.created() : super.created(); | 7313 _SVGFontFaceElement.created() : super.created(); |
| 8968 | 7314 |
| 8969 } | 7315 } |
| 8970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8971 // for details. All rights reserved. Use of this source code is governed by a | 7317 // for details. All rights reserved. Use of this source code is governed by a |
| 8972 // BSD-style license that can be found in the LICENSE file. | 7318 // BSD-style license that can be found in the LICENSE file. |
| 8973 | 7319 |
| 8974 // WARNING: Do not edit - generated code. | 7320 // WARNING: Do not edit - generated code. |
| 8975 | 7321 |
| 8976 | 7322 |
| 8977 @DocsEditable() | 7323 @DocsEditable() |
| 8978 @DomName('SVGFontFaceFormatElement') | 7324 @DomName('SVGFontFaceFormatElement') |
| 8979 @Unstable() | 7325 @Unstable() |
| 8980 abstract class _SVGFontFaceFormatElement extends SvgElement { | 7326 abstract class _SVGFontFaceFormatElement extends SvgElement { |
| 8981 // To suppress missing implicit constructor warnings. | 7327 // To suppress missing implicit constructor warnings. |
| 8982 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } | 7328 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 8983 | |
| 8984 | |
| 8985 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { | |
| 8986 return new _SVGFontFaceFormatElement._internalWrap(); | |
| 8987 } | |
| 8988 | |
| 8989 factory _SVGFontFaceFormatElement._internalWrap() { | |
| 8990 return new _SVGFontFaceFormatElement._internal(); | |
| 8991 } | |
| 8992 | |
| 8993 _SVGFontFaceFormatElement._internal() : super._internal(); | |
| 8994 | |
| 8995 /** | 7329 /** |
| 8996 * Constructor instantiated by the DOM when a custom element has been created. | 7330 * Constructor instantiated by the DOM when a custom element has been created. |
| 8997 * | 7331 * |
| 8998 * This can only be called by subclasses from their created constructor. | 7332 * This can only be called by subclasses from their created constructor. |
| 8999 */ | 7333 */ |
| 9000 _SVGFontFaceFormatElement.created() : super.created(); | 7334 _SVGFontFaceFormatElement.created() : super.created(); |
| 9001 | 7335 |
| 9002 } | 7336 } |
| 9003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9004 // for details. All rights reserved. Use of this source code is governed by a | 7338 // for details. All rights reserved. Use of this source code is governed by a |
| 9005 // BSD-style license that can be found in the LICENSE file. | 7339 // BSD-style license that can be found in the LICENSE file. |
| 9006 | 7340 |
| 9007 // WARNING: Do not edit - generated code. | 7341 // WARNING: Do not edit - generated code. |
| 9008 | 7342 |
| 9009 | 7343 |
| 9010 @DocsEditable() | 7344 @DocsEditable() |
| 9011 @DomName('SVGFontFaceNameElement') | 7345 @DomName('SVGFontFaceNameElement') |
| 9012 @Unstable() | 7346 @Unstable() |
| 9013 abstract class _SVGFontFaceNameElement extends SvgElement { | 7347 abstract class _SVGFontFaceNameElement extends SvgElement { |
| 9014 // To suppress missing implicit constructor warnings. | 7348 // To suppress missing implicit constructor warnings. |
| 9015 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } | 7349 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9016 | |
| 9017 | |
| 9018 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { | |
| 9019 return new _SVGFontFaceNameElement._internalWrap(); | |
| 9020 } | |
| 9021 | |
| 9022 factory _SVGFontFaceNameElement._internalWrap() { | |
| 9023 return new _SVGFontFaceNameElement._internal(); | |
| 9024 } | |
| 9025 | |
| 9026 _SVGFontFaceNameElement._internal() : super._internal(); | |
| 9027 | |
| 9028 /** | 7350 /** |
| 9029 * Constructor instantiated by the DOM when a custom element has been created. | 7351 * Constructor instantiated by the DOM when a custom element has been created. |
| 9030 * | 7352 * |
| 9031 * This can only be called by subclasses from their created constructor. | 7353 * This can only be called by subclasses from their created constructor. |
| 9032 */ | 7354 */ |
| 9033 _SVGFontFaceNameElement.created() : super.created(); | 7355 _SVGFontFaceNameElement.created() : super.created(); |
| 9034 | 7356 |
| 9035 } | 7357 } |
| 9036 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9037 // for details. All rights reserved. Use of this source code is governed by a | 7359 // for details. All rights reserved. Use of this source code is governed by a |
| 9038 // BSD-style license that can be found in the LICENSE file. | 7360 // BSD-style license that can be found in the LICENSE file. |
| 9039 | 7361 |
| 9040 // WARNING: Do not edit - generated code. | 7362 // WARNING: Do not edit - generated code. |
| 9041 | 7363 |
| 9042 | 7364 |
| 9043 @DocsEditable() | 7365 @DocsEditable() |
| 9044 @DomName('SVGFontFaceSrcElement') | 7366 @DomName('SVGFontFaceSrcElement') |
| 9045 @Unstable() | 7367 @Unstable() |
| 9046 abstract class _SVGFontFaceSrcElement extends SvgElement { | 7368 abstract class _SVGFontFaceSrcElement extends SvgElement { |
| 9047 // To suppress missing implicit constructor warnings. | 7369 // To suppress missing implicit constructor warnings. |
| 9048 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } | 7370 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } |
| 9049 | |
| 9050 | |
| 9051 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { | |
| 9052 return new _SVGFontFaceSrcElement._internalWrap(); | |
| 9053 } | |
| 9054 | |
| 9055 factory _SVGFontFaceSrcElement._internalWrap() { | |
| 9056 return new _SVGFontFaceSrcElement._internal(); | |
| 9057 } | |
| 9058 | |
| 9059 _SVGFontFaceSrcElement._internal() : super._internal(); | |
| 9060 | |
| 9061 /** | 7371 /** |
| 9062 * Constructor instantiated by the DOM when a custom element has been created. | 7372 * Constructor instantiated by the DOM when a custom element has been created. |
| 9063 * | 7373 * |
| 9064 * This can only be called by subclasses from their created constructor. | 7374 * This can only be called by subclasses from their created constructor. |
| 9065 */ | 7375 */ |
| 9066 _SVGFontFaceSrcElement.created() : super.created(); | 7376 _SVGFontFaceSrcElement.created() : super.created(); |
| 9067 | 7377 |
| 9068 } | 7378 } |
| 9069 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9070 // for details. All rights reserved. Use of this source code is governed by a | 7380 // for details. All rights reserved. Use of this source code is governed by a |
| 9071 // BSD-style license that can be found in the LICENSE file. | 7381 // BSD-style license that can be found in the LICENSE file. |
| 9072 | 7382 |
| 9073 // WARNING: Do not edit - generated code. | 7383 // WARNING: Do not edit - generated code. |
| 9074 | 7384 |
| 9075 | 7385 |
| 9076 @DocsEditable() | 7386 @DocsEditable() |
| 9077 @DomName('SVGFontFaceUriElement') | 7387 @DomName('SVGFontFaceUriElement') |
| 9078 @Unstable() | 7388 @Unstable() |
| 9079 abstract class _SVGFontFaceUriElement extends SvgElement { | 7389 abstract class _SVGFontFaceUriElement extends SvgElement { |
| 9080 // To suppress missing implicit constructor warnings. | 7390 // To suppress missing implicit constructor warnings. |
| 9081 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } | 7391 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } |
| 9082 | |
| 9083 | |
| 9084 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { | |
| 9085 return new _SVGFontFaceUriElement._internalWrap(); | |
| 9086 } | |
| 9087 | |
| 9088 factory _SVGFontFaceUriElement._internalWrap() { | |
| 9089 return new _SVGFontFaceUriElement._internal(); | |
| 9090 } | |
| 9091 | |
| 9092 _SVGFontFaceUriElement._internal() : super._internal(); | |
| 9093 | |
| 9094 /** | 7392 /** |
| 9095 * Constructor instantiated by the DOM when a custom element has been created. | 7393 * Constructor instantiated by the DOM when a custom element has been created. |
| 9096 * | 7394 * |
| 9097 * This can only be called by subclasses from their created constructor. | 7395 * This can only be called by subclasses from their created constructor. |
| 9098 */ | 7396 */ |
| 9099 _SVGFontFaceUriElement.created() : super.created(); | 7397 _SVGFontFaceUriElement.created() : super.created(); |
| 9100 | 7398 |
| 9101 } | 7399 } |
| 9102 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9103 // for details. All rights reserved. Use of this source code is governed by a | 7401 // for details. All rights reserved. Use of this source code is governed by a |
| 9104 // BSD-style license that can be found in the LICENSE file. | 7402 // BSD-style license that can be found in the LICENSE file. |
| 9105 | 7403 |
| 9106 // WARNING: Do not edit - generated code. | 7404 // WARNING: Do not edit - generated code. |
| 9107 | 7405 |
| 9108 | 7406 |
| 9109 @DocsEditable() | 7407 @DocsEditable() |
| 9110 @DomName('SVGGlyphElement') | 7408 @DomName('SVGGlyphElement') |
| 9111 @Unstable() | 7409 @Unstable() |
| 9112 abstract class _SVGGlyphElement extends SvgElement { | 7410 abstract class _SVGGlyphElement extends SvgElement { |
| 9113 // To suppress missing implicit constructor warnings. | 7411 // To suppress missing implicit constructor warnings. |
| 9114 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } | 7412 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 9115 | 7413 |
| 9116 @DomName('SVGGlyphElement.SVGGlyphElement') | 7414 @DomName('SVGGlyphElement.SVGGlyphElement') |
| 9117 @DocsEditable() | 7415 @DocsEditable() |
| 9118 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); | 7416 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); |
| 9119 | |
| 9120 | |
| 9121 static _SVGGlyphElement internalCreate_SVGGlyphElement() { | |
| 9122 return new _SVGGlyphElement._internalWrap(); | |
| 9123 } | |
| 9124 | |
| 9125 factory _SVGGlyphElement._internalWrap() { | |
| 9126 return new _SVGGlyphElement._internal(); | |
| 9127 } | |
| 9128 | |
| 9129 _SVGGlyphElement._internal() : super._internal(); | |
| 9130 | |
| 9131 /** | 7417 /** |
| 9132 * Constructor instantiated by the DOM when a custom element has been created. | 7418 * Constructor instantiated by the DOM when a custom element has been created. |
| 9133 * | 7419 * |
| 9134 * This can only be called by subclasses from their created constructor. | 7420 * This can only be called by subclasses from their created constructor. |
| 9135 */ | 7421 */ |
| 9136 _SVGGlyphElement.created() : super.created(); | 7422 _SVGGlyphElement.created() : super.created(); |
| 9137 | 7423 |
| 9138 } | 7424 } |
| 9139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9140 // for details. All rights reserved. Use of this source code is governed by a | 7426 // for details. All rights reserved. Use of this source code is governed by a |
| 9141 // BSD-style license that can be found in the LICENSE file. | 7427 // BSD-style license that can be found in the LICENSE file. |
| 9142 | 7428 |
| 9143 // WARNING: Do not edit - generated code. | 7429 // WARNING: Do not edit - generated code. |
| 9144 | 7430 |
| 9145 | 7431 |
| 9146 @DocsEditable() | 7432 @DocsEditable() |
| 9147 @DomName('SVGGlyphRefElement') | 7433 @DomName('SVGGlyphRefElement') |
| 9148 @Unstable() | 7434 @Unstable() |
| 9149 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { | 7435 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { |
| 9150 // To suppress missing implicit constructor warnings. | 7436 // To suppress missing implicit constructor warnings. |
| 9151 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} | 7437 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} |
| 9152 | |
| 9153 | |
| 9154 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { | |
| 9155 return new _SVGGlyphRefElement._internalWrap(); | |
| 9156 } | |
| 9157 | |
| 9158 factory _SVGGlyphRefElement._internalWrap() { | |
| 9159 return new _SVGGlyphRefElement._internal(); | |
| 9160 } | |
| 9161 | |
| 9162 _SVGGlyphRefElement._internal() : super._internal(); | |
| 9163 | |
| 9164 /** | 7438 /** |
| 9165 * Constructor instantiated by the DOM when a custom element has been created. | 7439 * Constructor instantiated by the DOM when a custom element has been created. |
| 9166 * | 7440 * |
| 9167 * This can only be called by subclasses from their created constructor. | 7441 * This can only be called by subclasses from their created constructor. |
| 9168 */ | 7442 */ |
| 9169 _SVGGlyphRefElement.created() : super.created(); | 7443 _SVGGlyphRefElement.created() : super.created(); |
| 9170 | 7444 |
| 9171 } | 7445 } |
| 9172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9173 // for details. All rights reserved. Use of this source code is governed by a | 7447 // for details. All rights reserved. Use of this source code is governed by a |
| 9174 // BSD-style license that can be found in the LICENSE file. | 7448 // BSD-style license that can be found in the LICENSE file. |
| 9175 | 7449 |
| 9176 // WARNING: Do not edit - generated code. | 7450 // WARNING: Do not edit - generated code. |
| 9177 | 7451 |
| 9178 | 7452 |
| 9179 @DocsEditable() | 7453 @DocsEditable() |
| 9180 @DomName('SVGHKernElement') | 7454 @DomName('SVGHKernElement') |
| 9181 @Unstable() | 7455 @Unstable() |
| 9182 abstract class _SVGHKernElement extends SvgElement { | 7456 abstract class _SVGHKernElement extends SvgElement { |
| 9183 // To suppress missing implicit constructor warnings. | 7457 // To suppress missing implicit constructor warnings. |
| 9184 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } | 7458 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } |
| 9185 | 7459 |
| 9186 @DomName('SVGHKernElement.SVGHKernElement') | 7460 @DomName('SVGHKernElement.SVGHKernElement') |
| 9187 @DocsEditable() | 7461 @DocsEditable() |
| 9188 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); | 7462 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); |
| 9189 | |
| 9190 | |
| 9191 static _SVGHKernElement internalCreate_SVGHKernElement() { | |
| 9192 return new _SVGHKernElement._internalWrap(); | |
| 9193 } | |
| 9194 | |
| 9195 factory _SVGHKernElement._internalWrap() { | |
| 9196 return new _SVGHKernElement._internal(); | |
| 9197 } | |
| 9198 | |
| 9199 _SVGHKernElement._internal() : super._internal(); | |
| 9200 | |
| 9201 /** | 7463 /** |
| 9202 * Constructor instantiated by the DOM when a custom element has been created. | 7464 * Constructor instantiated by the DOM when a custom element has been created. |
| 9203 * | 7465 * |
| 9204 * This can only be called by subclasses from their created constructor. | 7466 * This can only be called by subclasses from their created constructor. |
| 9205 */ | 7467 */ |
| 9206 _SVGHKernElement.created() : super.created(); | 7468 _SVGHKernElement.created() : super.created(); |
| 9207 | 7469 |
| 9208 } | 7470 } |
| 9209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9210 // for details. All rights reserved. Use of this source code is governed by a | 7472 // for details. All rights reserved. Use of this source code is governed by a |
| 9211 // BSD-style license that can be found in the LICENSE file. | 7473 // BSD-style license that can be found in the LICENSE file. |
| 9212 | 7474 |
| 9213 // WARNING: Do not edit - generated code. | 7475 // WARNING: Do not edit - generated code. |
| 9214 | 7476 |
| 9215 | 7477 |
| 9216 @DocsEditable() | 7478 @DocsEditable() |
| 9217 @DomName('SVGMPathElement') | 7479 @DomName('SVGMPathElement') |
| 9218 abstract class _SVGMPathElement extends SvgElement implements UriReference { | 7480 abstract class _SVGMPathElement extends SvgElement implements UriReference { |
| 9219 // To suppress missing implicit constructor warnings. | 7481 // To suppress missing implicit constructor warnings. |
| 9220 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } | 7482 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } |
| 9221 | 7483 |
| 9222 @DomName('SVGMPathElement.SVGMPathElement') | 7484 @DomName('SVGMPathElement.SVGMPathElement') |
| 9223 @DocsEditable() | 7485 @DocsEditable() |
| 9224 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); | 7486 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); |
| 9225 | |
| 9226 | |
| 9227 static _SVGMPathElement internalCreate_SVGMPathElement() { | |
| 9228 return new _SVGMPathElement._internalWrap(); | |
| 9229 } | |
| 9230 | |
| 9231 factory _SVGMPathElement._internalWrap() { | |
| 9232 return new _SVGMPathElement._internal(); | |
| 9233 } | |
| 9234 | |
| 9235 _SVGMPathElement._internal() : super._internal(); | |
| 9236 | |
| 9237 /** | 7487 /** |
| 9238 * Constructor instantiated by the DOM when a custom element has been created. | 7488 * Constructor instantiated by the DOM when a custom element has been created. |
| 9239 * | 7489 * |
| 9240 * This can only be called by subclasses from their created constructor. | 7490 * This can only be called by subclasses from their created constructor. |
| 9241 */ | 7491 */ |
| 9242 _SVGMPathElement.created() : super.created(); | 7492 _SVGMPathElement.created() : super.created(); |
| 9243 | 7493 |
| 9244 } | 7494 } |
| 9245 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9246 // for details. All rights reserved. Use of this source code is governed by a | 7496 // for details. All rights reserved. Use of this source code is governed by a |
| 9247 // BSD-style license that can be found in the LICENSE file. | 7497 // BSD-style license that can be found in the LICENSE file. |
| 9248 | 7498 |
| 9249 // WARNING: Do not edit - generated code. | 7499 // WARNING: Do not edit - generated code. |
| 9250 | 7500 |
| 9251 | 7501 |
| 9252 @DocsEditable() | 7502 @DocsEditable() |
| 9253 @DomName('SVGMissingGlyphElement') | 7503 @DomName('SVGMissingGlyphElement') |
| 9254 @Unstable() | 7504 @Unstable() |
| 9255 abstract class _SVGMissingGlyphElement extends SvgElement { | 7505 abstract class _SVGMissingGlyphElement extends SvgElement { |
| 9256 // To suppress missing implicit constructor warnings. | 7506 // To suppress missing implicit constructor warnings. |
| 9257 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } | 7507 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9258 | |
| 9259 | |
| 9260 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { | |
| 9261 return new _SVGMissingGlyphElement._internalWrap(); | |
| 9262 } | |
| 9263 | |
| 9264 factory _SVGMissingGlyphElement._internalWrap() { | |
| 9265 return new _SVGMissingGlyphElement._internal(); | |
| 9266 } | |
| 9267 | |
| 9268 _SVGMissingGlyphElement._internal() : super._internal(); | |
| 9269 | |
| 9270 /** | 7508 /** |
| 9271 * Constructor instantiated by the DOM when a custom element has been created. | 7509 * Constructor instantiated by the DOM when a custom element has been created. |
| 9272 * | 7510 * |
| 9273 * This can only be called by subclasses from their created constructor. | 7511 * This can only be called by subclasses from their created constructor. |
| 9274 */ | 7512 */ |
| 9275 _SVGMissingGlyphElement.created() : super.created(); | 7513 _SVGMissingGlyphElement.created() : super.created(); |
| 9276 | 7514 |
| 9277 } | 7515 } |
| 9278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9279 // for details. All rights reserved. Use of this source code is governed by a | 7517 // for details. All rights reserved. Use of this source code is governed by a |
| 9280 // BSD-style license that can be found in the LICENSE file. | 7518 // BSD-style license that can be found in the LICENSE file. |
| 9281 | 7519 |
| 9282 // WARNING: Do not edit - generated code. | 7520 // WARNING: Do not edit - generated code. |
| 9283 | 7521 |
| 9284 | 7522 |
| 9285 @DocsEditable() | 7523 @DocsEditable() |
| 9286 @DomName('SVGVKernElement') | 7524 @DomName('SVGVKernElement') |
| 9287 @Unstable() | 7525 @Unstable() |
| 9288 abstract class _SVGVKernElement extends SvgElement { | 7526 abstract class _SVGVKernElement extends SvgElement { |
| 9289 // To suppress missing implicit constructor warnings. | 7527 // To suppress missing implicit constructor warnings. |
| 9290 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 7528 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
| 9291 | 7529 |
| 9292 @DomName('SVGVKernElement.SVGVKernElement') | 7530 @DomName('SVGVKernElement.SVGVKernElement') |
| 9293 @DocsEditable() | 7531 @DocsEditable() |
| 9294 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7532 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 9295 | |
| 9296 | |
| 9297 static _SVGVKernElement internalCreate_SVGVKernElement() { | |
| 9298 return new _SVGVKernElement._internalWrap(); | |
| 9299 } | |
| 9300 | |
| 9301 factory _SVGVKernElement._internalWrap() { | |
| 9302 return new _SVGVKernElement._internal(); | |
| 9303 } | |
| 9304 | |
| 9305 _SVGVKernElement._internal() : super._internal(); | |
| 9306 | |
| 9307 /** | 7533 /** |
| 9308 * Constructor instantiated by the DOM when a custom element has been created. | 7534 * Constructor instantiated by the DOM when a custom element has been created. |
| 9309 * | 7535 * |
| 9310 * This can only be called by subclasses from their created constructor. | 7536 * This can only be called by subclasses from their created constructor. |
| 9311 */ | 7537 */ |
| 9312 _SVGVKernElement.created() : super.created(); | 7538 _SVGVKernElement.created() : super.created(); |
| 9313 | 7539 |
| 9314 } | 7540 } |
| OLD | NEW |