| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'SVGURIReference': () => UriReference, | 161 'SVGURIReference': () => UriReference, |
| 162 'SVGUnitTypes': () => UnitTypes, | 162 'SVGUnitTypes': () => UnitTypes, |
| 163 'SVGUseElement': () => UseElement, | 163 'SVGUseElement': () => UseElement, |
| 164 'SVGVKernElement': () => _SVGVKernElement, | 164 'SVGVKernElement': () => _SVGVKernElement, |
| 165 'SVGViewElement': () => ViewElement, | 165 'SVGViewElement': () => ViewElement, |
| 166 'SVGViewSpec': () => ViewSpec, | 166 'SVGViewSpec': () => ViewSpec, |
| 167 'SVGZoomAndPan': () => ZoomAndPan, | 167 'SVGZoomAndPan': () => ZoomAndPan, |
| 168 'SVGZoomEvent': () => ZoomEvent, | 168 'SVGZoomEvent': () => ZoomEvent, |
| 169 | 169 |
| 170 }; | 170 }; |
| 171 |
| 171 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 172 // for details. All rights reserved. Use of this source code is governed by a | 173 // for details. All rights reserved. Use of this source code is governed by a |
| 173 // BSD-style license that can be found in the LICENSE file. | 174 // BSD-style license that can be found in the LICENSE file. |
| 174 | 175 |
| 175 | 176 |
| 176 class _SvgElementFactoryProvider { | 177 class _SvgElementFactoryProvider { |
| 177 static SvgElement createSvgElement_tag(String tag) { | 178 static SvgElement createSvgElement_tag(String tag) { |
| 178 final Element temp = | 179 final Element temp = |
| 179 document.createElementNS("http://www.w3.org/2000/svg", tag); | 180 document.createElementNS("http://www.w3.org/2000/svg", tag); |
| 180 return temp; | 181 return temp; |
| 181 } | 182 } |
| 182 } | 183 } |
| 183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 184 // for details. All rights reserved. Use of this source code is governed by a | 185 // for details. All rights reserved. Use of this source code is governed by a |
| 185 // BSD-style license that can be found in the LICENSE file. | 186 // BSD-style license that can be found in the LICENSE file. |
| 186 | 187 |
| 187 // WARNING: Do not edit - generated code. | 188 // WARNING: Do not edit - generated code. |
| 188 | 189 |
| 189 | 190 |
| 190 @DocsEditable() | 191 @DocsEditable() |
| 191 @DomName('SVGAElement') | 192 @DomName('SVGAElement') |
| 192 @Unstable() | 193 @Unstable() |
| 193 class AElement extends GraphicsElement implements UriReference { | 194 class AElement extends GraphicsElement implements UriReference { |
| 194 // To suppress missing implicit constructor warnings. | 195 // To suppress missing implicit constructor warnings. |
| 195 factory AElement._() { throw new UnsupportedError("Not supported"); } | 196 factory AElement._() { throw new UnsupportedError("Not supported"); } |
| 196 | 197 |
| 197 @DomName('SVGAElement.SVGAElement') | 198 @DomName('SVGAElement.SVGAElement') |
| 198 @DocsEditable() | 199 @DocsEditable() |
| 199 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 |
| 200 /** | 213 /** |
| 201 * Constructor instantiated by the DOM when a custom element has been created. | 214 * Constructor instantiated by the DOM when a custom element has been created. |
| 202 * | 215 * |
| 203 * This can only be called by subclasses from their created constructor. | 216 * This can only be called by subclasses from their created constructor. |
| 204 */ | 217 */ |
| 205 AElement.created() : super.created(); | 218 AElement.created() : super.created(); |
| 206 | 219 |
| 207 @DomName('SVGAElement.target') | 220 @DomName('SVGAElement.target') |
| 208 @DocsEditable() | 221 @DocsEditable() |
| 209 AnimatedString get target => _blink.BlinkSVGAElement.instance.target_Getter_(t
his); | 222 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); |
| 210 | 223 |
| 211 @DomName('SVGAElement.href') | 224 @DomName('SVGAElement.href') |
| 212 @DocsEditable() | 225 @DocsEditable() |
| 213 AnimatedString get href => _blink.BlinkSVGAElement.instance.href_Getter_(this)
; | 226 AnimatedString get href => wrap_jso(_blink.BlinkSVGAElement.instance.href_Gett
er_(unwrap_jso(this))); |
| 214 | 227 |
| 215 } | 228 } |
| 216 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 217 // for details. All rights reserved. Use of this source code is governed by a | 230 // for details. All rights reserved. Use of this source code is governed by a |
| 218 // BSD-style license that can be found in the LICENSE file. | 231 // BSD-style license that can be found in the LICENSE file. |
| 219 | 232 |
| 220 // WARNING: Do not edit - generated code. | 233 // WARNING: Do not edit - generated code. |
| 221 | 234 |
| 222 | 235 |
| 223 @DocsEditable() | 236 @DocsEditable() |
| 224 @DomName('SVGAltGlyphElement') | 237 @DomName('SVGAltGlyphElement') |
| 225 @SupportedBrowser(SupportedBrowser.CHROME) | 238 @SupportedBrowser(SupportedBrowser.CHROME) |
| 226 @SupportedBrowser(SupportedBrowser.FIREFOX) | 239 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 227 @SupportedBrowser(SupportedBrowser.SAFARI) | 240 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 228 @Unstable() | 241 @Unstable() |
| 229 class AltGlyphElement extends TextPositioningElement implements UriReference { | 242 class AltGlyphElement extends TextPositioningElement implements UriReference { |
| 230 // To suppress missing implicit constructor warnings. | 243 // To suppress missing implicit constructor warnings. |
| 231 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } | 244 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 232 | 245 |
| 233 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') | 246 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') |
| 234 @DocsEditable() | 247 @DocsEditable() |
| 235 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); | 248 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 |
| 236 /** | 261 /** |
| 237 * Constructor instantiated by the DOM when a custom element has been created. | 262 * Constructor instantiated by the DOM when a custom element has been created. |
| 238 * | 263 * |
| 239 * This can only be called by subclasses from their created constructor. | 264 * This can only be called by subclasses from their created constructor. |
| 240 */ | 265 */ |
| 241 AltGlyphElement.created() : super.created(); | 266 AltGlyphElement.created() : super.created(); |
| 242 | 267 |
| 243 /// Checks if this type is supported on the current platform. | 268 /// Checks if this type is supported on the current platform. |
| 244 static bool get supported => true; | 269 static bool get supported => true; |
| 245 | 270 |
| 246 @DomName('SVGAltGlyphElement.format') | 271 @DomName('SVGAltGlyphElement.format') |
| 247 @DocsEditable() | 272 @DocsEditable() |
| 248 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(th
is); | 273 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(un
wrap_jso(this)); |
| 249 | 274 |
| 250 @DomName('SVGAltGlyphElement.format') | 275 @DomName('SVGAltGlyphElement.format') |
| 251 @DocsEditable() | 276 @DocsEditable() |
| 252 void set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.forma
t_Setter_(this, value); | 277 void set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.forma
t_Setter_(unwrap_jso(this), value); |
| 253 | 278 |
| 254 @DomName('SVGAltGlyphElement.glyphRef') | 279 @DomName('SVGAltGlyphElement.glyphRef') |
| 255 @DocsEditable() | 280 @DocsEditable() |
| 256 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(this); | 281 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(unwrap_jso(this)); |
| 257 | 282 |
| 258 @DomName('SVGAltGlyphElement.glyphRef') | 283 @DomName('SVGAltGlyphElement.glyphRef') |
| 259 @DocsEditable() | 284 @DocsEditable() |
| 260 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.gly
phRef_Setter_(this, value); | 285 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.gly
phRef_Setter_(unwrap_jso(this), value); |
| 261 | 286 |
| 262 @DomName('SVGAltGlyphElement.href') | 287 @DomName('SVGAltGlyphElement.href') |
| 263 @DocsEditable() | 288 @DocsEditable() |
| 264 AnimatedString get href => _blink.BlinkSVGAltGlyphElement.instance.href_Getter
_(this); | 289 AnimatedString get href => wrap_jso(_blink.BlinkSVGAltGlyphElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
| 265 | 290 |
| 266 } | 291 } |
| 267 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 292 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 268 // for details. All rights reserved. Use of this source code is governed by a | 293 // for details. All rights reserved. Use of this source code is governed by a |
| 269 // BSD-style license that can be found in the LICENSE file. | 294 // BSD-style license that can be found in the LICENSE file. |
| 270 | 295 |
| 271 // WARNING: Do not edit - generated code. | 296 // WARNING: Do not edit - generated code. |
| 272 | 297 |
| 273 | 298 |
| 274 @DocsEditable() | 299 @DocsEditable() |
| 275 @DomName('SVGAngle') | 300 @DomName('SVGAngle') |
| 276 @Unstable() | 301 @Unstable() |
| 277 class Angle extends NativeFieldWrapperClass2 { | 302 class Angle extends NativeFieldWrapperClass2 { |
| 278 // To suppress missing implicit constructor warnings. | 303 // To suppress missing implicit constructor warnings. |
| 279 factory Angle._() { throw new UnsupportedError("Not supported"); } | 304 factory Angle._() { throw new UnsupportedError("Not supported"); } |
| 280 | 305 |
| 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 |
| 281 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 320 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
| 282 @DocsEditable() | 321 @DocsEditable() |
| 283 static const int SVG_ANGLETYPE_DEG = 2; | 322 static const int SVG_ANGLETYPE_DEG = 2; |
| 284 | 323 |
| 285 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') | 324 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') |
| 286 @DocsEditable() | 325 @DocsEditable() |
| 287 static const int SVG_ANGLETYPE_GRAD = 4; | 326 static const int SVG_ANGLETYPE_GRAD = 4; |
| 288 | 327 |
| 289 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') | 328 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') |
| 290 @DocsEditable() | 329 @DocsEditable() |
| 291 static const int SVG_ANGLETYPE_RAD = 3; | 330 static const int SVG_ANGLETYPE_RAD = 3; |
| 292 | 331 |
| 293 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN') | 332 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN') |
| 294 @DocsEditable() | 333 @DocsEditable() |
| 295 static const int SVG_ANGLETYPE_UNKNOWN = 0; | 334 static const int SVG_ANGLETYPE_UNKNOWN = 0; |
| 296 | 335 |
| 297 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED') | 336 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED') |
| 298 @DocsEditable() | 337 @DocsEditable() |
| 299 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; | 338 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| 300 | 339 |
| 301 @DomName('SVGAngle.unitType') | 340 @DomName('SVGAngle.unitType') |
| 302 @DocsEditable() | 341 @DocsEditable() |
| 303 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(this); | 342 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(
this)); |
| 304 | 343 |
| 305 @DomName('SVGAngle.value') | 344 @DomName('SVGAngle.value') |
| 306 @DocsEditable() | 345 @DocsEditable() |
| 307 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(this); | 346 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this))
; |
| 308 | 347 |
| 309 @DomName('SVGAngle.value') | 348 @DomName('SVGAngle.value') |
| 310 @DocsEditable() | 349 @DocsEditable() |
| 311 void set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(this,
value); | 350 void set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwra
p_jso(this), value); |
| 312 | 351 |
| 313 @DomName('SVGAngle.valueAsString') | 352 @DomName('SVGAngle.valueAsString') |
| 314 @DocsEditable() | 353 @DocsEditable() |
| 315 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(this); | 354 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(unwrap_jso(this)); |
| 316 | 355 |
| 317 @DomName('SVGAngle.valueAsString') | 356 @DomName('SVGAngle.valueAsString') |
| 318 @DocsEditable() | 357 @DocsEditable() |
| 319 void set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsS
tring_Setter_(this, value); | 358 void set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsS
tring_Setter_(unwrap_jso(this), value); |
| 320 | 359 |
| 321 @DomName('SVGAngle.valueInSpecifiedUnits') | 360 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 322 @DocsEditable() | 361 @DocsEditable() |
| 323 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(this); | 362 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(unwrap_jso(this)); |
| 324 | 363 |
| 325 @DomName('SVGAngle.valueInSpecifiedUnits') | 364 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 326 @DocsEditable() | 365 @DocsEditable() |
| 327 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.val
ueInSpecifiedUnits_Setter_(this, value); | 366 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.val
ueInSpecifiedUnits_Setter_(unwrap_jso(this), value); |
| 328 | 367 |
| 329 @DomName('SVGAngle.convertToSpecifiedUnits') | 368 @DomName('SVGAngle.convertToSpecifiedUnits') |
| 330 @DocsEditable() | 369 @DocsEditable() |
| 331 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(this, unitType); | 370 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
| 332 | 371 |
| 333 @DomName('SVGAngle.newValueSpecifiedUnits') | 372 @DomName('SVGAngle.newValueSpecifiedUnits') |
| 334 @DocsEditable() | 373 @DocsEditable() |
| 335 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, value
InSpecifiedUnits); | 374 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni
tType, valueInSpecifiedUnits); |
| 336 | 375 |
| 337 } | 376 } |
| 338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 377 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 339 // for details. All rights reserved. Use of this source code is governed by a | 378 // for details. All rights reserved. Use of this source code is governed by a |
| 340 // BSD-style license that can be found in the LICENSE file. | 379 // BSD-style license that can be found in the LICENSE file. |
| 341 | 380 |
| 342 // WARNING: Do not edit - generated code. | 381 // WARNING: Do not edit - generated code. |
| 343 | 382 |
| 344 | 383 |
| 345 @DocsEditable() | 384 @DocsEditable() |
| 346 @DomName('SVGAnimateElement') | 385 @DomName('SVGAnimateElement') |
| 347 @SupportedBrowser(SupportedBrowser.CHROME) | 386 @SupportedBrowser(SupportedBrowser.CHROME) |
| 348 @SupportedBrowser(SupportedBrowser.FIREFOX) | 387 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 349 @SupportedBrowser(SupportedBrowser.SAFARI) | 388 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 350 @Unstable() | 389 @Unstable() |
| 351 class AnimateElement extends AnimationElement { | 390 class AnimateElement extends AnimationElement { |
| 352 // To suppress missing implicit constructor warnings. | 391 // To suppress missing implicit constructor warnings. |
| 353 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } | 392 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } |
| 354 | 393 |
| 355 @DomName('SVGAnimateElement.SVGAnimateElement') | 394 @DomName('SVGAnimateElement.SVGAnimateElement') |
| 356 @DocsEditable() | 395 @DocsEditable() |
| 357 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); | 396 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 |
| 358 /** | 409 /** |
| 359 * Constructor instantiated by the DOM when a custom element has been created. | 410 * Constructor instantiated by the DOM when a custom element has been created. |
| 360 * | 411 * |
| 361 * This can only be called by subclasses from their created constructor. | 412 * This can only be called by subclasses from their created constructor. |
| 362 */ | 413 */ |
| 363 AnimateElement.created() : super.created(); | 414 AnimateElement.created() : super.created(); |
| 364 | 415 |
| 365 /// Checks if this type is supported on the current platform. | 416 /// Checks if this type is supported on the current platform. |
| 366 static bool get supported => true; | 417 static bool get supported => true; |
| 367 | 418 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 379 @SupportedBrowser(SupportedBrowser.FIREFOX) | 430 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 380 @SupportedBrowser(SupportedBrowser.SAFARI) | 431 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 381 @Unstable() | 432 @Unstable() |
| 382 class AnimateMotionElement extends AnimationElement { | 433 class AnimateMotionElement extends AnimationElement { |
| 383 // To suppress missing implicit constructor warnings. | 434 // To suppress missing implicit constructor warnings. |
| 384 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } | 435 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } |
| 385 | 436 |
| 386 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') | 437 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') |
| 387 @DocsEditable() | 438 @DocsEditable() |
| 388 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); | 439 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 |
| 389 /** | 452 /** |
| 390 * Constructor instantiated by the DOM when a custom element has been created. | 453 * Constructor instantiated by the DOM when a custom element has been created. |
| 391 * | 454 * |
| 392 * This can only be called by subclasses from their created constructor. | 455 * This can only be called by subclasses from their created constructor. |
| 393 */ | 456 */ |
| 394 AnimateMotionElement.created() : super.created(); | 457 AnimateMotionElement.created() : super.created(); |
| 395 | 458 |
| 396 /// Checks if this type is supported on the current platform. | 459 /// Checks if this type is supported on the current platform. |
| 397 static bool get supported => true; | 460 static bool get supported => true; |
| 398 | 461 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 410 @SupportedBrowser(SupportedBrowser.FIREFOX) | 473 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 411 @SupportedBrowser(SupportedBrowser.SAFARI) | 474 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 412 @Unstable() | 475 @Unstable() |
| 413 class AnimateTransformElement extends AnimationElement { | 476 class AnimateTransformElement extends AnimationElement { |
| 414 // To suppress missing implicit constructor warnings. | 477 // To suppress missing implicit constructor warnings. |
| 415 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } | 478 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 416 | 479 |
| 417 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') | 480 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') |
| 418 @DocsEditable() | 481 @DocsEditable() |
| 419 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); | 482 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 |
| 420 /** | 495 /** |
| 421 * Constructor instantiated by the DOM when a custom element has been created. | 496 * Constructor instantiated by the DOM when a custom element has been created. |
| 422 * | 497 * |
| 423 * This can only be called by subclasses from their created constructor. | 498 * This can only be called by subclasses from their created constructor. |
| 424 */ | 499 */ |
| 425 AnimateTransformElement.created() : super.created(); | 500 AnimateTransformElement.created() : super.created(); |
| 426 | 501 |
| 427 /// Checks if this type is supported on the current platform. | 502 /// Checks if this type is supported on the current platform. |
| 428 static bool get supported => true; | 503 static bool get supported => true; |
| 429 | 504 |
| 430 } | 505 } |
| 431 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 432 // for details. All rights reserved. Use of this source code is governed by a | 507 // for details. All rights reserved. Use of this source code is governed by a |
| 433 // BSD-style license that can be found in the LICENSE file. | 508 // BSD-style license that can be found in the LICENSE file. |
| 434 | 509 |
| 435 // WARNING: Do not edit - generated code. | 510 // WARNING: Do not edit - generated code. |
| 436 | 511 |
| 437 | 512 |
| 438 @DocsEditable() | 513 @DocsEditable() |
| 439 @DomName('SVGAnimatedAngle') | 514 @DomName('SVGAnimatedAngle') |
| 440 @Unstable() | 515 @Unstable() |
| 441 class AnimatedAngle extends NativeFieldWrapperClass2 { | 516 class AnimatedAngle extends NativeFieldWrapperClass2 { |
| 442 // To suppress missing implicit constructor warnings. | 517 // To suppress missing implicit constructor warnings. |
| 443 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 518 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
| 444 | 519 |
| 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 |
| 445 @DomName('SVGAnimatedAngle.animVal') | 534 @DomName('SVGAnimatedAngle.animVal') |
| 446 @DocsEditable() | 535 @DocsEditable() |
| 447 Angle get animVal => _blink.BlinkSVGAnimatedAngle.instance.animVal_Getter_(thi
s); | 536 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
| 448 | 537 |
| 449 @DomName('SVGAnimatedAngle.baseVal') | 538 @DomName('SVGAnimatedAngle.baseVal') |
| 450 @DocsEditable() | 539 @DocsEditable() |
| 451 Angle get baseVal => _blink.BlinkSVGAnimatedAngle.instance.baseVal_Getter_(thi
s); | 540 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); |
| 452 | 541 |
| 453 } | 542 } |
| 454 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 543 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 455 // for details. All rights reserved. Use of this source code is governed by a | 544 // for details. All rights reserved. Use of this source code is governed by a |
| 456 // BSD-style license that can be found in the LICENSE file. | 545 // BSD-style license that can be found in the LICENSE file. |
| 457 | 546 |
| 458 // WARNING: Do not edit - generated code. | 547 // WARNING: Do not edit - generated code. |
| 459 | 548 |
| 460 | 549 |
| 461 @DocsEditable() | 550 @DocsEditable() |
| 462 @DomName('SVGAnimatedBoolean') | 551 @DomName('SVGAnimatedBoolean') |
| 463 @Unstable() | 552 @Unstable() |
| 464 class AnimatedBoolean extends NativeFieldWrapperClass2 { | 553 class AnimatedBoolean extends NativeFieldWrapperClass2 { |
| 465 // To suppress missing implicit constructor warnings. | 554 // To suppress missing implicit constructor warnings. |
| 466 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 555 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
| 467 | 556 |
| 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 |
| 468 @DomName('SVGAnimatedBoolean.animVal') | 571 @DomName('SVGAnimatedBoolean.animVal') |
| 469 @DocsEditable() | 572 @DocsEditable() |
| 470 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(th
is); | 573 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); |
| 471 | 574 |
| 472 @DomName('SVGAnimatedBoolean.baseVal') | 575 @DomName('SVGAnimatedBoolean.baseVal') |
| 473 @DocsEditable() | 576 @DocsEditable() |
| 474 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(th
is); | 577 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); |
| 475 | 578 |
| 476 @DomName('SVGAnimatedBoolean.baseVal') | 579 @DomName('SVGAnimatedBoolean.baseVal') |
| 477 @DocsEditable() | 580 @DocsEditable() |
| 478 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(this, value); | 581 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(unwrap_jso(this), value); |
| 479 | 582 |
| 480 } | 583 } |
| 481 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 482 // for details. All rights reserved. Use of this source code is governed by a | 585 // for details. All rights reserved. Use of this source code is governed by a |
| 483 // BSD-style license that can be found in the LICENSE file. | 586 // BSD-style license that can be found in the LICENSE file. |
| 484 | 587 |
| 485 // WARNING: Do not edit - generated code. | 588 // WARNING: Do not edit - generated code. |
| 486 | 589 |
| 487 | 590 |
| 488 @DocsEditable() | 591 @DocsEditable() |
| 489 @DomName('SVGAnimatedEnumeration') | 592 @DomName('SVGAnimatedEnumeration') |
| 490 @Unstable() | 593 @Unstable() |
| 491 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 594 class AnimatedEnumeration extends NativeFieldWrapperClass2 { |
| 492 // To suppress missing implicit constructor warnings. | 595 // To suppress missing implicit constructor warnings. |
| 493 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 596 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
| 494 | 597 |
| 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 |
| 495 @DomName('SVGAnimatedEnumeration.animVal') | 612 @DomName('SVGAnimatedEnumeration.animVal') |
| 496 @DocsEditable() | 613 @DocsEditable() |
| 497 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(this); | 614 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); |
| 498 | 615 |
| 499 @DomName('SVGAnimatedEnumeration.baseVal') | 616 @DomName('SVGAnimatedEnumeration.baseVal') |
| 500 @DocsEditable() | 617 @DocsEditable() |
| 501 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(this); | 618 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); |
| 502 | 619 |
| 503 @DomName('SVGAnimatedEnumeration.baseVal') | 620 @DomName('SVGAnimatedEnumeration.baseVal') |
| 504 @DocsEditable() | 621 @DocsEditable() |
| 505 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(this, value); | 622 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(unwrap_jso(this), value); |
| 506 | 623 |
| 507 } | 624 } |
| 508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 625 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 509 // for details. All rights reserved. Use of this source code is governed by a | 626 // for details. All rights reserved. Use of this source code is governed by a |
| 510 // BSD-style license that can be found in the LICENSE file. | 627 // BSD-style license that can be found in the LICENSE file. |
| 511 | 628 |
| 512 // WARNING: Do not edit - generated code. | 629 // WARNING: Do not edit - generated code. |
| 513 | 630 |
| 514 | 631 |
| 515 @DocsEditable() | 632 @DocsEditable() |
| 516 @DomName('SVGAnimatedInteger') | 633 @DomName('SVGAnimatedInteger') |
| 517 @Unstable() | 634 @Unstable() |
| 518 class AnimatedInteger extends NativeFieldWrapperClass2 { | 635 class AnimatedInteger extends NativeFieldWrapperClass2 { |
| 519 // To suppress missing implicit constructor warnings. | 636 // To suppress missing implicit constructor warnings. |
| 520 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 637 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
| 521 | 638 |
| 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 |
| 522 @DomName('SVGAnimatedInteger.animVal') | 653 @DomName('SVGAnimatedInteger.animVal') |
| 523 @DocsEditable() | 654 @DocsEditable() |
| 524 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(thi
s); | 655 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); |
| 525 | 656 |
| 526 @DomName('SVGAnimatedInteger.baseVal') | 657 @DomName('SVGAnimatedInteger.baseVal') |
| 527 @DocsEditable() | 658 @DocsEditable() |
| 528 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(thi
s); | 659 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); |
| 529 | 660 |
| 530 @DomName('SVGAnimatedInteger.baseVal') | 661 @DomName('SVGAnimatedInteger.baseVal') |
| 531 @DocsEditable() | 662 @DocsEditable() |
| 532 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(this, value); | 663 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(unwrap_jso(this), value); |
| 533 | 664 |
| 534 } | 665 } |
| 535 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 666 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 536 // for details. All rights reserved. Use of this source code is governed by a | 667 // for details. All rights reserved. Use of this source code is governed by a |
| 537 // BSD-style license that can be found in the LICENSE file. | 668 // BSD-style license that can be found in the LICENSE file. |
| 538 | 669 |
| 539 // WARNING: Do not edit - generated code. | 670 // WARNING: Do not edit - generated code. |
| 540 | 671 |
| 541 | 672 |
| 542 @DocsEditable() | 673 @DocsEditable() |
| 543 @DomName('SVGAnimatedLength') | 674 @DomName('SVGAnimatedLength') |
| 544 @Unstable() | 675 @Unstable() |
| 545 class AnimatedLength extends NativeFieldWrapperClass2 { | 676 class AnimatedLength extends NativeFieldWrapperClass2 { |
| 546 // To suppress missing implicit constructor warnings. | 677 // To suppress missing implicit constructor warnings. |
| 547 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 678 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
| 548 | 679 |
| 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 |
| 549 @DomName('SVGAnimatedLength.animVal') | 694 @DomName('SVGAnimatedLength.animVal') |
| 550 @DocsEditable() | 695 @DocsEditable() |
| 551 Length get animVal => _blink.BlinkSVGAnimatedLength.instance.animVal_Getter_(t
his); | 696 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
| 552 | 697 |
| 553 @DomName('SVGAnimatedLength.baseVal') | 698 @DomName('SVGAnimatedLength.baseVal') |
| 554 @DocsEditable() | 699 @DocsEditable() |
| 555 Length get baseVal => _blink.BlinkSVGAnimatedLength.instance.baseVal_Getter_(t
his); | 700 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); |
| 556 | 701 |
| 557 } | 702 } |
| 558 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 703 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 559 // for details. All rights reserved. Use of this source code is governed by a | 704 // for details. All rights reserved. Use of this source code is governed by a |
| 560 // BSD-style license that can be found in the LICENSE file. | 705 // BSD-style license that can be found in the LICENSE file. |
| 561 | 706 |
| 562 // WARNING: Do not edit - generated code. | 707 // WARNING: Do not edit - generated code. |
| 563 | 708 |
| 564 | 709 |
| 565 @DocsEditable() | 710 @DocsEditable() |
| 566 @DomName('SVGAnimatedLengthList') | 711 @DomName('SVGAnimatedLengthList') |
| 567 @Unstable() | 712 @Unstable() |
| 568 class AnimatedLengthList extends NativeFieldWrapperClass2 { | 713 class AnimatedLengthList extends NativeFieldWrapperClass2 { |
| 569 // To suppress missing implicit constructor warnings. | 714 // To suppress missing implicit constructor warnings. |
| 570 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 715 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
| 571 | 716 |
| 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 |
| 572 @DomName('SVGAnimatedLengthList.animVal') | 731 @DomName('SVGAnimatedLengthList.animVal') |
| 573 @DocsEditable() | 732 @DocsEditable() |
| 574 LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.instance.animVal_G
etter_(this); | 733 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 575 | 734 |
| 576 @DomName('SVGAnimatedLengthList.baseVal') | 735 @DomName('SVGAnimatedLengthList.baseVal') |
| 577 @DocsEditable() | 736 @DocsEditable() |
| 578 LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.instance.baseVal_G
etter_(this); | 737 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 579 | 738 |
| 580 } | 739 } |
| 581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 740 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 582 // for details. All rights reserved. Use of this source code is governed by a | 741 // for details. All rights reserved. Use of this source code is governed by a |
| 583 // BSD-style license that can be found in the LICENSE file. | 742 // BSD-style license that can be found in the LICENSE file. |
| 584 | 743 |
| 585 // WARNING: Do not edit - generated code. | 744 // WARNING: Do not edit - generated code. |
| 586 | 745 |
| 587 | 746 |
| 588 @DocsEditable() | 747 @DocsEditable() |
| 589 @DomName('SVGAnimatedNumber') | 748 @DomName('SVGAnimatedNumber') |
| 590 @Unstable() | 749 @Unstable() |
| 591 class AnimatedNumber extends NativeFieldWrapperClass2 { | 750 class AnimatedNumber extends NativeFieldWrapperClass2 { |
| 592 // To suppress missing implicit constructor warnings. | 751 // To suppress missing implicit constructor warnings. |
| 593 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 752 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
| 594 | 753 |
| 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 |
| 595 @DomName('SVGAnimatedNumber.animVal') | 768 @DomName('SVGAnimatedNumber.animVal') |
| 596 @DocsEditable() | 769 @DocsEditable() |
| 597 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(t
his); | 770 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 598 | 771 |
| 599 @DomName('SVGAnimatedNumber.baseVal') | 772 @DomName('SVGAnimatedNumber.baseVal') |
| 600 @DocsEditable() | 773 @DocsEditable() |
| 601 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(this
); | 774 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); |
| 602 | 775 |
| 603 @DomName('SVGAnimatedNumber.baseVal') | 776 @DomName('SVGAnimatedNumber.baseVal') |
| 604 @DocsEditable() | 777 @DocsEditable() |
| 605 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(this, value); | 778 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(unwrap_jso(this), value); |
| 606 | 779 |
| 607 } | 780 } |
| 608 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 781 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 609 // for details. All rights reserved. Use of this source code is governed by a | 782 // for details. All rights reserved. Use of this source code is governed by a |
| 610 // BSD-style license that can be found in the LICENSE file. | 783 // BSD-style license that can be found in the LICENSE file. |
| 611 | 784 |
| 612 // WARNING: Do not edit - generated code. | 785 // WARNING: Do not edit - generated code. |
| 613 | 786 |
| 614 | 787 |
| 615 @DocsEditable() | 788 @DocsEditable() |
| 616 @DomName('SVGAnimatedNumberList') | 789 @DomName('SVGAnimatedNumberList') |
| 617 @Unstable() | 790 @Unstable() |
| 618 class AnimatedNumberList extends NativeFieldWrapperClass2 { | 791 class AnimatedNumberList extends NativeFieldWrapperClass2 { |
| 619 // To suppress missing implicit constructor warnings. | 792 // To suppress missing implicit constructor warnings. |
| 620 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 793 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
| 621 | 794 |
| 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 |
| 622 @DomName('SVGAnimatedNumberList.animVal') | 809 @DomName('SVGAnimatedNumberList.animVal') |
| 623 @DocsEditable() | 810 @DocsEditable() |
| 624 NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.instance.animVal_G
etter_(this); | 811 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 625 | 812 |
| 626 @DomName('SVGAnimatedNumberList.baseVal') | 813 @DomName('SVGAnimatedNumberList.baseVal') |
| 627 @DocsEditable() | 814 @DocsEditable() |
| 628 NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.instance.baseVal_G
etter_(this); | 815 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 629 | 816 |
| 630 } | 817 } |
| 631 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 818 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 632 // for details. All rights reserved. Use of this source code is governed by a | 819 // for details. All rights reserved. Use of this source code is governed by a |
| 633 // BSD-style license that can be found in the LICENSE file. | 820 // BSD-style license that can be found in the LICENSE file. |
| 634 | 821 |
| 635 // WARNING: Do not edit - generated code. | 822 // WARNING: Do not edit - generated code. |
| 636 | 823 |
| 637 | 824 |
| 638 @DocsEditable() | 825 @DocsEditable() |
| 639 @DomName('SVGAnimatedPreserveAspectRatio') | 826 @DomName('SVGAnimatedPreserveAspectRatio') |
| 640 @Unstable() | 827 @Unstable() |
| 641 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { | 828 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 642 // To suppress missing implicit constructor warnings. | 829 // To suppress missing implicit constructor warnings. |
| 643 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 830 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
| 644 | 831 |
| 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 |
| 645 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 846 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
| 646 @DocsEditable() | 847 @DocsEditable() |
| 647 PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.
instance.animVal_Getter_(this); | 848 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
| 648 | 849 |
| 649 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 850 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
| 650 @DocsEditable() | 851 @DocsEditable() |
| 651 PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.
instance.baseVal_Getter_(this); | 852 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); |
| 652 | 853 |
| 653 } | 854 } |
| 654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 855 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 655 // for details. All rights reserved. Use of this source code is governed by a | 856 // for details. All rights reserved. Use of this source code is governed by a |
| 656 // BSD-style license that can be found in the LICENSE file. | 857 // BSD-style license that can be found in the LICENSE file. |
| 657 | 858 |
| 658 // WARNING: Do not edit - generated code. | 859 // WARNING: Do not edit - generated code. |
| 659 | 860 |
| 660 | 861 |
| 661 @DocsEditable() | 862 @DocsEditable() |
| 662 @DomName('SVGAnimatedRect') | 863 @DomName('SVGAnimatedRect') |
| 663 @Unstable() | 864 @Unstable() |
| 664 class AnimatedRect extends NativeFieldWrapperClass2 { | 865 class AnimatedRect extends NativeFieldWrapperClass2 { |
| 665 // To suppress missing implicit constructor warnings. | 866 // To suppress missing implicit constructor warnings. |
| 666 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 867 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
| 667 | 868 |
| 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 |
| 668 @DomName('SVGAnimatedRect.animVal') | 883 @DomName('SVGAnimatedRect.animVal') |
| 669 @DocsEditable() | 884 @DocsEditable() |
| 670 Rect get animVal => _blink.BlinkSVGAnimatedRect.instance.animVal_Getter_(this)
; | 885 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
| 671 | 886 |
| 672 @DomName('SVGAnimatedRect.baseVal') | 887 @DomName('SVGAnimatedRect.baseVal') |
| 673 @DocsEditable() | 888 @DocsEditable() |
| 674 Rect get baseVal => _blink.BlinkSVGAnimatedRect.instance.baseVal_Getter_(this)
; | 889 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); |
| 675 | 890 |
| 676 } | 891 } |
| 677 // 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 |
| 678 // 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 |
| 679 // BSD-style license that can be found in the LICENSE file. | 894 // BSD-style license that can be found in the LICENSE file. |
| 680 | 895 |
| 681 // WARNING: Do not edit - generated code. | 896 // WARNING: Do not edit - generated code. |
| 682 | 897 |
| 683 | 898 |
| 684 @DocsEditable() | 899 @DocsEditable() |
| 685 @DomName('SVGAnimatedString') | 900 @DomName('SVGAnimatedString') |
| 686 @Unstable() | 901 @Unstable() |
| 687 class AnimatedString extends NativeFieldWrapperClass2 { | 902 class AnimatedString extends NativeFieldWrapperClass2 { |
| 688 // To suppress missing implicit constructor warnings. | 903 // To suppress missing implicit constructor warnings. |
| 689 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 904 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
| 690 | 905 |
| 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 |
| 691 @DomName('SVGAnimatedString.animVal') | 920 @DomName('SVGAnimatedString.animVal') |
| 692 @DocsEditable() | 921 @DocsEditable() |
| 693 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(t
his); | 922 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 694 | 923 |
| 695 @DomName('SVGAnimatedString.baseVal') | 924 @DomName('SVGAnimatedString.baseVal') |
| 696 @DocsEditable() | 925 @DocsEditable() |
| 697 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(t
his); | 926 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); |
| 698 | 927 |
| 699 @DomName('SVGAnimatedString.baseVal') | 928 @DomName('SVGAnimatedString.baseVal') |
| 700 @DocsEditable() | 929 @DocsEditable() |
| 701 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(this, value); | 930 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(unwrap_jso(this), value); |
| 702 | 931 |
| 703 } | 932 } |
| 704 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 705 // for details. All rights reserved. Use of this source code is governed by a | 934 // for details. All rights reserved. Use of this source code is governed by a |
| 706 // BSD-style license that can be found in the LICENSE file. | 935 // BSD-style license that can be found in the LICENSE file. |
| 707 | 936 |
| 708 // WARNING: Do not edit - generated code. | 937 // WARNING: Do not edit - generated code. |
| 709 | 938 |
| 710 | 939 |
| 711 @DocsEditable() | 940 @DocsEditable() |
| 712 @DomName('SVGAnimatedTransformList') | 941 @DomName('SVGAnimatedTransformList') |
| 713 @Unstable() | 942 @Unstable() |
| 714 class AnimatedTransformList extends NativeFieldWrapperClass2 { | 943 class AnimatedTransformList extends NativeFieldWrapperClass2 { |
| 715 // To suppress missing implicit constructor warnings. | 944 // To suppress missing implicit constructor warnings. |
| 716 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 945 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
| 717 | 946 |
| 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 |
| 718 @DomName('SVGAnimatedTransformList.animVal') | 961 @DomName('SVGAnimatedTransformList.animVal') |
| 719 @DocsEditable() | 962 @DocsEditable() |
| 720 TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.instance.ani
mVal_Getter_(this); | 963 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); |
| 721 | 964 |
| 722 @DomName('SVGAnimatedTransformList.baseVal') | 965 @DomName('SVGAnimatedTransformList.baseVal') |
| 723 @DocsEditable() | 966 @DocsEditable() |
| 724 TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.instance.bas
eVal_Getter_(this); | 967 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); |
| 725 | 968 |
| 726 } | 969 } |
| 727 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 728 // for details. All rights reserved. Use of this source code is governed by a | 971 // for details. All rights reserved. Use of this source code is governed by a |
| 729 // BSD-style license that can be found in the LICENSE file. | 972 // BSD-style license that can be found in the LICENSE file. |
| 730 | 973 |
| 731 // WARNING: Do not edit - generated code. | 974 // WARNING: Do not edit - generated code. |
| 732 | 975 |
| 733 | 976 |
| 734 @DocsEditable() | 977 @DocsEditable() |
| 735 @DomName('SVGAnimationElement') | 978 @DomName('SVGAnimationElement') |
| 736 @Unstable() | 979 @Unstable() |
| 737 class AnimationElement extends SvgElement implements Tests { | 980 class AnimationElement extends SvgElement implements Tests { |
| 738 // To suppress missing implicit constructor warnings. | 981 // To suppress missing implicit constructor warnings. |
| 739 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } | 982 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } |
| 740 | 983 |
| 741 @DomName('SVGAnimationElement.SVGAnimationElement') | 984 @DomName('SVGAnimationElement.SVGAnimationElement') |
| 742 @DocsEditable() | 985 @DocsEditable() |
| 743 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); | 986 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 |
| 744 /** | 999 /** |
| 745 * Constructor instantiated by the DOM when a custom element has been created. | 1000 * Constructor instantiated by the DOM when a custom element has been created. |
| 746 * | 1001 * |
| 747 * This can only be called by subclasses from their created constructor. | 1002 * This can only be called by subclasses from their created constructor. |
| 748 */ | 1003 */ |
| 749 AnimationElement.created() : super.created(); | 1004 AnimationElement.created() : super.created(); |
| 750 | 1005 |
| 751 @DomName('SVGAnimationElement.targetElement') | 1006 @DomName('SVGAnimationElement.targetElement') |
| 752 @DocsEditable() | 1007 @DocsEditable() |
| 753 SvgElement get targetElement => _blink.BlinkSVGAnimationElement.instance.targe
tElement_Getter_(this); | 1008 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); |
| 754 | 1009 |
| 755 @DomName('SVGAnimationElement.beginElement') | 1010 @DomName('SVGAnimationElement.beginElement') |
| 756 @DocsEditable() | 1011 @DocsEditable() |
| 757 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(this); | 1012 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(unwrap_jso(this)); |
| 758 | 1013 |
| 759 @DomName('SVGAnimationElement.beginElementAt') | 1014 @DomName('SVGAnimationElement.beginElementAt') |
| 760 @DocsEditable() | 1015 @DocsEditable() |
| 761 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(this, offset); | 1016 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(unwrap_jso(this), offset); |
| 762 | 1017 |
| 763 @DomName('SVGAnimationElement.endElement') | 1018 @DomName('SVGAnimationElement.endElement') |
| 764 @DocsEditable() | 1019 @DocsEditable() |
| 765 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(this); | 1020 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(unwrap_jso(this)); |
| 766 | 1021 |
| 767 @DomName('SVGAnimationElement.endElementAt') | 1022 @DomName('SVGAnimationElement.endElementAt') |
| 768 @DocsEditable() | 1023 @DocsEditable() |
| 769 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(this, offset); | 1024 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(unwrap_jso(this), offset); |
| 770 | 1025 |
| 771 @DomName('SVGAnimationElement.getCurrentTime') | 1026 @DomName('SVGAnimationElement.getCurrentTime') |
| 772 @DocsEditable() | 1027 @DocsEditable() |
| 773 double getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrent
Time_Callback_0_(this); | 1028 double getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrent
Time_Callback_0_(unwrap_jso(this)); |
| 774 | 1029 |
| 775 @DomName('SVGAnimationElement.getSimpleDuration') | 1030 @DomName('SVGAnimationElement.getSimpleDuration') |
| 776 @DocsEditable() | 1031 @DocsEditable() |
| 777 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimp
leDuration_Callback_0_(this); | 1032 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimp
leDuration_Callback_0_(unwrap_jso(this)); |
| 778 | 1033 |
| 779 @DomName('SVGAnimationElement.getStartTime') | 1034 @DomName('SVGAnimationElement.getStartTime') |
| 780 @DocsEditable() | 1035 @DocsEditable() |
| 781 double getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime
_Callback_0_(this); | 1036 double getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime
_Callback_0_(unwrap_jso(this)); |
| 782 | 1037 |
| 783 @DomName('SVGAnimationElement.requiredExtensions') | 1038 @DomName('SVGAnimationElement.requiredExtensions') |
| 784 @DocsEditable() | 1039 @DocsEditable() |
| 785 StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.instance.
requiredExtensions_Getter_(this); | 1040 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.
instance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 786 | 1041 |
| 787 @DomName('SVGAnimationElement.requiredFeatures') | 1042 @DomName('SVGAnimationElement.requiredFeatures') |
| 788 @DocsEditable() | 1043 @DocsEditable() |
| 789 StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.instance.re
quiredFeatures_Getter_(this); | 1044 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in
stance.requiredFeatures_Getter_(unwrap_jso(this))); |
| 790 | 1045 |
| 791 @DomName('SVGAnimationElement.systemLanguage') | 1046 @DomName('SVGAnimationElement.systemLanguage') |
| 792 @DocsEditable() | 1047 @DocsEditable() |
| 793 StringList get systemLanguage => _blink.BlinkSVGAnimationElement.instance.syst
emLanguage_Getter_(this); | 1048 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGAnimationElement.inst
ance.systemLanguage_Getter_(unwrap_jso(this))); |
| 794 | 1049 |
| 795 @DomName('SVGAnimationElement.hasExtension') | 1050 @DomName('SVGAnimationElement.hasExtension') |
| 796 @DocsEditable() | 1051 @DocsEditable() |
| 797 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instanc
e.hasExtension_Callback_1_(this, extension); | 1052 bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instanc
e.hasExtension_Callback_1_(unwrap_jso(this), extension); |
| 798 | 1053 |
| 799 } | 1054 } |
| 800 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 801 // for details. All rights reserved. Use of this source code is governed by a | 1056 // for details. All rights reserved. Use of this source code is governed by a |
| 802 // BSD-style license that can be found in the LICENSE file. | 1057 // BSD-style license that can be found in the LICENSE file. |
| 803 | 1058 |
| 804 // WARNING: Do not edit - generated code. | 1059 // WARNING: Do not edit - generated code. |
| 805 | 1060 |
| 806 | 1061 |
| 807 @DocsEditable() | 1062 @DocsEditable() |
| 808 @DomName('SVGCircleElement') | 1063 @DomName('SVGCircleElement') |
| 809 @Unstable() | 1064 @Unstable() |
| 810 class CircleElement extends GeometryElement { | 1065 class CircleElement extends GeometryElement { |
| 811 // To suppress missing implicit constructor warnings. | 1066 // To suppress missing implicit constructor warnings. |
| 812 factory CircleElement._() { throw new UnsupportedError("Not supported"); } | 1067 factory CircleElement._() { throw new UnsupportedError("Not supported"); } |
| 813 | 1068 |
| 814 @DomName('SVGCircleElement.SVGCircleElement') | 1069 @DomName('SVGCircleElement.SVGCircleElement') |
| 815 @DocsEditable() | 1070 @DocsEditable() |
| 816 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); | 1071 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 |
| 817 /** | 1084 /** |
| 818 * Constructor instantiated by the DOM when a custom element has been created. | 1085 * Constructor instantiated by the DOM when a custom element has been created. |
| 819 * | 1086 * |
| 820 * This can only be called by subclasses from their created constructor. | 1087 * This can only be called by subclasses from their created constructor. |
| 821 */ | 1088 */ |
| 822 CircleElement.created() : super.created(); | 1089 CircleElement.created() : super.created(); |
| 823 | 1090 |
| 824 @DomName('SVGCircleElement.cx') | 1091 @DomName('SVGCircleElement.cx') |
| 825 @DocsEditable() | 1092 @DocsEditable() |
| 826 AnimatedLength get cx => _blink.BlinkSVGCircleElement.instance.cx_Getter_(this
); | 1093 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); |
| 827 | 1094 |
| 828 @DomName('SVGCircleElement.cy') | 1095 @DomName('SVGCircleElement.cy') |
| 829 @DocsEditable() | 1096 @DocsEditable() |
| 830 AnimatedLength get cy => _blink.BlinkSVGCircleElement.instance.cy_Getter_(this
); | 1097 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGCircleElement.instance.cy_Get
ter_(unwrap_jso(this))); |
| 831 | 1098 |
| 832 @DomName('SVGCircleElement.r') | 1099 @DomName('SVGCircleElement.r') |
| 833 @DocsEditable() | 1100 @DocsEditable() |
| 834 AnimatedLength get r => _blink.BlinkSVGCircleElement.instance.r_Getter_(this); | 1101 AnimatedLength get r => wrap_jso(_blink.BlinkSVGCircleElement.instance.r_Gette
r_(unwrap_jso(this))); |
| 835 | 1102 |
| 836 } | 1103 } |
| 837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1104 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 838 // for details. All rights reserved. Use of this source code is governed by a | 1105 // for details. All rights reserved. Use of this source code is governed by a |
| 839 // BSD-style license that can be found in the LICENSE file. | 1106 // BSD-style license that can be found in the LICENSE file. |
| 840 | 1107 |
| 841 // WARNING: Do not edit - generated code. | 1108 // WARNING: Do not edit - generated code. |
| 842 | 1109 |
| 843 | 1110 |
| 844 @DocsEditable() | 1111 @DocsEditable() |
| 845 @DomName('SVGClipPathElement') | 1112 @DomName('SVGClipPathElement') |
| 846 @Unstable() | 1113 @Unstable() |
| 847 class ClipPathElement extends GraphicsElement { | 1114 class ClipPathElement extends GraphicsElement { |
| 848 // To suppress missing implicit constructor warnings. | 1115 // To suppress missing implicit constructor warnings. |
| 849 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } | 1116 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } |
| 850 | 1117 |
| 851 @DomName('SVGClipPathElement.SVGClipPathElement') | 1118 @DomName('SVGClipPathElement.SVGClipPathElement') |
| 852 @DocsEditable() | 1119 @DocsEditable() |
| 853 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); | 1120 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 |
| 854 /** | 1133 /** |
| 855 * Constructor instantiated by the DOM when a custom element has been created. | 1134 * Constructor instantiated by the DOM when a custom element has been created. |
| 856 * | 1135 * |
| 857 * This can only be called by subclasses from their created constructor. | 1136 * This can only be called by subclasses from their created constructor. |
| 858 */ | 1137 */ |
| 859 ClipPathElement.created() : super.created(); | 1138 ClipPathElement.created() : super.created(); |
| 860 | 1139 |
| 861 @DomName('SVGClipPathElement.clipPathUnits') | 1140 @DomName('SVGClipPathElement.clipPathUnits') |
| 862 @DocsEditable() | 1141 @DocsEditable() |
| 863 AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.instan
ce.clipPathUnits_Getter_(this); | 1142 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); |
| 864 | 1143 |
| 865 } | 1144 } |
| 866 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 867 // for details. All rights reserved. Use of this source code is governed by a | 1146 // for details. All rights reserved. Use of this source code is governed by a |
| 868 // BSD-style license that can be found in the LICENSE file. | 1147 // BSD-style license that can be found in the LICENSE file. |
| 869 | 1148 |
| 870 // WARNING: Do not edit - generated code. | 1149 // WARNING: Do not edit - generated code. |
| 871 | 1150 |
| 872 | 1151 |
| 873 @DocsEditable() | 1152 @DocsEditable() |
| 874 @DomName('SVGDefsElement') | 1153 @DomName('SVGDefsElement') |
| 875 @Unstable() | 1154 @Unstable() |
| 876 class DefsElement extends GraphicsElement { | 1155 class DefsElement extends GraphicsElement { |
| 877 // To suppress missing implicit constructor warnings. | 1156 // To suppress missing implicit constructor warnings. |
| 878 factory DefsElement._() { throw new UnsupportedError("Not supported"); } | 1157 factory DefsElement._() { throw new UnsupportedError("Not supported"); } |
| 879 | 1158 |
| 880 @DomName('SVGDefsElement.SVGDefsElement') | 1159 @DomName('SVGDefsElement.SVGDefsElement') |
| 881 @DocsEditable() | 1160 @DocsEditable() |
| 882 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); | 1161 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 |
| 883 /** | 1174 /** |
| 884 * Constructor instantiated by the DOM when a custom element has been created. | 1175 * Constructor instantiated by the DOM when a custom element has been created. |
| 885 * | 1176 * |
| 886 * This can only be called by subclasses from their created constructor. | 1177 * This can only be called by subclasses from their created constructor. |
| 887 */ | 1178 */ |
| 888 DefsElement.created() : super.created(); | 1179 DefsElement.created() : super.created(); |
| 889 | 1180 |
| 890 } | 1181 } |
| 891 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1182 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 892 // for details. All rights reserved. Use of this source code is governed by a | 1183 // for details. All rights reserved. Use of this source code is governed by a |
| 893 // BSD-style license that can be found in the LICENSE file. | 1184 // BSD-style license that can be found in the LICENSE file. |
| 894 | 1185 |
| 895 // WARNING: Do not edit - generated code. | 1186 // WARNING: Do not edit - generated code. |
| 896 | 1187 |
| 897 | 1188 |
| 898 @DocsEditable() | 1189 @DocsEditable() |
| 899 @DomName('SVGDescElement') | 1190 @DomName('SVGDescElement') |
| 900 @Unstable() | 1191 @Unstable() |
| 901 class DescElement extends SvgElement { | 1192 class DescElement extends SvgElement { |
| 902 // To suppress missing implicit constructor warnings. | 1193 // To suppress missing implicit constructor warnings. |
| 903 factory DescElement._() { throw new UnsupportedError("Not supported"); } | 1194 factory DescElement._() { throw new UnsupportedError("Not supported"); } |
| 904 | 1195 |
| 905 @DomName('SVGDescElement.SVGDescElement') | 1196 @DomName('SVGDescElement.SVGDescElement') |
| 906 @DocsEditable() | 1197 @DocsEditable() |
| 907 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); | 1198 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 |
| 908 /** | 1211 /** |
| 909 * Constructor instantiated by the DOM when a custom element has been created. | 1212 * Constructor instantiated by the DOM when a custom element has been created. |
| 910 * | 1213 * |
| 911 * This can only be called by subclasses from their created constructor. | 1214 * This can only be called by subclasses from their created constructor. |
| 912 */ | 1215 */ |
| 913 DescElement.created() : super.created(); | 1216 DescElement.created() : super.created(); |
| 914 | 1217 |
| 915 } | 1218 } |
| 916 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 917 // for details. All rights reserved. Use of this source code is governed by a | 1220 // for details. All rights reserved. Use of this source code is governed by a |
| 918 // BSD-style license that can be found in the LICENSE file. | 1221 // BSD-style license that can be found in the LICENSE file. |
| 919 | 1222 |
| 920 // WARNING: Do not edit - generated code. | 1223 // WARNING: Do not edit - generated code. |
| 921 | 1224 |
| 922 | 1225 |
| 923 @DocsEditable() | 1226 @DocsEditable() |
| 924 @DomName('SVGDiscardElement') | 1227 @DomName('SVGDiscardElement') |
| 925 @Experimental() // untriaged | 1228 @Experimental() // untriaged |
| 926 class DiscardElement extends SvgElement { | 1229 class DiscardElement extends SvgElement { |
| 927 // To suppress missing implicit constructor warnings. | 1230 // To suppress missing implicit constructor warnings. |
| 928 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } | 1231 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 |
| 929 /** | 1244 /** |
| 930 * Constructor instantiated by the DOM when a custom element has been created. | 1245 * Constructor instantiated by the DOM when a custom element has been created. |
| 931 * | 1246 * |
| 932 * This can only be called by subclasses from their created constructor. | 1247 * This can only be called by subclasses from their created constructor. |
| 933 */ | 1248 */ |
| 934 DiscardElement.created() : super.created(); | 1249 DiscardElement.created() : super.created(); |
| 935 | 1250 |
| 936 } | 1251 } |
| 937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 938 // for details. All rights reserved. Use of this source code is governed by a | 1253 // for details. All rights reserved. Use of this source code is governed by a |
| 939 // BSD-style license that can be found in the LICENSE file. | 1254 // BSD-style license that can be found in the LICENSE file. |
| 940 | 1255 |
| 941 // WARNING: Do not edit - generated code. | 1256 // WARNING: Do not edit - generated code. |
| 942 | 1257 |
| 943 | 1258 |
| 944 @DocsEditable() | 1259 @DocsEditable() |
| 945 @DomName('SVGEllipseElement') | 1260 @DomName('SVGEllipseElement') |
| 946 @Unstable() | 1261 @Unstable() |
| 947 class EllipseElement extends GeometryElement { | 1262 class EllipseElement extends GeometryElement { |
| 948 // To suppress missing implicit constructor warnings. | 1263 // To suppress missing implicit constructor warnings. |
| 949 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } | 1264 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } |
| 950 | 1265 |
| 951 @DomName('SVGEllipseElement.SVGEllipseElement') | 1266 @DomName('SVGEllipseElement.SVGEllipseElement') |
| 952 @DocsEditable() | 1267 @DocsEditable() |
| 953 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 1268 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 |
| 954 /** | 1281 /** |
| 955 * Constructor instantiated by the DOM when a custom element has been created. | 1282 * Constructor instantiated by the DOM when a custom element has been created. |
| 956 * | 1283 * |
| 957 * This can only be called by subclasses from their created constructor. | 1284 * This can only be called by subclasses from their created constructor. |
| 958 */ | 1285 */ |
| 959 EllipseElement.created() : super.created(); | 1286 EllipseElement.created() : super.created(); |
| 960 | 1287 |
| 961 @DomName('SVGEllipseElement.cx') | 1288 @DomName('SVGEllipseElement.cx') |
| 962 @DocsEditable() | 1289 @DocsEditable() |
| 963 AnimatedLength get cx => _blink.BlinkSVGEllipseElement.instance.cx_Getter_(thi
s); | 1290 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); |
| 964 | 1291 |
| 965 @DomName('SVGEllipseElement.cy') | 1292 @DomName('SVGEllipseElement.cy') |
| 966 @DocsEditable() | 1293 @DocsEditable() |
| 967 AnimatedLength get cy => _blink.BlinkSVGEllipseElement.instance.cy_Getter_(thi
s); | 1294 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cy_Ge
tter_(unwrap_jso(this))); |
| 968 | 1295 |
| 969 @DomName('SVGEllipseElement.rx') | 1296 @DomName('SVGEllipseElement.rx') |
| 970 @DocsEditable() | 1297 @DocsEditable() |
| 971 AnimatedLength get rx => _blink.BlinkSVGEllipseElement.instance.rx_Getter_(thi
s); | 1298 AnimatedLength get rx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.rx_Ge
tter_(unwrap_jso(this))); |
| 972 | 1299 |
| 973 @DomName('SVGEllipseElement.ry') | 1300 @DomName('SVGEllipseElement.ry') |
| 974 @DocsEditable() | 1301 @DocsEditable() |
| 975 AnimatedLength get ry => _blink.BlinkSVGEllipseElement.instance.ry_Getter_(thi
s); | 1302 AnimatedLength get ry => wrap_jso(_blink.BlinkSVGEllipseElement.instance.ry_Ge
tter_(unwrap_jso(this))); |
| 976 | 1303 |
| 977 } | 1304 } |
| 978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1305 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 979 // for details. All rights reserved. Use of this source code is governed by a | 1306 // for details. All rights reserved. Use of this source code is governed by a |
| 980 // BSD-style license that can be found in the LICENSE file. | 1307 // BSD-style license that can be found in the LICENSE file. |
| 981 | 1308 |
| 982 // WARNING: Do not edit - generated code. | 1309 // WARNING: Do not edit - generated code. |
| 983 | 1310 |
| 984 | 1311 |
| 985 @DocsEditable() | 1312 @DocsEditable() |
| 986 @DomName('SVGFEBlendElement') | 1313 @DomName('SVGFEBlendElement') |
| 987 @SupportedBrowser(SupportedBrowser.CHROME) | 1314 @SupportedBrowser(SupportedBrowser.CHROME) |
| 988 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1315 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 989 @SupportedBrowser(SupportedBrowser.IE, '10') | 1316 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 990 @SupportedBrowser(SupportedBrowser.SAFARI) | 1317 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 991 @Unstable() | 1318 @Unstable() |
| 992 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1319 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 993 // To suppress missing implicit constructor warnings. | 1320 // To suppress missing implicit constructor warnings. |
| 994 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } | 1321 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } |
| 995 | 1322 |
| 996 @DomName('SVGFEBlendElement.SVGFEBlendElement') | 1323 @DomName('SVGFEBlendElement.SVGFEBlendElement') |
| 997 @DocsEditable() | 1324 @DocsEditable() |
| 998 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); | 1325 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 |
| 999 /** | 1338 /** |
| 1000 * Constructor instantiated by the DOM when a custom element has been created. | 1339 * Constructor instantiated by the DOM when a custom element has been created. |
| 1001 * | 1340 * |
| 1002 * This can only be called by subclasses from their created constructor. | 1341 * This can only be called by subclasses from their created constructor. |
| 1003 */ | 1342 */ |
| 1004 FEBlendElement.created() : super.created(); | 1343 FEBlendElement.created() : super.created(); |
| 1005 | 1344 |
| 1006 /// Checks if this type is supported on the current platform. | 1345 /// Checks if this type is supported on the current platform. |
| 1007 static bool get supported => true; | 1346 static bool get supported => true; |
| 1008 | 1347 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1025 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN') | 1364 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN') |
| 1026 @DocsEditable() | 1365 @DocsEditable() |
| 1027 static const int SVG_FEBLEND_MODE_SCREEN = 3; | 1366 static const int SVG_FEBLEND_MODE_SCREEN = 3; |
| 1028 | 1367 |
| 1029 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN') | 1368 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN') |
| 1030 @DocsEditable() | 1369 @DocsEditable() |
| 1031 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; | 1370 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 1032 | 1371 |
| 1033 @DomName('SVGFEBlendElement.in1') | 1372 @DomName('SVGFEBlendElement.in1') |
| 1034 @DocsEditable() | 1373 @DocsEditable() |
| 1035 AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.instance.in1_Getter_(t
his); | 1374 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in1_
Getter_(unwrap_jso(this))); |
| 1036 | 1375 |
| 1037 @DomName('SVGFEBlendElement.in2') | 1376 @DomName('SVGFEBlendElement.in2') |
| 1038 @DocsEditable() | 1377 @DocsEditable() |
| 1039 AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.instance.in2_Getter_(t
his); | 1378 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in2_
Getter_(unwrap_jso(this))); |
| 1040 | 1379 |
| 1041 @DomName('SVGFEBlendElement.mode') | 1380 @DomName('SVGFEBlendElement.mode') |
| 1042 @DocsEditable() | 1381 @DocsEditable() |
| 1043 AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.instance.mode_Ge
tter_(this); | 1382 AnimatedEnumeration get mode => wrap_jso(_blink.BlinkSVGFEBlendElement.instanc
e.mode_Getter_(unwrap_jso(this))); |
| 1044 | 1383 |
| 1045 @DomName('SVGFEBlendElement.height') | 1384 @DomName('SVGFEBlendElement.height') |
| 1046 @DocsEditable() | 1385 @DocsEditable() |
| 1047 AnimatedLength get height => _blink.BlinkSVGFEBlendElement.instance.height_Get
ter_(this); | 1386 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| 1048 | 1387 |
| 1049 @DomName('SVGFEBlendElement.result') | 1388 @DomName('SVGFEBlendElement.result') |
| 1050 @DocsEditable() | 1389 @DocsEditable() |
| 1051 AnimatedString get result => _blink.BlinkSVGFEBlendElement.instance.result_Get
ter_(this); | 1390 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.r
esult_Getter_(unwrap_jso(this))); |
| 1052 | 1391 |
| 1053 @DomName('SVGFEBlendElement.width') | 1392 @DomName('SVGFEBlendElement.width') |
| 1054 @DocsEditable() | 1393 @DocsEditable() |
| 1055 AnimatedLength get width => _blink.BlinkSVGFEBlendElement.instance.width_Gette
r_(this); | 1394 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.wi
dth_Getter_(unwrap_jso(this))); |
| 1056 | 1395 |
| 1057 @DomName('SVGFEBlendElement.x') | 1396 @DomName('SVGFEBlendElement.x') |
| 1058 @DocsEditable() | 1397 @DocsEditable() |
| 1059 AnimatedLength get x => _blink.BlinkSVGFEBlendElement.instance.x_Getter_(this)
; | 1398 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.x_Gett
er_(unwrap_jso(this))); |
| 1060 | 1399 |
| 1061 @DomName('SVGFEBlendElement.y') | 1400 @DomName('SVGFEBlendElement.y') |
| 1062 @DocsEditable() | 1401 @DocsEditable() |
| 1063 AnimatedLength get y => _blink.BlinkSVGFEBlendElement.instance.y_Getter_(this)
; | 1402 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.y_Gett
er_(unwrap_jso(this))); |
| 1064 | 1403 |
| 1065 } | 1404 } |
| 1066 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1405 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1067 // for details. All rights reserved. Use of this source code is governed by a | 1406 // for details. All rights reserved. Use of this source code is governed by a |
| 1068 // BSD-style license that can be found in the LICENSE file. | 1407 // BSD-style license that can be found in the LICENSE file. |
| 1069 | 1408 |
| 1070 // WARNING: Do not edit - generated code. | 1409 // WARNING: Do not edit - generated code. |
| 1071 | 1410 |
| 1072 | 1411 |
| 1073 @DocsEditable() | 1412 @DocsEditable() |
| 1074 @DomName('SVGFEColorMatrixElement') | 1413 @DomName('SVGFEColorMatrixElement') |
| 1075 @SupportedBrowser(SupportedBrowser.CHROME) | 1414 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1076 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1415 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1077 @SupportedBrowser(SupportedBrowser.IE, '10') | 1416 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1078 @SupportedBrowser(SupportedBrowser.SAFARI) | 1417 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1079 @Unstable() | 1418 @Unstable() |
| 1080 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { | 1419 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
| 1081 // To suppress missing implicit constructor warnings. | 1420 // To suppress missing implicit constructor warnings. |
| 1082 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } | 1421 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } |
| 1083 | 1422 |
| 1084 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') | 1423 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') |
| 1085 @DocsEditable() | 1424 @DocsEditable() |
| 1086 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); | 1425 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 |
| 1087 /** | 1438 /** |
| 1088 * Constructor instantiated by the DOM when a custom element has been created. | 1439 * Constructor instantiated by the DOM when a custom element has been created. |
| 1089 * | 1440 * |
| 1090 * This can only be called by subclasses from their created constructor. | 1441 * This can only be called by subclasses from their created constructor. |
| 1091 */ | 1442 */ |
| 1092 FEColorMatrixElement.created() : super.created(); | 1443 FEColorMatrixElement.created() : super.created(); |
| 1093 | 1444 |
| 1094 /// Checks if this type is supported on the current platform. | 1445 /// Checks if this type is supported on the current platform. |
| 1095 static bool get supported => true; | 1446 static bool get supported => true; |
| 1096 | 1447 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1109 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE') | 1460 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE') |
| 1110 @DocsEditable() | 1461 @DocsEditable() |
| 1111 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; | 1462 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 1112 | 1463 |
| 1113 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN') | 1464 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN') |
| 1114 @DocsEditable() | 1465 @DocsEditable() |
| 1115 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; | 1466 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 1116 | 1467 |
| 1117 @DomName('SVGFEColorMatrixElement.in1') | 1468 @DomName('SVGFEColorMatrixElement.in1') |
| 1118 @DocsEditable() | 1469 @DocsEditable() |
| 1119 AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.instance.in1_Get
ter_(this); | 1470 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instanc
e.in1_Getter_(unwrap_jso(this))); |
| 1120 | 1471 |
| 1121 @DomName('SVGFEColorMatrixElement.type') | 1472 @DomName('SVGFEColorMatrixElement.type') |
| 1122 @DocsEditable() | 1473 @DocsEditable() |
| 1123 AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.instance.t
ype_Getter_(this); | 1474 AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.i
nstance.type_Getter_(unwrap_jso(this))); |
| 1124 | 1475 |
| 1125 @DomName('SVGFEColorMatrixElement.values') | 1476 @DomName('SVGFEColorMatrixElement.values') |
| 1126 @DocsEditable() | 1477 @DocsEditable() |
| 1127 AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.instance.
values_Getter_(this); | 1478 AnimatedNumberList get values => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.
instance.values_Getter_(unwrap_jso(this))); |
| 1128 | 1479 |
| 1129 @DomName('SVGFEColorMatrixElement.height') | 1480 @DomName('SVGFEColorMatrixElement.height') |
| 1130 @DocsEditable() | 1481 @DocsEditable() |
| 1131 AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.instance.heig
ht_Getter_(this); | 1482 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.inst
ance.height_Getter_(unwrap_jso(this))); |
| 1132 | 1483 |
| 1133 @DomName('SVGFEColorMatrixElement.result') | 1484 @DomName('SVGFEColorMatrixElement.result') |
| 1134 @DocsEditable() | 1485 @DocsEditable() |
| 1135 AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.instance.resu
lt_Getter_(this); | 1486 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.inst
ance.result_Getter_(unwrap_jso(this))); |
| 1136 | 1487 |
| 1137 @DomName('SVGFEColorMatrixElement.width') | 1488 @DomName('SVGFEColorMatrixElement.width') |
| 1138 @DocsEditable() | 1489 @DocsEditable() |
| 1139 AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.instance.width
_Getter_(this); | 1490 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.insta
nce.width_Getter_(unwrap_jso(this))); |
| 1140 | 1491 |
| 1141 @DomName('SVGFEColorMatrixElement.x') | 1492 @DomName('SVGFEColorMatrixElement.x') |
| 1142 @DocsEditable() | 1493 @DocsEditable() |
| 1143 AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.instance.x_Getter_
(this); | 1494 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.
x_Getter_(unwrap_jso(this))); |
| 1144 | 1495 |
| 1145 @DomName('SVGFEColorMatrixElement.y') | 1496 @DomName('SVGFEColorMatrixElement.y') |
| 1146 @DocsEditable() | 1497 @DocsEditable() |
| 1147 AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.instance.y_Getter_
(this); | 1498 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.
y_Getter_(unwrap_jso(this))); |
| 1148 | 1499 |
| 1149 } | 1500 } |
| 1150 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1501 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1151 // for details. All rights reserved. Use of this source code is governed by a | 1502 // for details. All rights reserved. Use of this source code is governed by a |
| 1152 // BSD-style license that can be found in the LICENSE file. | 1503 // BSD-style license that can be found in the LICENSE file. |
| 1153 | 1504 |
| 1154 // WARNING: Do not edit - generated code. | 1505 // WARNING: Do not edit - generated code. |
| 1155 | 1506 |
| 1156 | 1507 |
| 1157 @DocsEditable() | 1508 @DocsEditable() |
| 1158 @DomName('SVGFEComponentTransferElement') | 1509 @DomName('SVGFEComponentTransferElement') |
| 1159 @SupportedBrowser(SupportedBrowser.CHROME) | 1510 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1160 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1511 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1161 @SupportedBrowser(SupportedBrowser.IE, '10') | 1512 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1162 @SupportedBrowser(SupportedBrowser.SAFARI) | 1513 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1163 @Unstable() | 1514 @Unstable() |
| 1164 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { | 1515 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
| 1165 // To suppress missing implicit constructor warnings. | 1516 // To suppress missing implicit constructor warnings. |
| 1166 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } | 1517 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } |
| 1167 | 1518 |
| 1168 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') | 1519 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') |
| 1169 @DocsEditable() | 1520 @DocsEditable() |
| 1170 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); | 1521 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 |
| 1171 /** | 1534 /** |
| 1172 * Constructor instantiated by the DOM when a custom element has been created. | 1535 * Constructor instantiated by the DOM when a custom element has been created. |
| 1173 * | 1536 * |
| 1174 * This can only be called by subclasses from their created constructor. | 1537 * This can only be called by subclasses from their created constructor. |
| 1175 */ | 1538 */ |
| 1176 FEComponentTransferElement.created() : super.created(); | 1539 FEComponentTransferElement.created() : super.created(); |
| 1177 | 1540 |
| 1178 /// Checks if this type is supported on the current platform. | 1541 /// Checks if this type is supported on the current platform. |
| 1179 static bool get supported => true; | 1542 static bool get supported => true; |
| 1180 | 1543 |
| 1181 @DomName('SVGFEComponentTransferElement.in1') | 1544 @DomName('SVGFEComponentTransferElement.in1') |
| 1182 @DocsEditable() | 1545 @DocsEditable() |
| 1183 AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.instance.i
n1_Getter_(this); | 1546 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.i
nstance.in1_Getter_(unwrap_jso(this))); |
| 1184 | 1547 |
| 1185 @DomName('SVGFEComponentTransferElement.height') | 1548 @DomName('SVGFEComponentTransferElement.height') |
| 1186 @DocsEditable() | 1549 @DocsEditable() |
| 1187 AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.instanc
e.height_Getter_(this); | 1550 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEComponentTransferElemen
t.instance.height_Getter_(unwrap_jso(this))); |
| 1188 | 1551 |
| 1189 @DomName('SVGFEComponentTransferElement.result') | 1552 @DomName('SVGFEComponentTransferElement.result') |
| 1190 @DocsEditable() | 1553 @DocsEditable() |
| 1191 AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.instanc
e.result_Getter_(this); | 1554 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEComponentTransferElemen
t.instance.result_Getter_(unwrap_jso(this))); |
| 1192 | 1555 |
| 1193 @DomName('SVGFEComponentTransferElement.width') | 1556 @DomName('SVGFEComponentTransferElement.width') |
| 1194 @DocsEditable() | 1557 @DocsEditable() |
| 1195 AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.instance
.width_Getter_(this); | 1558 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEComponentTransferElement
.instance.width_Getter_(unwrap_jso(this))); |
| 1196 | 1559 |
| 1197 @DomName('SVGFEComponentTransferElement.x') | 1560 @DomName('SVGFEComponentTransferElement.x') |
| 1198 @DocsEditable() | 1561 @DocsEditable() |
| 1199 AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.instance.x_G
etter_(this); | 1562 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.ins
tance.x_Getter_(unwrap_jso(this))); |
| 1200 | 1563 |
| 1201 @DomName('SVGFEComponentTransferElement.y') | 1564 @DomName('SVGFEComponentTransferElement.y') |
| 1202 @DocsEditable() | 1565 @DocsEditable() |
| 1203 AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.instance.y_G
etter_(this); | 1566 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.ins
tance.y_Getter_(unwrap_jso(this))); |
| 1204 | 1567 |
| 1205 } | 1568 } |
| 1206 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1207 // for details. All rights reserved. Use of this source code is governed by a | 1570 // for details. All rights reserved. Use of this source code is governed by a |
| 1208 // BSD-style license that can be found in the LICENSE file. | 1571 // BSD-style license that can be found in the LICENSE file. |
| 1209 | 1572 |
| 1210 // WARNING: Do not edit - generated code. | 1573 // WARNING: Do not edit - generated code. |
| 1211 | 1574 |
| 1212 | 1575 |
| 1213 @DocsEditable() | 1576 @DocsEditable() |
| 1214 @DomName('SVGFECompositeElement') | 1577 @DomName('SVGFECompositeElement') |
| 1215 @Unstable() | 1578 @Unstable() |
| 1216 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { | 1579 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
| 1217 // To suppress missing implicit constructor warnings. | 1580 // To suppress missing implicit constructor warnings. |
| 1218 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} | 1581 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 |
| 1219 /** | 1594 /** |
| 1220 * Constructor instantiated by the DOM when a custom element has been created. | 1595 * Constructor instantiated by the DOM when a custom element has been created. |
| 1221 * | 1596 * |
| 1222 * This can only be called by subclasses from their created constructor. | 1597 * This can only be called by subclasses from their created constructor. |
| 1223 */ | 1598 */ |
| 1224 FECompositeElement.created() : super.created(); | 1599 FECompositeElement.created() : super.created(); |
| 1225 | 1600 |
| 1226 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') | 1601 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') |
| 1227 @DocsEditable() | 1602 @DocsEditable() |
| 1228 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 1603 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1246 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN') | 1621 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN') |
| 1247 @DocsEditable() | 1622 @DocsEditable() |
| 1248 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; | 1623 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 1249 | 1624 |
| 1250 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR') | 1625 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR') |
| 1251 @DocsEditable() | 1626 @DocsEditable() |
| 1252 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; | 1627 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 1253 | 1628 |
| 1254 @DomName('SVGFECompositeElement.in1') | 1629 @DomName('SVGFECompositeElement.in1') |
| 1255 @DocsEditable() | 1630 @DocsEditable() |
| 1256 AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.instance.in1_Gette
r_(this); | 1631 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.
in1_Getter_(unwrap_jso(this))); |
| 1257 | 1632 |
| 1258 @DomName('SVGFECompositeElement.in2') | 1633 @DomName('SVGFECompositeElement.in2') |
| 1259 @DocsEditable() | 1634 @DocsEditable() |
| 1260 AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.instance.in2_Gette
r_(this); | 1635 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.
in2_Getter_(unwrap_jso(this))); |
| 1261 | 1636 |
| 1262 @DomName('SVGFECompositeElement.k1') | 1637 @DomName('SVGFECompositeElement.k1') |
| 1263 @DocsEditable() | 1638 @DocsEditable() |
| 1264 AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.instance.k1_Getter_
(this); | 1639 AnimatedNumber get k1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k
1_Getter_(unwrap_jso(this))); |
| 1265 | 1640 |
| 1266 @DomName('SVGFECompositeElement.k2') | 1641 @DomName('SVGFECompositeElement.k2') |
| 1267 @DocsEditable() | 1642 @DocsEditable() |
| 1268 AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.instance.k2_Getter_
(this); | 1643 AnimatedNumber get k2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k
2_Getter_(unwrap_jso(this))); |
| 1269 | 1644 |
| 1270 @DomName('SVGFECompositeElement.k3') | 1645 @DomName('SVGFECompositeElement.k3') |
| 1271 @DocsEditable() | 1646 @DocsEditable() |
| 1272 AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.instance.k3_Getter_
(this); | 1647 AnimatedNumber get k3 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k
3_Getter_(unwrap_jso(this))); |
| 1273 | 1648 |
| 1274 @DomName('SVGFECompositeElement.k4') | 1649 @DomName('SVGFECompositeElement.k4') |
| 1275 @DocsEditable() | 1650 @DocsEditable() |
| 1276 AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.instance.k4_Getter_
(this); | 1651 AnimatedNumber get k4 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k
4_Getter_(unwrap_jso(this))); |
| 1277 | 1652 |
| 1278 @DomName('SVGFECompositeElement.operator') | 1653 @DomName('SVGFECompositeElement.operator') |
| 1279 @DocsEditable() | 1654 @DocsEditable() |
| 1280 AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.instance
.operator_Getter_(this); | 1655 AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFECompositeElement
.instance.operator_Getter_(unwrap_jso(this))); |
| 1281 | 1656 |
| 1282 @DomName('SVGFECompositeElement.height') | 1657 @DomName('SVGFECompositeElement.height') |
| 1283 @DocsEditable() | 1658 @DocsEditable() |
| 1284 AnimatedLength get height => _blink.BlinkSVGFECompositeElement.instance.height
_Getter_(this); | 1659 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFECompositeElement.instan
ce.height_Getter_(unwrap_jso(this))); |
| 1285 | 1660 |
| 1286 @DomName('SVGFECompositeElement.result') | 1661 @DomName('SVGFECompositeElement.result') |
| 1287 @DocsEditable() | 1662 @DocsEditable() |
| 1288 AnimatedString get result => _blink.BlinkSVGFECompositeElement.instance.result
_Getter_(this); | 1663 AnimatedString get result => wrap_jso(_blink.BlinkSVGFECompositeElement.instan
ce.result_Getter_(unwrap_jso(this))); |
| 1289 | 1664 |
| 1290 @DomName('SVGFECompositeElement.width') | 1665 @DomName('SVGFECompositeElement.width') |
| 1291 @DocsEditable() | 1666 @DocsEditable() |
| 1292 AnimatedLength get width => _blink.BlinkSVGFECompositeElement.instance.width_G
etter_(this); | 1667 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFECompositeElement.instanc
e.width_Getter_(unwrap_jso(this))); |
| 1293 | 1668 |
| 1294 @DomName('SVGFECompositeElement.x') | 1669 @DomName('SVGFECompositeElement.x') |
| 1295 @DocsEditable() | 1670 @DocsEditable() |
| 1296 AnimatedLength get x => _blink.BlinkSVGFECompositeElement.instance.x_Getter_(t
his); | 1671 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.x_
Getter_(unwrap_jso(this))); |
| 1297 | 1672 |
| 1298 @DomName('SVGFECompositeElement.y') | 1673 @DomName('SVGFECompositeElement.y') |
| 1299 @DocsEditable() | 1674 @DocsEditable() |
| 1300 AnimatedLength get y => _blink.BlinkSVGFECompositeElement.instance.y_Getter_(t
his); | 1675 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.y_
Getter_(unwrap_jso(this))); |
| 1301 | 1676 |
| 1302 } | 1677 } |
| 1303 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1304 // for details. All rights reserved. Use of this source code is governed by a | 1679 // for details. All rights reserved. Use of this source code is governed by a |
| 1305 // BSD-style license that can be found in the LICENSE file. | 1680 // BSD-style license that can be found in the LICENSE file. |
| 1306 | 1681 |
| 1307 // WARNING: Do not edit - generated code. | 1682 // WARNING: Do not edit - generated code. |
| 1308 | 1683 |
| 1309 | 1684 |
| 1310 @DocsEditable() | 1685 @DocsEditable() |
| 1311 @DomName('SVGFEConvolveMatrixElement') | 1686 @DomName('SVGFEConvolveMatrixElement') |
| 1312 @SupportedBrowser(SupportedBrowser.CHROME) | 1687 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1313 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1688 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1314 @SupportedBrowser(SupportedBrowser.IE, '10') | 1689 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1315 @SupportedBrowser(SupportedBrowser.SAFARI) | 1690 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1316 @Unstable() | 1691 @Unstable() |
| 1317 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 1692 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
| 1318 // To suppress missing implicit constructor warnings. | 1693 // To suppress missing implicit constructor warnings. |
| 1319 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } | 1694 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 1320 | 1695 |
| 1321 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') | 1696 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') |
| 1322 @DocsEditable() | 1697 @DocsEditable() |
| 1323 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); | 1698 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 |
| 1324 /** | 1711 /** |
| 1325 * Constructor instantiated by the DOM when a custom element has been created. | 1712 * Constructor instantiated by the DOM when a custom element has been created. |
| 1326 * | 1713 * |
| 1327 * This can only be called by subclasses from their created constructor. | 1714 * This can only be called by subclasses from their created constructor. |
| 1328 */ | 1715 */ |
| 1329 FEConvolveMatrixElement.created() : super.created(); | 1716 FEConvolveMatrixElement.created() : super.created(); |
| 1330 | 1717 |
| 1331 /// Checks if this type is supported on the current platform. | 1718 /// Checks if this type is supported on the current platform. |
| 1332 static bool get supported => true; | 1719 static bool get supported => true; |
| 1333 | 1720 |
| 1334 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE') | 1721 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE') |
| 1335 @DocsEditable() | 1722 @DocsEditable() |
| 1336 static const int SVG_EDGEMODE_DUPLICATE = 1; | 1723 static const int SVG_EDGEMODE_DUPLICATE = 1; |
| 1337 | 1724 |
| 1338 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE') | 1725 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE') |
| 1339 @DocsEditable() | 1726 @DocsEditable() |
| 1340 static const int SVG_EDGEMODE_NONE = 3; | 1727 static const int SVG_EDGEMODE_NONE = 3; |
| 1341 | 1728 |
| 1342 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN') | 1729 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN') |
| 1343 @DocsEditable() | 1730 @DocsEditable() |
| 1344 static const int SVG_EDGEMODE_UNKNOWN = 0; | 1731 static const int SVG_EDGEMODE_UNKNOWN = 0; |
| 1345 | 1732 |
| 1346 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP') | 1733 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP') |
| 1347 @DocsEditable() | 1734 @DocsEditable() |
| 1348 static const int SVG_EDGEMODE_WRAP = 2; | 1735 static const int SVG_EDGEMODE_WRAP = 2; |
| 1349 | 1736 |
| 1350 @DomName('SVGFEConvolveMatrixElement.bias') | 1737 @DomName('SVGFEConvolveMatrixElement.bias') |
| 1351 @DocsEditable() | 1738 @DocsEditable() |
| 1352 AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.instance.bia
s_Getter_(this); | 1739 AnimatedNumber get bias => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.ins
tance.bias_Getter_(unwrap_jso(this))); |
| 1353 | 1740 |
| 1354 @DomName('SVGFEConvolveMatrixElement.divisor') | 1741 @DomName('SVGFEConvolveMatrixElement.divisor') |
| 1355 @DocsEditable() | 1742 @DocsEditable() |
| 1356 AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.instance.
divisor_Getter_(this); | 1743 AnimatedNumber get divisor => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.
instance.divisor_Getter_(unwrap_jso(this))); |
| 1357 | 1744 |
| 1358 @DomName('SVGFEConvolveMatrixElement.edgeMode') | 1745 @DomName('SVGFEConvolveMatrixElement.edgeMode') |
| 1359 @DocsEditable() | 1746 @DocsEditable() |
| 1360 AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.ins
tance.edgeMode_Getter_(this); | 1747 AnimatedEnumeration get edgeMode => wrap_jso(_blink.BlinkSVGFEConvolveMatrixEl
ement.instance.edgeMode_Getter_(unwrap_jso(this))); |
| 1361 | 1748 |
| 1362 @DomName('SVGFEConvolveMatrixElement.in1') | 1749 @DomName('SVGFEConvolveMatrixElement.in1') |
| 1363 @DocsEditable() | 1750 @DocsEditable() |
| 1364 AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.instance.in1_
Getter_(this); | 1751 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.inst
ance.in1_Getter_(unwrap_jso(this))); |
| 1365 | 1752 |
| 1366 @DomName('SVGFEConvolveMatrixElement.kernelMatrix') | 1753 @DomName('SVGFEConvolveMatrixElement.kernelMatrix') |
| 1367 @DocsEditable() | 1754 @DocsEditable() |
| 1368 AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement.
instance.kernelMatrix_Getter_(this); | 1755 AnimatedNumberList get kernelMatrix => wrap_jso(_blink.BlinkSVGFEConvolveMatri
xElement.instance.kernelMatrix_Getter_(unwrap_jso(this))); |
| 1369 | 1756 |
| 1370 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX') | 1757 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX') |
| 1371 @DocsEditable() | 1758 @DocsEditable() |
| 1372 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement
.instance.kernelUnitLengthX_Getter_(this); | 1759 AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEConvolveMatr
ixElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this))); |
| 1373 | 1760 |
| 1374 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY') | 1761 @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY') |
| 1375 @DocsEditable() | 1762 @DocsEditable() |
| 1376 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement
.instance.kernelUnitLengthY_Getter_(this); | 1763 AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEConvolveMatr
ixElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this))); |
| 1377 | 1764 |
| 1378 @DomName('SVGFEConvolveMatrixElement.orderX') | 1765 @DomName('SVGFEConvolveMatrixElement.orderX') |
| 1379 @DocsEditable() | 1766 @DocsEditable() |
| 1380 AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.instance.
orderX_Getter_(this); | 1767 AnimatedInteger get orderX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.
instance.orderX_Getter_(unwrap_jso(this))); |
| 1381 | 1768 |
| 1382 @DomName('SVGFEConvolveMatrixElement.orderY') | 1769 @DomName('SVGFEConvolveMatrixElement.orderY') |
| 1383 @DocsEditable() | 1770 @DocsEditable() |
| 1384 AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.instance.
orderY_Getter_(this); | 1771 AnimatedInteger get orderY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.
instance.orderY_Getter_(unwrap_jso(this))); |
| 1385 | 1772 |
| 1386 @DomName('SVGFEConvolveMatrixElement.preserveAlpha') | 1773 @DomName('SVGFEConvolveMatrixElement.preserveAlpha') |
| 1387 @DocsEditable() | 1774 @DocsEditable() |
| 1388 AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.in
stance.preserveAlpha_Getter_(this); | 1775 AnimatedBoolean get preserveAlpha => wrap_jso(_blink.BlinkSVGFEConvolveMatrixE
lement.instance.preserveAlpha_Getter_(unwrap_jso(this))); |
| 1389 | 1776 |
| 1390 @DomName('SVGFEConvolveMatrixElement.targetX') | 1777 @DomName('SVGFEConvolveMatrixElement.targetX') |
| 1391 @DocsEditable() | 1778 @DocsEditable() |
| 1392 AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.instance
.targetX_Getter_(this); | 1779 AnimatedInteger get targetX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement
.instance.targetX_Getter_(unwrap_jso(this))); |
| 1393 | 1780 |
| 1394 @DomName('SVGFEConvolveMatrixElement.targetY') | 1781 @DomName('SVGFEConvolveMatrixElement.targetY') |
| 1395 @DocsEditable() | 1782 @DocsEditable() |
| 1396 AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.instance
.targetY_Getter_(this); | 1783 AnimatedInteger get targetY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement
.instance.targetY_Getter_(unwrap_jso(this))); |
| 1397 | 1784 |
| 1398 @DomName('SVGFEConvolveMatrixElement.height') | 1785 @DomName('SVGFEConvolveMatrixElement.height') |
| 1399 @DocsEditable() | 1786 @DocsEditable() |
| 1400 AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.instance.h
eight_Getter_(this); | 1787 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.i
nstance.height_Getter_(unwrap_jso(this))); |
| 1401 | 1788 |
| 1402 @DomName('SVGFEConvolveMatrixElement.result') | 1789 @DomName('SVGFEConvolveMatrixElement.result') |
| 1403 @DocsEditable() | 1790 @DocsEditable() |
| 1404 AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.instance.r
esult_Getter_(this); | 1791 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.i
nstance.result_Getter_(unwrap_jso(this))); |
| 1405 | 1792 |
| 1406 @DomName('SVGFEConvolveMatrixElement.width') | 1793 @DomName('SVGFEConvolveMatrixElement.width') |
| 1407 @DocsEditable() | 1794 @DocsEditable() |
| 1408 AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.instance.wi
dth_Getter_(this); | 1795 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.in
stance.width_Getter_(unwrap_jso(this))); |
| 1409 | 1796 |
| 1410 @DomName('SVGFEConvolveMatrixElement.x') | 1797 @DomName('SVGFEConvolveMatrixElement.x') |
| 1411 @DocsEditable() | 1798 @DocsEditable() |
| 1412 AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.instance.x_Gett
er_(this); | 1799 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instan
ce.x_Getter_(unwrap_jso(this))); |
| 1413 | 1800 |
| 1414 @DomName('SVGFEConvolveMatrixElement.y') | 1801 @DomName('SVGFEConvolveMatrixElement.y') |
| 1415 @DocsEditable() | 1802 @DocsEditable() |
| 1416 AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.instance.y_Gett
er_(this); | 1803 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instan
ce.y_Getter_(unwrap_jso(this))); |
| 1417 | 1804 |
| 1418 } | 1805 } |
| 1419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1806 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1420 // for details. All rights reserved. Use of this source code is governed by a | 1807 // for details. All rights reserved. Use of this source code is governed by a |
| 1421 // BSD-style license that can be found in the LICENSE file. | 1808 // BSD-style license that can be found in the LICENSE file. |
| 1422 | 1809 |
| 1423 // WARNING: Do not edit - generated code. | 1810 // WARNING: Do not edit - generated code. |
| 1424 | 1811 |
| 1425 | 1812 |
| 1426 @DocsEditable() | 1813 @DocsEditable() |
| 1427 @DomName('SVGFEDiffuseLightingElement') | 1814 @DomName('SVGFEDiffuseLightingElement') |
| 1428 @SupportedBrowser(SupportedBrowser.CHROME) | 1815 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1429 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1816 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1430 @SupportedBrowser(SupportedBrowser.IE, '10') | 1817 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1431 @SupportedBrowser(SupportedBrowser.SAFARI) | 1818 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1432 @Unstable() | 1819 @Unstable() |
| 1433 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1820 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 1434 // To suppress missing implicit constructor warnings. | 1821 // To suppress missing implicit constructor warnings. |
| 1435 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } | 1822 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } |
| 1436 | 1823 |
| 1437 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') | 1824 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') |
| 1438 @DocsEditable() | 1825 @DocsEditable() |
| 1439 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); | 1826 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 |
| 1440 /** | 1839 /** |
| 1441 * Constructor instantiated by the DOM when a custom element has been created. | 1840 * Constructor instantiated by the DOM when a custom element has been created. |
| 1442 * | 1841 * |
| 1443 * This can only be called by subclasses from their created constructor. | 1842 * This can only be called by subclasses from their created constructor. |
| 1444 */ | 1843 */ |
| 1445 FEDiffuseLightingElement.created() : super.created(); | 1844 FEDiffuseLightingElement.created() : super.created(); |
| 1446 | 1845 |
| 1447 /// Checks if this type is supported on the current platform. | 1846 /// Checks if this type is supported on the current platform. |
| 1448 static bool get supported => true; | 1847 static bool get supported => true; |
| 1449 | 1848 |
| 1450 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') | 1849 @DomName('SVGFEDiffuseLightingElement.diffuseConstant') |
| 1451 @DocsEditable() | 1850 @DocsEditable() |
| 1452 AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement.
instance.diffuseConstant_Getter_(this); | 1851 AnimatedNumber get diffuseConstant => wrap_jso(_blink.BlinkSVGFEDiffuseLightin
gElement.instance.diffuseConstant_Getter_(unwrap_jso(this))); |
| 1453 | 1852 |
| 1454 @DomName('SVGFEDiffuseLightingElement.in1') | 1853 @DomName('SVGFEDiffuseLightingElement.in1') |
| 1455 @DocsEditable() | 1854 @DocsEditable() |
| 1456 AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.instance.in1
_Getter_(this); | 1855 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.ins
tance.in1_Getter_(unwrap_jso(this))); |
| 1457 | 1856 |
| 1458 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX') | 1857 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX') |
| 1459 @DocsEditable() | 1858 @DocsEditable() |
| 1460 AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElemen
t.instance.kernelUnitLengthX_Getter_(this); | 1859 AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEDiffuseLight
ingElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this))); |
| 1461 | 1860 |
| 1462 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY') | 1861 @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY') |
| 1463 @DocsEditable() | 1862 @DocsEditable() |
| 1464 AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElemen
t.instance.kernelUnitLengthY_Getter_(this); | 1863 AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEDiffuseLight
ingElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this))); |
| 1465 | 1864 |
| 1466 @DomName('SVGFEDiffuseLightingElement.surfaceScale') | 1865 @DomName('SVGFEDiffuseLightingElement.surfaceScale') |
| 1467 @DocsEditable() | 1866 @DocsEditable() |
| 1468 AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.ins
tance.surfaceScale_Getter_(this); | 1867 AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFEDiffuseLightingEl
ement.instance.surfaceScale_Getter_(unwrap_jso(this))); |
| 1469 | 1868 |
| 1470 @DomName('SVGFEDiffuseLightingElement.height') | 1869 @DomName('SVGFEDiffuseLightingElement.height') |
| 1471 @DocsEditable() | 1870 @DocsEditable() |
| 1472 AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.instance.
height_Getter_(this); | 1871 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.
instance.height_Getter_(unwrap_jso(this))); |
| 1473 | 1872 |
| 1474 @DomName('SVGFEDiffuseLightingElement.result') | 1873 @DomName('SVGFEDiffuseLightingElement.result') |
| 1475 @DocsEditable() | 1874 @DocsEditable() |
| 1476 AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.instance.
result_Getter_(this); | 1875 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.
instance.result_Getter_(unwrap_jso(this))); |
| 1477 | 1876 |
| 1478 @DomName('SVGFEDiffuseLightingElement.width') | 1877 @DomName('SVGFEDiffuseLightingElement.width') |
| 1479 @DocsEditable() | 1878 @DocsEditable() |
| 1480 AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.instance.w
idth_Getter_(this); | 1879 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.i
nstance.width_Getter_(unwrap_jso(this))); |
| 1481 | 1880 |
| 1482 @DomName('SVGFEDiffuseLightingElement.x') | 1881 @DomName('SVGFEDiffuseLightingElement.x') |
| 1483 @DocsEditable() | 1882 @DocsEditable() |
| 1484 AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.instance.x_Get
ter_(this); | 1883 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.insta
nce.x_Getter_(unwrap_jso(this))); |
| 1485 | 1884 |
| 1486 @DomName('SVGFEDiffuseLightingElement.y') | 1885 @DomName('SVGFEDiffuseLightingElement.y') |
| 1487 @DocsEditable() | 1886 @DocsEditable() |
| 1488 AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.instance.y_Get
ter_(this); | 1887 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.insta
nce.y_Getter_(unwrap_jso(this))); |
| 1489 | 1888 |
| 1490 } | 1889 } |
| 1491 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1492 // for details. All rights reserved. Use of this source code is governed by a | 1891 // for details. All rights reserved. Use of this source code is governed by a |
| 1493 // BSD-style license that can be found in the LICENSE file. | 1892 // BSD-style license that can be found in the LICENSE file. |
| 1494 | 1893 |
| 1495 // WARNING: Do not edit - generated code. | 1894 // WARNING: Do not edit - generated code. |
| 1496 | 1895 |
| 1497 | 1896 |
| 1498 @DocsEditable() | 1897 @DocsEditable() |
| 1499 @DomName('SVGFEDisplacementMapElement') | 1898 @DomName('SVGFEDisplacementMapElement') |
| 1500 @SupportedBrowser(SupportedBrowser.CHROME) | 1899 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1501 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1900 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1502 @SupportedBrowser(SupportedBrowser.IE, '10') | 1901 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1503 @SupportedBrowser(SupportedBrowser.SAFARI) | 1902 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1504 @Unstable() | 1903 @Unstable() |
| 1505 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1904 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 1506 // To suppress missing implicit constructor warnings. | 1905 // To suppress missing implicit constructor warnings. |
| 1507 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } | 1906 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } |
| 1508 | 1907 |
| 1509 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') | 1908 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') |
| 1510 @DocsEditable() | 1909 @DocsEditable() |
| 1511 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); | 1910 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 |
| 1512 /** | 1923 /** |
| 1513 * Constructor instantiated by the DOM when a custom element has been created. | 1924 * Constructor instantiated by the DOM when a custom element has been created. |
| 1514 * | 1925 * |
| 1515 * This can only be called by subclasses from their created constructor. | 1926 * This can only be called by subclasses from their created constructor. |
| 1516 */ | 1927 */ |
| 1517 FEDisplacementMapElement.created() : super.created(); | 1928 FEDisplacementMapElement.created() : super.created(); |
| 1518 | 1929 |
| 1519 /// Checks if this type is supported on the current platform. | 1930 /// Checks if this type is supported on the current platform. |
| 1520 static bool get supported => true; | 1931 static bool get supported => true; |
| 1521 | 1932 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1534 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R') | 1945 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R') |
| 1535 @DocsEditable() | 1946 @DocsEditable() |
| 1536 static const int SVG_CHANNEL_R = 1; | 1947 static const int SVG_CHANNEL_R = 1; |
| 1537 | 1948 |
| 1538 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN') | 1949 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN') |
| 1539 @DocsEditable() | 1950 @DocsEditable() |
| 1540 static const int SVG_CHANNEL_UNKNOWN = 0; | 1951 static const int SVG_CHANNEL_UNKNOWN = 0; |
| 1541 | 1952 |
| 1542 @DomName('SVGFEDisplacementMapElement.in1') | 1953 @DomName('SVGFEDisplacementMapElement.in1') |
| 1543 @DocsEditable() | 1954 @DocsEditable() |
| 1544 AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.instance.in1
_Getter_(this); | 1955 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.ins
tance.in1_Getter_(unwrap_jso(this))); |
| 1545 | 1956 |
| 1546 @DomName('SVGFEDisplacementMapElement.in2') | 1957 @DomName('SVGFEDisplacementMapElement.in2') |
| 1547 @DocsEditable() | 1958 @DocsEditable() |
| 1548 AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.instance.in2
_Getter_(this); | 1959 AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.ins
tance.in2_Getter_(unwrap_jso(this))); |
| 1549 | 1960 |
| 1550 @DomName('SVGFEDisplacementMapElement.scale') | 1961 @DomName('SVGFEDisplacementMapElement.scale') |
| 1551 @DocsEditable() | 1962 @DocsEditable() |
| 1552 AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.instance.s
cale_Getter_(this); | 1963 AnimatedNumber get scale => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.i
nstance.scale_Getter_(unwrap_jso(this))); |
| 1553 | 1964 |
| 1554 @DomName('SVGFEDisplacementMapElement.xChannelSelector') | 1965 @DomName('SVGFEDisplacementMapElement.xChannelSelector') |
| 1555 @DocsEditable() | 1966 @DocsEditable() |
| 1556 AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapEl
ement.instance.xChannelSelector_Getter_(this); | 1967 AnimatedEnumeration get xChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplace
mentMapElement.instance.xChannelSelector_Getter_(unwrap_jso(this))); |
| 1557 | 1968 |
| 1558 @DomName('SVGFEDisplacementMapElement.yChannelSelector') | 1969 @DomName('SVGFEDisplacementMapElement.yChannelSelector') |
| 1559 @DocsEditable() | 1970 @DocsEditable() |
| 1560 AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapEl
ement.instance.yChannelSelector_Getter_(this); | 1971 AnimatedEnumeration get yChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplace
mentMapElement.instance.yChannelSelector_Getter_(unwrap_jso(this))); |
| 1561 | 1972 |
| 1562 @DomName('SVGFEDisplacementMapElement.height') | 1973 @DomName('SVGFEDisplacementMapElement.height') |
| 1563 @DocsEditable() | 1974 @DocsEditable() |
| 1564 AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.instance.
height_Getter_(this); | 1975 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.
instance.height_Getter_(unwrap_jso(this))); |
| 1565 | 1976 |
| 1566 @DomName('SVGFEDisplacementMapElement.result') | 1977 @DomName('SVGFEDisplacementMapElement.result') |
| 1567 @DocsEditable() | 1978 @DocsEditable() |
| 1568 AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.instance.
result_Getter_(this); | 1979 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.
instance.result_Getter_(unwrap_jso(this))); |
| 1569 | 1980 |
| 1570 @DomName('SVGFEDisplacementMapElement.width') | 1981 @DomName('SVGFEDisplacementMapElement.width') |
| 1571 @DocsEditable() | 1982 @DocsEditable() |
| 1572 AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.instance.w
idth_Getter_(this); | 1983 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.i
nstance.width_Getter_(unwrap_jso(this))); |
| 1573 | 1984 |
| 1574 @DomName('SVGFEDisplacementMapElement.x') | 1985 @DomName('SVGFEDisplacementMapElement.x') |
| 1575 @DocsEditable() | 1986 @DocsEditable() |
| 1576 AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.instance.x_Get
ter_(this); | 1987 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.insta
nce.x_Getter_(unwrap_jso(this))); |
| 1577 | 1988 |
| 1578 @DomName('SVGFEDisplacementMapElement.y') | 1989 @DomName('SVGFEDisplacementMapElement.y') |
| 1579 @DocsEditable() | 1990 @DocsEditable() |
| 1580 AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.instance.y_Get
ter_(this); | 1991 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.insta
nce.y_Getter_(unwrap_jso(this))); |
| 1581 | 1992 |
| 1582 } | 1993 } |
| 1583 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1994 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1584 // for details. All rights reserved. Use of this source code is governed by a | 1995 // for details. All rights reserved. Use of this source code is governed by a |
| 1585 // BSD-style license that can be found in the LICENSE file. | 1996 // BSD-style license that can be found in the LICENSE file. |
| 1586 | 1997 |
| 1587 // WARNING: Do not edit - generated code. | 1998 // WARNING: Do not edit - generated code. |
| 1588 | 1999 |
| 1589 | 2000 |
| 1590 @DocsEditable() | 2001 @DocsEditable() |
| 1591 @DomName('SVGFEDistantLightElement') | 2002 @DomName('SVGFEDistantLightElement') |
| 1592 @SupportedBrowser(SupportedBrowser.CHROME) | 2003 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1593 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2004 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1594 @SupportedBrowser(SupportedBrowser.IE, '10') | 2005 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1595 @SupportedBrowser(SupportedBrowser.SAFARI) | 2006 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1596 @Unstable() | 2007 @Unstable() |
| 1597 class FEDistantLightElement extends SvgElement { | 2008 class FEDistantLightElement extends SvgElement { |
| 1598 // To suppress missing implicit constructor warnings. | 2009 // To suppress missing implicit constructor warnings. |
| 1599 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } | 2010 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } |
| 1600 | 2011 |
| 1601 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') | 2012 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') |
| 1602 @DocsEditable() | 2013 @DocsEditable() |
| 1603 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); | 2014 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 |
| 1604 /** | 2027 /** |
| 1605 * Constructor instantiated by the DOM when a custom element has been created. | 2028 * Constructor instantiated by the DOM when a custom element has been created. |
| 1606 * | 2029 * |
| 1607 * This can only be called by subclasses from their created constructor. | 2030 * This can only be called by subclasses from their created constructor. |
| 1608 */ | 2031 */ |
| 1609 FEDistantLightElement.created() : super.created(); | 2032 FEDistantLightElement.created() : super.created(); |
| 1610 | 2033 |
| 1611 /// Checks if this type is supported on the current platform. | 2034 /// Checks if this type is supported on the current platform. |
| 1612 static bool get supported => true; | 2035 static bool get supported => true; |
| 1613 | 2036 |
| 1614 @DomName('SVGFEDistantLightElement.azimuth') | 2037 @DomName('SVGFEDistantLightElement.azimuth') |
| 1615 @DocsEditable() | 2038 @DocsEditable() |
| 1616 AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.instance.az
imuth_Getter_(this); | 2039 AnimatedNumber get azimuth => wrap_jso(_blink.BlinkSVGFEDistantLightElement.in
stance.azimuth_Getter_(unwrap_jso(this))); |
| 1617 | 2040 |
| 1618 @DomName('SVGFEDistantLightElement.elevation') | 2041 @DomName('SVGFEDistantLightElement.elevation') |
| 1619 @DocsEditable() | 2042 @DocsEditable() |
| 1620 AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.instance.
elevation_Getter_(this); | 2043 AnimatedNumber get elevation => wrap_jso(_blink.BlinkSVGFEDistantLightElement.
instance.elevation_Getter_(unwrap_jso(this))); |
| 1621 | 2044 |
| 1622 } | 2045 } |
| 1623 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2046 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1624 // for details. All rights reserved. Use of this source code is governed by a | 2047 // for details. All rights reserved. Use of this source code is governed by a |
| 1625 // BSD-style license that can be found in the LICENSE file. | 2048 // BSD-style license that can be found in the LICENSE file. |
| 1626 | 2049 |
| 1627 // WARNING: Do not edit - generated code. | 2050 // WARNING: Do not edit - generated code. |
| 1628 | 2051 |
| 1629 | 2052 |
| 1630 @DocsEditable() | 2053 @DocsEditable() |
| 1631 @DomName('SVGFEFloodElement') | 2054 @DomName('SVGFEFloodElement') |
| 1632 @SupportedBrowser(SupportedBrowser.CHROME) | 2055 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1633 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2056 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1634 @SupportedBrowser(SupportedBrowser.IE, '10') | 2057 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1635 @SupportedBrowser(SupportedBrowser.SAFARI) | 2058 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1636 @Unstable() | 2059 @Unstable() |
| 1637 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2060 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 1638 // To suppress missing implicit constructor warnings. | 2061 // To suppress missing implicit constructor warnings. |
| 1639 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } | 2062 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } |
| 1640 | 2063 |
| 1641 @DomName('SVGFEFloodElement.SVGFEFloodElement') | 2064 @DomName('SVGFEFloodElement.SVGFEFloodElement') |
| 1642 @DocsEditable() | 2065 @DocsEditable() |
| 1643 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); | 2066 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 |
| 1644 /** | 2079 /** |
| 1645 * Constructor instantiated by the DOM when a custom element has been created. | 2080 * Constructor instantiated by the DOM when a custom element has been created. |
| 1646 * | 2081 * |
| 1647 * This can only be called by subclasses from their created constructor. | 2082 * This can only be called by subclasses from their created constructor. |
| 1648 */ | 2083 */ |
| 1649 FEFloodElement.created() : super.created(); | 2084 FEFloodElement.created() : super.created(); |
| 1650 | 2085 |
| 1651 /// Checks if this type is supported on the current platform. | 2086 /// Checks if this type is supported on the current platform. |
| 1652 static bool get supported => true; | 2087 static bool get supported => true; |
| 1653 | 2088 |
| 1654 @DomName('SVGFEFloodElement.height') | 2089 @DomName('SVGFEFloodElement.height') |
| 1655 @DocsEditable() | 2090 @DocsEditable() |
| 1656 AnimatedLength get height => _blink.BlinkSVGFEFloodElement.instance.height_Get
ter_(this); | 2091 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| 1657 | 2092 |
| 1658 @DomName('SVGFEFloodElement.result') | 2093 @DomName('SVGFEFloodElement.result') |
| 1659 @DocsEditable() | 2094 @DocsEditable() |
| 1660 AnimatedString get result => _blink.BlinkSVGFEFloodElement.instance.result_Get
ter_(this); | 2095 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.r
esult_Getter_(unwrap_jso(this))); |
| 1661 | 2096 |
| 1662 @DomName('SVGFEFloodElement.width') | 2097 @DomName('SVGFEFloodElement.width') |
| 1663 @DocsEditable() | 2098 @DocsEditable() |
| 1664 AnimatedLength get width => _blink.BlinkSVGFEFloodElement.instance.width_Gette
r_(this); | 2099 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.wi
dth_Getter_(unwrap_jso(this))); |
| 1665 | 2100 |
| 1666 @DomName('SVGFEFloodElement.x') | 2101 @DomName('SVGFEFloodElement.x') |
| 1667 @DocsEditable() | 2102 @DocsEditable() |
| 1668 AnimatedLength get x => _blink.BlinkSVGFEFloodElement.instance.x_Getter_(this)
; | 2103 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.x_Gett
er_(unwrap_jso(this))); |
| 1669 | 2104 |
| 1670 @DomName('SVGFEFloodElement.y') | 2105 @DomName('SVGFEFloodElement.y') |
| 1671 @DocsEditable() | 2106 @DocsEditable() |
| 1672 AnimatedLength get y => _blink.BlinkSVGFEFloodElement.instance.y_Getter_(this)
; | 2107 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.y_Gett
er_(unwrap_jso(this))); |
| 1673 | 2108 |
| 1674 } | 2109 } |
| 1675 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1676 // for details. All rights reserved. Use of this source code is governed by a | 2111 // for details. All rights reserved. Use of this source code is governed by a |
| 1677 // BSD-style license that can be found in the LICENSE file. | 2112 // BSD-style license that can be found in the LICENSE file. |
| 1678 | 2113 |
| 1679 // WARNING: Do not edit - generated code. | 2114 // WARNING: Do not edit - generated code. |
| 1680 | 2115 |
| 1681 | 2116 |
| 1682 @DocsEditable() | 2117 @DocsEditable() |
| 1683 @DomName('SVGFEFuncAElement') | 2118 @DomName('SVGFEFuncAElement') |
| 1684 @SupportedBrowser(SupportedBrowser.CHROME) | 2119 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1685 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2120 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1686 @SupportedBrowser(SupportedBrowser.IE, '10') | 2121 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1687 @SupportedBrowser(SupportedBrowser.SAFARI) | 2122 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1688 @Unstable() | 2123 @Unstable() |
| 1689 class FEFuncAElement extends _SVGComponentTransferFunctionElement { | 2124 class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
| 1690 // To suppress missing implicit constructor warnings. | 2125 // To suppress missing implicit constructor warnings. |
| 1691 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } | 2126 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } |
| 1692 | 2127 |
| 1693 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') | 2128 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') |
| 1694 @DocsEditable() | 2129 @DocsEditable() |
| 1695 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); | 2130 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 |
| 1696 /** | 2143 /** |
| 1697 * Constructor instantiated by the DOM when a custom element has been created. | 2144 * Constructor instantiated by the DOM when a custom element has been created. |
| 1698 * | 2145 * |
| 1699 * This can only be called by subclasses from their created constructor. | 2146 * This can only be called by subclasses from their created constructor. |
| 1700 */ | 2147 */ |
| 1701 FEFuncAElement.created() : super.created(); | 2148 FEFuncAElement.created() : super.created(); |
| 1702 | 2149 |
| 1703 /// Checks if this type is supported on the current platform. | 2150 /// Checks if this type is supported on the current platform. |
| 1704 static bool get supported => true; | 2151 static bool get supported => true; |
| 1705 | 2152 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1718 @SupportedBrowser(SupportedBrowser.IE, '10') | 2165 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1719 @SupportedBrowser(SupportedBrowser.SAFARI) | 2166 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1720 @Unstable() | 2167 @Unstable() |
| 1721 class FEFuncBElement extends _SVGComponentTransferFunctionElement { | 2168 class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
| 1722 // To suppress missing implicit constructor warnings. | 2169 // To suppress missing implicit constructor warnings. |
| 1723 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } | 2170 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } |
| 1724 | 2171 |
| 1725 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') | 2172 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') |
| 1726 @DocsEditable() | 2173 @DocsEditable() |
| 1727 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); | 2174 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 |
| 1728 /** | 2187 /** |
| 1729 * Constructor instantiated by the DOM when a custom element has been created. | 2188 * Constructor instantiated by the DOM when a custom element has been created. |
| 1730 * | 2189 * |
| 1731 * This can only be called by subclasses from their created constructor. | 2190 * This can only be called by subclasses from their created constructor. |
| 1732 */ | 2191 */ |
| 1733 FEFuncBElement.created() : super.created(); | 2192 FEFuncBElement.created() : super.created(); |
| 1734 | 2193 |
| 1735 /// Checks if this type is supported on the current platform. | 2194 /// Checks if this type is supported on the current platform. |
| 1736 static bool get supported => true; | 2195 static bool get supported => true; |
| 1737 | 2196 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1750 @SupportedBrowser(SupportedBrowser.IE, '10') | 2209 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1751 @SupportedBrowser(SupportedBrowser.SAFARI) | 2210 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1752 @Unstable() | 2211 @Unstable() |
| 1753 class FEFuncGElement extends _SVGComponentTransferFunctionElement { | 2212 class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
| 1754 // To suppress missing implicit constructor warnings. | 2213 // To suppress missing implicit constructor warnings. |
| 1755 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } | 2214 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } |
| 1756 | 2215 |
| 1757 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') | 2216 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') |
| 1758 @DocsEditable() | 2217 @DocsEditable() |
| 1759 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); | 2218 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 |
| 1760 /** | 2231 /** |
| 1761 * Constructor instantiated by the DOM when a custom element has been created. | 2232 * Constructor instantiated by the DOM when a custom element has been created. |
| 1762 * | 2233 * |
| 1763 * This can only be called by subclasses from their created constructor. | 2234 * This can only be called by subclasses from their created constructor. |
| 1764 */ | 2235 */ |
| 1765 FEFuncGElement.created() : super.created(); | 2236 FEFuncGElement.created() : super.created(); |
| 1766 | 2237 |
| 1767 /// Checks if this type is supported on the current platform. | 2238 /// Checks if this type is supported on the current platform. |
| 1768 static bool get supported => true; | 2239 static bool get supported => true; |
| 1769 | 2240 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1782 @SupportedBrowser(SupportedBrowser.IE, '10') | 2253 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1783 @SupportedBrowser(SupportedBrowser.SAFARI) | 2254 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1784 @Unstable() | 2255 @Unstable() |
| 1785 class FEFuncRElement extends _SVGComponentTransferFunctionElement { | 2256 class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
| 1786 // To suppress missing implicit constructor warnings. | 2257 // To suppress missing implicit constructor warnings. |
| 1787 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } | 2258 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } |
| 1788 | 2259 |
| 1789 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') | 2260 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') |
| 1790 @DocsEditable() | 2261 @DocsEditable() |
| 1791 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); | 2262 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 |
| 1792 /** | 2275 /** |
| 1793 * Constructor instantiated by the DOM when a custom element has been created. | 2276 * Constructor instantiated by the DOM when a custom element has been created. |
| 1794 * | 2277 * |
| 1795 * This can only be called by subclasses from their created constructor. | 2278 * This can only be called by subclasses from their created constructor. |
| 1796 */ | 2279 */ |
| 1797 FEFuncRElement.created() : super.created(); | 2280 FEFuncRElement.created() : super.created(); |
| 1798 | 2281 |
| 1799 /// Checks if this type is supported on the current platform. | 2282 /// Checks if this type is supported on the current platform. |
| 1800 static bool get supported => true; | 2283 static bool get supported => true; |
| 1801 | 2284 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1814 @SupportedBrowser(SupportedBrowser.IE, '10') | 2297 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1815 @SupportedBrowser(SupportedBrowser.SAFARI) | 2298 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1816 @Unstable() | 2299 @Unstable() |
| 1817 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { | 2300 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
| 1818 // To suppress missing implicit constructor warnings. | 2301 // To suppress missing implicit constructor warnings. |
| 1819 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } | 2302 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } |
| 1820 | 2303 |
| 1821 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') | 2304 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') |
| 1822 @DocsEditable() | 2305 @DocsEditable() |
| 1823 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); | 2306 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 |
| 1824 /** | 2319 /** |
| 1825 * Constructor instantiated by the DOM when a custom element has been created. | 2320 * Constructor instantiated by the DOM when a custom element has been created. |
| 1826 * | 2321 * |
| 1827 * This can only be called by subclasses from their created constructor. | 2322 * This can only be called by subclasses from their created constructor. |
| 1828 */ | 2323 */ |
| 1829 FEGaussianBlurElement.created() : super.created(); | 2324 FEGaussianBlurElement.created() : super.created(); |
| 1830 | 2325 |
| 1831 /// Checks if this type is supported on the current platform. | 2326 /// Checks if this type is supported on the current platform. |
| 1832 static bool get supported => true; | 2327 static bool get supported => true; |
| 1833 | 2328 |
| 1834 @DomName('SVGFEGaussianBlurElement.in1') | 2329 @DomName('SVGFEGaussianBlurElement.in1') |
| 1835 @DocsEditable() | 2330 @DocsEditable() |
| 1836 AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.instance.in1_Ge
tter_(this); | 2331 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instan
ce.in1_Getter_(unwrap_jso(this))); |
| 1837 | 2332 |
| 1838 @DomName('SVGFEGaussianBlurElement.stdDeviationX') | 2333 @DomName('SVGFEGaussianBlurElement.stdDeviationX') |
| 1839 @DocsEditable() | 2334 @DocsEditable() |
| 1840 AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.insta
nce.stdDeviationX_Getter_(this); | 2335 AnimatedNumber get stdDeviationX => wrap_jso(_blink.BlinkSVGFEGaussianBlurElem
ent.instance.stdDeviationX_Getter_(unwrap_jso(this))); |
| 1841 | 2336 |
| 1842 @DomName('SVGFEGaussianBlurElement.stdDeviationY') | 2337 @DomName('SVGFEGaussianBlurElement.stdDeviationY') |
| 1843 @DocsEditable() | 2338 @DocsEditable() |
| 1844 AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.insta
nce.stdDeviationY_Getter_(this); | 2339 AnimatedNumber get stdDeviationY => wrap_jso(_blink.BlinkSVGFEGaussianBlurElem
ent.instance.stdDeviationY_Getter_(unwrap_jso(this))); |
| 1845 | 2340 |
| 1846 @DomName('SVGFEGaussianBlurElement.setStdDeviation') | 2341 @DomName('SVGFEGaussianBlurElement.setStdDeviation') |
| 1847 @DocsEditable() | 2342 @DocsEditable() |
| 1848 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF
EGaussianBlurElement.instance.setStdDeviation_Callback_2_(this, stdDeviationX, s
tdDeviationY); | 2343 void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGF
EGaussianBlurElement.instance.setStdDeviation_Callback_2_(unwrap_jso(this), stdD
eviationX, stdDeviationY); |
| 1849 | 2344 |
| 1850 @DomName('SVGFEGaussianBlurElement.height') | 2345 @DomName('SVGFEGaussianBlurElement.height') |
| 1851 @DocsEditable() | 2346 @DocsEditable() |
| 1852 AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.instance.hei
ght_Getter_(this); | 2347 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.ins
tance.height_Getter_(unwrap_jso(this))); |
| 1853 | 2348 |
| 1854 @DomName('SVGFEGaussianBlurElement.result') | 2349 @DomName('SVGFEGaussianBlurElement.result') |
| 1855 @DocsEditable() | 2350 @DocsEditable() |
| 1856 AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.instance.res
ult_Getter_(this); | 2351 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.ins
tance.result_Getter_(unwrap_jso(this))); |
| 1857 | 2352 |
| 1858 @DomName('SVGFEGaussianBlurElement.width') | 2353 @DomName('SVGFEGaussianBlurElement.width') |
| 1859 @DocsEditable() | 2354 @DocsEditable() |
| 1860 AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.instance.widt
h_Getter_(this); | 2355 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.inst
ance.width_Getter_(unwrap_jso(this))); |
| 1861 | 2356 |
| 1862 @DomName('SVGFEGaussianBlurElement.x') | 2357 @DomName('SVGFEGaussianBlurElement.x') |
| 1863 @DocsEditable() | 2358 @DocsEditable() |
| 1864 AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.instance.x_Getter
_(this); | 2359 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance
.x_Getter_(unwrap_jso(this))); |
| 1865 | 2360 |
| 1866 @DomName('SVGFEGaussianBlurElement.y') | 2361 @DomName('SVGFEGaussianBlurElement.y') |
| 1867 @DocsEditable() | 2362 @DocsEditable() |
| 1868 AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.instance.y_Getter
_(this); | 2363 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance
.y_Getter_(unwrap_jso(this))); |
| 1869 | 2364 |
| 1870 } | 2365 } |
| 1871 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2366 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1872 // for details. All rights reserved. Use of this source code is governed by a | 2367 // for details. All rights reserved. Use of this source code is governed by a |
| 1873 // BSD-style license that can be found in the LICENSE file. | 2368 // BSD-style license that can be found in the LICENSE file. |
| 1874 | 2369 |
| 1875 // WARNING: Do not edit - generated code. | 2370 // WARNING: Do not edit - generated code. |
| 1876 | 2371 |
| 1877 | 2372 |
| 1878 @DocsEditable() | 2373 @DocsEditable() |
| 1879 @DomName('SVGFEImageElement') | 2374 @DomName('SVGFEImageElement') |
| 1880 @SupportedBrowser(SupportedBrowser.CHROME) | 2375 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1881 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2376 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1882 @SupportedBrowser(SupportedBrowser.IE, '10') | 2377 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1883 @SupportedBrowser(SupportedBrowser.SAFARI) | 2378 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1884 @Unstable() | 2379 @Unstable() |
| 1885 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { | 2380 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { |
| 1886 // To suppress missing implicit constructor warnings. | 2381 // To suppress missing implicit constructor warnings. |
| 1887 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } | 2382 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } |
| 1888 | 2383 |
| 1889 @DomName('SVGFEImageElement.SVGFEImageElement') | 2384 @DomName('SVGFEImageElement.SVGFEImageElement') |
| 1890 @DocsEditable() | 2385 @DocsEditable() |
| 1891 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); | 2386 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 |
| 1892 /** | 2399 /** |
| 1893 * Constructor instantiated by the DOM when a custom element has been created. | 2400 * Constructor instantiated by the DOM when a custom element has been created. |
| 1894 * | 2401 * |
| 1895 * This can only be called by subclasses from their created constructor. | 2402 * This can only be called by subclasses from their created constructor. |
| 1896 */ | 2403 */ |
| 1897 FEImageElement.created() : super.created(); | 2404 FEImageElement.created() : super.created(); |
| 1898 | 2405 |
| 1899 /// Checks if this type is supported on the current platform. | 2406 /// Checks if this type is supported on the current platform. |
| 1900 static bool get supported => true; | 2407 static bool get supported => true; |
| 1901 | 2408 |
| 1902 @DomName('SVGFEImageElement.preserveAspectRatio') | 2409 @DomName('SVGFEImageElement.preserveAspectRatio') |
| 1903 @DocsEditable() | 2410 @DocsEditable() |
| 1904 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageE
lement.instance.preserveAspectRatio_Getter_(this); | 2411 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GFEImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 1905 | 2412 |
| 1906 @DomName('SVGFEImageElement.height') | 2413 @DomName('SVGFEImageElement.height') |
| 1907 @DocsEditable() | 2414 @DocsEditable() |
| 1908 AnimatedLength get height => _blink.BlinkSVGFEImageElement.instance.height_Get
ter_(this); | 2415 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEImageElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| 1909 | 2416 |
| 1910 @DomName('SVGFEImageElement.result') | 2417 @DomName('SVGFEImageElement.result') |
| 1911 @DocsEditable() | 2418 @DocsEditable() |
| 1912 AnimatedString get result => _blink.BlinkSVGFEImageElement.instance.result_Get
ter_(this); | 2419 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEImageElement.instance.r
esult_Getter_(unwrap_jso(this))); |
| 1913 | 2420 |
| 1914 @DomName('SVGFEImageElement.width') | 2421 @DomName('SVGFEImageElement.width') |
| 1915 @DocsEditable() | 2422 @DocsEditable() |
| 1916 AnimatedLength get width => _blink.BlinkSVGFEImageElement.instance.width_Gette
r_(this); | 2423 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEImageElement.instance.wi
dth_Getter_(unwrap_jso(this))); |
| 1917 | 2424 |
| 1918 @DomName('SVGFEImageElement.x') | 2425 @DomName('SVGFEImageElement.x') |
| 1919 @DocsEditable() | 2426 @DocsEditable() |
| 1920 AnimatedLength get x => _blink.BlinkSVGFEImageElement.instance.x_Getter_(this)
; | 2427 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEImageElement.instance.x_Gett
er_(unwrap_jso(this))); |
| 1921 | 2428 |
| 1922 @DomName('SVGFEImageElement.y') | 2429 @DomName('SVGFEImageElement.y') |
| 1923 @DocsEditable() | 2430 @DocsEditable() |
| 1924 AnimatedLength get y => _blink.BlinkSVGFEImageElement.instance.y_Getter_(this)
; | 2431 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEImageElement.instance.y_Gett
er_(unwrap_jso(this))); |
| 1925 | 2432 |
| 1926 @DomName('SVGFEImageElement.href') | 2433 @DomName('SVGFEImageElement.href') |
| 1927 @DocsEditable() | 2434 @DocsEditable() |
| 1928 AnimatedString get href => _blink.BlinkSVGFEImageElement.instance.href_Getter_
(this); | 2435 AnimatedString get href => wrap_jso(_blink.BlinkSVGFEImageElement.instance.hre
f_Getter_(unwrap_jso(this))); |
| 1929 | 2436 |
| 1930 } | 2437 } |
| 1931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1932 // for details. All rights reserved. Use of this source code is governed by a | 2439 // for details. All rights reserved. Use of this source code is governed by a |
| 1933 // BSD-style license that can be found in the LICENSE file. | 2440 // BSD-style license that can be found in the LICENSE file. |
| 1934 | 2441 |
| 1935 // WARNING: Do not edit - generated code. | 2442 // WARNING: Do not edit - generated code. |
| 1936 | 2443 |
| 1937 | 2444 |
| 1938 @DocsEditable() | 2445 @DocsEditable() |
| 1939 @DomName('SVGFEMergeElement') | 2446 @DomName('SVGFEMergeElement') |
| 1940 @SupportedBrowser(SupportedBrowser.CHROME) | 2447 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1941 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2448 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1942 @SupportedBrowser(SupportedBrowser.IE, '10') | 2449 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1943 @SupportedBrowser(SupportedBrowser.SAFARI) | 2450 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1944 @Unstable() | 2451 @Unstable() |
| 1945 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 2452 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 1946 // To suppress missing implicit constructor warnings. | 2453 // To suppress missing implicit constructor warnings. |
| 1947 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } | 2454 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } |
| 1948 | 2455 |
| 1949 @DomName('SVGFEMergeElement.SVGFEMergeElement') | 2456 @DomName('SVGFEMergeElement.SVGFEMergeElement') |
| 1950 @DocsEditable() | 2457 @DocsEditable() |
| 1951 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); | 2458 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 |
| 1952 /** | 2471 /** |
| 1953 * Constructor instantiated by the DOM when a custom element has been created. | 2472 * Constructor instantiated by the DOM when a custom element has been created. |
| 1954 * | 2473 * |
| 1955 * This can only be called by subclasses from their created constructor. | 2474 * This can only be called by subclasses from their created constructor. |
| 1956 */ | 2475 */ |
| 1957 FEMergeElement.created() : super.created(); | 2476 FEMergeElement.created() : super.created(); |
| 1958 | 2477 |
| 1959 /// Checks if this type is supported on the current platform. | 2478 /// Checks if this type is supported on the current platform. |
| 1960 static bool get supported => true; | 2479 static bool get supported => true; |
| 1961 | 2480 |
| 1962 @DomName('SVGFEMergeElement.height') | 2481 @DomName('SVGFEMergeElement.height') |
| 1963 @DocsEditable() | 2482 @DocsEditable() |
| 1964 AnimatedLength get height => _blink.BlinkSVGFEMergeElement.instance.height_Get
ter_(this); | 2483 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| 1965 | 2484 |
| 1966 @DomName('SVGFEMergeElement.result') | 2485 @DomName('SVGFEMergeElement.result') |
| 1967 @DocsEditable() | 2486 @DocsEditable() |
| 1968 AnimatedString get result => _blink.BlinkSVGFEMergeElement.instance.result_Get
ter_(this); | 2487 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.r
esult_Getter_(unwrap_jso(this))); |
| 1969 | 2488 |
| 1970 @DomName('SVGFEMergeElement.width') | 2489 @DomName('SVGFEMergeElement.width') |
| 1971 @DocsEditable() | 2490 @DocsEditable() |
| 1972 AnimatedLength get width => _blink.BlinkSVGFEMergeElement.instance.width_Gette
r_(this); | 2491 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.wi
dth_Getter_(unwrap_jso(this))); |
| 1973 | 2492 |
| 1974 @DomName('SVGFEMergeElement.x') | 2493 @DomName('SVGFEMergeElement.x') |
| 1975 @DocsEditable() | 2494 @DocsEditable() |
| 1976 AnimatedLength get x => _blink.BlinkSVGFEMergeElement.instance.x_Getter_(this)
; | 2495 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.x_Gett
er_(unwrap_jso(this))); |
| 1977 | 2496 |
| 1978 @DomName('SVGFEMergeElement.y') | 2497 @DomName('SVGFEMergeElement.y') |
| 1979 @DocsEditable() | 2498 @DocsEditable() |
| 1980 AnimatedLength get y => _blink.BlinkSVGFEMergeElement.instance.y_Getter_(this)
; | 2499 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.y_Gett
er_(unwrap_jso(this))); |
| 1981 | 2500 |
| 1982 } | 2501 } |
| 1983 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1984 // for details. All rights reserved. Use of this source code is governed by a | 2503 // for details. All rights reserved. Use of this source code is governed by a |
| 1985 // BSD-style license that can be found in the LICENSE file. | 2504 // BSD-style license that can be found in the LICENSE file. |
| 1986 | 2505 |
| 1987 // WARNING: Do not edit - generated code. | 2506 // WARNING: Do not edit - generated code. |
| 1988 | 2507 |
| 1989 | 2508 |
| 1990 @DocsEditable() | 2509 @DocsEditable() |
| 1991 @DomName('SVGFEMergeNodeElement') | 2510 @DomName('SVGFEMergeNodeElement') |
| 1992 @SupportedBrowser(SupportedBrowser.CHROME) | 2511 @SupportedBrowser(SupportedBrowser.CHROME) |
| 1993 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2512 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 1994 @SupportedBrowser(SupportedBrowser.IE, '10') | 2513 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1995 @SupportedBrowser(SupportedBrowser.SAFARI) | 2514 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1996 @Unstable() | 2515 @Unstable() |
| 1997 class FEMergeNodeElement extends SvgElement { | 2516 class FEMergeNodeElement extends SvgElement { |
| 1998 // To suppress missing implicit constructor warnings. | 2517 // To suppress missing implicit constructor warnings. |
| 1999 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} | 2518 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} |
| 2000 | 2519 |
| 2001 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') | 2520 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') |
| 2002 @DocsEditable() | 2521 @DocsEditable() |
| 2003 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); | 2522 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 |
| 2004 /** | 2535 /** |
| 2005 * Constructor instantiated by the DOM when a custom element has been created. | 2536 * Constructor instantiated by the DOM when a custom element has been created. |
| 2006 * | 2537 * |
| 2007 * This can only be called by subclasses from their created constructor. | 2538 * This can only be called by subclasses from their created constructor. |
| 2008 */ | 2539 */ |
| 2009 FEMergeNodeElement.created() : super.created(); | 2540 FEMergeNodeElement.created() : super.created(); |
| 2010 | 2541 |
| 2011 /// Checks if this type is supported on the current platform. | 2542 /// Checks if this type is supported on the current platform. |
| 2012 static bool get supported => true; | 2543 static bool get supported => true; |
| 2013 | 2544 |
| 2014 @DomName('SVGFEMergeNodeElement.in1') | 2545 @DomName('SVGFEMergeNodeElement.in1') |
| 2015 @DocsEditable() | 2546 @DocsEditable() |
| 2016 AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.instance.in1_Gette
r_(this); | 2547 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMergeNodeElement.instance.
in1_Getter_(unwrap_jso(this))); |
| 2017 | 2548 |
| 2018 } | 2549 } |
| 2019 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2020 // for details. All rights reserved. Use of this source code is governed by a | 2551 // for details. All rights reserved. Use of this source code is governed by a |
| 2021 // BSD-style license that can be found in the LICENSE file. | 2552 // BSD-style license that can be found in the LICENSE file. |
| 2022 | 2553 |
| 2023 // WARNING: Do not edit - generated code. | 2554 // WARNING: Do not edit - generated code. |
| 2024 | 2555 |
| 2025 | 2556 |
| 2026 @DocsEditable() | 2557 @DocsEditable() |
| 2027 @DomName('SVGFEMorphologyElement') | 2558 @DomName('SVGFEMorphologyElement') |
| 2028 @SupportedBrowser(SupportedBrowser.CHROME) | 2559 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2029 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2560 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2030 @SupportedBrowser(SupportedBrowser.IE, '10') | 2561 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2031 @SupportedBrowser(SupportedBrowser.SAFARI) | 2562 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2032 @Unstable() | 2563 @Unstable() |
| 2033 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2564 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2034 // To suppress missing implicit constructor warnings. | 2565 // To suppress missing implicit constructor warnings. |
| 2035 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} | 2566 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 |
| 2036 /** | 2579 /** |
| 2037 * Constructor instantiated by the DOM when a custom element has been created. | 2580 * Constructor instantiated by the DOM when a custom element has been created. |
| 2038 * | 2581 * |
| 2039 * This can only be called by subclasses from their created constructor. | 2582 * This can only be called by subclasses from their created constructor. |
| 2040 */ | 2583 */ |
| 2041 FEMorphologyElement.created() : super.created(); | 2584 FEMorphologyElement.created() : super.created(); |
| 2042 | 2585 |
| 2043 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') | 2586 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') |
| 2044 @DocsEditable() | 2587 @DocsEditable() |
| 2045 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 2588 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 2046 | 2589 |
| 2047 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') | 2590 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') |
| 2048 @DocsEditable() | 2591 @DocsEditable() |
| 2049 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; | 2592 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 2050 | 2593 |
| 2051 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') | 2594 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN') |
| 2052 @DocsEditable() | 2595 @DocsEditable() |
| 2053 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; | 2596 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 2054 | 2597 |
| 2055 @DomName('SVGFEMorphologyElement.in1') | 2598 @DomName('SVGFEMorphologyElement.in1') |
| 2056 @DocsEditable() | 2599 @DocsEditable() |
| 2057 AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.instance.in1_Gett
er_(this); | 2600 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance
.in1_Getter_(unwrap_jso(this))); |
| 2058 | 2601 |
| 2059 @DomName('SVGFEMorphologyElement.operator') | 2602 @DomName('SVGFEMorphologyElement.operator') |
| 2060 @DocsEditable() | 2603 @DocsEditable() |
| 2061 AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.instanc
e.operator_Getter_(this); | 2604 AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFEMorphologyElemen
t.instance.operator_Getter_(unwrap_jso(this))); |
| 2062 | 2605 |
| 2063 @DomName('SVGFEMorphologyElement.radiusX') | 2606 @DomName('SVGFEMorphologyElement.radiusX') |
| 2064 @DocsEditable() | 2607 @DocsEditable() |
| 2065 AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.instance.radi
usX_Getter_(this); | 2608 AnimatedNumber get radiusX => wrap_jso(_blink.BlinkSVGFEMorphologyElement.inst
ance.radiusX_Getter_(unwrap_jso(this))); |
| 2066 | 2609 |
| 2067 @DomName('SVGFEMorphologyElement.radiusY') | 2610 @DomName('SVGFEMorphologyElement.radiusY') |
| 2068 @DocsEditable() | 2611 @DocsEditable() |
| 2069 AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.instance.radi
usY_Getter_(this); | 2612 AnimatedNumber get radiusY => wrap_jso(_blink.BlinkSVGFEMorphologyElement.inst
ance.radiusY_Getter_(unwrap_jso(this))); |
| 2070 | 2613 |
| 2071 @DomName('SVGFEMorphologyElement.height') | 2614 @DomName('SVGFEMorphologyElement.height') |
| 2072 @DocsEditable() | 2615 @DocsEditable() |
| 2073 AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.instance.heigh
t_Getter_(this); | 2616 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMorphologyElement.insta
nce.height_Getter_(unwrap_jso(this))); |
| 2074 | 2617 |
| 2075 @DomName('SVGFEMorphologyElement.result') | 2618 @DomName('SVGFEMorphologyElement.result') |
| 2076 @DocsEditable() | 2619 @DocsEditable() |
| 2077 AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.instance.resul
t_Getter_(this); | 2620 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMorphologyElement.insta
nce.result_Getter_(unwrap_jso(this))); |
| 2078 | 2621 |
| 2079 @DomName('SVGFEMorphologyElement.width') | 2622 @DomName('SVGFEMorphologyElement.width') |
| 2080 @DocsEditable() | 2623 @DocsEditable() |
| 2081 AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.instance.width_
Getter_(this); | 2624 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instan
ce.width_Getter_(unwrap_jso(this))); |
| 2082 | 2625 |
| 2083 @DomName('SVGFEMorphologyElement.x') | 2626 @DomName('SVGFEMorphologyElement.x') |
| 2084 @DocsEditable() | 2627 @DocsEditable() |
| 2085 AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.instance.x_Getter_(
this); | 2628 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.x
_Getter_(unwrap_jso(this))); |
| 2086 | 2629 |
| 2087 @DomName('SVGFEMorphologyElement.y') | 2630 @DomName('SVGFEMorphologyElement.y') |
| 2088 @DocsEditable() | 2631 @DocsEditable() |
| 2089 AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.instance.y_Getter_(
this); | 2632 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.y
_Getter_(unwrap_jso(this))); |
| 2090 | 2633 |
| 2091 } | 2634 } |
| 2092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2635 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2093 // for details. All rights reserved. Use of this source code is governed by a | 2636 // for details. All rights reserved. Use of this source code is governed by a |
| 2094 // BSD-style license that can be found in the LICENSE file. | 2637 // BSD-style license that can be found in the LICENSE file. |
| 2095 | 2638 |
| 2096 // WARNING: Do not edit - generated code. | 2639 // WARNING: Do not edit - generated code. |
| 2097 | 2640 |
| 2098 | 2641 |
| 2099 @DocsEditable() | 2642 @DocsEditable() |
| 2100 @DomName('SVGFEOffsetElement') | 2643 @DomName('SVGFEOffsetElement') |
| 2101 @SupportedBrowser(SupportedBrowser.CHROME) | 2644 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2102 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2645 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2103 @SupportedBrowser(SupportedBrowser.IE, '10') | 2646 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2104 @SupportedBrowser(SupportedBrowser.SAFARI) | 2647 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2105 @Unstable() | 2648 @Unstable() |
| 2106 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { | 2649 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
| 2107 // To suppress missing implicit constructor warnings. | 2650 // To suppress missing implicit constructor warnings. |
| 2108 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } | 2651 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } |
| 2109 | 2652 |
| 2110 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') | 2653 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') |
| 2111 @DocsEditable() | 2654 @DocsEditable() |
| 2112 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); | 2655 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 |
| 2113 /** | 2668 /** |
| 2114 * Constructor instantiated by the DOM when a custom element has been created. | 2669 * Constructor instantiated by the DOM when a custom element has been created. |
| 2115 * | 2670 * |
| 2116 * This can only be called by subclasses from their created constructor. | 2671 * This can only be called by subclasses from their created constructor. |
| 2117 */ | 2672 */ |
| 2118 FEOffsetElement.created() : super.created(); | 2673 FEOffsetElement.created() : super.created(); |
| 2119 | 2674 |
| 2120 /// Checks if this type is supported on the current platform. | 2675 /// Checks if this type is supported on the current platform. |
| 2121 static bool get supported => true; | 2676 static bool get supported => true; |
| 2122 | 2677 |
| 2123 @DomName('SVGFEOffsetElement.dx') | 2678 @DomName('SVGFEOffsetElement.dx') |
| 2124 @DocsEditable() | 2679 @DocsEditable() |
| 2125 AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.instance.dx_Getter_(th
is); | 2680 AnimatedNumber get dx => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dx_G
etter_(unwrap_jso(this))); |
| 2126 | 2681 |
| 2127 @DomName('SVGFEOffsetElement.dy') | 2682 @DomName('SVGFEOffsetElement.dy') |
| 2128 @DocsEditable() | 2683 @DocsEditable() |
| 2129 AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.instance.dy_Getter_(th
is); | 2684 AnimatedNumber get dy => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dy_G
etter_(unwrap_jso(this))); |
| 2130 | 2685 |
| 2131 @DomName('SVGFEOffsetElement.in1') | 2686 @DomName('SVGFEOffsetElement.in1') |
| 2132 @DocsEditable() | 2687 @DocsEditable() |
| 2133 AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.instance.in1_Getter_(
this); | 2688 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.in1
_Getter_(unwrap_jso(this))); |
| 2134 | 2689 |
| 2135 @DomName('SVGFEOffsetElement.height') | 2690 @DomName('SVGFEOffsetElement.height') |
| 2136 @DocsEditable() | 2691 @DocsEditable() |
| 2137 AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.instance.height_Ge
tter_(this); | 2692 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.
height_Getter_(unwrap_jso(this))); |
| 2138 | 2693 |
| 2139 @DomName('SVGFEOffsetElement.result') | 2694 @DomName('SVGFEOffsetElement.result') |
| 2140 @DocsEditable() | 2695 @DocsEditable() |
| 2141 AnimatedString get result => _blink.BlinkSVGFEOffsetElement.instance.result_Ge
tter_(this); | 2696 AnimatedString get result => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.
result_Getter_(unwrap_jso(this))); |
| 2142 | 2697 |
| 2143 @DomName('SVGFEOffsetElement.width') | 2698 @DomName('SVGFEOffsetElement.width') |
| 2144 @DocsEditable() | 2699 @DocsEditable() |
| 2145 AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.instance.width_Gett
er_(this); | 2700 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.w
idth_Getter_(unwrap_jso(this))); |
| 2146 | 2701 |
| 2147 @DomName('SVGFEOffsetElement.x') | 2702 @DomName('SVGFEOffsetElement.x') |
| 2148 @DocsEditable() | 2703 @DocsEditable() |
| 2149 AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.instance.x_Getter_(this
); | 2704 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.x_Get
ter_(unwrap_jso(this))); |
| 2150 | 2705 |
| 2151 @DomName('SVGFEOffsetElement.y') | 2706 @DomName('SVGFEOffsetElement.y') |
| 2152 @DocsEditable() | 2707 @DocsEditable() |
| 2153 AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.instance.y_Getter_(this
); | 2708 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.y_Get
ter_(unwrap_jso(this))); |
| 2154 | 2709 |
| 2155 } | 2710 } |
| 2156 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2157 // for details. All rights reserved. Use of this source code is governed by a | 2712 // for details. All rights reserved. Use of this source code is governed by a |
| 2158 // BSD-style license that can be found in the LICENSE file. | 2713 // BSD-style license that can be found in the LICENSE file. |
| 2159 | 2714 |
| 2160 // WARNING: Do not edit - generated code. | 2715 // WARNING: Do not edit - generated code. |
| 2161 | 2716 |
| 2162 | 2717 |
| 2163 @DocsEditable() | 2718 @DocsEditable() |
| 2164 @DomName('SVGFEPointLightElement') | 2719 @DomName('SVGFEPointLightElement') |
| 2165 @SupportedBrowser(SupportedBrowser.CHROME) | 2720 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2166 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2721 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2167 @SupportedBrowser(SupportedBrowser.IE, '10') | 2722 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2168 @SupportedBrowser(SupportedBrowser.SAFARI) | 2723 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2169 @Unstable() | 2724 @Unstable() |
| 2170 class FEPointLightElement extends SvgElement { | 2725 class FEPointLightElement extends SvgElement { |
| 2171 // To suppress missing implicit constructor warnings. | 2726 // To suppress missing implicit constructor warnings. |
| 2172 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} | 2727 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} |
| 2173 | 2728 |
| 2174 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') | 2729 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') |
| 2175 @DocsEditable() | 2730 @DocsEditable() |
| 2176 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); | 2731 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 |
| 2177 /** | 2744 /** |
| 2178 * Constructor instantiated by the DOM when a custom element has been created. | 2745 * Constructor instantiated by the DOM when a custom element has been created. |
| 2179 * | 2746 * |
| 2180 * This can only be called by subclasses from their created constructor. | 2747 * This can only be called by subclasses from their created constructor. |
| 2181 */ | 2748 */ |
| 2182 FEPointLightElement.created() : super.created(); | 2749 FEPointLightElement.created() : super.created(); |
| 2183 | 2750 |
| 2184 /// Checks if this type is supported on the current platform. | 2751 /// Checks if this type is supported on the current platform. |
| 2185 static bool get supported => true; | 2752 static bool get supported => true; |
| 2186 | 2753 |
| 2187 @DomName('SVGFEPointLightElement.x') | 2754 @DomName('SVGFEPointLightElement.x') |
| 2188 @DocsEditable() | 2755 @DocsEditable() |
| 2189 AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.instance.x_Getter_(
this); | 2756 AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.x
_Getter_(unwrap_jso(this))); |
| 2190 | 2757 |
| 2191 @DomName('SVGFEPointLightElement.y') | 2758 @DomName('SVGFEPointLightElement.y') |
| 2192 @DocsEditable() | 2759 @DocsEditable() |
| 2193 AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.instance.y_Getter_(
this); | 2760 AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.y
_Getter_(unwrap_jso(this))); |
| 2194 | 2761 |
| 2195 @DomName('SVGFEPointLightElement.z') | 2762 @DomName('SVGFEPointLightElement.z') |
| 2196 @DocsEditable() | 2763 @DocsEditable() |
| 2197 AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.instance.z_Getter_(
this); | 2764 AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.z
_Getter_(unwrap_jso(this))); |
| 2198 | 2765 |
| 2199 } | 2766 } |
| 2200 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2201 // for details. All rights reserved. Use of this source code is governed by a | 2768 // for details. All rights reserved. Use of this source code is governed by a |
| 2202 // BSD-style license that can be found in the LICENSE file. | 2769 // BSD-style license that can be found in the LICENSE file. |
| 2203 | 2770 |
| 2204 // WARNING: Do not edit - generated code. | 2771 // WARNING: Do not edit - generated code. |
| 2205 | 2772 |
| 2206 | 2773 |
| 2207 @DocsEditable() | 2774 @DocsEditable() |
| 2208 @DomName('SVGFESpecularLightingElement') | 2775 @DomName('SVGFESpecularLightingElement') |
| 2209 @SupportedBrowser(SupportedBrowser.CHROME) | 2776 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2210 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2777 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2211 @SupportedBrowser(SupportedBrowser.IE, '10') | 2778 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2212 @SupportedBrowser(SupportedBrowser.SAFARI) | 2779 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2213 @Unstable() | 2780 @Unstable() |
| 2214 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { | 2781 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
| 2215 // To suppress missing implicit constructor warnings. | 2782 // To suppress missing implicit constructor warnings. |
| 2216 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } | 2783 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 2217 | 2784 |
| 2218 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') | 2785 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') |
| 2219 @DocsEditable() | 2786 @DocsEditable() |
| 2220 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); | 2787 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 |
| 2221 /** | 2800 /** |
| 2222 * Constructor instantiated by the DOM when a custom element has been created. | 2801 * Constructor instantiated by the DOM when a custom element has been created. |
| 2223 * | 2802 * |
| 2224 * This can only be called by subclasses from their created constructor. | 2803 * This can only be called by subclasses from their created constructor. |
| 2225 */ | 2804 */ |
| 2226 FESpecularLightingElement.created() : super.created(); | 2805 FESpecularLightingElement.created() : super.created(); |
| 2227 | 2806 |
| 2228 /// Checks if this type is supported on the current platform. | 2807 /// Checks if this type is supported on the current platform. |
| 2229 static bool get supported => true; | 2808 static bool get supported => true; |
| 2230 | 2809 |
| 2231 @DomName('SVGFESpecularLightingElement.in1') | 2810 @DomName('SVGFESpecularLightingElement.in1') |
| 2232 @DocsEditable() | 2811 @DocsEditable() |
| 2233 AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.instance.in
1_Getter_(this); | 2812 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.in
stance.in1_Getter_(unwrap_jso(this))); |
| 2234 | 2813 |
| 2235 @DomName('SVGFESpecularLightingElement.specularConstant') | 2814 @DomName('SVGFESpecularLightingElement.specularConstant') |
| 2236 @DocsEditable() | 2815 @DocsEditable() |
| 2237 AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElemen
t.instance.specularConstant_Getter_(this); | 2816 AnimatedNumber get specularConstant => wrap_jso(_blink.BlinkSVGFESpecularLight
ingElement.instance.specularConstant_Getter_(unwrap_jso(this))); |
| 2238 | 2817 |
| 2239 @DomName('SVGFESpecularLightingElement.specularExponent') | 2818 @DomName('SVGFESpecularLightingElement.specularExponent') |
| 2240 @DocsEditable() | 2819 @DocsEditable() |
| 2241 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElemen
t.instance.specularExponent_Getter_(this); | 2820 AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpecularLight
ingElement.instance.specularExponent_Getter_(unwrap_jso(this))); |
| 2242 | 2821 |
| 2243 @DomName('SVGFESpecularLightingElement.surfaceScale') | 2822 @DomName('SVGFESpecularLightingElement.surfaceScale') |
| 2244 @DocsEditable() | 2823 @DocsEditable() |
| 2245 AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.in
stance.surfaceScale_Getter_(this); | 2824 AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFESpecularLightingE
lement.instance.surfaceScale_Getter_(unwrap_jso(this))); |
| 2246 | 2825 |
| 2247 @DomName('SVGFESpecularLightingElement.height') | 2826 @DomName('SVGFESpecularLightingElement.height') |
| 2248 @DocsEditable() | 2827 @DocsEditable() |
| 2249 AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.instance
.height_Getter_(this); | 2828 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFESpecularLightingElement
.instance.height_Getter_(unwrap_jso(this))); |
| 2250 | 2829 |
| 2251 @DomName('SVGFESpecularLightingElement.result') | 2830 @DomName('SVGFESpecularLightingElement.result') |
| 2252 @DocsEditable() | 2831 @DocsEditable() |
| 2253 AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.instance
.result_Getter_(this); | 2832 AnimatedString get result => wrap_jso(_blink.BlinkSVGFESpecularLightingElement
.instance.result_Getter_(unwrap_jso(this))); |
| 2254 | 2833 |
| 2255 @DomName('SVGFESpecularLightingElement.width') | 2834 @DomName('SVGFESpecularLightingElement.width') |
| 2256 @DocsEditable() | 2835 @DocsEditable() |
| 2257 AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.instance.
width_Getter_(this); | 2836 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.
instance.width_Getter_(unwrap_jso(this))); |
| 2258 | 2837 |
| 2259 @DomName('SVGFESpecularLightingElement.x') | 2838 @DomName('SVGFESpecularLightingElement.x') |
| 2260 @DocsEditable() | 2839 @DocsEditable() |
| 2261 AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.instance.x_Ge
tter_(this); | 2840 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.inst
ance.x_Getter_(unwrap_jso(this))); |
| 2262 | 2841 |
| 2263 @DomName('SVGFESpecularLightingElement.y') | 2842 @DomName('SVGFESpecularLightingElement.y') |
| 2264 @DocsEditable() | 2843 @DocsEditable() |
| 2265 AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.instance.y_Ge
tter_(this); | 2844 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.inst
ance.y_Getter_(unwrap_jso(this))); |
| 2266 | 2845 |
| 2267 } | 2846 } |
| 2268 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2847 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2269 // for details. All rights reserved. Use of this source code is governed by a | 2848 // for details. All rights reserved. Use of this source code is governed by a |
| 2270 // BSD-style license that can be found in the LICENSE file. | 2849 // BSD-style license that can be found in the LICENSE file. |
| 2271 | 2850 |
| 2272 // WARNING: Do not edit - generated code. | 2851 // WARNING: Do not edit - generated code. |
| 2273 | 2852 |
| 2274 | 2853 |
| 2275 @DocsEditable() | 2854 @DocsEditable() |
| 2276 @DomName('SVGFESpotLightElement') | 2855 @DomName('SVGFESpotLightElement') |
| 2277 @SupportedBrowser(SupportedBrowser.CHROME) | 2856 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2278 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2857 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2279 @SupportedBrowser(SupportedBrowser.IE, '10') | 2858 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2280 @SupportedBrowser(SupportedBrowser.SAFARI) | 2859 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2281 @Unstable() | 2860 @Unstable() |
| 2282 class FESpotLightElement extends SvgElement { | 2861 class FESpotLightElement extends SvgElement { |
| 2283 // To suppress missing implicit constructor warnings. | 2862 // To suppress missing implicit constructor warnings. |
| 2284 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} | 2863 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} |
| 2285 | 2864 |
| 2286 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') | 2865 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') |
| 2287 @DocsEditable() | 2866 @DocsEditable() |
| 2288 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); | 2867 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 |
| 2289 /** | 2880 /** |
| 2290 * Constructor instantiated by the DOM when a custom element has been created. | 2881 * Constructor instantiated by the DOM when a custom element has been created. |
| 2291 * | 2882 * |
| 2292 * This can only be called by subclasses from their created constructor. | 2883 * This can only be called by subclasses from their created constructor. |
| 2293 */ | 2884 */ |
| 2294 FESpotLightElement.created() : super.created(); | 2885 FESpotLightElement.created() : super.created(); |
| 2295 | 2886 |
| 2296 /// Checks if this type is supported on the current platform. | 2887 /// Checks if this type is supported on the current platform. |
| 2297 static bool get supported => true; | 2888 static bool get supported => true; |
| 2298 | 2889 |
| 2299 @DomName('SVGFESpotLightElement.limitingConeAngle') | 2890 @DomName('SVGFESpotLightElement.limitingConeAngle') |
| 2300 @DocsEditable() | 2891 @DocsEditable() |
| 2301 AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.inst
ance.limitingConeAngle_Getter_(this); | 2892 AnimatedNumber get limitingConeAngle => wrap_jso(_blink.BlinkSVGFESpotLightEle
ment.instance.limitingConeAngle_Getter_(unwrap_jso(this))); |
| 2302 | 2893 |
| 2303 @DomName('SVGFESpotLightElement.pointsAtX') | 2894 @DomName('SVGFESpotLightElement.pointsAtX') |
| 2304 @DocsEditable() | 2895 @DocsEditable() |
| 2305 AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.instance.poi
ntsAtX_Getter_(this); | 2896 AnimatedNumber get pointsAtX => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins
tance.pointsAtX_Getter_(unwrap_jso(this))); |
| 2306 | 2897 |
| 2307 @DomName('SVGFESpotLightElement.pointsAtY') | 2898 @DomName('SVGFESpotLightElement.pointsAtY') |
| 2308 @DocsEditable() | 2899 @DocsEditable() |
| 2309 AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.instance.poi
ntsAtY_Getter_(this); | 2900 AnimatedNumber get pointsAtY => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins
tance.pointsAtY_Getter_(unwrap_jso(this))); |
| 2310 | 2901 |
| 2311 @DomName('SVGFESpotLightElement.pointsAtZ') | 2902 @DomName('SVGFESpotLightElement.pointsAtZ') |
| 2312 @DocsEditable() | 2903 @DocsEditable() |
| 2313 AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.instance.poi
ntsAtZ_Getter_(this); | 2904 AnimatedNumber get pointsAtZ => wrap_jso(_blink.BlinkSVGFESpotLightElement.ins
tance.pointsAtZ_Getter_(unwrap_jso(this))); |
| 2314 | 2905 |
| 2315 @DomName('SVGFESpotLightElement.specularExponent') | 2906 @DomName('SVGFESpotLightElement.specularExponent') |
| 2316 @DocsEditable() | 2907 @DocsEditable() |
| 2317 AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.insta
nce.specularExponent_Getter_(this); | 2908 AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpotLightElem
ent.instance.specularExponent_Getter_(unwrap_jso(this))); |
| 2318 | 2909 |
| 2319 @DomName('SVGFESpotLightElement.x') | 2910 @DomName('SVGFESpotLightElement.x') |
| 2320 @DocsEditable() | 2911 @DocsEditable() |
| 2321 AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.instance.x_Getter_(t
his); | 2912 AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.x_
Getter_(unwrap_jso(this))); |
| 2322 | 2913 |
| 2323 @DomName('SVGFESpotLightElement.y') | 2914 @DomName('SVGFESpotLightElement.y') |
| 2324 @DocsEditable() | 2915 @DocsEditable() |
| 2325 AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.instance.y_Getter_(t
his); | 2916 AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.y_
Getter_(unwrap_jso(this))); |
| 2326 | 2917 |
| 2327 @DomName('SVGFESpotLightElement.z') | 2918 @DomName('SVGFESpotLightElement.z') |
| 2328 @DocsEditable() | 2919 @DocsEditable() |
| 2329 AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.instance.z_Getter_(t
his); | 2920 AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.z_
Getter_(unwrap_jso(this))); |
| 2330 | 2921 |
| 2331 } | 2922 } |
| 2332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2333 // for details. All rights reserved. Use of this source code is governed by a | 2924 // for details. All rights reserved. Use of this source code is governed by a |
| 2334 // BSD-style license that can be found in the LICENSE file. | 2925 // BSD-style license that can be found in the LICENSE file. |
| 2335 | 2926 |
| 2336 // WARNING: Do not edit - generated code. | 2927 // WARNING: Do not edit - generated code. |
| 2337 | 2928 |
| 2338 | 2929 |
| 2339 @DocsEditable() | 2930 @DocsEditable() |
| 2340 @DomName('SVGFETileElement') | 2931 @DomName('SVGFETileElement') |
| 2341 @SupportedBrowser(SupportedBrowser.CHROME) | 2932 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2342 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2933 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2343 @SupportedBrowser(SupportedBrowser.IE, '10') | 2934 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2344 @SupportedBrowser(SupportedBrowser.SAFARI) | 2935 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2345 @Unstable() | 2936 @Unstable() |
| 2346 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { | 2937 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
| 2347 // To suppress missing implicit constructor warnings. | 2938 // To suppress missing implicit constructor warnings. |
| 2348 factory FETileElement._() { throw new UnsupportedError("Not supported"); } | 2939 factory FETileElement._() { throw new UnsupportedError("Not supported"); } |
| 2349 | 2940 |
| 2350 @DomName('SVGFETileElement.SVGFETileElement') | 2941 @DomName('SVGFETileElement.SVGFETileElement') |
| 2351 @DocsEditable() | 2942 @DocsEditable() |
| 2352 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); | 2943 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 |
| 2353 /** | 2956 /** |
| 2354 * Constructor instantiated by the DOM when a custom element has been created. | 2957 * Constructor instantiated by the DOM when a custom element has been created. |
| 2355 * | 2958 * |
| 2356 * This can only be called by subclasses from their created constructor. | 2959 * This can only be called by subclasses from their created constructor. |
| 2357 */ | 2960 */ |
| 2358 FETileElement.created() : super.created(); | 2961 FETileElement.created() : super.created(); |
| 2359 | 2962 |
| 2360 /// Checks if this type is supported on the current platform. | 2963 /// Checks if this type is supported on the current platform. |
| 2361 static bool get supported => true; | 2964 static bool get supported => true; |
| 2362 | 2965 |
| 2363 @DomName('SVGFETileElement.in1') | 2966 @DomName('SVGFETileElement.in1') |
| 2364 @DocsEditable() | 2967 @DocsEditable() |
| 2365 AnimatedString get in1 => _blink.BlinkSVGFETileElement.instance.in1_Getter_(th
is); | 2968 AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFETileElement.instance.in1_G
etter_(unwrap_jso(this))); |
| 2366 | 2969 |
| 2367 @DomName('SVGFETileElement.height') | 2970 @DomName('SVGFETileElement.height') |
| 2368 @DocsEditable() | 2971 @DocsEditable() |
| 2369 AnimatedLength get height => _blink.BlinkSVGFETileElement.instance.height_Gett
er_(this); | 2972 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETileElement.instance.he
ight_Getter_(unwrap_jso(this))); |
| 2370 | 2973 |
| 2371 @DomName('SVGFETileElement.result') | 2974 @DomName('SVGFETileElement.result') |
| 2372 @DocsEditable() | 2975 @DocsEditable() |
| 2373 AnimatedString get result => _blink.BlinkSVGFETileElement.instance.result_Gett
er_(this); | 2976 AnimatedString get result => wrap_jso(_blink.BlinkSVGFETileElement.instance.re
sult_Getter_(unwrap_jso(this))); |
| 2374 | 2977 |
| 2375 @DomName('SVGFETileElement.width') | 2978 @DomName('SVGFETileElement.width') |
| 2376 @DocsEditable() | 2979 @DocsEditable() |
| 2377 AnimatedLength get width => _blink.BlinkSVGFETileElement.instance.width_Getter
_(this); | 2980 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETileElement.instance.wid
th_Getter_(unwrap_jso(this))); |
| 2378 | 2981 |
| 2379 @DomName('SVGFETileElement.x') | 2982 @DomName('SVGFETileElement.x') |
| 2380 @DocsEditable() | 2983 @DocsEditable() |
| 2381 AnimatedLength get x => _blink.BlinkSVGFETileElement.instance.x_Getter_(this); | 2984 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETileElement.instance.x_Gette
r_(unwrap_jso(this))); |
| 2382 | 2985 |
| 2383 @DomName('SVGFETileElement.y') | 2986 @DomName('SVGFETileElement.y') |
| 2384 @DocsEditable() | 2987 @DocsEditable() |
| 2385 AnimatedLength get y => _blink.BlinkSVGFETileElement.instance.y_Getter_(this); | 2988 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETileElement.instance.y_Gette
r_(unwrap_jso(this))); |
| 2386 | 2989 |
| 2387 } | 2990 } |
| 2388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2389 // for details. All rights reserved. Use of this source code is governed by a | 2992 // for details. All rights reserved. Use of this source code is governed by a |
| 2390 // BSD-style license that can be found in the LICENSE file. | 2993 // BSD-style license that can be found in the LICENSE file. |
| 2391 | 2994 |
| 2392 // WARNING: Do not edit - generated code. | 2995 // WARNING: Do not edit - generated code. |
| 2393 | 2996 |
| 2394 | 2997 |
| 2395 @DocsEditable() | 2998 @DocsEditable() |
| 2396 @DomName('SVGFETurbulenceElement') | 2999 @DomName('SVGFETurbulenceElement') |
| 2397 @SupportedBrowser(SupportedBrowser.CHROME) | 3000 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2398 @SupportedBrowser(SupportedBrowser.FIREFOX) | 3001 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2399 @SupportedBrowser(SupportedBrowser.IE, '10') | 3002 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2400 @SupportedBrowser(SupportedBrowser.SAFARI) | 3003 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2401 @Unstable() | 3004 @Unstable() |
| 2402 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 3005 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2403 // To suppress missing implicit constructor warnings. | 3006 // To suppress missing implicit constructor warnings. |
| 2404 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} | 3007 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} |
| 2405 | 3008 |
| 2406 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') | 3009 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') |
| 2407 @DocsEditable() | 3010 @DocsEditable() |
| 2408 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); | 3011 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 |
| 2409 /** | 3024 /** |
| 2410 * Constructor instantiated by the DOM when a custom element has been created. | 3025 * Constructor instantiated by the DOM when a custom element has been created. |
| 2411 * | 3026 * |
| 2412 * This can only be called by subclasses from their created constructor. | 3027 * This can only be called by subclasses from their created constructor. |
| 2413 */ | 3028 */ |
| 2414 FETurbulenceElement.created() : super.created(); | 3029 FETurbulenceElement.created() : super.created(); |
| 2415 | 3030 |
| 2416 /// Checks if this type is supported on the current platform. | 3031 /// Checks if this type is supported on the current platform. |
| 2417 static bool get supported => true; | 3032 static bool get supported => true; |
| 2418 | 3033 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2435 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE') | 3050 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE') |
| 2436 @DocsEditable() | 3051 @DocsEditable() |
| 2437 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; | 3052 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 2438 | 3053 |
| 2439 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN') | 3054 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN') |
| 2440 @DocsEditable() | 3055 @DocsEditable() |
| 2441 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; | 3056 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 2442 | 3057 |
| 2443 @DomName('SVGFETurbulenceElement.baseFrequencyX') | 3058 @DomName('SVGFETurbulenceElement.baseFrequencyX') |
| 2444 @DocsEditable() | 3059 @DocsEditable() |
| 2445 AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.instan
ce.baseFrequencyX_Getter_(this); | 3060 AnimatedNumber get baseFrequencyX => wrap_jso(_blink.BlinkSVGFETurbulenceEleme
nt.instance.baseFrequencyX_Getter_(unwrap_jso(this))); |
| 2446 | 3061 |
| 2447 @DomName('SVGFETurbulenceElement.baseFrequencyY') | 3062 @DomName('SVGFETurbulenceElement.baseFrequencyY') |
| 2448 @DocsEditable() | 3063 @DocsEditable() |
| 2449 AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.instan
ce.baseFrequencyY_Getter_(this); | 3064 AnimatedNumber get baseFrequencyY => wrap_jso(_blink.BlinkSVGFETurbulenceEleme
nt.instance.baseFrequencyY_Getter_(unwrap_jso(this))); |
| 2450 | 3065 |
| 2451 @DomName('SVGFETurbulenceElement.numOctaves') | 3066 @DomName('SVGFETurbulenceElement.numOctaves') |
| 2452 @DocsEditable() | 3067 @DocsEditable() |
| 2453 AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.instance.
numOctaves_Getter_(this); | 3068 AnimatedInteger get numOctaves => wrap_jso(_blink.BlinkSVGFETurbulenceElement.
instance.numOctaves_Getter_(unwrap_jso(this))); |
| 2454 | 3069 |
| 2455 @DomName('SVGFETurbulenceElement.seed') | 3070 @DomName('SVGFETurbulenceElement.seed') |
| 2456 @DocsEditable() | 3071 @DocsEditable() |
| 2457 AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.instance.seed_Ge
tter_(this); | 3072 AnimatedNumber get seed => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instanc
e.seed_Getter_(unwrap_jso(this))); |
| 2458 | 3073 |
| 2459 @DomName('SVGFETurbulenceElement.stitchTiles') | 3074 @DomName('SVGFETurbulenceElement.stitchTiles') |
| 2460 @DocsEditable() | 3075 @DocsEditable() |
| 2461 AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.inst
ance.stitchTiles_Getter_(this); | 3076 AnimatedEnumeration get stitchTiles => wrap_jso(_blink.BlinkSVGFETurbulenceEle
ment.instance.stitchTiles_Getter_(unwrap_jso(this))); |
| 2462 | 3077 |
| 2463 @DomName('SVGFETurbulenceElement.type') | 3078 @DomName('SVGFETurbulenceElement.type') |
| 2464 @DocsEditable() | 3079 @DocsEditable() |
| 2465 AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.instance.ty
pe_Getter_(this); | 3080 AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFETurbulenceElement.in
stance.type_Getter_(unwrap_jso(this))); |
| 2466 | 3081 |
| 2467 @DomName('SVGFETurbulenceElement.height') | 3082 @DomName('SVGFETurbulenceElement.height') |
| 2468 @DocsEditable() | 3083 @DocsEditable() |
| 2469 AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.instance.heigh
t_Getter_(this); | 3084 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETurbulenceElement.insta
nce.height_Getter_(unwrap_jso(this))); |
| 2470 | 3085 |
| 2471 @DomName('SVGFETurbulenceElement.result') | 3086 @DomName('SVGFETurbulenceElement.result') |
| 2472 @DocsEditable() | 3087 @DocsEditable() |
| 2473 AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.instance.resul
t_Getter_(this); | 3088 AnimatedString get result => wrap_jso(_blink.BlinkSVGFETurbulenceElement.insta
nce.result_Getter_(unwrap_jso(this))); |
| 2474 | 3089 |
| 2475 @DomName('SVGFETurbulenceElement.width') | 3090 @DomName('SVGFETurbulenceElement.width') |
| 2476 @DocsEditable() | 3091 @DocsEditable() |
| 2477 AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.instance.width_
Getter_(this); | 3092 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instan
ce.width_Getter_(unwrap_jso(this))); |
| 2478 | 3093 |
| 2479 @DomName('SVGFETurbulenceElement.x') | 3094 @DomName('SVGFETurbulenceElement.x') |
| 2480 @DocsEditable() | 3095 @DocsEditable() |
| 2481 AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.instance.x_Getter_(
this); | 3096 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.x
_Getter_(unwrap_jso(this))); |
| 2482 | 3097 |
| 2483 @DomName('SVGFETurbulenceElement.y') | 3098 @DomName('SVGFETurbulenceElement.y') |
| 2484 @DocsEditable() | 3099 @DocsEditable() |
| 2485 AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.instance.y_Getter_(
this); | 3100 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.y
_Getter_(unwrap_jso(this))); |
| 2486 | 3101 |
| 2487 } | 3102 } |
| 2488 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2489 // for details. All rights reserved. Use of this source code is governed by a | 3104 // for details. All rights reserved. Use of this source code is governed by a |
| 2490 // BSD-style license that can be found in the LICENSE file. | 3105 // BSD-style license that can be found in the LICENSE file. |
| 2491 | 3106 |
| 2492 // WARNING: Do not edit - generated code. | 3107 // WARNING: Do not edit - generated code. |
| 2493 | 3108 |
| 2494 | 3109 |
| 2495 @DocsEditable() | 3110 @DocsEditable() |
| 2496 @DomName('SVGFilterElement') | 3111 @DomName('SVGFilterElement') |
| 2497 @SupportedBrowser(SupportedBrowser.CHROME) | 3112 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2498 @SupportedBrowser(SupportedBrowser.FIREFOX) | 3113 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2499 @SupportedBrowser(SupportedBrowser.IE, '10') | 3114 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2500 @SupportedBrowser(SupportedBrowser.SAFARI) | 3115 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2501 @Unstable() | 3116 @Unstable() |
| 2502 class FilterElement extends SvgElement implements UriReference { | 3117 class FilterElement extends SvgElement implements UriReference { |
| 2503 // To suppress missing implicit constructor warnings. | 3118 // To suppress missing implicit constructor warnings. |
| 2504 factory FilterElement._() { throw new UnsupportedError("Not supported"); } | 3119 factory FilterElement._() { throw new UnsupportedError("Not supported"); } |
| 2505 | 3120 |
| 2506 @DomName('SVGFilterElement.SVGFilterElement') | 3121 @DomName('SVGFilterElement.SVGFilterElement') |
| 2507 @DocsEditable() | 3122 @DocsEditable() |
| 2508 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); | 3123 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 |
| 2509 /** | 3136 /** |
| 2510 * Constructor instantiated by the DOM when a custom element has been created. | 3137 * Constructor instantiated by the DOM when a custom element has been created. |
| 2511 * | 3138 * |
| 2512 * This can only be called by subclasses from their created constructor. | 3139 * This can only be called by subclasses from their created constructor. |
| 2513 */ | 3140 */ |
| 2514 FilterElement.created() : super.created(); | 3141 FilterElement.created() : super.created(); |
| 2515 | 3142 |
| 2516 /// Checks if this type is supported on the current platform. | 3143 /// Checks if this type is supported on the current platform. |
| 2517 static bool get supported => true; | 3144 static bool get supported => true; |
| 2518 | 3145 |
| 2519 @DomName('SVGFilterElement.filterResX') | 3146 @DomName('SVGFilterElement.filterResX') |
| 2520 @DocsEditable() | 3147 @DocsEditable() |
| 2521 AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.instance.filter
ResX_Getter_(this); | 3148 AnimatedInteger get filterResX => wrap_jso(_blink.BlinkSVGFilterElement.instan
ce.filterResX_Getter_(unwrap_jso(this))); |
| 2522 | 3149 |
| 2523 @DomName('SVGFilterElement.filterResY') | 3150 @DomName('SVGFilterElement.filterResY') |
| 2524 @DocsEditable() | 3151 @DocsEditable() |
| 2525 AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.instance.filter
ResY_Getter_(this); | 3152 AnimatedInteger get filterResY => wrap_jso(_blink.BlinkSVGFilterElement.instan
ce.filterResY_Getter_(unwrap_jso(this))); |
| 2526 | 3153 |
| 2527 @DomName('SVGFilterElement.filterUnits') | 3154 @DomName('SVGFilterElement.filterUnits') |
| 2528 @DocsEditable() | 3155 @DocsEditable() |
| 2529 AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.instance.f
ilterUnits_Getter_(this); | 3156 AnimatedEnumeration get filterUnits => wrap_jso(_blink.BlinkSVGFilterElement.i
nstance.filterUnits_Getter_(unwrap_jso(this))); |
| 2530 | 3157 |
| 2531 @DomName('SVGFilterElement.height') | 3158 @DomName('SVGFilterElement.height') |
| 2532 @DocsEditable() | 3159 @DocsEditable() |
| 2533 AnimatedLength get height => _blink.BlinkSVGFilterElement.instance.height_Gett
er_(this); | 3160 AnimatedLength get height => wrap_jso(_blink.BlinkSVGFilterElement.instance.he
ight_Getter_(unwrap_jso(this))); |
| 2534 | 3161 |
| 2535 @DomName('SVGFilterElement.primitiveUnits') | 3162 @DomName('SVGFilterElement.primitiveUnits') |
| 2536 @DocsEditable() | 3163 @DocsEditable() |
| 2537 AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.instanc
e.primitiveUnits_Getter_(this); | 3164 AnimatedEnumeration get primitiveUnits => wrap_jso(_blink.BlinkSVGFilterElemen
t.instance.primitiveUnits_Getter_(unwrap_jso(this))); |
| 2538 | 3165 |
| 2539 @DomName('SVGFilterElement.width') | 3166 @DomName('SVGFilterElement.width') |
| 2540 @DocsEditable() | 3167 @DocsEditable() |
| 2541 AnimatedLength get width => _blink.BlinkSVGFilterElement.instance.width_Getter
_(this); | 3168 AnimatedLength get width => wrap_jso(_blink.BlinkSVGFilterElement.instance.wid
th_Getter_(unwrap_jso(this))); |
| 2542 | 3169 |
| 2543 @DomName('SVGFilterElement.x') | 3170 @DomName('SVGFilterElement.x') |
| 2544 @DocsEditable() | 3171 @DocsEditable() |
| 2545 AnimatedLength get x => _blink.BlinkSVGFilterElement.instance.x_Getter_(this); | 3172 AnimatedLength get x => wrap_jso(_blink.BlinkSVGFilterElement.instance.x_Gette
r_(unwrap_jso(this))); |
| 2546 | 3173 |
| 2547 @DomName('SVGFilterElement.y') | 3174 @DomName('SVGFilterElement.y') |
| 2548 @DocsEditable() | 3175 @DocsEditable() |
| 2549 AnimatedLength get y => _blink.BlinkSVGFilterElement.instance.y_Getter_(this); | 3176 AnimatedLength get y => wrap_jso(_blink.BlinkSVGFilterElement.instance.y_Gette
r_(unwrap_jso(this))); |
| 2550 | 3177 |
| 2551 @DomName('SVGFilterElement.setFilterRes') | 3178 @DomName('SVGFilterElement.setFilterRes') |
| 2552 @DocsEditable() | 3179 @DocsEditable() |
| 2553 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem
ent.instance.setFilterRes_Callback_2_(this, filterResX, filterResY); | 3180 void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElem
ent.instance.setFilterRes_Callback_2_(unwrap_jso(this), filterResX, filterResY); |
| 2554 | 3181 |
| 2555 @DomName('SVGFilterElement.href') | 3182 @DomName('SVGFilterElement.href') |
| 2556 @DocsEditable() | 3183 @DocsEditable() |
| 2557 AnimatedString get href => _blink.BlinkSVGFilterElement.instance.href_Getter_(
this); | 3184 AnimatedString get href => wrap_jso(_blink.BlinkSVGFilterElement.instance.href
_Getter_(unwrap_jso(this))); |
| 2558 | 3185 |
| 2559 } | 3186 } |
| 2560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2561 // for details. All rights reserved. Use of this source code is governed by a | 3188 // for details. All rights reserved. Use of this source code is governed by a |
| 2562 // BSD-style license that can be found in the LICENSE file. | 3189 // BSD-style license that can be found in the LICENSE file. |
| 2563 | 3190 |
| 2564 // WARNING: Do not edit - generated code. | 3191 // WARNING: Do not edit - generated code. |
| 2565 | 3192 |
| 2566 | 3193 |
| 2567 @DocsEditable() | 3194 @DocsEditable() |
| 2568 @DomName('SVGFilterPrimitiveStandardAttributes') | 3195 @DomName('SVGFilterPrimitiveStandardAttributes') |
| 2569 @Unstable() | 3196 @Unstable() |
| 2570 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { | 3197 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { |
| 2571 // To suppress missing implicit constructor warnings. | 3198 // To suppress missing implicit constructor warnings. |
| 2572 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } | 3199 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } |
| 2573 | 3200 |
| 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 |
| 2574 @DomName('SVGFilterPrimitiveStandardAttributes.height') | 3215 @DomName('SVGFilterPrimitiveStandardAttributes.height') |
| 2575 @DocsEditable() | 3216 @DocsEditable() |
| 2576 AnimatedLength get height; | 3217 AnimatedLength get height; |
| 2577 | 3218 |
| 2578 @DomName('SVGFilterPrimitiveStandardAttributes.result') | 3219 @DomName('SVGFilterPrimitiveStandardAttributes.result') |
| 2579 @DocsEditable() | 3220 @DocsEditable() |
| 2580 AnimatedString get result; | 3221 AnimatedString get result; |
| 2581 | 3222 |
| 2582 @DomName('SVGFilterPrimitiveStandardAttributes.width') | 3223 @DomName('SVGFilterPrimitiveStandardAttributes.width') |
| 2583 @DocsEditable() | 3224 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 2599 // WARNING: Do not edit - generated code. | 3240 // WARNING: Do not edit - generated code. |
| 2600 | 3241 |
| 2601 | 3242 |
| 2602 @DocsEditable() | 3243 @DocsEditable() |
| 2603 @DomName('SVGFitToViewBox') | 3244 @DomName('SVGFitToViewBox') |
| 2604 @Unstable() | 3245 @Unstable() |
| 2605 abstract class FitToViewBox extends NativeFieldWrapperClass2 { | 3246 abstract class FitToViewBox extends NativeFieldWrapperClass2 { |
| 2606 // To suppress missing implicit constructor warnings. | 3247 // To suppress missing implicit constructor warnings. |
| 2607 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } | 3248 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } |
| 2608 | 3249 |
| 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 |
| 2609 @DomName('SVGFitToViewBox.preserveAspectRatio') | 3264 @DomName('SVGFitToViewBox.preserveAspectRatio') |
| 2610 @DocsEditable() | 3265 @DocsEditable() |
| 2611 AnimatedPreserveAspectRatio get preserveAspectRatio; | 3266 AnimatedPreserveAspectRatio get preserveAspectRatio; |
| 2612 | 3267 |
| 2613 @DomName('SVGFitToViewBox.viewBox') | 3268 @DomName('SVGFitToViewBox.viewBox') |
| 2614 @DocsEditable() | 3269 @DocsEditable() |
| 2615 AnimatedRect get viewBox; | 3270 AnimatedRect get viewBox; |
| 2616 | 3271 |
| 2617 } | 3272 } |
| 2618 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2619 // for details. All rights reserved. Use of this source code is governed by a | 3274 // for details. All rights reserved. Use of this source code is governed by a |
| 2620 // BSD-style license that can be found in the LICENSE file. | 3275 // BSD-style license that can be found in the LICENSE file. |
| 2621 | 3276 |
| 2622 // WARNING: Do not edit - generated code. | 3277 // WARNING: Do not edit - generated code. |
| 2623 | 3278 |
| 2624 | 3279 |
| 2625 @DocsEditable() | 3280 @DocsEditable() |
| 2626 @DomName('SVGForeignObjectElement') | 3281 @DomName('SVGForeignObjectElement') |
| 2627 @SupportedBrowser(SupportedBrowser.CHROME) | 3282 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2628 @SupportedBrowser(SupportedBrowser.FIREFOX) | 3283 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2629 @SupportedBrowser(SupportedBrowser.SAFARI) | 3284 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2630 @Unstable() | 3285 @Unstable() |
| 2631 class ForeignObjectElement extends GraphicsElement { | 3286 class ForeignObjectElement extends GraphicsElement { |
| 2632 // To suppress missing implicit constructor warnings. | 3287 // To suppress missing implicit constructor warnings. |
| 2633 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } | 3288 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } |
| 2634 | 3289 |
| 2635 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') | 3290 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') |
| 2636 @DocsEditable() | 3291 @DocsEditable() |
| 2637 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); | 3292 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 |
| 2638 /** | 3305 /** |
| 2639 * Constructor instantiated by the DOM when a custom element has been created. | 3306 * Constructor instantiated by the DOM when a custom element has been created. |
| 2640 * | 3307 * |
| 2641 * This can only be called by subclasses from their created constructor. | 3308 * This can only be called by subclasses from their created constructor. |
| 2642 */ | 3309 */ |
| 2643 ForeignObjectElement.created() : super.created(); | 3310 ForeignObjectElement.created() : super.created(); |
| 2644 | 3311 |
| 2645 /// Checks if this type is supported on the current platform. | 3312 /// Checks if this type is supported on the current platform. |
| 2646 static bool get supported => true; | 3313 static bool get supported => true; |
| 2647 | 3314 |
| 2648 @DomName('SVGForeignObjectElement.height') | 3315 @DomName('SVGForeignObjectElement.height') |
| 2649 @DocsEditable() | 3316 @DocsEditable() |
| 2650 AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.instance.heig
ht_Getter_(this); | 3317 AnimatedLength get height => wrap_jso(_blink.BlinkSVGForeignObjectElement.inst
ance.height_Getter_(unwrap_jso(this))); |
| 2651 | 3318 |
| 2652 @DomName('SVGForeignObjectElement.width') | 3319 @DomName('SVGForeignObjectElement.width') |
| 2653 @DocsEditable() | 3320 @DocsEditable() |
| 2654 AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.instance.width
_Getter_(this); | 3321 AnimatedLength get width => wrap_jso(_blink.BlinkSVGForeignObjectElement.insta
nce.width_Getter_(unwrap_jso(this))); |
| 2655 | 3322 |
| 2656 @DomName('SVGForeignObjectElement.x') | 3323 @DomName('SVGForeignObjectElement.x') |
| 2657 @DocsEditable() | 3324 @DocsEditable() |
| 2658 AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.instance.x_Getter_
(this); | 3325 AnimatedLength get x => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.
x_Getter_(unwrap_jso(this))); |
| 2659 | 3326 |
| 2660 @DomName('SVGForeignObjectElement.y') | 3327 @DomName('SVGForeignObjectElement.y') |
| 2661 @DocsEditable() | 3328 @DocsEditable() |
| 2662 AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.instance.y_Getter_
(this); | 3329 AnimatedLength get y => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.
y_Getter_(unwrap_jso(this))); |
| 2663 | 3330 |
| 2664 } | 3331 } |
| 2665 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2666 // for details. All rights reserved. Use of this source code is governed by a | 3333 // for details. All rights reserved. Use of this source code is governed by a |
| 2667 // BSD-style license that can be found in the LICENSE file. | 3334 // BSD-style license that can be found in the LICENSE file. |
| 2668 | 3335 |
| 2669 // WARNING: Do not edit - generated code. | 3336 // WARNING: Do not edit - generated code. |
| 2670 | 3337 |
| 2671 | 3338 |
| 2672 @DocsEditable() | 3339 @DocsEditable() |
| 2673 @DomName('SVGGElement') | 3340 @DomName('SVGGElement') |
| 2674 @Unstable() | 3341 @Unstable() |
| 2675 class GElement extends GraphicsElement { | 3342 class GElement extends GraphicsElement { |
| 2676 // To suppress missing implicit constructor warnings. | 3343 // To suppress missing implicit constructor warnings. |
| 2677 factory GElement._() { throw new UnsupportedError("Not supported"); } | 3344 factory GElement._() { throw new UnsupportedError("Not supported"); } |
| 2678 | 3345 |
| 2679 @DomName('SVGGElement.SVGGElement') | 3346 @DomName('SVGGElement.SVGGElement') |
| 2680 @DocsEditable() | 3347 @DocsEditable() |
| 2681 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); | 3348 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 |
| 2682 /** | 3361 /** |
| 2683 * Constructor instantiated by the DOM when a custom element has been created. | 3362 * Constructor instantiated by the DOM when a custom element has been created. |
| 2684 * | 3363 * |
| 2685 * This can only be called by subclasses from their created constructor. | 3364 * This can only be called by subclasses from their created constructor. |
| 2686 */ | 3365 */ |
| 2687 GElement.created() : super.created(); | 3366 GElement.created() : super.created(); |
| 2688 | 3367 |
| 2689 } | 3368 } |
| 2690 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2691 // for details. All rights reserved. Use of this source code is governed by a | 3370 // for details. All rights reserved. Use of this source code is governed by a |
| 2692 // BSD-style license that can be found in the LICENSE file. | 3371 // BSD-style license that can be found in the LICENSE file. |
| 2693 | 3372 |
| 2694 // WARNING: Do not edit - generated code. | 3373 // WARNING: Do not edit - generated code. |
| 2695 | 3374 |
| 2696 | 3375 |
| 2697 @DocsEditable() | 3376 @DocsEditable() |
| 2698 @DomName('SVGGeometryElement') | 3377 @DomName('SVGGeometryElement') |
| 2699 @Experimental() // untriaged | 3378 @Experimental() // untriaged |
| 2700 class GeometryElement extends GraphicsElement { | 3379 class GeometryElement extends GraphicsElement { |
| 2701 // To suppress missing implicit constructor warnings. | 3380 // To suppress missing implicit constructor warnings. |
| 2702 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } | 3381 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 |
| 2703 /** | 3394 /** |
| 2704 * Constructor instantiated by the DOM when a custom element has been created. | 3395 * Constructor instantiated by the DOM when a custom element has been created. |
| 2705 * | 3396 * |
| 2706 * This can only be called by subclasses from their created constructor. | 3397 * This can only be called by subclasses from their created constructor. |
| 2707 */ | 3398 */ |
| 2708 GeometryElement.created() : super.created(); | 3399 GeometryElement.created() : super.created(); |
| 2709 | 3400 |
| 2710 @DomName('SVGGeometryElement.isPointInFill') | 3401 @DomName('SVGGeometryElement.isPointInFill') |
| 2711 @DocsEditable() | 3402 @DocsEditable() |
| 2712 @Experimental() // untriaged | 3403 @Experimental() // untriaged |
| 2713 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isP
ointInFill_Callback_1_(this, point); | 3404 bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isP
ointInFill_Callback_1_(unwrap_jso(this), unwrap_jso(point)); |
| 2714 | 3405 |
| 2715 @DomName('SVGGeometryElement.isPointInStroke') | 3406 @DomName('SVGGeometryElement.isPointInStroke') |
| 2716 @DocsEditable() | 3407 @DocsEditable() |
| 2717 @Experimental() // untriaged | 3408 @Experimental() // untriaged |
| 2718 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.i
sPointInStroke_Callback_1_(this, point); | 3409 bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.i
sPointInStroke_Callback_1_(unwrap_jso(this), unwrap_jso(point)); |
| 2719 | 3410 |
| 2720 } | 3411 } |
| 2721 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2722 // for details. All rights reserved. Use of this source code is governed by a | 3413 // for details. All rights reserved. Use of this source code is governed by a |
| 2723 // BSD-style license that can be found in the LICENSE file. | 3414 // BSD-style license that can be found in the LICENSE file. |
| 2724 | 3415 |
| 2725 // WARNING: Do not edit - generated code. | 3416 // WARNING: Do not edit - generated code. |
| 2726 | 3417 |
| 2727 | 3418 |
| 2728 @DocsEditable() | 3419 @DocsEditable() |
| 2729 @DomName('SVGGraphicsElement') | 3420 @DomName('SVGGraphicsElement') |
| 2730 @Experimental() // untriaged | 3421 @Experimental() // untriaged |
| 2731 class GraphicsElement extends SvgElement implements Tests { | 3422 class GraphicsElement extends SvgElement implements Tests { |
| 2732 // To suppress missing implicit constructor warnings. | 3423 // To suppress missing implicit constructor warnings. |
| 2733 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } | 3424 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 |
| 2734 /** | 3437 /** |
| 2735 * Constructor instantiated by the DOM when a custom element has been created. | 3438 * Constructor instantiated by the DOM when a custom element has been created. |
| 2736 * | 3439 * |
| 2737 * This can only be called by subclasses from their created constructor. | 3440 * This can only be called by subclasses from their created constructor. |
| 2738 */ | 3441 */ |
| 2739 GraphicsElement.created() : super.created(); | 3442 GraphicsElement.created() : super.created(); |
| 2740 | 3443 |
| 2741 @DomName('SVGGraphicsElement.farthestViewportElement') | 3444 @DomName('SVGGraphicsElement.farthestViewportElement') |
| 2742 @DocsEditable() | 3445 @DocsEditable() |
| 2743 @Experimental() // untriaged | 3446 @Experimental() // untriaged |
| 2744 SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.insta
nce.farthestViewportElement_Getter_(this); | 3447 SvgElement get farthestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsElem
ent.instance.farthestViewportElement_Getter_(unwrap_jso(this))); |
| 2745 | 3448 |
| 2746 @DomName('SVGGraphicsElement.nearestViewportElement') | 3449 @DomName('SVGGraphicsElement.nearestViewportElement') |
| 2747 @DocsEditable() | 3450 @DocsEditable() |
| 2748 @Experimental() // untriaged | 3451 @Experimental() // untriaged |
| 2749 SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.instan
ce.nearestViewportElement_Getter_(this); | 3452 SvgElement get nearestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsEleme
nt.instance.nearestViewportElement_Getter_(unwrap_jso(this))); |
| 2750 | 3453 |
| 2751 @DomName('SVGGraphicsElement.transform') | 3454 @DomName('SVGGraphicsElement.transform') |
| 2752 @DocsEditable() | 3455 @DocsEditable() |
| 2753 @Experimental() // untriaged | 3456 @Experimental() // untriaged |
| 2754 AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.instance
.transform_Getter_(this); | 3457 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement
.instance.transform_Getter_(unwrap_jso(this))); |
| 2755 | 3458 |
| 2756 @DomName('SVGGraphicsElement.getBBox') | 3459 @DomName('SVGGraphicsElement.getBBox') |
| 2757 @DocsEditable() | 3460 @DocsEditable() |
| 2758 @Experimental() // untriaged | 3461 @Experimental() // untriaged |
| 2759 Rect getBBox() => _blink.BlinkSVGGraphicsElement.instance.getBBox_Callback_0_(
this); | 3462 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal
lback_0_(unwrap_jso(this))); |
| 2760 | 3463 |
| 2761 @DomName('SVGGraphicsElement.getCTM') | 3464 @DomName('SVGGraphicsElement.getCTM') |
| 2762 @DocsEditable() | 3465 @DocsEditable() |
| 2763 @Experimental() // untriaged | 3466 @Experimental() // untriaged |
| 2764 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(
this); | 3467 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(
unwrap_jso(this)); |
| 2765 | 3468 |
| 2766 @DomName('SVGGraphicsElement.getScreenCTM') | 3469 @DomName('SVGGraphicsElement.getScreenCTM') |
| 2767 @DocsEditable() | 3470 @DocsEditable() |
| 2768 @Experimental() // untriaged | 3471 @Experimental() // untriaged |
| 2769 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_
Callback_0_(this); | 3472 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_
Callback_0_(unwrap_jso(this)); |
| 2770 | 3473 |
| 2771 @DomName('SVGGraphicsElement.getTransformToElement') | 3474 @DomName('SVGGraphicsElement.getTransformToElement') |
| 2772 @DocsEditable() | 3475 @DocsEditable() |
| 2773 @Experimental() // untriaged | 3476 @Experimental() // untriaged |
| 2774 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.instance.getTransformToElement_Callback_1_(this, element); | 3477 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwrap_jso(ele
ment)); |
| 2775 | 3478 |
| 2776 @DomName('SVGGraphicsElement.requiredExtensions') | 3479 @DomName('SVGGraphicsElement.requiredExtensions') |
| 2777 @DocsEditable() | 3480 @DocsEditable() |
| 2778 @Experimental() // untriaged | 3481 @Experimental() // untriaged |
| 2779 StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.instance.r
equiredExtensions_Getter_(this); | 3482 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i
nstance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 2780 | 3483 |
| 2781 @DomName('SVGGraphicsElement.requiredFeatures') | 3484 @DomName('SVGGraphicsElement.requiredFeatures') |
| 2782 @DocsEditable() | 3485 @DocsEditable() |
| 2783 @Experimental() // untriaged | 3486 @Experimental() // untriaged |
| 2784 StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.instance.req
uiredFeatures_Getter_(this); | 3487 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins
tance.requiredFeatures_Getter_(unwrap_jso(this))); |
| 2785 | 3488 |
| 2786 @DomName('SVGGraphicsElement.systemLanguage') | 3489 @DomName('SVGGraphicsElement.systemLanguage') |
| 2787 @DocsEditable() | 3490 @DocsEditable() |
| 2788 @Experimental() // untriaged | 3491 @Experimental() // untriaged |
| 2789 StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.instance.syste
mLanguage_Getter_(this); | 3492 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGGraphicsElement.insta
nce.systemLanguage_Getter_(unwrap_jso(this))); |
| 2790 | 3493 |
| 2791 @DomName('SVGGraphicsElement.hasExtension') | 3494 @DomName('SVGGraphicsElement.hasExtension') |
| 2792 @DocsEditable() | 3495 @DocsEditable() |
| 2793 @Experimental() // untriaged | 3496 @Experimental() // untriaged |
| 2794 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance
.hasExtension_Callback_1_(this, extension); | 3497 bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance
.hasExtension_Callback_1_(unwrap_jso(this), extension); |
| 2795 | 3498 |
| 2796 } | 3499 } |
| 2797 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2798 // for details. All rights reserved. Use of this source code is governed by a | 3501 // for details. All rights reserved. Use of this source code is governed by a |
| 2799 // BSD-style license that can be found in the LICENSE file. | 3502 // BSD-style license that can be found in the LICENSE file. |
| 2800 | 3503 |
| 2801 // WARNING: Do not edit - generated code. | 3504 // WARNING: Do not edit - generated code. |
| 2802 | 3505 |
| 2803 | 3506 |
| 2804 @DocsEditable() | 3507 @DocsEditable() |
| 2805 @DomName('SVGImageElement') | 3508 @DomName('SVGImageElement') |
| 2806 @Unstable() | 3509 @Unstable() |
| 2807 class ImageElement extends GraphicsElement implements UriReference { | 3510 class ImageElement extends GraphicsElement implements UriReference { |
| 2808 // To suppress missing implicit constructor warnings. | 3511 // To suppress missing implicit constructor warnings. |
| 2809 factory ImageElement._() { throw new UnsupportedError("Not supported"); } | 3512 factory ImageElement._() { throw new UnsupportedError("Not supported"); } |
| 2810 | 3513 |
| 2811 @DomName('SVGImageElement.SVGImageElement') | 3514 @DomName('SVGImageElement.SVGImageElement') |
| 2812 @DocsEditable() | 3515 @DocsEditable() |
| 2813 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); | 3516 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 |
| 2814 /** | 3529 /** |
| 2815 * Constructor instantiated by the DOM when a custom element has been created. | 3530 * Constructor instantiated by the DOM when a custom element has been created. |
| 2816 * | 3531 * |
| 2817 * This can only be called by subclasses from their created constructor. | 3532 * This can only be called by subclasses from their created constructor. |
| 2818 */ | 3533 */ |
| 2819 ImageElement.created() : super.created(); | 3534 ImageElement.created() : super.created(); |
| 2820 | 3535 |
| 2821 @DomName('SVGImageElement.height') | 3536 @DomName('SVGImageElement.height') |
| 2822 @DocsEditable() | 3537 @DocsEditable() |
| 2823 AnimatedLength get height => _blink.BlinkSVGImageElement.instance.height_Gette
r_(this); | 3538 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); |
| 2824 | 3539 |
| 2825 @DomName('SVGImageElement.preserveAspectRatio') | 3540 @DomName('SVGImageElement.preserveAspectRatio') |
| 2826 @DocsEditable() | 3541 @DocsEditable() |
| 2827 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageEle
ment.instance.preserveAspectRatio_Getter_(this); | 3542 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 2828 | 3543 |
| 2829 @DomName('SVGImageElement.width') | 3544 @DomName('SVGImageElement.width') |
| 2830 @DocsEditable() | 3545 @DocsEditable() |
| 2831 AnimatedLength get width => _blink.BlinkSVGImageElement.instance.width_Getter_
(this); | 3546 AnimatedLength get width => wrap_jso(_blink.BlinkSVGImageElement.instance.widt
h_Getter_(unwrap_jso(this))); |
| 2832 | 3547 |
| 2833 @DomName('SVGImageElement.x') | 3548 @DomName('SVGImageElement.x') |
| 2834 @DocsEditable() | 3549 @DocsEditable() |
| 2835 AnimatedLength get x => _blink.BlinkSVGImageElement.instance.x_Getter_(this); | 3550 AnimatedLength get x => wrap_jso(_blink.BlinkSVGImageElement.instance.x_Getter
_(unwrap_jso(this))); |
| 2836 | 3551 |
| 2837 @DomName('SVGImageElement.y') | 3552 @DomName('SVGImageElement.y') |
| 2838 @DocsEditable() | 3553 @DocsEditable() |
| 2839 AnimatedLength get y => _blink.BlinkSVGImageElement.instance.y_Getter_(this); | 3554 AnimatedLength get y => wrap_jso(_blink.BlinkSVGImageElement.instance.y_Getter
_(unwrap_jso(this))); |
| 2840 | 3555 |
| 2841 @DomName('SVGImageElement.href') | 3556 @DomName('SVGImageElement.href') |
| 2842 @DocsEditable() | 3557 @DocsEditable() |
| 2843 AnimatedString get href => _blink.BlinkSVGImageElement.instance.href_Getter_(t
his); | 3558 AnimatedString get href => wrap_jso(_blink.BlinkSVGImageElement.instance.href_
Getter_(unwrap_jso(this))); |
| 2844 | 3559 |
| 2845 } | 3560 } |
| 2846 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3561 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2847 // for details. All rights reserved. Use of this source code is governed by a | 3562 // for details. All rights reserved. Use of this source code is governed by a |
| 2848 // BSD-style license that can be found in the LICENSE file. | 3563 // BSD-style license that can be found in the LICENSE file. |
| 2849 | 3564 |
| 2850 // WARNING: Do not edit - generated code. | 3565 // WARNING: Do not edit - generated code. |
| 2851 | 3566 |
| 2852 | 3567 |
| 2853 @DocsEditable() | 3568 @DocsEditable() |
| 2854 @DomName('SVGLength') | 3569 @DomName('SVGLength') |
| 2855 @Unstable() | 3570 @Unstable() |
| 2856 class Length extends NativeFieldWrapperClass2 { | 3571 class Length extends NativeFieldWrapperClass2 { |
| 2857 // To suppress missing implicit constructor warnings. | 3572 // To suppress missing implicit constructor warnings. |
| 2858 factory Length._() { throw new UnsupportedError("Not supported"); } | 3573 factory Length._() { throw new UnsupportedError("Not supported"); } |
| 2859 | 3574 |
| 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 |
| 2860 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 3589 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
| 2861 @DocsEditable() | 3590 @DocsEditable() |
| 2862 static const int SVG_LENGTHTYPE_CM = 6; | 3591 static const int SVG_LENGTHTYPE_CM = 6; |
| 2863 | 3592 |
| 2864 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') | 3593 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') |
| 2865 @DocsEditable() | 3594 @DocsEditable() |
| 2866 static const int SVG_LENGTHTYPE_EMS = 3; | 3595 static const int SVG_LENGTHTYPE_EMS = 3; |
| 2867 | 3596 |
| 2868 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') | 3597 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') |
| 2869 @DocsEditable() | 3598 @DocsEditable() |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2896 @DomName('SVGLength.SVG_LENGTHTYPE_PX') | 3625 @DomName('SVGLength.SVG_LENGTHTYPE_PX') |
| 2897 @DocsEditable() | 3626 @DocsEditable() |
| 2898 static const int SVG_LENGTHTYPE_PX = 5; | 3627 static const int SVG_LENGTHTYPE_PX = 5; |
| 2899 | 3628 |
| 2900 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN') | 3629 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN') |
| 2901 @DocsEditable() | 3630 @DocsEditable() |
| 2902 static const int SVG_LENGTHTYPE_UNKNOWN = 0; | 3631 static const int SVG_LENGTHTYPE_UNKNOWN = 0; |
| 2903 | 3632 |
| 2904 @DomName('SVGLength.unitType') | 3633 @DomName('SVGLength.unitType') |
| 2905 @DocsEditable() | 3634 @DocsEditable() |
| 2906 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(this); | 3635 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso
(this)); |
| 2907 | 3636 |
| 2908 @DomName('SVGLength.value') | 3637 @DomName('SVGLength.value') |
| 2909 @DocsEditable() | 3638 @DocsEditable() |
| 2910 num get value => _blink.BlinkSVGLength.instance.value_Getter_(this); | 3639 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this)
); |
| 2911 | 3640 |
| 2912 @DomName('SVGLength.value') | 3641 @DomName('SVGLength.value') |
| 2913 @DocsEditable() | 3642 @DocsEditable() |
| 2914 void set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(this
, value); | 3643 void set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwr
ap_jso(this), value); |
| 2915 | 3644 |
| 2916 @DomName('SVGLength.valueAsString') | 3645 @DomName('SVGLength.valueAsString') |
| 2917 @DocsEditable() | 3646 @DocsEditable() |
| 2918 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(this); | 3647 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(unwrap_jso(this)); |
| 2919 | 3648 |
| 2920 @DomName('SVGLength.valueAsString') | 3649 @DomName('SVGLength.valueAsString') |
| 2921 @DocsEditable() | 3650 @DocsEditable() |
| 2922 void set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAs
String_Setter_(this, value); | 3651 void set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAs
String_Setter_(unwrap_jso(this), value); |
| 2923 | 3652 |
| 2924 @DomName('SVGLength.valueInSpecifiedUnits') | 3653 @DomName('SVGLength.valueInSpecifiedUnits') |
| 2925 @DocsEditable() | 3654 @DocsEditable() |
| 2926 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(this); | 3655 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(unwrap_jso(this)); |
| 2927 | 3656 |
| 2928 @DomName('SVGLength.valueInSpecifiedUnits') | 3657 @DomName('SVGLength.valueInSpecifiedUnits') |
| 2929 @DocsEditable() | 3658 @DocsEditable() |
| 2930 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.va
lueInSpecifiedUnits_Setter_(this, value); | 3659 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.va
lueInSpecifiedUnits_Setter_(unwrap_jso(this), value); |
| 2931 | 3660 |
| 2932 @DomName('SVGLength.convertToSpecifiedUnits') | 3661 @DomName('SVGLength.convertToSpecifiedUnits') |
| 2933 @DocsEditable() | 3662 @DocsEditable() |
| 2934 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(this, unitType); | 3663 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
| 2935 | 3664 |
| 2936 @DomName('SVGLength.newValueSpecifiedUnits') | 3665 @DomName('SVGLength.newValueSpecifiedUnits') |
| 2937 @DocsEditable() | 3666 @DocsEditable() |
| 2938 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, valu
eInSpecifiedUnits); | 3667 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un
itType, valueInSpecifiedUnits); |
| 2939 | 3668 |
| 2940 } | 3669 } |
| 2941 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3670 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2942 // for details. All rights reserved. Use of this source code is governed by a | 3671 // for details. All rights reserved. Use of this source code is governed by a |
| 2943 // BSD-style license that can be found in the LICENSE file. | 3672 // BSD-style license that can be found in the LICENSE file. |
| 2944 | 3673 |
| 2945 // WARNING: Do not edit - generated code. | 3674 // WARNING: Do not edit - generated code. |
| 2946 | 3675 |
| 2947 | 3676 |
| 2948 @DocsEditable() | 3677 @DocsEditable() |
| 2949 @DomName('SVGLengthList') | 3678 @DomName('SVGLengthList') |
| 2950 @Unstable() | 3679 @Unstable() |
| 2951 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { | 3680 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { |
| 2952 // To suppress missing implicit constructor warnings. | 3681 // To suppress missing implicit constructor warnings. |
| 2953 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 3682 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
| 2954 | 3683 |
| 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 |
| 2955 @DomName('SVGLengthList.length') | 3698 @DomName('SVGLengthList.length') |
| 2956 @DocsEditable() | 3699 @DocsEditable() |
| 2957 @Experimental() // untriaged | 3700 @Experimental() // untriaged |
| 2958 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(this); | 3701 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); |
| 2959 | 3702 |
| 2960 @DomName('SVGLengthList.numberOfItems') | 3703 @DomName('SVGLengthList.numberOfItems') |
| 2961 @DocsEditable() | 3704 @DocsEditable() |
| 2962 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(this); | 3705 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 2963 | 3706 |
| 2964 Length operator[](int index) { | 3707 Length operator[](int index) { |
| 2965 if (index < 0 || index >= length) | 3708 if (index < 0 || index >= length) |
| 2966 throw new RangeError.index(index, this); | 3709 throw new RangeError.index(index, this); |
| 2967 return getItem(index); | 3710 return getItem(index); |
| 2968 } | 3711 } |
| 2969 | 3712 |
| 2970 void operator[]=(int index, Length value) { | 3713 void operator[]=(int index, Length value) { |
| 2971 throw new UnsupportedError("Cannot assign element of immutable List."); | 3714 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 2972 } | 3715 } |
| 2973 // -- start List<Length> mixins. | 3716 // -- start List<Length> mixins. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 3001 if (len == 0) throw new StateError("No elements"); | 3744 if (len == 0) throw new StateError("No elements"); |
| 3002 throw new StateError("More than one element"); | 3745 throw new StateError("More than one element"); |
| 3003 } | 3746 } |
| 3004 | 3747 |
| 3005 Length elementAt(int index) => this[index]; | 3748 Length elementAt(int index) => this[index]; |
| 3006 // -- end List<Length> mixins. | 3749 // -- end List<Length> mixins. |
| 3007 | 3750 |
| 3008 @DomName('SVGLengthList.__setter__') | 3751 @DomName('SVGLengthList.__setter__') |
| 3009 @DocsEditable() | 3752 @DocsEditable() |
| 3010 @Experimental() // untriaged | 3753 @Experimental() // untriaged |
| 3011 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(this, index, value); | 3754 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 3012 | 3755 |
| 3013 @DomName('SVGLengthList.appendItem') | 3756 @DomName('SVGLengthList.appendItem') |
| 3014 @DocsEditable() | 3757 @DocsEditable() |
| 3015 Length appendItem(Length item) => _blink.BlinkSVGLengthList.instance.appendIte
m_Callback_1_(this, item); | 3758 Length appendItem(Length item) => _blink.BlinkSVGLengthList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3016 | 3759 |
| 3017 @DomName('SVGLengthList.clear') | 3760 @DomName('SVGLengthList.clear') |
| 3018 @DocsEditable() | 3761 @DocsEditable() |
| 3019 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(this); | 3762 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js
o(this)); |
| 3020 | 3763 |
| 3021 @DomName('SVGLengthList.getItem') | 3764 @DomName('SVGLengthList.getItem') |
| 3022 @DocsEditable() | 3765 @DocsEditable() |
| 3023 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba
ck_1_(this, index); | 3766 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); |
| 3024 | 3767 |
| 3025 @DomName('SVGLengthList.initialize') | 3768 @DomName('SVGLengthList.initialize') |
| 3026 @DocsEditable() | 3769 @DocsEditable() |
| 3027 Length initialize(Length item) => _blink.BlinkSVGLengthList.instance.initializ
e_Callback_1_(this, item); | 3770 Length initialize(Length item) => _blink.BlinkSVGLengthList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3028 | 3771 |
| 3029 @DomName('SVGLengthList.insertItemBefore') | 3772 @DomName('SVGLengthList.insertItemBefore') |
| 3030 @DocsEditable() | 3773 @DocsEditable() |
| 3031 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nstance.insertItemBefore_Callback_2_(this, item, index); | 3774 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3032 | 3775 |
| 3033 @DomName('SVGLengthList.removeItem') | 3776 @DomName('SVGLengthList.removeItem') |
| 3034 @DocsEditable() | 3777 @DocsEditable() |
| 3035 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_
Callback_1_(this, index); | 3778 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); |
| 3036 | 3779 |
| 3037 @DomName('SVGLengthList.replaceItem') | 3780 @DomName('SVGLengthList.replaceItem') |
| 3038 @DocsEditable() | 3781 @DocsEditable() |
| 3039 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.instan
ce.replaceItem_Callback_2_(this, item, index); | 3782 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3040 | 3783 |
| 3041 } | 3784 } |
| 3042 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3043 // for details. All rights reserved. Use of this source code is governed by a | 3786 // for details. All rights reserved. Use of this source code is governed by a |
| 3044 // BSD-style license that can be found in the LICENSE file. | 3787 // BSD-style license that can be found in the LICENSE file. |
| 3045 | 3788 |
| 3046 // WARNING: Do not edit - generated code. | 3789 // WARNING: Do not edit - generated code. |
| 3047 | 3790 |
| 3048 | 3791 |
| 3049 @DocsEditable() | 3792 @DocsEditable() |
| 3050 @DomName('SVGLineElement') | 3793 @DomName('SVGLineElement') |
| 3051 @Unstable() | 3794 @Unstable() |
| 3052 class LineElement extends GeometryElement { | 3795 class LineElement extends GeometryElement { |
| 3053 // To suppress missing implicit constructor warnings. | 3796 // To suppress missing implicit constructor warnings. |
| 3054 factory LineElement._() { throw new UnsupportedError("Not supported"); } | 3797 factory LineElement._() { throw new UnsupportedError("Not supported"); } |
| 3055 | 3798 |
| 3056 @DomName('SVGLineElement.SVGLineElement') | 3799 @DomName('SVGLineElement.SVGLineElement') |
| 3057 @DocsEditable() | 3800 @DocsEditable() |
| 3058 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); | 3801 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 |
| 3059 /** | 3814 /** |
| 3060 * Constructor instantiated by the DOM when a custom element has been created. | 3815 * Constructor instantiated by the DOM when a custom element has been created. |
| 3061 * | 3816 * |
| 3062 * This can only be called by subclasses from their created constructor. | 3817 * This can only be called by subclasses from their created constructor. |
| 3063 */ | 3818 */ |
| 3064 LineElement.created() : super.created(); | 3819 LineElement.created() : super.created(); |
| 3065 | 3820 |
| 3066 @DomName('SVGLineElement.x1') | 3821 @DomName('SVGLineElement.x1') |
| 3067 @DocsEditable() | 3822 @DocsEditable() |
| 3068 AnimatedLength get x1 => _blink.BlinkSVGLineElement.instance.x1_Getter_(this); | 3823 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); |
| 3069 | 3824 |
| 3070 @DomName('SVGLineElement.x2') | 3825 @DomName('SVGLineElement.x2') |
| 3071 @DocsEditable() | 3826 @DocsEditable() |
| 3072 AnimatedLength get x2 => _blink.BlinkSVGLineElement.instance.x2_Getter_(this); | 3827 AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLineElement.instance.x2_Gette
r_(unwrap_jso(this))); |
| 3073 | 3828 |
| 3074 @DomName('SVGLineElement.y1') | 3829 @DomName('SVGLineElement.y1') |
| 3075 @DocsEditable() | 3830 @DocsEditable() |
| 3076 AnimatedLength get y1 => _blink.BlinkSVGLineElement.instance.y1_Getter_(this); | 3831 AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLineElement.instance.y1_Gette
r_(unwrap_jso(this))); |
| 3077 | 3832 |
| 3078 @DomName('SVGLineElement.y2') | 3833 @DomName('SVGLineElement.y2') |
| 3079 @DocsEditable() | 3834 @DocsEditable() |
| 3080 AnimatedLength get y2 => _blink.BlinkSVGLineElement.instance.y2_Getter_(this); | 3835 AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLineElement.instance.y2_Gette
r_(unwrap_jso(this))); |
| 3081 | 3836 |
| 3082 } | 3837 } |
| 3083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3838 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3084 // for details. All rights reserved. Use of this source code is governed by a | 3839 // for details. All rights reserved. Use of this source code is governed by a |
| 3085 // BSD-style license that can be found in the LICENSE file. | 3840 // BSD-style license that can be found in the LICENSE file. |
| 3086 | 3841 |
| 3087 // WARNING: Do not edit - generated code. | 3842 // WARNING: Do not edit - generated code. |
| 3088 | 3843 |
| 3089 | 3844 |
| 3090 @DocsEditable() | 3845 @DocsEditable() |
| 3091 @DomName('SVGLinearGradientElement') | 3846 @DomName('SVGLinearGradientElement') |
| 3092 @Unstable() | 3847 @Unstable() |
| 3093 class LinearGradientElement extends _GradientElement { | 3848 class LinearGradientElement extends _GradientElement { |
| 3094 // To suppress missing implicit constructor warnings. | 3849 // To suppress missing implicit constructor warnings. |
| 3095 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } | 3850 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 3096 | 3851 |
| 3097 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') | 3852 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
| 3098 @DocsEditable() | 3853 @DocsEditable() |
| 3099 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); | 3854 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 |
| 3100 /** | 3867 /** |
| 3101 * Constructor instantiated by the DOM when a custom element has been created. | 3868 * Constructor instantiated by the DOM when a custom element has been created. |
| 3102 * | 3869 * |
| 3103 * This can only be called by subclasses from their created constructor. | 3870 * This can only be called by subclasses from their created constructor. |
| 3104 */ | 3871 */ |
| 3105 LinearGradientElement.created() : super.created(); | 3872 LinearGradientElement.created() : super.created(); |
| 3106 | 3873 |
| 3107 @DomName('SVGLinearGradientElement.x1') | 3874 @DomName('SVGLinearGradientElement.x1') |
| 3108 @DocsEditable() | 3875 @DocsEditable() |
| 3109 AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.instance.x1_Gett
er_(this); | 3876 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); |
| 3110 | 3877 |
| 3111 @DomName('SVGLinearGradientElement.x2') | 3878 @DomName('SVGLinearGradientElement.x2') |
| 3112 @DocsEditable() | 3879 @DocsEditable() |
| 3113 AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.instance.x2_Gett
er_(this); | 3880 AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x2_Getter_(unwrap_jso(this))); |
| 3114 | 3881 |
| 3115 @DomName('SVGLinearGradientElement.y1') | 3882 @DomName('SVGLinearGradientElement.y1') |
| 3116 @DocsEditable() | 3883 @DocsEditable() |
| 3117 AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.instance.y1_Gett
er_(this); | 3884 AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.y1_Getter_(unwrap_jso(this))); |
| 3118 | 3885 |
| 3119 @DomName('SVGLinearGradientElement.y2') | 3886 @DomName('SVGLinearGradientElement.y2') |
| 3120 @DocsEditable() | 3887 @DocsEditable() |
| 3121 AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.instance.y2_Gett
er_(this); | 3888 AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.y2_Getter_(unwrap_jso(this))); |
| 3122 | 3889 |
| 3123 } | 3890 } |
| 3124 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3891 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3125 // for details. All rights reserved. Use of this source code is governed by a | 3892 // for details. All rights reserved. Use of this source code is governed by a |
| 3126 // BSD-style license that can be found in the LICENSE file. | 3893 // BSD-style license that can be found in the LICENSE file. |
| 3127 | 3894 |
| 3128 // WARNING: Do not edit - generated code. | 3895 // WARNING: Do not edit - generated code. |
| 3129 | 3896 |
| 3130 | 3897 |
| 3131 @DocsEditable() | 3898 @DocsEditable() |
| 3132 @DomName('SVGMarkerElement') | 3899 @DomName('SVGMarkerElement') |
| 3133 @Unstable() | 3900 @Unstable() |
| 3134 class MarkerElement extends SvgElement implements FitToViewBox { | 3901 class MarkerElement extends SvgElement implements FitToViewBox { |
| 3135 // To suppress missing implicit constructor warnings. | 3902 // To suppress missing implicit constructor warnings. |
| 3136 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } | 3903 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } |
| 3137 | 3904 |
| 3138 @DomName('SVGMarkerElement.SVGMarkerElement') | 3905 @DomName('SVGMarkerElement.SVGMarkerElement') |
| 3139 @DocsEditable() | 3906 @DocsEditable() |
| 3140 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); | 3907 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 |
| 3141 /** | 3920 /** |
| 3142 * Constructor instantiated by the DOM when a custom element has been created. | 3921 * Constructor instantiated by the DOM when a custom element has been created. |
| 3143 * | 3922 * |
| 3144 * This can only be called by subclasses from their created constructor. | 3923 * This can only be called by subclasses from their created constructor. |
| 3145 */ | 3924 */ |
| 3146 MarkerElement.created() : super.created(); | 3925 MarkerElement.created() : super.created(); |
| 3147 | 3926 |
| 3148 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') | 3927 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
| 3149 @DocsEditable() | 3928 @DocsEditable() |
| 3150 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; | 3929 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3164 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO') | 3943 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO') |
| 3165 @DocsEditable() | 3944 @DocsEditable() |
| 3166 static const int SVG_MARKER_ORIENT_AUTO = 1; | 3945 static const int SVG_MARKER_ORIENT_AUTO = 1; |
| 3167 | 3946 |
| 3168 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN') | 3947 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN') |
| 3169 @DocsEditable() | 3948 @DocsEditable() |
| 3170 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; | 3949 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 3171 | 3950 |
| 3172 @DomName('SVGMarkerElement.markerHeight') | 3951 @DomName('SVGMarkerElement.markerHeight') |
| 3173 @DocsEditable() | 3952 @DocsEditable() |
| 3174 AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.instance.marke
rHeight_Getter_(this); | 3953 AnimatedLength get markerHeight => wrap_jso(_blink.BlinkSVGMarkerElement.insta
nce.markerHeight_Getter_(unwrap_jso(this))); |
| 3175 | 3954 |
| 3176 @DomName('SVGMarkerElement.markerUnits') | 3955 @DomName('SVGMarkerElement.markerUnits') |
| 3177 @DocsEditable() | 3956 @DocsEditable() |
| 3178 AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.instance.m
arkerUnits_Getter_(this); | 3957 AnimatedEnumeration get markerUnits => wrap_jso(_blink.BlinkSVGMarkerElement.i
nstance.markerUnits_Getter_(unwrap_jso(this))); |
| 3179 | 3958 |
| 3180 @DomName('SVGMarkerElement.markerWidth') | 3959 @DomName('SVGMarkerElement.markerWidth') |
| 3181 @DocsEditable() | 3960 @DocsEditable() |
| 3182 AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.instance.marker
Width_Getter_(this); | 3961 AnimatedLength get markerWidth => wrap_jso(_blink.BlinkSVGMarkerElement.instan
ce.markerWidth_Getter_(unwrap_jso(this))); |
| 3183 | 3962 |
| 3184 @DomName('SVGMarkerElement.orientAngle') | 3963 @DomName('SVGMarkerElement.orientAngle') |
| 3185 @DocsEditable() | 3964 @DocsEditable() |
| 3186 AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.instance.orientA
ngle_Getter_(this); | 3965 AnimatedAngle get orientAngle => wrap_jso(_blink.BlinkSVGMarkerElement.instanc
e.orientAngle_Getter_(unwrap_jso(this))); |
| 3187 | 3966 |
| 3188 @DomName('SVGMarkerElement.orientType') | 3967 @DomName('SVGMarkerElement.orientType') |
| 3189 @DocsEditable() | 3968 @DocsEditable() |
| 3190 AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.instance.or
ientType_Getter_(this); | 3969 AnimatedEnumeration get orientType => wrap_jso(_blink.BlinkSVGMarkerElement.in
stance.orientType_Getter_(unwrap_jso(this))); |
| 3191 | 3970 |
| 3192 @DomName('SVGMarkerElement.refX') | 3971 @DomName('SVGMarkerElement.refX') |
| 3193 @DocsEditable() | 3972 @DocsEditable() |
| 3194 AnimatedLength get refX => _blink.BlinkSVGMarkerElement.instance.refX_Getter_(
this); | 3973 AnimatedLength get refX => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refX
_Getter_(unwrap_jso(this))); |
| 3195 | 3974 |
| 3196 @DomName('SVGMarkerElement.refY') | 3975 @DomName('SVGMarkerElement.refY') |
| 3197 @DocsEditable() | 3976 @DocsEditable() |
| 3198 AnimatedLength get refY => _blink.BlinkSVGMarkerElement.instance.refY_Getter_(
this); | 3977 AnimatedLength get refY => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refY
_Getter_(unwrap_jso(this))); |
| 3199 | 3978 |
| 3200 @DomName('SVGMarkerElement.setOrientToAngle') | 3979 @DomName('SVGMarkerElement.setOrientToAngle') |
| 3201 @DocsEditable() | 3980 @DocsEditable() |
| 3202 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.se
tOrientToAngle_Callback_1_(this, angle); | 3981 void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.se
tOrientToAngle_Callback_1_(unwrap_jso(this), unwrap_jso(angle)); |
| 3203 | 3982 |
| 3204 @DomName('SVGMarkerElement.setOrientToAuto') | 3983 @DomName('SVGMarkerElement.setOrientToAuto') |
| 3205 @DocsEditable() | 3984 @DocsEditable() |
| 3206 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAut
o_Callback_0_(this); | 3985 void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAut
o_Callback_0_(unwrap_jso(this)); |
| 3207 | 3986 |
| 3208 @DomName('SVGMarkerElement.preserveAspectRatio') | 3987 @DomName('SVGMarkerElement.preserveAspectRatio') |
| 3209 @DocsEditable() | 3988 @DocsEditable() |
| 3210 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerEl
ement.instance.preserveAspectRatio_Getter_(this); | 3989 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GMarkerElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 3211 | 3990 |
| 3212 @DomName('SVGMarkerElement.viewBox') | 3991 @DomName('SVGMarkerElement.viewBox') |
| 3213 @DocsEditable() | 3992 @DocsEditable() |
| 3214 AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.instance.viewBox_Gett
er_(this); | 3993 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGMarkerElement.instance.vie
wBox_Getter_(unwrap_jso(this))); |
| 3215 | 3994 |
| 3216 } | 3995 } |
| 3217 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3996 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3218 // for details. All rights reserved. Use of this source code is governed by a | 3997 // for details. All rights reserved. Use of this source code is governed by a |
| 3219 // BSD-style license that can be found in the LICENSE file. | 3998 // BSD-style license that can be found in the LICENSE file. |
| 3220 | 3999 |
| 3221 // WARNING: Do not edit - generated code. | 4000 // WARNING: Do not edit - generated code. |
| 3222 | 4001 |
| 3223 | 4002 |
| 3224 @DocsEditable() | 4003 @DocsEditable() |
| 3225 @DomName('SVGMaskElement') | 4004 @DomName('SVGMaskElement') |
| 3226 @Unstable() | 4005 @Unstable() |
| 3227 class MaskElement extends SvgElement implements Tests { | 4006 class MaskElement extends SvgElement implements Tests { |
| 3228 // To suppress missing implicit constructor warnings. | 4007 // To suppress missing implicit constructor warnings. |
| 3229 factory MaskElement._() { throw new UnsupportedError("Not supported"); } | 4008 factory MaskElement._() { throw new UnsupportedError("Not supported"); } |
| 3230 | 4009 |
| 3231 @DomName('SVGMaskElement.SVGMaskElement') | 4010 @DomName('SVGMaskElement.SVGMaskElement') |
| 3232 @DocsEditable() | 4011 @DocsEditable() |
| 3233 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); | 4012 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 |
| 3234 /** | 4025 /** |
| 3235 * Constructor instantiated by the DOM when a custom element has been created. | 4026 * Constructor instantiated by the DOM when a custom element has been created. |
| 3236 * | 4027 * |
| 3237 * This can only be called by subclasses from their created constructor. | 4028 * This can only be called by subclasses from their created constructor. |
| 3238 */ | 4029 */ |
| 3239 MaskElement.created() : super.created(); | 4030 MaskElement.created() : super.created(); |
| 3240 | 4031 |
| 3241 @DomName('SVGMaskElement.height') | 4032 @DomName('SVGMaskElement.height') |
| 3242 @DocsEditable() | 4033 @DocsEditable() |
| 3243 AnimatedLength get height => _blink.BlinkSVGMaskElement.instance.height_Getter
_(this); | 4034 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| 3244 | 4035 |
| 3245 @DomName('SVGMaskElement.maskContentUnits') | 4036 @DomName('SVGMaskElement.maskContentUnits') |
| 3246 @DocsEditable() | 4037 @DocsEditable() |
| 3247 AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.instanc
e.maskContentUnits_Getter_(this); | 4038 AnimatedEnumeration get maskContentUnits => wrap_jso(_blink.BlinkSVGMaskElemen
t.instance.maskContentUnits_Getter_(unwrap_jso(this))); |
| 3248 | 4039 |
| 3249 @DomName('SVGMaskElement.maskUnits') | 4040 @DomName('SVGMaskElement.maskUnits') |
| 3250 @DocsEditable() | 4041 @DocsEditable() |
| 3251 AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.instance.maskU
nits_Getter_(this); | 4042 AnimatedEnumeration get maskUnits => wrap_jso(_blink.BlinkSVGMaskElement.insta
nce.maskUnits_Getter_(unwrap_jso(this))); |
| 3252 | 4043 |
| 3253 @DomName('SVGMaskElement.width') | 4044 @DomName('SVGMaskElement.width') |
| 3254 @DocsEditable() | 4045 @DocsEditable() |
| 3255 AnimatedLength get width => _blink.BlinkSVGMaskElement.instance.width_Getter_(
this); | 4046 AnimatedLength get width => wrap_jso(_blink.BlinkSVGMaskElement.instance.width
_Getter_(unwrap_jso(this))); |
| 3256 | 4047 |
| 3257 @DomName('SVGMaskElement.x') | 4048 @DomName('SVGMaskElement.x') |
| 3258 @DocsEditable() | 4049 @DocsEditable() |
| 3259 AnimatedLength get x => _blink.BlinkSVGMaskElement.instance.x_Getter_(this); | 4050 AnimatedLength get x => wrap_jso(_blink.BlinkSVGMaskElement.instance.x_Getter_
(unwrap_jso(this))); |
| 3260 | 4051 |
| 3261 @DomName('SVGMaskElement.y') | 4052 @DomName('SVGMaskElement.y') |
| 3262 @DocsEditable() | 4053 @DocsEditable() |
| 3263 AnimatedLength get y => _blink.BlinkSVGMaskElement.instance.y_Getter_(this); | 4054 AnimatedLength get y => wrap_jso(_blink.BlinkSVGMaskElement.instance.y_Getter_
(unwrap_jso(this))); |
| 3264 | 4055 |
| 3265 @DomName('SVGMaskElement.requiredExtensions') | 4056 @DomName('SVGMaskElement.requiredExtensions') |
| 3266 @DocsEditable() | 4057 @DocsEditable() |
| 3267 StringList get requiredExtensions => _blink.BlinkSVGMaskElement.instance.requi
redExtensions_Getter_(this); | 4058 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGMaskElement.insta
nce.requiredExtensions_Getter_(unwrap_jso(this))); |
| 3268 | 4059 |
| 3269 @DomName('SVGMaskElement.requiredFeatures') | 4060 @DomName('SVGMaskElement.requiredFeatures') |
| 3270 @DocsEditable() | 4061 @DocsEditable() |
| 3271 StringList get requiredFeatures => _blink.BlinkSVGMaskElement.instance.require
dFeatures_Getter_(this); | 4062 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGMaskElement.instanc
e.requiredFeatures_Getter_(unwrap_jso(this))); |
| 3272 | 4063 |
| 3273 @DomName('SVGMaskElement.systemLanguage') | 4064 @DomName('SVGMaskElement.systemLanguage') |
| 3274 @DocsEditable() | 4065 @DocsEditable() |
| 3275 StringList get systemLanguage => _blink.BlinkSVGMaskElement.instance.systemLan
guage_Getter_(this); | 4066 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGMaskElement.instance.
systemLanguage_Getter_(unwrap_jso(this))); |
| 3276 | 4067 |
| 3277 @DomName('SVGMaskElement.hasExtension') | 4068 @DomName('SVGMaskElement.hasExtension') |
| 3278 @DocsEditable() | 4069 @DocsEditable() |
| 3279 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.has
Extension_Callback_1_(this, extension); | 4070 bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.has
Extension_Callback_1_(unwrap_jso(this), extension); |
| 3280 | 4071 |
| 3281 } | 4072 } |
| 3282 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4073 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3283 // for details. All rights reserved. Use of this source code is governed by a | 4074 // for details. All rights reserved. Use of this source code is governed by a |
| 3284 // BSD-style license that can be found in the LICENSE file. | 4075 // BSD-style license that can be found in the LICENSE file. |
| 3285 | 4076 |
| 3286 // WARNING: Do not edit - generated code. | 4077 // WARNING: Do not edit - generated code. |
| 3287 | 4078 |
| 3288 | 4079 |
| 3289 @DocsEditable() | 4080 @DocsEditable() |
| 3290 @DomName('SVGMatrix') | 4081 @DomName('SVGMatrix') |
| 3291 @Unstable() | 4082 @Unstable() |
| 3292 class Matrix extends NativeFieldWrapperClass2 { | 4083 class Matrix extends NativeFieldWrapperClass2 { |
| 3293 // To suppress missing implicit constructor warnings. | 4084 // To suppress missing implicit constructor warnings. |
| 3294 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 4085 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
| 3295 | 4086 |
| 3296 @DomName('SVGMatrix.a') | 4087 static Matrix internalCreateMatrix() { |
| 3297 @DocsEditable() | 4088 return new Matrix._internalWrap(); |
| 3298 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(this); | 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); |
| 3299 | 4100 |
| 3300 @DomName('SVGMatrix.a') | 4101 @DomName('SVGMatrix.a') |
| 3301 @DocsEditable() | 4102 @DocsEditable() |
| 3302 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(this, value)
; | 4103 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); |
| 3303 | 4104 |
| 4105 @DomName('SVGMatrix.a') |
| 4106 @DocsEditable() |
| 4107 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t
his), value); |
| 4108 |
| 3304 @DomName('SVGMatrix.b') | 4109 @DomName('SVGMatrix.b') |
| 3305 @DocsEditable() | 4110 @DocsEditable() |
| 3306 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(this); | 4111 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); |
| 3307 | 4112 |
| 3308 @DomName('SVGMatrix.b') | 4113 @DomName('SVGMatrix.b') |
| 3309 @DocsEditable() | 4114 @DocsEditable() |
| 3310 void set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(this, value)
; | 4115 void set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(t
his), value); |
| 3311 | 4116 |
| 3312 @DomName('SVGMatrix.c') | 4117 @DomName('SVGMatrix.c') |
| 3313 @DocsEditable() | 4118 @DocsEditable() |
| 3314 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(this); | 4119 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); |
| 3315 | 4120 |
| 3316 @DomName('SVGMatrix.c') | 4121 @DomName('SVGMatrix.c') |
| 3317 @DocsEditable() | 4122 @DocsEditable() |
| 3318 void set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(this, value)
; | 4123 void set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(t
his), value); |
| 3319 | 4124 |
| 3320 @DomName('SVGMatrix.d') | 4125 @DomName('SVGMatrix.d') |
| 3321 @DocsEditable() | 4126 @DocsEditable() |
| 3322 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(this); | 4127 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); |
| 3323 | 4128 |
| 3324 @DomName('SVGMatrix.d') | 4129 @DomName('SVGMatrix.d') |
| 3325 @DocsEditable() | 4130 @DocsEditable() |
| 3326 void set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(this, value)
; | 4131 void set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(t
his), value); |
| 3327 | 4132 |
| 3328 @DomName('SVGMatrix.e') | 4133 @DomName('SVGMatrix.e') |
| 3329 @DocsEditable() | 4134 @DocsEditable() |
| 3330 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(this); | 4135 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); |
| 3331 | 4136 |
| 3332 @DomName('SVGMatrix.e') | 4137 @DomName('SVGMatrix.e') |
| 3333 @DocsEditable() | 4138 @DocsEditable() |
| 3334 void set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(this, value)
; | 4139 void set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(t
his), value); |
| 3335 | 4140 |
| 3336 @DomName('SVGMatrix.f') | 4141 @DomName('SVGMatrix.f') |
| 3337 @DocsEditable() | 4142 @DocsEditable() |
| 3338 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(this); | 4143 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); |
| 3339 | 4144 |
| 3340 @DomName('SVGMatrix.f') | 4145 @DomName('SVGMatrix.f') |
| 3341 @DocsEditable() | 4146 @DocsEditable() |
| 3342 void set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(this, value)
; | 4147 void set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(t
his), value); |
| 3343 | 4148 |
| 3344 @DomName('SVGMatrix.flipX') | 4149 @DomName('SVGMatrix.flipX') |
| 3345 @DocsEditable() | 4150 @DocsEditable() |
| 3346 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(this); | 4151 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(unwrap_jso(
this)); |
| 3347 | 4152 |
| 3348 @DomName('SVGMatrix.flipY') | 4153 @DomName('SVGMatrix.flipY') |
| 3349 @DocsEditable() | 4154 @DocsEditable() |
| 3350 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(this); | 4155 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(unwrap_jso(
this)); |
| 3351 | 4156 |
| 3352 @DomName('SVGMatrix.inverse') | 4157 @DomName('SVGMatrix.inverse') |
| 3353 @DocsEditable() | 4158 @DocsEditable() |
| 3354 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(this); | 4159 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(unwrap_
jso(this)); |
| 3355 | 4160 |
| 3356 @DomName('SVGMatrix.multiply') | 4161 @DomName('SVGMatrix.multiply') |
| 3357 @DocsEditable() | 4162 @DocsEditable() |
| 3358 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl
y_Callback_1_(this, secondMatrix); | 4163 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl
y_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix)); |
| 3359 | 4164 |
| 3360 @DomName('SVGMatrix.rotate') | 4165 @DomName('SVGMatrix.rotate') |
| 3361 @DocsEditable() | 4166 @DocsEditable() |
| 3362 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_(
this, angle); | 4167 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_(
unwrap_jso(this), angle); |
| 3363 | 4168 |
| 3364 @DomName('SVGMatrix.rotateFromVector') | 4169 @DomName('SVGMatrix.rotateFromVector') |
| 3365 @DocsEditable() | 4170 @DocsEditable() |
| 3366 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate
FromVector_Callback_2_(this, x, y); | 4171 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate
FromVector_Callback_2_(unwrap_jso(this), x, y); |
| 3367 | 4172 |
| 3368 @DomName('SVGMatrix.scale') | 4173 @DomName('SVGMatrix.scale') |
| 3369 @DocsEditable() | 4174 @DocsEditable() |
| 3370 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback
_1_(this, scaleFactor); | 4175 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback
_1_(unwrap_jso(this), scaleFactor); |
| 3371 | 4176 |
| 3372 @DomName('SVGMatrix.scaleNonUniform') | 4177 @DomName('SVGMatrix.scaleNonUniform') |
| 3373 @DocsEditable() | 4178 @DocsEditable() |
| 3374 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.instance.scaleNonUniform_Callback_2_(this, scaleFactorX, scaleFactorY); | 4179 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFactorX, scale
FactorY); |
| 3375 | 4180 |
| 3376 @DomName('SVGMatrix.skewX') | 4181 @DomName('SVGMatrix.skewX') |
| 3377 @DocsEditable() | 4182 @DocsEditable() |
| 3378 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(th
is, angle); | 4183 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(un
wrap_jso(this), angle); |
| 3379 | 4184 |
| 3380 @DomName('SVGMatrix.skewY') | 4185 @DomName('SVGMatrix.skewY') |
| 3381 @DocsEditable() | 4186 @DocsEditable() |
| 3382 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(th
is, angle); | 4187 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(un
wrap_jso(this), angle); |
| 3383 | 4188 |
| 3384 @DomName('SVGMatrix.translate') | 4189 @DomName('SVGMatrix.translate') |
| 3385 @DocsEditable() | 4190 @DocsEditable() |
| 3386 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal
lback_2_(this, x, y); | 4191 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal
lback_2_(unwrap_jso(this), x, y); |
| 3387 | 4192 |
| 3388 } | 4193 } |
| 3389 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3390 // for details. All rights reserved. Use of this source code is governed by a | 4195 // for details. All rights reserved. Use of this source code is governed by a |
| 3391 // BSD-style license that can be found in the LICENSE file. | 4196 // BSD-style license that can be found in the LICENSE file. |
| 3392 | 4197 |
| 3393 // WARNING: Do not edit - generated code. | 4198 // WARNING: Do not edit - generated code. |
| 3394 | 4199 |
| 3395 | 4200 |
| 3396 @DocsEditable() | 4201 @DocsEditable() |
| 3397 @DomName('SVGMetadataElement') | 4202 @DomName('SVGMetadataElement') |
| 3398 @Unstable() | 4203 @Unstable() |
| 3399 class MetadataElement extends SvgElement { | 4204 class MetadataElement extends SvgElement { |
| 3400 // To suppress missing implicit constructor warnings. | 4205 // To suppress missing implicit constructor warnings. |
| 3401 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } | 4206 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 |
| 3402 /** | 4219 /** |
| 3403 * Constructor instantiated by the DOM when a custom element has been created. | 4220 * Constructor instantiated by the DOM when a custom element has been created. |
| 3404 * | 4221 * |
| 3405 * This can only be called by subclasses from their created constructor. | 4222 * This can only be called by subclasses from their created constructor. |
| 3406 */ | 4223 */ |
| 3407 MetadataElement.created() : super.created(); | 4224 MetadataElement.created() : super.created(); |
| 3408 | 4225 |
| 3409 } | 4226 } |
| 3410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3411 // for details. All rights reserved. Use of this source code is governed by a | 4228 // for details. All rights reserved. Use of this source code is governed by a |
| 3412 // BSD-style license that can be found in the LICENSE file. | 4229 // BSD-style license that can be found in the LICENSE file. |
| 3413 | 4230 |
| 3414 // WARNING: Do not edit - generated code. | 4231 // WARNING: Do not edit - generated code. |
| 3415 | 4232 |
| 3416 | 4233 |
| 3417 @DocsEditable() | 4234 @DocsEditable() |
| 3418 @DomName('SVGNumber') | 4235 @DomName('SVGNumber') |
| 3419 @Unstable() | 4236 @Unstable() |
| 3420 class Number extends NativeFieldWrapperClass2 { | 4237 class Number extends NativeFieldWrapperClass2 { |
| 3421 // To suppress missing implicit constructor warnings. | 4238 // To suppress missing implicit constructor warnings. |
| 3422 factory Number._() { throw new UnsupportedError("Not supported"); } | 4239 factory Number._() { throw new UnsupportedError("Not supported"); } |
| 3423 | 4240 |
| 3424 @DomName('SVGNumber.value') | 4241 static Number internalCreateNumber() { |
| 3425 @DocsEditable() | 4242 return new Number._internalWrap(); |
| 3426 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(this); | 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); |
| 3427 | 4254 |
| 3428 @DomName('SVGNumber.value') | 4255 @DomName('SVGNumber.value') |
| 3429 @DocsEditable() | 4256 @DocsEditable() |
| 3430 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(this
, value); | 4257 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
| 3431 | 4258 |
| 4259 @DomName('SVGNumber.value') |
| 4260 @DocsEditable() |
| 4261 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr
ap_jso(this), value); |
| 4262 |
| 3432 } | 4263 } |
| 3433 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3434 // for details. All rights reserved. Use of this source code is governed by a | 4265 // for details. All rights reserved. Use of this source code is governed by a |
| 3435 // BSD-style license that can be found in the LICENSE file. | 4266 // BSD-style license that can be found in the LICENSE file. |
| 3436 | 4267 |
| 3437 // WARNING: Do not edit - generated code. | 4268 // WARNING: Do not edit - generated code. |
| 3438 | 4269 |
| 3439 | 4270 |
| 3440 @DocsEditable() | 4271 @DocsEditable() |
| 3441 @DomName('SVGNumberList') | 4272 @DomName('SVGNumberList') |
| 3442 @Unstable() | 4273 @Unstable() |
| 3443 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { | 4274 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { |
| 3444 // To suppress missing implicit constructor warnings. | 4275 // To suppress missing implicit constructor warnings. |
| 3445 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 4276 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
| 3446 | 4277 |
| 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 |
| 3447 @DomName('SVGNumberList.length') | 4292 @DomName('SVGNumberList.length') |
| 3448 @DocsEditable() | 4293 @DocsEditable() |
| 3449 @Experimental() // untriaged | 4294 @Experimental() // untriaged |
| 3450 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(this); | 4295 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); |
| 3451 | 4296 |
| 3452 @DomName('SVGNumberList.numberOfItems') | 4297 @DomName('SVGNumberList.numberOfItems') |
| 3453 @DocsEditable() | 4298 @DocsEditable() |
| 3454 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(this); | 4299 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 3455 | 4300 |
| 3456 Number operator[](int index) { | 4301 Number operator[](int index) { |
| 3457 if (index < 0 || index >= length) | 4302 if (index < 0 || index >= length) |
| 3458 throw new RangeError.index(index, this); | 4303 throw new RangeError.index(index, this); |
| 3459 return getItem(index); | 4304 return getItem(index); |
| 3460 } | 4305 } |
| 3461 | 4306 |
| 3462 void operator[]=(int index, Number value) { | 4307 void operator[]=(int index, Number value) { |
| 3463 throw new UnsupportedError("Cannot assign element of immutable List."); | 4308 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 3464 } | 4309 } |
| 3465 // -- start List<Number> mixins. | 4310 // -- start List<Number> mixins. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 3493 if (len == 0) throw new StateError("No elements"); | 4338 if (len == 0) throw new StateError("No elements"); |
| 3494 throw new StateError("More than one element"); | 4339 throw new StateError("More than one element"); |
| 3495 } | 4340 } |
| 3496 | 4341 |
| 3497 Number elementAt(int index) => this[index]; | 4342 Number elementAt(int index) => this[index]; |
| 3498 // -- end List<Number> mixins. | 4343 // -- end List<Number> mixins. |
| 3499 | 4344 |
| 3500 @DomName('SVGNumberList.__setter__') | 4345 @DomName('SVGNumberList.__setter__') |
| 3501 @DocsEditable() | 4346 @DocsEditable() |
| 3502 @Experimental() // untriaged | 4347 @Experimental() // untriaged |
| 3503 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(this, index, value); | 4348 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 3504 | 4349 |
| 3505 @DomName('SVGNumberList.appendItem') | 4350 @DomName('SVGNumberList.appendItem') |
| 3506 @DocsEditable() | 4351 @DocsEditable() |
| 3507 Number appendItem(Number item) => _blink.BlinkSVGNumberList.instance.appendIte
m_Callback_1_(this, item); | 4352 Number appendItem(Number item) => _blink.BlinkSVGNumberList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3508 | 4353 |
| 3509 @DomName('SVGNumberList.clear') | 4354 @DomName('SVGNumberList.clear') |
| 3510 @DocsEditable() | 4355 @DocsEditable() |
| 3511 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(this); | 4356 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js
o(this)); |
| 3512 | 4357 |
| 3513 @DomName('SVGNumberList.getItem') | 4358 @DomName('SVGNumberList.getItem') |
| 3514 @DocsEditable() | 4359 @DocsEditable() |
| 3515 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba
ck_1_(this, index); | 4360 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); |
| 3516 | 4361 |
| 3517 @DomName('SVGNumberList.initialize') | 4362 @DomName('SVGNumberList.initialize') |
| 3518 @DocsEditable() | 4363 @DocsEditable() |
| 3519 Number initialize(Number item) => _blink.BlinkSVGNumberList.instance.initializ
e_Callback_1_(this, item); | 4364 Number initialize(Number item) => _blink.BlinkSVGNumberList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3520 | 4365 |
| 3521 @DomName('SVGNumberList.insertItemBefore') | 4366 @DomName('SVGNumberList.insertItemBefore') |
| 3522 @DocsEditable() | 4367 @DocsEditable() |
| 3523 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nstance.insertItemBefore_Callback_2_(this, item, index); | 4368 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3524 | 4369 |
| 3525 @DomName('SVGNumberList.removeItem') | 4370 @DomName('SVGNumberList.removeItem') |
| 3526 @DocsEditable() | 4371 @DocsEditable() |
| 3527 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_
Callback_1_(this, index); | 4372 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); |
| 3528 | 4373 |
| 3529 @DomName('SVGNumberList.replaceItem') | 4374 @DomName('SVGNumberList.replaceItem') |
| 3530 @DocsEditable() | 4375 @DocsEditable() |
| 3531 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.instan
ce.replaceItem_Callback_2_(this, item, index); | 4376 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3532 | 4377 |
| 3533 } | 4378 } |
| 3534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3535 // for details. All rights reserved. Use of this source code is governed by a | 4380 // for details. All rights reserved. Use of this source code is governed by a |
| 3536 // BSD-style license that can be found in the LICENSE file. | 4381 // BSD-style license that can be found in the LICENSE file. |
| 3537 | 4382 |
| 3538 // WARNING: Do not edit - generated code. | 4383 // WARNING: Do not edit - generated code. |
| 3539 | 4384 |
| 3540 | 4385 |
| 3541 @DocsEditable() | 4386 @DocsEditable() |
| 3542 @DomName('SVGPathElement') | 4387 @DomName('SVGPathElement') |
| 3543 @Unstable() | 4388 @Unstable() |
| 3544 class PathElement extends GeometryElement { | 4389 class PathElement extends GeometryElement { |
| 3545 // To suppress missing implicit constructor warnings. | 4390 // To suppress missing implicit constructor warnings. |
| 3546 factory PathElement._() { throw new UnsupportedError("Not supported"); } | 4391 factory PathElement._() { throw new UnsupportedError("Not supported"); } |
| 3547 | 4392 |
| 3548 @DomName('SVGPathElement.SVGPathElement') | 4393 @DomName('SVGPathElement.SVGPathElement') |
| 3549 @DocsEditable() | 4394 @DocsEditable() |
| 3550 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); | 4395 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 |
| 3551 /** | 4408 /** |
| 3552 * Constructor instantiated by the DOM when a custom element has been created. | 4409 * Constructor instantiated by the DOM when a custom element has been created. |
| 3553 * | 4410 * |
| 3554 * This can only be called by subclasses from their created constructor. | 4411 * This can only be called by subclasses from their created constructor. |
| 3555 */ | 4412 */ |
| 3556 PathElement.created() : super.created(); | 4413 PathElement.created() : super.created(); |
| 3557 | 4414 |
| 3558 @DomName('SVGPathElement.animatedNormalizedPathSegList') | 4415 @DomName('SVGPathElement.animatedNormalizedPathSegList') |
| 3559 @DocsEditable() | 4416 @DocsEditable() |
| 3560 PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.in
stance.animatedNormalizedPathSegList_Getter_(this); | 4417 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); |
| 3561 | 4418 |
| 3562 @DomName('SVGPathElement.animatedPathSegList') | 4419 @DomName('SVGPathElement.animatedPathSegList') |
| 3563 @DocsEditable() | 4420 @DocsEditable() |
| 3564 PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.instance.ani
matedPathSegList_Getter_(this); | 4421 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins
tance.animatedPathSegList_Getter_(unwrap_jso(this))); |
| 3565 | 4422 |
| 3566 @DomName('SVGPathElement.normalizedPathSegList') | 4423 @DomName('SVGPathElement.normalizedPathSegList') |
| 3567 @DocsEditable() | 4424 @DocsEditable() |
| 3568 PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.instance.n
ormalizedPathSegList_Getter_(this); | 4425 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i
nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); |
| 3569 | 4426 |
| 3570 @DomName('SVGPathElement.pathLength') | 4427 @DomName('SVGPathElement.pathLength') |
| 3571 @DocsEditable() | 4428 @DocsEditable() |
| 3572 AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.instance.pathLengt
h_Getter_(this); | 4429 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.
pathLength_Getter_(unwrap_jso(this))); |
| 3573 | 4430 |
| 3574 @DomName('SVGPathElement.pathSegList') | 4431 @DomName('SVGPathElement.pathSegList') |
| 3575 @DocsEditable() | 4432 @DocsEditable() |
| 3576 PathSegList get pathSegList => _blink.BlinkSVGPathElement.instance.pathSegList
_Getter_(this); | 4433 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa
thSegList_Getter_(unwrap_jso(this))); |
| 3577 | 4434 |
| 3578 @DomName('SVGPathElement.createSVGPathSegArcAbs') | 4435 @DomName('SVGPathElement.createSVGPathSegArcAbs') |
| 3579 @DocsEditable() | 4436 @DocsEditable() |
| 3580 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcAbs_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
; | 4437 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); |
| 3581 | 4438 |
| 3582 @DomName('SVGPathElement.createSVGPathSegArcRel') | 4439 @DomName('SVGPathElement.createSVGPathSegArcRel') |
| 3583 @DocsEditable() | 4440 @DocsEditable() |
| 3584 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcRel_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
; | 4441 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); |
| 3585 | 4442 |
| 3586 @DomName('SVGPathElement.createSVGPathSegClosePath') | 4443 @DomName('SVGPathElement.createSVGPathSegClosePath') |
| 3587 @DocsEditable() | 4444 @DocsEditable() |
| 3588 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins
tance.createSVGPathSegClosePath_Callback_0_(this); | 4445 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins
tance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this)); |
| 3589 | 4446 |
| 3590 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') | 4447 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') |
| 3591 @DocsEditable() | 4448 @DocsEditable() |
| 3592 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicAbs_Callback_6_(this, x, y, x1, y1, x2, y2); | 4449 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); |
| 3593 | 4450 |
| 3594 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') | 4451 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') |
| 3595 @DocsEditable() | 4452 @DocsEditable() |
| 3596 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicRel_Callback_6_(this, x, y, x1, y1, x2, y2); | 4453 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); |
| 3597 | 4454 |
| 3598 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') | 4455 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') |
| 3599 @DocsEditable() | 4456 @DocsEditable() |
| 3600 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothAbs_Callback_4_(this, x, y, x2, y2); | 4457 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2); |
| 3601 | 4458 |
| 3602 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') | 4459 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') |
| 3603 @DocsEditable() | 4460 @DocsEditable() |
| 3604 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothRel_Callback_4_(this, x, y, x2, y2); | 4461 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2); |
| 3605 | 4462 |
| 3606 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') | 4463 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') |
| 3607 @DocsEditable() | 4464 @DocsEditable() |
| 3608 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticAbs_Callback_4_(this, x, y, x1, y1); | 4465 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1); |
| 3609 | 4466 |
| 3610 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') | 4467 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') |
| 3611 @DocsEditable() | 4468 @DocsEditable() |
| 3612 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticRel_Callback_4_(this, x, y, x1, y1); | 4469 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1); |
| 3613 | 4470 |
| 3614 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') | 4471 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') |
| 3615 @DocsEditable() | 4472 @DocsEditable() |
| 3616 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothAbs_Callback_2_(this, x, y); | 4473 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothAbs_Callback_2_(unwrap_jso(this), x, y); |
| 3617 | 4474 |
| 3618 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') | 4475 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') |
| 3619 @DocsEditable() | 4476 @DocsEditable() |
| 3620 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothRel_Callback_2_(this, x, y); | 4477 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothRel_Callback_2_(unwrap_jso(this), x, y); |
| 3621 | 4478 |
| 3622 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') | 4479 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') |
| 3623 @DocsEditable() | 4480 @DocsEditable() |
| 3624 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(this, x, y); | 4481 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this), x, y); |
| 3625 | 4482 |
| 3626 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') | 4483 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') |
| 3627 @DocsEditable() | 4484 @DocsEditable() |
| 3628 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(t
his, x); | 4485 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(u
nwrap_jso(this), x); |
| 3629 | 4486 |
| 3630 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') | 4487 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') |
| 3631 @DocsEditable() | 4488 @DocsEditable() |
| 3632 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(t
his, x); | 4489 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(u
nwrap_jso(this), x); |
| 3633 | 4490 |
| 3634 @DomName('SVGPathElement.createSVGPathSegLinetoRel') | 4491 @DomName('SVGPathElement.createSVGPathSegLinetoRel') |
| 3635 @DocsEditable() | 4492 @DocsEditable() |
| 3636 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoRel_Callback_2_(this, x, y); | 4493 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this), x, y); |
| 3637 | 4494 |
| 3638 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') | 4495 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') |
| 3639 @DocsEditable() | 4496 @DocsEditable() |
| 3640 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(this, y
); | 4497 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(unwrap_
jso(this), y); |
| 3641 | 4498 |
| 3642 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') | 4499 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') |
| 3643 @DocsEditable() | 4500 @DocsEditable() |
| 3644 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(this, y
); | 4501 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(unwrap_
jso(this), y); |
| 3645 | 4502 |
| 3646 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') | 4503 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') |
| 3647 @DocsEditable() | 4504 @DocsEditable() |
| 3648 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(this, x, y); | 4505 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this), x, y); |
| 3649 | 4506 |
| 3650 @DomName('SVGPathElement.createSVGPathSegMovetoRel') | 4507 @DomName('SVGPathElement.createSVGPathSegMovetoRel') |
| 3651 @DocsEditable() | 4508 @DocsEditable() |
| 3652 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoRel_Callback_2_(this, x, y); | 4509 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this), x, y); |
| 3653 | 4510 |
| 3654 @DomName('SVGPathElement.getPathSegAtLength') | 4511 @DomName('SVGPathElement.getPathSegAtLength') |
| 3655 @DocsEditable() | 4512 @DocsEditable() |
| 3656 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(this, distance); | 4513 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); |
| 3657 | 4514 |
| 3658 @DomName('SVGPathElement.getPointAtLength') | 4515 @DomName('SVGPathElement.getPointAtLength') |
| 3659 @DocsEditable() | 4516 @DocsEditable() |
| 3660 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPointAtLength_Callback_1_(this, distance); | 4517 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPointAtLength_Callback_1_(unwrap_jso(this), distance); |
| 3661 | 4518 |
| 3662 @DomName('SVGPathElement.getTotalLength') | 4519 @DomName('SVGPathElement.getTotalLength') |
| 3663 @DocsEditable() | 4520 @DocsEditable() |
| 3664 double getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_
Callback_0_(this); | 4521 double getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_
Callback_0_(unwrap_jso(this)); |
| 3665 | 4522 |
| 3666 } | 4523 } |
| 3667 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4524 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3668 // for details. All rights reserved. Use of this source code is governed by a | 4525 // for details. All rights reserved. Use of this source code is governed by a |
| 3669 // BSD-style license that can be found in the LICENSE file. | 4526 // BSD-style license that can be found in the LICENSE file. |
| 3670 | 4527 |
| 3671 // WARNING: Do not edit - generated code. | 4528 // WARNING: Do not edit - generated code. |
| 3672 | 4529 |
| 3673 | 4530 |
| 3674 @DocsEditable() | 4531 @DocsEditable() |
| 3675 @DomName('SVGPathSeg') | 4532 @DomName('SVGPathSeg') |
| 3676 @Unstable() | 4533 @Unstable() |
| 3677 class PathSeg extends NativeFieldWrapperClass2 { | 4534 class PathSeg extends NativeFieldWrapperClass2 { |
| 3678 // To suppress missing implicit constructor warnings. | 4535 // To suppress missing implicit constructor warnings. |
| 3679 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 4536 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
| 3680 | 4537 |
| 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 |
| 3681 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 4552 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
| 3682 @DocsEditable() | 4553 @DocsEditable() |
| 3683 static const int PATHSEG_ARC_ABS = 10; | 4554 static const int PATHSEG_ARC_ABS = 10; |
| 3684 | 4555 |
| 3685 @DomName('SVGPathSeg.PATHSEG_ARC_REL') | 4556 @DomName('SVGPathSeg.PATHSEG_ARC_REL') |
| 3686 @DocsEditable() | 4557 @DocsEditable() |
| 3687 static const int PATHSEG_ARC_REL = 11; | 4558 static const int PATHSEG_ARC_REL = 11; |
| 3688 | 4559 |
| 3689 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') | 4560 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') |
| 3690 @DocsEditable() | 4561 @DocsEditable() |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3753 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL') | 4624 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL') |
| 3754 @DocsEditable() | 4625 @DocsEditable() |
| 3755 static const int PATHSEG_MOVETO_REL = 3; | 4626 static const int PATHSEG_MOVETO_REL = 3; |
| 3756 | 4627 |
| 3757 @DomName('SVGPathSeg.PATHSEG_UNKNOWN') | 4628 @DomName('SVGPathSeg.PATHSEG_UNKNOWN') |
| 3758 @DocsEditable() | 4629 @DocsEditable() |
| 3759 static const int PATHSEG_UNKNOWN = 0; | 4630 static const int PATHSEG_UNKNOWN = 0; |
| 3760 | 4631 |
| 3761 @DomName('SVGPathSeg.pathSegType') | 4632 @DomName('SVGPathSeg.pathSegType') |
| 3762 @DocsEditable() | 4633 @DocsEditable() |
| 3763 int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(thi
s); | 4634 int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(unw
rap_jso(this)); |
| 3764 | 4635 |
| 3765 @DomName('SVGPathSeg.pathSegTypeAsLetter') | 4636 @DomName('SVGPathSeg.pathSegTypeAsLetter') |
| 3766 @DocsEditable() | 4637 @DocsEditable() |
| 3767 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeA
sLetter_Getter_(this); | 4638 String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeA
sLetter_Getter_(unwrap_jso(this)); |
| 3768 | 4639 |
| 3769 } | 4640 } |
| 3770 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3771 // for details. All rights reserved. Use of this source code is governed by a | 4642 // for details. All rights reserved. Use of this source code is governed by a |
| 3772 // BSD-style license that can be found in the LICENSE file. | 4643 // BSD-style license that can be found in the LICENSE file. |
| 3773 | 4644 |
| 3774 // WARNING: Do not edit - generated code. | 4645 // WARNING: Do not edit - generated code. |
| 3775 | 4646 |
| 3776 | 4647 |
| 3777 @DocsEditable() | 4648 @DocsEditable() |
| 3778 @DomName('SVGPathSegArcAbs') | 4649 @DomName('SVGPathSegArcAbs') |
| 3779 @Unstable() | 4650 @Unstable() |
| 3780 class PathSegArcAbs extends PathSeg { | 4651 class PathSegArcAbs extends PathSeg { |
| 3781 // To suppress missing implicit constructor warnings. | 4652 // To suppress missing implicit constructor warnings. |
| 3782 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 4653 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
| 3783 | 4654 |
| 3784 @DomName('SVGPathSegArcAbs.angle') | 4655 |
| 3785 @DocsEditable() | 4656 static PathSegArcAbs internalCreatePathSegArcAbs() { |
| 3786 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(this); | 4657 return new PathSegArcAbs._internalWrap(); |
| 4658 } |
| 4659 |
| 4660 factory PathSegArcAbs._internalWrap() { |
| 4661 return new PathSegArcAbs._internal(); |
| 4662 } |
| 4663 |
| 4664 PathSegArcAbs._internal() : super._internal(); |
| 4665 |
| 3787 | 4666 |
| 3788 @DomName('SVGPathSegArcAbs.angle') | 4667 @DomName('SVGPathSegArcAbs.angle') |
| 3789 @DocsEditable() | 4668 @DocsEditable() |
| 3790 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(this, value); | 4669 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); |
| 3791 | 4670 |
| 4671 @DomName('SVGPathSegArcAbs.angle') |
| 4672 @DocsEditable() |
| 4673 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4674 |
| 3792 @DomName('SVGPathSegArcAbs.largeArcFlag') | 4675 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 3793 @DocsEditable() | 4676 @DocsEditable() |
| 3794 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(this); | 4677 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
| 3795 | 4678 |
| 3796 @DomName('SVGPathSegArcAbs.largeArcFlag') | 4679 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 3797 @DocsEditable() | 4680 @DocsEditable() |
| 3798 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.lar
geArcFlag_Setter_(this, value); | 4681 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); |
| 3799 | 4682 |
| 3800 @DomName('SVGPathSegArcAbs.r1') | 4683 @DomName('SVGPathSegArcAbs.r1') |
| 3801 @DocsEditable() | 4684 @DocsEditable() |
| 3802 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(this); | 4685 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this
)); |
| 3803 | 4686 |
| 3804 @DomName('SVGPathSegArcAbs.r1') | 4687 @DomName('SVGPathSegArcAbs.r1') |
| 3805 @DocsEditable() | 4688 @DocsEditable() |
| 3806 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(thi
s, value); | 4689 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unw
rap_jso(this), value); |
| 3807 | 4690 |
| 3808 @DomName('SVGPathSegArcAbs.r2') | 4691 @DomName('SVGPathSegArcAbs.r2') |
| 3809 @DocsEditable() | 4692 @DocsEditable() |
| 3810 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(this); | 4693 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this
)); |
| 3811 | 4694 |
| 3812 @DomName('SVGPathSegArcAbs.r2') | 4695 @DomName('SVGPathSegArcAbs.r2') |
| 3813 @DocsEditable() | 4696 @DocsEditable() |
| 3814 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(thi
s, value); | 4697 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unw
rap_jso(this), value); |
| 3815 | 4698 |
| 3816 @DomName('SVGPathSegArcAbs.sweepFlag') | 4699 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 3817 @DocsEditable() | 4700 @DocsEditable() |
| 3818 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
this); | 4701 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
| 3819 | 4702 |
| 3820 @DomName('SVGPathSegArcAbs.sweepFlag') | 4703 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 3821 @DocsEditable() | 4704 @DocsEditable() |
| 3822 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepF
lag_Setter_(this, value); | 4705 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepF
lag_Setter_(unwrap_jso(this), value); |
| 3823 | 4706 |
| 3824 @DomName('SVGPathSegArcAbs.x') | 4707 @DomName('SVGPathSegArcAbs.x') |
| 3825 @DocsEditable() | 4708 @DocsEditable() |
| 3826 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(this); | 4709 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this))
; |
| 3827 | 4710 |
| 3828 @DomName('SVGPathSegArcAbs.x') | 4711 @DomName('SVGPathSegArcAbs.x') |
| 3829 @DocsEditable() | 4712 @DocsEditable() |
| 3830 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(this,
value); | 4713 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwra
p_jso(this), value); |
| 3831 | 4714 |
| 3832 @DomName('SVGPathSegArcAbs.y') | 4715 @DomName('SVGPathSegArcAbs.y') |
| 3833 @DocsEditable() | 4716 @DocsEditable() |
| 3834 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(this); | 4717 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this))
; |
| 3835 | 4718 |
| 3836 @DomName('SVGPathSegArcAbs.y') | 4719 @DomName('SVGPathSegArcAbs.y') |
| 3837 @DocsEditable() | 4720 @DocsEditable() |
| 3838 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(this,
value); | 4721 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwra
p_jso(this), value); |
| 3839 | 4722 |
| 3840 } | 4723 } |
| 3841 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4724 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3842 // for details. All rights reserved. Use of this source code is governed by a | 4725 // for details. All rights reserved. Use of this source code is governed by a |
| 3843 // BSD-style license that can be found in the LICENSE file. | 4726 // BSD-style license that can be found in the LICENSE file. |
| 3844 | 4727 |
| 3845 // WARNING: Do not edit - generated code. | 4728 // WARNING: Do not edit - generated code. |
| 3846 | 4729 |
| 3847 | 4730 |
| 3848 @DocsEditable() | 4731 @DocsEditable() |
| 3849 @DomName('SVGPathSegArcRel') | 4732 @DomName('SVGPathSegArcRel') |
| 3850 @Unstable() | 4733 @Unstable() |
| 3851 class PathSegArcRel extends PathSeg { | 4734 class PathSegArcRel extends PathSeg { |
| 3852 // To suppress missing implicit constructor warnings. | 4735 // To suppress missing implicit constructor warnings. |
| 3853 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 4736 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
| 3854 | 4737 |
| 3855 @DomName('SVGPathSegArcRel.angle') | 4738 |
| 3856 @DocsEditable() | 4739 static PathSegArcRel internalCreatePathSegArcRel() { |
| 3857 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(this); | 4740 return new PathSegArcRel._internalWrap(); |
| 4741 } |
| 4742 |
| 4743 factory PathSegArcRel._internalWrap() { |
| 4744 return new PathSegArcRel._internal(); |
| 4745 } |
| 4746 |
| 4747 PathSegArcRel._internal() : super._internal(); |
| 4748 |
| 3858 | 4749 |
| 3859 @DomName('SVGPathSegArcRel.angle') | 4750 @DomName('SVGPathSegArcRel.angle') |
| 3860 @DocsEditable() | 4751 @DocsEditable() |
| 3861 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(this, value); | 4752 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); |
| 3862 | 4753 |
| 4754 @DomName('SVGPathSegArcRel.angle') |
| 4755 @DocsEditable() |
| 4756 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4757 |
| 3863 @DomName('SVGPathSegArcRel.largeArcFlag') | 4758 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 3864 @DocsEditable() | 4759 @DocsEditable() |
| 3865 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(this); | 4760 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
| 3866 | 4761 |
| 3867 @DomName('SVGPathSegArcRel.largeArcFlag') | 4762 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 3868 @DocsEditable() | 4763 @DocsEditable() |
| 3869 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.lar
geArcFlag_Setter_(this, value); | 4764 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); |
| 3870 | 4765 |
| 3871 @DomName('SVGPathSegArcRel.r1') | 4766 @DomName('SVGPathSegArcRel.r1') |
| 3872 @DocsEditable() | 4767 @DocsEditable() |
| 3873 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(this); | 4768 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this
)); |
| 3874 | 4769 |
| 3875 @DomName('SVGPathSegArcRel.r1') | 4770 @DomName('SVGPathSegArcRel.r1') |
| 3876 @DocsEditable() | 4771 @DocsEditable() |
| 3877 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(thi
s, value); | 4772 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unw
rap_jso(this), value); |
| 3878 | 4773 |
| 3879 @DomName('SVGPathSegArcRel.r2') | 4774 @DomName('SVGPathSegArcRel.r2') |
| 3880 @DocsEditable() | 4775 @DocsEditable() |
| 3881 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(this); | 4776 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this
)); |
| 3882 | 4777 |
| 3883 @DomName('SVGPathSegArcRel.r2') | 4778 @DomName('SVGPathSegArcRel.r2') |
| 3884 @DocsEditable() | 4779 @DocsEditable() |
| 3885 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(thi
s, value); | 4780 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unw
rap_jso(this), value); |
| 3886 | 4781 |
| 3887 @DomName('SVGPathSegArcRel.sweepFlag') | 4782 @DomName('SVGPathSegArcRel.sweepFlag') |
| 3888 @DocsEditable() | 4783 @DocsEditable() |
| 3889 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
this); | 4784 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
| 3890 | 4785 |
| 3891 @DomName('SVGPathSegArcRel.sweepFlag') | 4786 @DomName('SVGPathSegArcRel.sweepFlag') |
| 3892 @DocsEditable() | 4787 @DocsEditable() |
| 3893 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepF
lag_Setter_(this, value); | 4788 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepF
lag_Setter_(unwrap_jso(this), value); |
| 3894 | 4789 |
| 3895 @DomName('SVGPathSegArcRel.x') | 4790 @DomName('SVGPathSegArcRel.x') |
| 3896 @DocsEditable() | 4791 @DocsEditable() |
| 3897 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(this); | 4792 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this))
; |
| 3898 | 4793 |
| 3899 @DomName('SVGPathSegArcRel.x') | 4794 @DomName('SVGPathSegArcRel.x') |
| 3900 @DocsEditable() | 4795 @DocsEditable() |
| 3901 void set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(this,
value); | 4796 void set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwra
p_jso(this), value); |
| 3902 | 4797 |
| 3903 @DomName('SVGPathSegArcRel.y') | 4798 @DomName('SVGPathSegArcRel.y') |
| 3904 @DocsEditable() | 4799 @DocsEditable() |
| 3905 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(this); | 4800 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this))
; |
| 3906 | 4801 |
| 3907 @DomName('SVGPathSegArcRel.y') | 4802 @DomName('SVGPathSegArcRel.y') |
| 3908 @DocsEditable() | 4803 @DocsEditable() |
| 3909 void set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(this,
value); | 4804 void set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwra
p_jso(this), value); |
| 3910 | 4805 |
| 3911 } | 4806 } |
| 3912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4807 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3913 // for details. All rights reserved. Use of this source code is governed by a | 4808 // for details. All rights reserved. Use of this source code is governed by a |
| 3914 // BSD-style license that can be found in the LICENSE file. | 4809 // BSD-style license that can be found in the LICENSE file. |
| 3915 | 4810 |
| 3916 // WARNING: Do not edit - generated code. | 4811 // WARNING: Do not edit - generated code. |
| 3917 | 4812 |
| 3918 | 4813 |
| 3919 @DocsEditable() | 4814 @DocsEditable() |
| 3920 @DomName('SVGPathSegClosePath') | 4815 @DomName('SVGPathSegClosePath') |
| 3921 @Unstable() | 4816 @Unstable() |
| 3922 class PathSegClosePath extends PathSeg { | 4817 class PathSegClosePath extends PathSeg { |
| 3923 // To suppress missing implicit constructor warnings. | 4818 // To suppress missing implicit constructor warnings. |
| 3924 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } | 4819 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } |
| 3925 | 4820 |
| 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 |
| 3926 } | 4833 } |
| 3927 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4834 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3928 // for details. All rights reserved. Use of this source code is governed by a | 4835 // for details. All rights reserved. Use of this source code is governed by a |
| 3929 // BSD-style license that can be found in the LICENSE file. | 4836 // BSD-style license that can be found in the LICENSE file. |
| 3930 | 4837 |
| 3931 // WARNING: Do not edit - generated code. | 4838 // WARNING: Do not edit - generated code. |
| 3932 | 4839 |
| 3933 | 4840 |
| 3934 @DocsEditable() | 4841 @DocsEditable() |
| 3935 @DomName('SVGPathSegCurvetoCubicAbs') | 4842 @DomName('SVGPathSegCurvetoCubicAbs') |
| 3936 @Unstable() | 4843 @Unstable() |
| 3937 class PathSegCurvetoCubicAbs extends PathSeg { | 4844 class PathSegCurvetoCubicAbs extends PathSeg { |
| 3938 // To suppress missing implicit constructor warnings. | 4845 // To suppress missing implicit constructor warnings. |
| 3939 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 4846 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
| 3940 | 4847 |
| 3941 @DomName('SVGPathSegCurvetoCubicAbs.x') | 4848 |
| 3942 @DocsEditable() | 4849 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { |
| 3943 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(this); | 4850 return new PathSegCurvetoCubicAbs._internalWrap(); |
| 4851 } |
| 4852 |
| 4853 factory PathSegCurvetoCubicAbs._internalWrap() { |
| 4854 return new PathSegCurvetoCubicAbs._internal(); |
| 4855 } |
| 4856 |
| 4857 PathSegCurvetoCubicAbs._internal() : super._internal(); |
| 4858 |
| 3944 | 4859 |
| 3945 @DomName('SVGPathSegCurvetoCubicAbs.x') | 4860 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 3946 @DocsEditable() | 4861 @DocsEditable() |
| 3947 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(this, value); | 4862 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); |
| 3948 | 4863 |
| 4864 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 4865 @DocsEditable() |
| 4866 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(unwrap_jso(this), value); |
| 4867 |
| 3949 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 4868 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 3950 @DocsEditable() | 4869 @DocsEditable() |
| 3951 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(this); | 4870 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap
_jso(this)); |
| 3952 | 4871 |
| 3953 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 4872 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 3954 @DocsEditable() | 4873 @DocsEditable() |
| 3955 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Se
tter_(this, value); | 4874 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Se
tter_(unwrap_jso(this), value); |
| 3956 | 4875 |
| 3957 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 4876 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 3958 @DocsEditable() | 4877 @DocsEditable() |
| 3959 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(this); | 4878 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap
_jso(this)); |
| 3960 | 4879 |
| 3961 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 4880 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 3962 @DocsEditable() | 4881 @DocsEditable() |
| 3963 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Se
tter_(this, value); | 4882 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Se
tter_(unwrap_jso(this), value); |
| 3964 | 4883 |
| 3965 @DomName('SVGPathSegCurvetoCubicAbs.y') | 4884 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 3966 @DocsEditable() | 4885 @DocsEditable() |
| 3967 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(this); | 4886 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j
so(this)); |
| 3968 | 4887 |
| 3969 @DomName('SVGPathSegCurvetoCubicAbs.y') | 4888 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 3970 @DocsEditable() | 4889 @DocsEditable() |
| 3971 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Sett
er_(this, value); | 4890 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Sett
er_(unwrap_jso(this), value); |
| 3972 | 4891 |
| 3973 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 4892 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 3974 @DocsEditable() | 4893 @DocsEditable() |
| 3975 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(this); | 4894 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap
_jso(this)); |
| 3976 | 4895 |
| 3977 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 4896 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 3978 @DocsEditable() | 4897 @DocsEditable() |
| 3979 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Se
tter_(this, value); | 4898 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Se
tter_(unwrap_jso(this), value); |
| 3980 | 4899 |
| 3981 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 4900 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 3982 @DocsEditable() | 4901 @DocsEditable() |
| 3983 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(this); | 4902 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap
_jso(this)); |
| 3984 | 4903 |
| 3985 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 4904 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 3986 @DocsEditable() | 4905 @DocsEditable() |
| 3987 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Se
tter_(this, value); | 4906 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Se
tter_(unwrap_jso(this), value); |
| 3988 | 4907 |
| 3989 } | 4908 } |
| 3990 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4909 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3991 // for details. All rights reserved. Use of this source code is governed by a | 4910 // for details. All rights reserved. Use of this source code is governed by a |
| 3992 // BSD-style license that can be found in the LICENSE file. | 4911 // BSD-style license that can be found in the LICENSE file. |
| 3993 | 4912 |
| 3994 // WARNING: Do not edit - generated code. | 4913 // WARNING: Do not edit - generated code. |
| 3995 | 4914 |
| 3996 | 4915 |
| 3997 @DocsEditable() | 4916 @DocsEditable() |
| 3998 @DomName('SVGPathSegCurvetoCubicRel') | 4917 @DomName('SVGPathSegCurvetoCubicRel') |
| 3999 @Unstable() | 4918 @Unstable() |
| 4000 class PathSegCurvetoCubicRel extends PathSeg { | 4919 class PathSegCurvetoCubicRel extends PathSeg { |
| 4001 // To suppress missing implicit constructor warnings. | 4920 // To suppress missing implicit constructor warnings. |
| 4002 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 4921 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
| 4003 | 4922 |
| 4004 @DomName('SVGPathSegCurvetoCubicRel.x') | 4923 |
| 4005 @DocsEditable() | 4924 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { |
| 4006 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(this); | 4925 return new PathSegCurvetoCubicRel._internalWrap(); |
| 4926 } |
| 4927 |
| 4928 factory PathSegCurvetoCubicRel._internalWrap() { |
| 4929 return new PathSegCurvetoCubicRel._internal(); |
| 4930 } |
| 4931 |
| 4932 PathSegCurvetoCubicRel._internal() : super._internal(); |
| 4933 |
| 4007 | 4934 |
| 4008 @DomName('SVGPathSegCurvetoCubicRel.x') | 4935 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 4009 @DocsEditable() | 4936 @DocsEditable() |
| 4010 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(this, value); | 4937 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); |
| 4011 | 4938 |
| 4939 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 4940 @DocsEditable() |
| 4941 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(unwrap_jso(this), value); |
| 4942 |
| 4012 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4943 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 4013 @DocsEditable() | 4944 @DocsEditable() |
| 4014 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(this); | 4945 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap
_jso(this)); |
| 4015 | 4946 |
| 4016 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4947 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 4017 @DocsEditable() | 4948 @DocsEditable() |
| 4018 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Se
tter_(this, value); | 4949 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Se
tter_(unwrap_jso(this), value); |
| 4019 | 4950 |
| 4020 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4951 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 4021 @DocsEditable() | 4952 @DocsEditable() |
| 4022 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(this); | 4953 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap
_jso(this)); |
| 4023 | 4954 |
| 4024 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4955 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 4025 @DocsEditable() | 4956 @DocsEditable() |
| 4026 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Se
tter_(this, value); | 4957 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Se
tter_(unwrap_jso(this), value); |
| 4027 | 4958 |
| 4028 @DomName('SVGPathSegCurvetoCubicRel.y') | 4959 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 4029 @DocsEditable() | 4960 @DocsEditable() |
| 4030 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(this); | 4961 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j
so(this)); |
| 4031 | 4962 |
| 4032 @DomName('SVGPathSegCurvetoCubicRel.y') | 4963 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 4033 @DocsEditable() | 4964 @DocsEditable() |
| 4034 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Sett
er_(this, value); | 4965 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Sett
er_(unwrap_jso(this), value); |
| 4035 | 4966 |
| 4036 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4967 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 4037 @DocsEditable() | 4968 @DocsEditable() |
| 4038 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(this); | 4969 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap
_jso(this)); |
| 4039 | 4970 |
| 4040 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4971 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 4041 @DocsEditable() | 4972 @DocsEditable() |
| 4042 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Se
tter_(this, value); | 4973 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Se
tter_(unwrap_jso(this), value); |
| 4043 | 4974 |
| 4044 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4975 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 4045 @DocsEditable() | 4976 @DocsEditable() |
| 4046 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(this); | 4977 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap
_jso(this)); |
| 4047 | 4978 |
| 4048 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4979 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 4049 @DocsEditable() | 4980 @DocsEditable() |
| 4050 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Se
tter_(this, value); | 4981 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Se
tter_(unwrap_jso(this), value); |
| 4051 | 4982 |
| 4052 } | 4983 } |
| 4053 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4984 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4054 // for details. All rights reserved. Use of this source code is governed by a | 4985 // for details. All rights reserved. Use of this source code is governed by a |
| 4055 // BSD-style license that can be found in the LICENSE file. | 4986 // BSD-style license that can be found in the LICENSE file. |
| 4056 | 4987 |
| 4057 // WARNING: Do not edit - generated code. | 4988 // WARNING: Do not edit - generated code. |
| 4058 | 4989 |
| 4059 | 4990 |
| 4060 @DocsEditable() | 4991 @DocsEditable() |
| 4061 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 4992 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
| 4062 @Unstable() | 4993 @Unstable() |
| 4063 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 4994 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
| 4064 // To suppress missing implicit constructor warnings. | 4995 // To suppress missing implicit constructor warnings. |
| 4065 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 4996 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
| 4066 | 4997 |
| 4067 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4998 |
| 4068 @DocsEditable() | 4999 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { |
| 4069 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(th
is); | 5000 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); |
| 5001 } |
| 5002 |
| 5003 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { |
| 5004 return new PathSegCurvetoCubicSmoothAbs._internal(); |
| 5005 } |
| 5006 |
| 5007 PathSegCurvetoCubicSmoothAbs._internal() : super._internal(); |
| 5008 |
| 4070 | 5009 |
| 4071 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 5010 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 4072 @DocsEditable() | 5011 @DocsEditable() |
| 4073 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(this, value); | 5012 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); |
| 4074 | 5013 |
| 5014 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5015 @DocsEditable() |
| 5016 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(unwrap_jso(this), value); |
| 5017 |
| 4075 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 5018 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 4076 @DocsEditable() | 5019 @DocsEditable() |
| 4077 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
this); | 5020 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
unwrap_jso(this)); |
| 4078 | 5021 |
| 4079 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 5022 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 4080 @DocsEditable() | 5023 @DocsEditable() |
| 4081 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.x2_Setter_(this, value); | 5024 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.x2_Setter_(unwrap_jso(this), value); |
| 4082 | 5025 |
| 4083 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 5026 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 4084 @DocsEditable() | 5027 @DocsEditable() |
| 4085 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(th
is); | 5028 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un
wrap_jso(this)); |
| 4086 | 5029 |
| 4087 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 5030 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 4088 @DocsEditable() | 5031 @DocsEditable() |
| 4089 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
y_Setter_(this, value); | 5032 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
y_Setter_(unwrap_jso(this), value); |
| 4090 | 5033 |
| 4091 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 5034 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 4092 @DocsEditable() | 5035 @DocsEditable() |
| 4093 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
this); | 5036 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
unwrap_jso(this)); |
| 4094 | 5037 |
| 4095 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 5038 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 4096 @DocsEditable() | 5039 @DocsEditable() |
| 4097 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.y2_Setter_(this, value); | 5040 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.y2_Setter_(unwrap_jso(this), value); |
| 4098 | 5041 |
| 4099 } | 5042 } |
| 4100 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4101 // for details. All rights reserved. Use of this source code is governed by a | 5044 // for details. All rights reserved. Use of this source code is governed by a |
| 4102 // BSD-style license that can be found in the LICENSE file. | 5045 // BSD-style license that can be found in the LICENSE file. |
| 4103 | 5046 |
| 4104 // WARNING: Do not edit - generated code. | 5047 // WARNING: Do not edit - generated code. |
| 4105 | 5048 |
| 4106 | 5049 |
| 4107 @DocsEditable() | 5050 @DocsEditable() |
| 4108 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 5051 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
| 4109 @Unstable() | 5052 @Unstable() |
| 4110 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 5053 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
| 4111 // To suppress missing implicit constructor warnings. | 5054 // To suppress missing implicit constructor warnings. |
| 4112 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 5055 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
| 4113 | 5056 |
| 4114 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5057 |
| 4115 @DocsEditable() | 5058 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { |
| 4116 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(th
is); | 5059 return new PathSegCurvetoCubicSmoothRel._internalWrap(); |
| 5060 } |
| 5061 |
| 5062 factory PathSegCurvetoCubicSmoothRel._internalWrap() { |
| 5063 return new PathSegCurvetoCubicSmoothRel._internal(); |
| 5064 } |
| 5065 |
| 5066 PathSegCurvetoCubicSmoothRel._internal() : super._internal(); |
| 5067 |
| 4117 | 5068 |
| 4118 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 5069 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 4119 @DocsEditable() | 5070 @DocsEditable() |
| 4120 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(this, value); | 5071 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); |
| 4121 | 5072 |
| 5073 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5074 @DocsEditable() |
| 5075 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(unwrap_jso(this), value); |
| 5076 |
| 4122 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 5077 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 4123 @DocsEditable() | 5078 @DocsEditable() |
| 4124 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
this); | 5079 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
unwrap_jso(this)); |
| 4125 | 5080 |
| 4126 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 5081 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 4127 @DocsEditable() | 5082 @DocsEditable() |
| 4128 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.x2_Setter_(this, value); | 5083 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.x2_Setter_(unwrap_jso(this), value); |
| 4129 | 5084 |
| 4130 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 5085 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 4131 @DocsEditable() | 5086 @DocsEditable() |
| 4132 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(th
is); | 5087 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un
wrap_jso(this)); |
| 4133 | 5088 |
| 4134 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 5089 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 4135 @DocsEditable() | 5090 @DocsEditable() |
| 4136 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
y_Setter_(this, value); | 5091 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
y_Setter_(unwrap_jso(this), value); |
| 4137 | 5092 |
| 4138 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 5093 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 4139 @DocsEditable() | 5094 @DocsEditable() |
| 4140 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
this); | 5095 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
unwrap_jso(this)); |
| 4141 | 5096 |
| 4142 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 5097 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 4143 @DocsEditable() | 5098 @DocsEditable() |
| 4144 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.y2_Setter_(this, value); | 5099 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.y2_Setter_(unwrap_jso(this), value); |
| 4145 | 5100 |
| 4146 } | 5101 } |
| 4147 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5102 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4148 // for details. All rights reserved. Use of this source code is governed by a | 5103 // for details. All rights reserved. Use of this source code is governed by a |
| 4149 // BSD-style license that can be found in the LICENSE file. | 5104 // BSD-style license that can be found in the LICENSE file. |
| 4150 | 5105 |
| 4151 // WARNING: Do not edit - generated code. | 5106 // WARNING: Do not edit - generated code. |
| 4152 | 5107 |
| 4153 | 5108 |
| 4154 @DocsEditable() | 5109 @DocsEditable() |
| 4155 @DomName('SVGPathSegCurvetoQuadraticAbs') | 5110 @DomName('SVGPathSegCurvetoQuadraticAbs') |
| 4156 @Unstable() | 5111 @Unstable() |
| 4157 class PathSegCurvetoQuadraticAbs extends PathSeg { | 5112 class PathSegCurvetoQuadraticAbs extends PathSeg { |
| 4158 // To suppress missing implicit constructor warnings. | 5113 // To suppress missing implicit constructor warnings. |
| 4159 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5114 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4160 | 5115 |
| 4161 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5116 |
| 4162 @DocsEditable() | 5117 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { |
| 4163 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(this
); | 5118 return new PathSegCurvetoQuadraticAbs._internalWrap(); |
| 5119 } |
| 5120 |
| 5121 factory PathSegCurvetoQuadraticAbs._internalWrap() { |
| 5122 return new PathSegCurvetoQuadraticAbs._internal(); |
| 5123 } |
| 5124 |
| 5125 PathSegCurvetoQuadraticAbs._internal() : super._internal(); |
| 5126 |
| 4164 | 5127 |
| 4165 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 5128 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 4166 @DocsEditable() | 5129 @DocsEditable() |
| 4167 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(this, value); | 5130 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 4168 | 5131 |
| 5132 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5133 @DocsEditable() |
| 5134 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5135 |
| 4169 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 5136 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 4170 @DocsEditable() | 5137 @DocsEditable() |
| 4171 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(th
is); | 5138 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un
wrap_jso(this)); |
| 4172 | 5139 |
| 4173 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 5140 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 4174 @DocsEditable() | 5141 @DocsEditable() |
| 4175 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x
1_Setter_(this, value); | 5142 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x
1_Setter_(unwrap_jso(this), value); |
| 4176 | 5143 |
| 4177 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 5144 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 4178 @DocsEditable() | 5145 @DocsEditable() |
| 4179 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(this
); | 5146 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr
ap_jso(this)); |
| 4180 | 5147 |
| 4181 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 5148 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 4182 @DocsEditable() | 5149 @DocsEditable() |
| 4183 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_
Setter_(this, value); | 5150 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_
Setter_(unwrap_jso(this), value); |
| 4184 | 5151 |
| 4185 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 5152 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 4186 @DocsEditable() | 5153 @DocsEditable() |
| 4187 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(th
is); | 5154 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un
wrap_jso(this)); |
| 4188 | 5155 |
| 4189 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 5156 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 4190 @DocsEditable() | 5157 @DocsEditable() |
| 4191 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y
1_Setter_(this, value); | 5158 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y
1_Setter_(unwrap_jso(this), value); |
| 4192 | 5159 |
| 4193 } | 5160 } |
| 4194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4195 // for details. All rights reserved. Use of this source code is governed by a | 5162 // for details. All rights reserved. Use of this source code is governed by a |
| 4196 // BSD-style license that can be found in the LICENSE file. | 5163 // BSD-style license that can be found in the LICENSE file. |
| 4197 | 5164 |
| 4198 // WARNING: Do not edit - generated code. | 5165 // WARNING: Do not edit - generated code. |
| 4199 | 5166 |
| 4200 | 5167 |
| 4201 @DocsEditable() | 5168 @DocsEditable() |
| 4202 @DomName('SVGPathSegCurvetoQuadraticRel') | 5169 @DomName('SVGPathSegCurvetoQuadraticRel') |
| 4203 @Unstable() | 5170 @Unstable() |
| 4204 class PathSegCurvetoQuadraticRel extends PathSeg { | 5171 class PathSegCurvetoQuadraticRel extends PathSeg { |
| 4205 // To suppress missing implicit constructor warnings. | 5172 // To suppress missing implicit constructor warnings. |
| 4206 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5173 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4207 | 5174 |
| 4208 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5175 |
| 4209 @DocsEditable() | 5176 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { |
| 4210 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(this
); | 5177 return new PathSegCurvetoQuadraticRel._internalWrap(); |
| 5178 } |
| 5179 |
| 5180 factory PathSegCurvetoQuadraticRel._internalWrap() { |
| 5181 return new PathSegCurvetoQuadraticRel._internal(); |
| 5182 } |
| 5183 |
| 5184 PathSegCurvetoQuadraticRel._internal() : super._internal(); |
| 5185 |
| 4211 | 5186 |
| 4212 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 5187 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 4213 @DocsEditable() | 5188 @DocsEditable() |
| 4214 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(this, value); | 5189 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 4215 | 5190 |
| 5191 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5192 @DocsEditable() |
| 5193 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5194 |
| 4216 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 5195 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 4217 @DocsEditable() | 5196 @DocsEditable() |
| 4218 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(th
is); | 5197 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un
wrap_jso(this)); |
| 4219 | 5198 |
| 4220 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 5199 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 4221 @DocsEditable() | 5200 @DocsEditable() |
| 4222 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x
1_Setter_(this, value); | 5201 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x
1_Setter_(unwrap_jso(this), value); |
| 4223 | 5202 |
| 4224 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 5203 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 4225 @DocsEditable() | 5204 @DocsEditable() |
| 4226 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(this
); | 5205 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr
ap_jso(this)); |
| 4227 | 5206 |
| 4228 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 5207 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 4229 @DocsEditable() | 5208 @DocsEditable() |
| 4230 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_
Setter_(this, value); | 5209 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_
Setter_(unwrap_jso(this), value); |
| 4231 | 5210 |
| 4232 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 5211 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 4233 @DocsEditable() | 5212 @DocsEditable() |
| 4234 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(th
is); | 5213 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un
wrap_jso(this)); |
| 4235 | 5214 |
| 4236 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 5215 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 4237 @DocsEditable() | 5216 @DocsEditable() |
| 4238 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y
1_Setter_(this, value); | 5217 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y
1_Setter_(unwrap_jso(this), value); |
| 4239 | 5218 |
| 4240 } | 5219 } |
| 4241 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5220 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4242 // for details. All rights reserved. Use of this source code is governed by a | 5221 // for details. All rights reserved. Use of this source code is governed by a |
| 4243 // BSD-style license that can be found in the LICENSE file. | 5222 // BSD-style license that can be found in the LICENSE file. |
| 4244 | 5223 |
| 4245 // WARNING: Do not edit - generated code. | 5224 // WARNING: Do not edit - generated code. |
| 4246 | 5225 |
| 4247 | 5226 |
| 4248 @DocsEditable() | 5227 @DocsEditable() |
| 4249 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 5228 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
| 4250 @Unstable() | 5229 @Unstable() |
| 4251 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 5230 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
| 4252 // To suppress missing implicit constructor warnings. | 5231 // To suppress missing implicit constructor warnings. |
| 4253 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 5232 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
| 4254 | 5233 |
| 4255 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5234 |
| 4256 @DocsEditable() | 5235 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { |
| 4257 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(this); | 5236 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); |
| 5237 } |
| 5238 |
| 5239 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { |
| 5240 return new PathSegCurvetoQuadraticSmoothAbs._internal(); |
| 5241 } |
| 5242 |
| 5243 PathSegCurvetoQuadraticSmoothAbs._internal() : super._internal(); |
| 5244 |
| 4258 | 5245 |
| 4259 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 5246 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 4260 @DocsEditable() | 5247 @DocsEditable() |
| 4261 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(this, value); | 5248 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); |
| 4262 | 5249 |
| 5250 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5251 @DocsEditable() |
| 5252 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5253 |
| 4263 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 5254 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 4264 @DocsEditable() | 5255 @DocsEditable() |
| 4265 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(this); | 5256 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(unwrap_jso(this)); |
| 4266 | 5257 |
| 4267 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 5258 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 4268 @DocsEditable() | 5259 @DocsEditable() |
| 4269 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.y_Setter_(this, value); | 5260 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.y_Setter_(unwrap_jso(this), value); |
| 4270 | 5261 |
| 4271 } | 5262 } |
| 4272 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4273 // for details. All rights reserved. Use of this source code is governed by a | 5264 // for details. All rights reserved. Use of this source code is governed by a |
| 4274 // BSD-style license that can be found in the LICENSE file. | 5265 // BSD-style license that can be found in the LICENSE file. |
| 4275 | 5266 |
| 4276 // WARNING: Do not edit - generated code. | 5267 // WARNING: Do not edit - generated code. |
| 4277 | 5268 |
| 4278 | 5269 |
| 4279 @DocsEditable() | 5270 @DocsEditable() |
| 4280 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 5271 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
| 4281 @Unstable() | 5272 @Unstable() |
| 4282 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 5273 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
| 4283 // To suppress missing implicit constructor warnings. | 5274 // To suppress missing implicit constructor warnings. |
| 4284 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 5275 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
| 4285 | 5276 |
| 4286 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5277 |
| 4287 @DocsEditable() | 5278 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { |
| 4288 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(this); | 5279 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); |
| 5280 } |
| 5281 |
| 5282 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { |
| 5283 return new PathSegCurvetoQuadraticSmoothRel._internal(); |
| 5284 } |
| 5285 |
| 5286 PathSegCurvetoQuadraticSmoothRel._internal() : super._internal(); |
| 5287 |
| 4289 | 5288 |
| 4290 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 5289 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 4291 @DocsEditable() | 5290 @DocsEditable() |
| 4292 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(this, value); | 5291 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); |
| 4293 | 5292 |
| 5293 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5294 @DocsEditable() |
| 5295 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5296 |
| 4294 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 5297 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 4295 @DocsEditable() | 5298 @DocsEditable() |
| 4296 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(this); | 5299 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(unwrap_jso(this)); |
| 4297 | 5300 |
| 4298 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 5301 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 4299 @DocsEditable() | 5302 @DocsEditable() |
| 4300 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.y_Setter_(this, value); | 5303 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.y_Setter_(unwrap_jso(this), value); |
| 4301 | 5304 |
| 4302 } | 5305 } |
| 4303 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5306 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4304 // for details. All rights reserved. Use of this source code is governed by a | 5307 // for details. All rights reserved. Use of this source code is governed by a |
| 4305 // BSD-style license that can be found in the LICENSE file. | 5308 // BSD-style license that can be found in the LICENSE file. |
| 4306 | 5309 |
| 4307 // WARNING: Do not edit - generated code. | 5310 // WARNING: Do not edit - generated code. |
| 4308 | 5311 |
| 4309 | 5312 |
| 4310 @DocsEditable() | 5313 @DocsEditable() |
| 4311 @DomName('SVGPathSegLinetoAbs') | 5314 @DomName('SVGPathSegLinetoAbs') |
| 4312 @Unstable() | 5315 @Unstable() |
| 4313 class PathSegLinetoAbs extends PathSeg { | 5316 class PathSegLinetoAbs extends PathSeg { |
| 4314 // To suppress missing implicit constructor warnings. | 5317 // To suppress missing implicit constructor warnings. |
| 4315 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 5318 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 4316 | 5319 |
| 4317 @DomName('SVGPathSegLinetoAbs.x') | 5320 |
| 4318 @DocsEditable() | 5321 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { |
| 4319 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(this); | 5322 return new PathSegLinetoAbs._internalWrap(); |
| 5323 } |
| 5324 |
| 5325 factory PathSegLinetoAbs._internalWrap() { |
| 5326 return new PathSegLinetoAbs._internal(); |
| 5327 } |
| 5328 |
| 5329 PathSegLinetoAbs._internal() : super._internal(); |
| 5330 |
| 4320 | 5331 |
| 4321 @DomName('SVGPathSegLinetoAbs.x') | 5332 @DomName('SVGPathSegLinetoAbs.x') |
| 4322 @DocsEditable() | 5333 @DocsEditable() |
| 4323 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(th
is, value); | 5334 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 4324 | 5335 |
| 5336 @DomName('SVGPathSegLinetoAbs.x') |
| 5337 @DocsEditable() |
| 5338 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5339 |
| 4325 @DomName('SVGPathSegLinetoAbs.y') | 5340 @DomName('SVGPathSegLinetoAbs.y') |
| 4326 @DocsEditable() | 5341 @DocsEditable() |
| 4327 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(this); | 5342 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
| 4328 | 5343 |
| 4329 @DomName('SVGPathSegLinetoAbs.y') | 5344 @DomName('SVGPathSegLinetoAbs.y') |
| 4330 @DocsEditable() | 5345 @DocsEditable() |
| 4331 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(th
is, value); | 5346 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(un
wrap_jso(this), value); |
| 4332 | 5347 |
| 4333 } | 5348 } |
| 4334 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4335 // for details. All rights reserved. Use of this source code is governed by a | 5350 // for details. All rights reserved. Use of this source code is governed by a |
| 4336 // BSD-style license that can be found in the LICENSE file. | 5351 // BSD-style license that can be found in the LICENSE file. |
| 4337 | 5352 |
| 4338 // WARNING: Do not edit - generated code. | 5353 // WARNING: Do not edit - generated code. |
| 4339 | 5354 |
| 4340 | 5355 |
| 4341 @DocsEditable() | 5356 @DocsEditable() |
| 4342 @DomName('SVGPathSegLinetoHorizontalAbs') | 5357 @DomName('SVGPathSegLinetoHorizontalAbs') |
| 4343 @Unstable() | 5358 @Unstable() |
| 4344 class PathSegLinetoHorizontalAbs extends PathSeg { | 5359 class PathSegLinetoHorizontalAbs extends PathSeg { |
| 4345 // To suppress missing implicit constructor warnings. | 5360 // To suppress missing implicit constructor warnings. |
| 4346 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 5361 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4347 | 5362 |
| 4348 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5363 |
| 4349 @DocsEditable() | 5364 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { |
| 4350 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(this
); | 5365 return new PathSegLinetoHorizontalAbs._internalWrap(); |
| 5366 } |
| 5367 |
| 5368 factory PathSegLinetoHorizontalAbs._internalWrap() { |
| 5369 return new PathSegLinetoHorizontalAbs._internal(); |
| 5370 } |
| 5371 |
| 5372 PathSegLinetoHorizontalAbs._internal() : super._internal(); |
| 5373 |
| 4351 | 5374 |
| 4352 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 5375 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 4353 @DocsEditable() | 5376 @DocsEditable() |
| 4354 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(this, value); | 5377 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 4355 | 5378 |
| 5379 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5380 @DocsEditable() |
| 5381 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5382 |
| 4356 } | 5383 } |
| 4357 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4358 // for details. All rights reserved. Use of this source code is governed by a | 5385 // for details. All rights reserved. Use of this source code is governed by a |
| 4359 // BSD-style license that can be found in the LICENSE file. | 5386 // BSD-style license that can be found in the LICENSE file. |
| 4360 | 5387 |
| 4361 // WARNING: Do not edit - generated code. | 5388 // WARNING: Do not edit - generated code. |
| 4362 | 5389 |
| 4363 | 5390 |
| 4364 @DocsEditable() | 5391 @DocsEditable() |
| 4365 @DomName('SVGPathSegLinetoHorizontalRel') | 5392 @DomName('SVGPathSegLinetoHorizontalRel') |
| 4366 @Unstable() | 5393 @Unstable() |
| 4367 class PathSegLinetoHorizontalRel extends PathSeg { | 5394 class PathSegLinetoHorizontalRel extends PathSeg { |
| 4368 // To suppress missing implicit constructor warnings. | 5395 // To suppress missing implicit constructor warnings. |
| 4369 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 5396 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 4370 | 5397 |
| 4371 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5398 |
| 4372 @DocsEditable() | 5399 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { |
| 4373 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(this
); | 5400 return new PathSegLinetoHorizontalRel._internalWrap(); |
| 5401 } |
| 5402 |
| 5403 factory PathSegLinetoHorizontalRel._internalWrap() { |
| 5404 return new PathSegLinetoHorizontalRel._internal(); |
| 5405 } |
| 5406 |
| 5407 PathSegLinetoHorizontalRel._internal() : super._internal(); |
| 5408 |
| 4374 | 5409 |
| 4375 @DomName('SVGPathSegLinetoHorizontalRel.x') | 5410 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 4376 @DocsEditable() | 5411 @DocsEditable() |
| 4377 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(this, value); | 5412 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 4378 | 5413 |
| 5414 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5415 @DocsEditable() |
| 5416 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5417 |
| 4379 } | 5418 } |
| 4380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4381 // for details. All rights reserved. Use of this source code is governed by a | 5420 // for details. All rights reserved. Use of this source code is governed by a |
| 4382 // BSD-style license that can be found in the LICENSE file. | 5421 // BSD-style license that can be found in the LICENSE file. |
| 4383 | 5422 |
| 4384 // WARNING: Do not edit - generated code. | 5423 // WARNING: Do not edit - generated code. |
| 4385 | 5424 |
| 4386 | 5425 |
| 4387 @DocsEditable() | 5426 @DocsEditable() |
| 4388 @DomName('SVGPathSegLinetoRel') | 5427 @DomName('SVGPathSegLinetoRel') |
| 4389 @Unstable() | 5428 @Unstable() |
| 4390 class PathSegLinetoRel extends PathSeg { | 5429 class PathSegLinetoRel extends PathSeg { |
| 4391 // To suppress missing implicit constructor warnings. | 5430 // To suppress missing implicit constructor warnings. |
| 4392 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 5431 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
| 4393 | 5432 |
| 4394 @DomName('SVGPathSegLinetoRel.x') | 5433 |
| 4395 @DocsEditable() | 5434 static PathSegLinetoRel internalCreatePathSegLinetoRel() { |
| 4396 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(this); | 5435 return new PathSegLinetoRel._internalWrap(); |
| 5436 } |
| 5437 |
| 5438 factory PathSegLinetoRel._internalWrap() { |
| 5439 return new PathSegLinetoRel._internal(); |
| 5440 } |
| 5441 |
| 5442 PathSegLinetoRel._internal() : super._internal(); |
| 5443 |
| 4397 | 5444 |
| 4398 @DomName('SVGPathSegLinetoRel.x') | 5445 @DomName('SVGPathSegLinetoRel.x') |
| 4399 @DocsEditable() | 5446 @DocsEditable() |
| 4400 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(th
is, value); | 5447 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 4401 | 5448 |
| 5449 @DomName('SVGPathSegLinetoRel.x') |
| 5450 @DocsEditable() |
| 5451 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5452 |
| 4402 @DomName('SVGPathSegLinetoRel.y') | 5453 @DomName('SVGPathSegLinetoRel.y') |
| 4403 @DocsEditable() | 5454 @DocsEditable() |
| 4404 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(this); | 5455 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
| 4405 | 5456 |
| 4406 @DomName('SVGPathSegLinetoRel.y') | 5457 @DomName('SVGPathSegLinetoRel.y') |
| 4407 @DocsEditable() | 5458 @DocsEditable() |
| 4408 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(th
is, value); | 5459 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(un
wrap_jso(this), value); |
| 4409 | 5460 |
| 4410 } | 5461 } |
| 4411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5462 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4412 // for details. All rights reserved. Use of this source code is governed by a | 5463 // for details. All rights reserved. Use of this source code is governed by a |
| 4413 // BSD-style license that can be found in the LICENSE file. | 5464 // BSD-style license that can be found in the LICENSE file. |
| 4414 | 5465 |
| 4415 // WARNING: Do not edit - generated code. | 5466 // WARNING: Do not edit - generated code. |
| 4416 | 5467 |
| 4417 | 5468 |
| 4418 @DocsEditable() | 5469 @DocsEditable() |
| 4419 @DomName('SVGPathSegLinetoVerticalAbs') | 5470 @DomName('SVGPathSegLinetoVerticalAbs') |
| 4420 @Unstable() | 5471 @Unstable() |
| 4421 class PathSegLinetoVerticalAbs extends PathSeg { | 5472 class PathSegLinetoVerticalAbs extends PathSeg { |
| 4422 // To suppress missing implicit constructor warnings. | 5473 // To suppress missing implicit constructor warnings. |
| 4423 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 5474 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
| 4424 | 5475 |
| 4425 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5476 |
| 4426 @DocsEditable() | 5477 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { |
| 4427 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(this); | 5478 return new PathSegLinetoVerticalAbs._internalWrap(); |
| 5479 } |
| 5480 |
| 5481 factory PathSegLinetoVerticalAbs._internalWrap() { |
| 5482 return new PathSegLinetoVerticalAbs._internal(); |
| 5483 } |
| 5484 |
| 5485 PathSegLinetoVerticalAbs._internal() : super._internal(); |
| 5486 |
| 4428 | 5487 |
| 4429 @DomName('SVGPathSegLinetoVerticalAbs.y') | 5488 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 4430 @DocsEditable() | 5489 @DocsEditable() |
| 4431 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(this, value); | 5490 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); |
| 4432 | 5491 |
| 5492 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5493 @DocsEditable() |
| 5494 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5495 |
| 4433 } | 5496 } |
| 4434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5497 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4435 // for details. All rights reserved. Use of this source code is governed by a | 5498 // for details. All rights reserved. Use of this source code is governed by a |
| 4436 // BSD-style license that can be found in the LICENSE file. | 5499 // BSD-style license that can be found in the LICENSE file. |
| 4437 | 5500 |
| 4438 // WARNING: Do not edit - generated code. | 5501 // WARNING: Do not edit - generated code. |
| 4439 | 5502 |
| 4440 | 5503 |
| 4441 @DocsEditable() | 5504 @DocsEditable() |
| 4442 @DomName('SVGPathSegLinetoVerticalRel') | 5505 @DomName('SVGPathSegLinetoVerticalRel') |
| 4443 @Unstable() | 5506 @Unstable() |
| 4444 class PathSegLinetoVerticalRel extends PathSeg { | 5507 class PathSegLinetoVerticalRel extends PathSeg { |
| 4445 // To suppress missing implicit constructor warnings. | 5508 // To suppress missing implicit constructor warnings. |
| 4446 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 5509 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
| 4447 | 5510 |
| 4448 @DomName('SVGPathSegLinetoVerticalRel.y') | 5511 |
| 4449 @DocsEditable() | 5512 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { |
| 4450 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(this); | 5513 return new PathSegLinetoVerticalRel._internalWrap(); |
| 5514 } |
| 5515 |
| 5516 factory PathSegLinetoVerticalRel._internalWrap() { |
| 5517 return new PathSegLinetoVerticalRel._internal(); |
| 5518 } |
| 5519 |
| 5520 PathSegLinetoVerticalRel._internal() : super._internal(); |
| 5521 |
| 4451 | 5522 |
| 4452 @DomName('SVGPathSegLinetoVerticalRel.y') | 5523 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 4453 @DocsEditable() | 5524 @DocsEditable() |
| 4454 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(this, value); | 5525 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); |
| 4455 | 5526 |
| 5527 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5528 @DocsEditable() |
| 5529 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5530 |
| 4456 } | 5531 } |
| 4457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4458 // for details. All rights reserved. Use of this source code is governed by a | 5533 // for details. All rights reserved. Use of this source code is governed by a |
| 4459 // BSD-style license that can be found in the LICENSE file. | 5534 // BSD-style license that can be found in the LICENSE file. |
| 4460 | 5535 |
| 4461 // WARNING: Do not edit - generated code. | 5536 // WARNING: Do not edit - generated code. |
| 4462 | 5537 |
| 4463 | 5538 |
| 4464 @DocsEditable() | 5539 @DocsEditable() |
| 4465 @DomName('SVGPathSegList') | 5540 @DomName('SVGPathSegList') |
| 4466 @Unstable() | 5541 @Unstable() |
| 4467 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { | 5542 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { |
| 4468 // To suppress missing implicit constructor warnings. | 5543 // To suppress missing implicit constructor warnings. |
| 4469 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 5544 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
| 4470 | 5545 |
| 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 |
| 4471 @DomName('SVGPathSegList.length') | 5560 @DomName('SVGPathSegList.length') |
| 4472 @DocsEditable() | 5561 @DocsEditable() |
| 4473 @Experimental() // untriaged | 5562 @Experimental() // untriaged |
| 4474 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(this); | 5563 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); |
| 4475 | 5564 |
| 4476 @DomName('SVGPathSegList.numberOfItems') | 5565 @DomName('SVGPathSegList.numberOfItems') |
| 4477 @DocsEditable() | 5566 @DocsEditable() |
| 4478 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(this); | 5567 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); |
| 4479 | 5568 |
| 4480 PathSeg operator[](int index) { | 5569 PathSeg operator[](int index) { |
| 4481 if (index < 0 || index >= length) | 5570 if (index < 0 || index >= length) |
| 4482 throw new RangeError.index(index, this); | 5571 throw new RangeError.index(index, this); |
| 4483 return getItem(index); | 5572 return getItem(index); |
| 4484 } | 5573 } |
| 4485 | 5574 |
| 4486 void operator[]=(int index, PathSeg value) { | 5575 void operator[]=(int index, PathSeg value) { |
| 4487 throw new UnsupportedError("Cannot assign element of immutable List."); | 5576 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 4488 } | 5577 } |
| 4489 // -- start List<PathSeg> mixins. | 5578 // -- start List<PathSeg> mixins. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 4517 if (len == 0) throw new StateError("No elements"); | 5606 if (len == 0) throw new StateError("No elements"); |
| 4518 throw new StateError("More than one element"); | 5607 throw new StateError("More than one element"); |
| 4519 } | 5608 } |
| 4520 | 5609 |
| 4521 PathSeg elementAt(int index) => this[index]; | 5610 PathSeg elementAt(int index) => this[index]; |
| 4522 // -- end List<PathSeg> mixins. | 5611 // -- end List<PathSeg> mixins. |
| 4523 | 5612 |
| 4524 @DomName('SVGPathSegList.__setter__') | 5613 @DomName('SVGPathSegList.__setter__') |
| 4525 @DocsEditable() | 5614 @DocsEditable() |
| 4526 @Experimental() // untriaged | 5615 @Experimental() // untriaged |
| 4527 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(this, index, value); | 5616 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 4528 | 5617 |
| 4529 @DomName('SVGPathSegList.appendItem') | 5618 @DomName('SVGPathSegList.appendItem') |
| 4530 @DocsEditable() | 5619 @DocsEditable() |
| 4531 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app
endItem_Callback_1_(this, newItem); | 5620 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app
endItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); |
| 4532 | 5621 |
| 4533 @DomName('SVGPathSegList.clear') | 5622 @DomName('SVGPathSegList.clear') |
| 4534 @DocsEditable() | 5623 @DocsEditable() |
| 4535 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(this); | 5624 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j
so(this)); |
| 4536 | 5625 |
| 4537 @DomName('SVGPathSegList.getItem') | 5626 @DomName('SVGPathSegList.getItem') |
| 4538 @DocsEditable() | 5627 @DocsEditable() |
| 4539 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call
back_1_(this, index); | 5628 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call
back_1_(unwrap_jso(this), index); |
| 4540 | 5629 |
| 4541 @DomName('SVGPathSegList.initialize') | 5630 @DomName('SVGPathSegList.initialize') |
| 4542 @DocsEditable() | 5631 @DocsEditable() |
| 4543 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini
tialize_Callback_1_(this, newItem); | 5632 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini
tialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); |
| 4544 | 5633 |
| 4545 @DomName('SVGPathSegList.insertItemBefore') | 5634 @DomName('SVGPathSegList.insertItemBefore') |
| 4546 @DocsEditable() | 5635 @DocsEditable() |
| 4547 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.instance.insertItemBefore_Callback_2_(this, newItem, index); | 5636 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem)
, index); |
| 4548 | 5637 |
| 4549 @DomName('SVGPathSegList.removeItem') | 5638 @DomName('SVGPathSegList.removeItem') |
| 4550 @DocsEditable() | 5639 @DocsEditable() |
| 4551 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte
m_Callback_1_(this, index); | 5640 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte
m_Callback_1_(unwrap_jso(this), index); |
| 4552 | 5641 |
| 4553 @DomName('SVGPathSegList.replaceItem') | 5642 @DomName('SVGPathSegList.replaceItem') |
| 4554 @DocsEditable() | 5643 @DocsEditable() |
| 4555 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
instance.replaceItem_Callback_2_(this, newItem, index); | 5644 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index); |
| 4556 | 5645 |
| 4557 } | 5646 } |
| 4558 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5647 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4559 // for details. All rights reserved. Use of this source code is governed by a | 5648 // for details. All rights reserved. Use of this source code is governed by a |
| 4560 // BSD-style license that can be found in the LICENSE file. | 5649 // BSD-style license that can be found in the LICENSE file. |
| 4561 | 5650 |
| 4562 // WARNING: Do not edit - generated code. | 5651 // WARNING: Do not edit - generated code. |
| 4563 | 5652 |
| 4564 | 5653 |
| 4565 @DocsEditable() | 5654 @DocsEditable() |
| 4566 @DomName('SVGPathSegMovetoAbs') | 5655 @DomName('SVGPathSegMovetoAbs') |
| 4567 @Unstable() | 5656 @Unstable() |
| 4568 class PathSegMovetoAbs extends PathSeg { | 5657 class PathSegMovetoAbs extends PathSeg { |
| 4569 // To suppress missing implicit constructor warnings. | 5658 // To suppress missing implicit constructor warnings. |
| 4570 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 5659 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 4571 | 5660 |
| 4572 @DomName('SVGPathSegMovetoAbs.x') | 5661 |
| 4573 @DocsEditable() | 5662 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { |
| 4574 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(this); | 5663 return new PathSegMovetoAbs._internalWrap(); |
| 5664 } |
| 5665 |
| 5666 factory PathSegMovetoAbs._internalWrap() { |
| 5667 return new PathSegMovetoAbs._internal(); |
| 5668 } |
| 5669 |
| 5670 PathSegMovetoAbs._internal() : super._internal(); |
| 5671 |
| 4575 | 5672 |
| 4576 @DomName('SVGPathSegMovetoAbs.x') | 5673 @DomName('SVGPathSegMovetoAbs.x') |
| 4577 @DocsEditable() | 5674 @DocsEditable() |
| 4578 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(th
is, value); | 5675 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 4579 | 5676 |
| 5677 @DomName('SVGPathSegMovetoAbs.x') |
| 5678 @DocsEditable() |
| 5679 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5680 |
| 4580 @DomName('SVGPathSegMovetoAbs.y') | 5681 @DomName('SVGPathSegMovetoAbs.y') |
| 4581 @DocsEditable() | 5682 @DocsEditable() |
| 4582 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(this); | 5683 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
| 4583 | 5684 |
| 4584 @DomName('SVGPathSegMovetoAbs.y') | 5685 @DomName('SVGPathSegMovetoAbs.y') |
| 4585 @DocsEditable() | 5686 @DocsEditable() |
| 4586 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(th
is, value); | 5687 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(un
wrap_jso(this), value); |
| 4587 | 5688 |
| 4588 } | 5689 } |
| 4589 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5690 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4590 // for details. All rights reserved. Use of this source code is governed by a | 5691 // for details. All rights reserved. Use of this source code is governed by a |
| 4591 // BSD-style license that can be found in the LICENSE file. | 5692 // BSD-style license that can be found in the LICENSE file. |
| 4592 | 5693 |
| 4593 // WARNING: Do not edit - generated code. | 5694 // WARNING: Do not edit - generated code. |
| 4594 | 5695 |
| 4595 | 5696 |
| 4596 @DocsEditable() | 5697 @DocsEditable() |
| 4597 @DomName('SVGPathSegMovetoRel') | 5698 @DomName('SVGPathSegMovetoRel') |
| 4598 @Unstable() | 5699 @Unstable() |
| 4599 class PathSegMovetoRel extends PathSeg { | 5700 class PathSegMovetoRel extends PathSeg { |
| 4600 // To suppress missing implicit constructor warnings. | 5701 // To suppress missing implicit constructor warnings. |
| 4601 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 5702 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
| 4602 | 5703 |
| 4603 @DomName('SVGPathSegMovetoRel.x') | 5704 |
| 4604 @DocsEditable() | 5705 static PathSegMovetoRel internalCreatePathSegMovetoRel() { |
| 4605 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(this); | 5706 return new PathSegMovetoRel._internalWrap(); |
| 5707 } |
| 5708 |
| 5709 factory PathSegMovetoRel._internalWrap() { |
| 5710 return new PathSegMovetoRel._internal(); |
| 5711 } |
| 5712 |
| 5713 PathSegMovetoRel._internal() : super._internal(); |
| 5714 |
| 4606 | 5715 |
| 4607 @DomName('SVGPathSegMovetoRel.x') | 5716 @DomName('SVGPathSegMovetoRel.x') |
| 4608 @DocsEditable() | 5717 @DocsEditable() |
| 4609 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(th
is, value); | 5718 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 4610 | 5719 |
| 5720 @DomName('SVGPathSegMovetoRel.x') |
| 5721 @DocsEditable() |
| 5722 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5723 |
| 4611 @DomName('SVGPathSegMovetoRel.y') | 5724 @DomName('SVGPathSegMovetoRel.y') |
| 4612 @DocsEditable() | 5725 @DocsEditable() |
| 4613 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(this); | 5726 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
| 4614 | 5727 |
| 4615 @DomName('SVGPathSegMovetoRel.y') | 5728 @DomName('SVGPathSegMovetoRel.y') |
| 4616 @DocsEditable() | 5729 @DocsEditable() |
| 4617 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(th
is, value); | 5730 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(un
wrap_jso(this), value); |
| 4618 | 5731 |
| 4619 } | 5732 } |
| 4620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5733 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4621 // for details. All rights reserved. Use of this source code is governed by a | 5734 // for details. All rights reserved. Use of this source code is governed by a |
| 4622 // BSD-style license that can be found in the LICENSE file. | 5735 // BSD-style license that can be found in the LICENSE file. |
| 4623 | 5736 |
| 4624 // WARNING: Do not edit - generated code. | 5737 // WARNING: Do not edit - generated code. |
| 4625 | 5738 |
| 4626 | 5739 |
| 4627 @DocsEditable() | 5740 @DocsEditable() |
| 4628 @DomName('SVGPatternElement') | 5741 @DomName('SVGPatternElement') |
| 4629 @Unstable() | 5742 @Unstable() |
| 4630 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { | 5743 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { |
| 4631 // To suppress missing implicit constructor warnings. | 5744 // To suppress missing implicit constructor warnings. |
| 4632 factory PatternElement._() { throw new UnsupportedError("Not supported"); } | 5745 factory PatternElement._() { throw new UnsupportedError("Not supported"); } |
| 4633 | 5746 |
| 4634 @DomName('SVGPatternElement.SVGPatternElement') | 5747 @DomName('SVGPatternElement.SVGPatternElement') |
| 4635 @DocsEditable() | 5748 @DocsEditable() |
| 4636 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); | 5749 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 |
| 4637 /** | 5762 /** |
| 4638 * Constructor instantiated by the DOM when a custom element has been created. | 5763 * Constructor instantiated by the DOM when a custom element has been created. |
| 4639 * | 5764 * |
| 4640 * This can only be called by subclasses from their created constructor. | 5765 * This can only be called by subclasses from their created constructor. |
| 4641 */ | 5766 */ |
| 4642 PatternElement.created() : super.created(); | 5767 PatternElement.created() : super.created(); |
| 4643 | 5768 |
| 4644 @DomName('SVGPatternElement.height') | 5769 @DomName('SVGPatternElement.height') |
| 4645 @DocsEditable() | 5770 @DocsEditable() |
| 4646 AnimatedLength get height => _blink.BlinkSVGPatternElement.instance.height_Get
ter_(this); | 5771 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| 4647 | 5772 |
| 4648 @DomName('SVGPatternElement.patternContentUnits') | 5773 @DomName('SVGPatternElement.patternContentUnits') |
| 4649 @DocsEditable() | 5774 @DocsEditable() |
| 4650 AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.i
nstance.patternContentUnits_Getter_(this); | 5775 AnimatedEnumeration get patternContentUnits => wrap_jso(_blink.BlinkSVGPattern
Element.instance.patternContentUnits_Getter_(unwrap_jso(this))); |
| 4651 | 5776 |
| 4652 @DomName('SVGPatternElement.patternTransform') | 5777 @DomName('SVGPatternElement.patternTransform') |
| 4653 @DocsEditable() | 5778 @DocsEditable() |
| 4654 AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.in
stance.patternTransform_Getter_(this); | 5779 AnimatedTransformList get patternTransform => wrap_jso(_blink.BlinkSVGPatternE
lement.instance.patternTransform_Getter_(unwrap_jso(this))); |
| 4655 | 5780 |
| 4656 @DomName('SVGPatternElement.patternUnits') | 5781 @DomName('SVGPatternElement.patternUnits') |
| 4657 @DocsEditable() | 5782 @DocsEditable() |
| 4658 AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.instance
.patternUnits_Getter_(this); | 5783 AnimatedEnumeration get patternUnits => wrap_jso(_blink.BlinkSVGPatternElement
.instance.patternUnits_Getter_(unwrap_jso(this))); |
| 4659 | 5784 |
| 4660 @DomName('SVGPatternElement.width') | 5785 @DomName('SVGPatternElement.width') |
| 4661 @DocsEditable() | 5786 @DocsEditable() |
| 4662 AnimatedLength get width => _blink.BlinkSVGPatternElement.instance.width_Gette
r_(this); | 5787 AnimatedLength get width => wrap_jso(_blink.BlinkSVGPatternElement.instance.wi
dth_Getter_(unwrap_jso(this))); |
| 4663 | 5788 |
| 4664 @DomName('SVGPatternElement.x') | 5789 @DomName('SVGPatternElement.x') |
| 4665 @DocsEditable() | 5790 @DocsEditable() |
| 4666 AnimatedLength get x => _blink.BlinkSVGPatternElement.instance.x_Getter_(this)
; | 5791 AnimatedLength get x => wrap_jso(_blink.BlinkSVGPatternElement.instance.x_Gett
er_(unwrap_jso(this))); |
| 4667 | 5792 |
| 4668 @DomName('SVGPatternElement.y') | 5793 @DomName('SVGPatternElement.y') |
| 4669 @DocsEditable() | 5794 @DocsEditable() |
| 4670 AnimatedLength get y => _blink.BlinkSVGPatternElement.instance.y_Getter_(this)
; | 5795 AnimatedLength get y => wrap_jso(_blink.BlinkSVGPatternElement.instance.y_Gett
er_(unwrap_jso(this))); |
| 4671 | 5796 |
| 4672 @DomName('SVGPatternElement.preserveAspectRatio') | 5797 @DomName('SVGPatternElement.preserveAspectRatio') |
| 4673 @DocsEditable() | 5798 @DocsEditable() |
| 4674 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternE
lement.instance.preserveAspectRatio_Getter_(this); | 5799 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GPatternElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 4675 | 5800 |
| 4676 @DomName('SVGPatternElement.viewBox') | 5801 @DomName('SVGPatternElement.viewBox') |
| 4677 @DocsEditable() | 5802 @DocsEditable() |
| 4678 AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.instance.viewBox_Get
ter_(this); | 5803 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGPatternElement.instance.vi
ewBox_Getter_(unwrap_jso(this))); |
| 4679 | 5804 |
| 4680 @DomName('SVGPatternElement.requiredExtensions') | 5805 @DomName('SVGPatternElement.requiredExtensions') |
| 4681 @DocsEditable() | 5806 @DocsEditable() |
| 4682 StringList get requiredExtensions => _blink.BlinkSVGPatternElement.instance.re
quiredExtensions_Getter_(this); | 5807 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGPatternElement.in
stance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 4683 | 5808 |
| 4684 @DomName('SVGPatternElement.requiredFeatures') | 5809 @DomName('SVGPatternElement.requiredFeatures') |
| 4685 @DocsEditable() | 5810 @DocsEditable() |
| 4686 StringList get requiredFeatures => _blink.BlinkSVGPatternElement.instance.requ
iredFeatures_Getter_(this); | 5811 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGPatternElement.inst
ance.requiredFeatures_Getter_(unwrap_jso(this))); |
| 4687 | 5812 |
| 4688 @DomName('SVGPatternElement.systemLanguage') | 5813 @DomName('SVGPatternElement.systemLanguage') |
| 4689 @DocsEditable() | 5814 @DocsEditable() |
| 4690 StringList get systemLanguage => _blink.BlinkSVGPatternElement.instance.system
Language_Getter_(this); | 5815 StringList get systemLanguage => wrap_jso(_blink.BlinkSVGPatternElement.instan
ce.systemLanguage_Getter_(unwrap_jso(this))); |
| 4691 | 5816 |
| 4692 @DomName('SVGPatternElement.hasExtension') | 5817 @DomName('SVGPatternElement.hasExtension') |
| 4693 @DocsEditable() | 5818 @DocsEditable() |
| 4694 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance.
hasExtension_Callback_1_(this, extension); | 5819 bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance.
hasExtension_Callback_1_(unwrap_jso(this), extension); |
| 4695 | 5820 |
| 4696 @DomName('SVGPatternElement.href') | 5821 @DomName('SVGPatternElement.href') |
| 4697 @DocsEditable() | 5822 @DocsEditable() |
| 4698 AnimatedString get href => _blink.BlinkSVGPatternElement.instance.href_Getter_
(this); | 5823 AnimatedString get href => wrap_jso(_blink.BlinkSVGPatternElement.instance.hre
f_Getter_(unwrap_jso(this))); |
| 4699 | 5824 |
| 4700 } | 5825 } |
| 4701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4702 // for details. All rights reserved. Use of this source code is governed by a | 5827 // for details. All rights reserved. Use of this source code is governed by a |
| 4703 // BSD-style license that can be found in the LICENSE file. | 5828 // BSD-style license that can be found in the LICENSE file. |
| 4704 | 5829 |
| 4705 // WARNING: Do not edit - generated code. | 5830 // WARNING: Do not edit - generated code. |
| 4706 | 5831 |
| 4707 | 5832 |
| 4708 @DocsEditable() | 5833 @DocsEditable() |
| 4709 @DomName('SVGPoint') | 5834 @DomName('SVGPoint') |
| 4710 @Unstable() | 5835 @Unstable() |
| 4711 class Point extends NativeFieldWrapperClass2 { | 5836 class Point extends NativeFieldWrapperClass2 { |
| 4712 // To suppress missing implicit constructor warnings. | 5837 // To suppress missing implicit constructor warnings. |
| 4713 factory Point._() { throw new UnsupportedError("Not supported"); } | 5838 factory Point._() { throw new UnsupportedError("Not supported"); } |
| 4714 | 5839 |
| 4715 @DomName('SVGPoint.x') | 5840 static Point internalCreatePoint() { |
| 4716 @DocsEditable() | 5841 return new Point._internalWrap(); |
| 4717 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(this); | 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); |
| 4718 | 5853 |
| 4719 @DomName('SVGPoint.x') | 5854 @DomName('SVGPoint.x') |
| 4720 @DocsEditable() | 5855 @DocsEditable() |
| 4721 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(this, value); | 5856 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); |
| 4722 | 5857 |
| 5858 @DomName('SVGPoint.x') |
| 5859 @DocsEditable() |
| 5860 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th
is), value); |
| 5861 |
| 4723 @DomName('SVGPoint.y') | 5862 @DomName('SVGPoint.y') |
| 4724 @DocsEditable() | 5863 @DocsEditable() |
| 4725 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(this); | 5864 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); |
| 4726 | 5865 |
| 4727 @DomName('SVGPoint.y') | 5866 @DomName('SVGPoint.y') |
| 4728 @DocsEditable() | 5867 @DocsEditable() |
| 4729 void set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(this, value); | 5868 void set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(th
is), value); |
| 4730 | 5869 |
| 4731 @DomName('SVGPoint.matrixTransform') | 5870 @DomName('SVGPoint.matrixTransform') |
| 4732 @DocsEditable() | 5871 @DocsEditable() |
| 4733 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr
ansform_Callback_1_(this, matrix); | 5872 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr
ansform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)); |
| 4734 | 5873 |
| 4735 } | 5874 } |
| 4736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5875 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4737 // for details. All rights reserved. Use of this source code is governed by a | 5876 // for details. All rights reserved. Use of this source code is governed by a |
| 4738 // BSD-style license that can be found in the LICENSE file. | 5877 // BSD-style license that can be found in the LICENSE file. |
| 4739 | 5878 |
| 4740 // WARNING: Do not edit - generated code. | 5879 // WARNING: Do not edit - generated code. |
| 4741 | 5880 |
| 4742 | 5881 |
| 4743 @DocsEditable() | 5882 @DocsEditable() |
| 4744 @DomName('SVGPointList') | 5883 @DomName('SVGPointList') |
| 4745 @Unstable() | 5884 @Unstable() |
| 4746 class PointList extends NativeFieldWrapperClass2 { | 5885 class PointList extends NativeFieldWrapperClass2 { |
| 4747 // To suppress missing implicit constructor warnings. | 5886 // To suppress missing implicit constructor warnings. |
| 4748 factory PointList._() { throw new UnsupportedError("Not supported"); } | 5887 factory PointList._() { throw new UnsupportedError("Not supported"); } |
| 4749 | 5888 |
| 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 |
| 4750 @DomName('SVGPointList.length') | 5903 @DomName('SVGPointList.length') |
| 4751 @DocsEditable() | 5904 @DocsEditable() |
| 4752 @Experimental() // untriaged | 5905 @Experimental() // untriaged |
| 4753 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(this); | 5906 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); |
| 4754 | 5907 |
| 4755 @DomName('SVGPointList.numberOfItems') | 5908 @DomName('SVGPointList.numberOfItems') |
| 4756 @DocsEditable() | 5909 @DocsEditable() |
| 4757 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(this); | 5910 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); |
| 4758 | 5911 |
| 4759 @DomName('SVGPointList.__setter__') | 5912 @DomName('SVGPointList.__setter__') |
| 4760 @DocsEditable() | 5913 @DocsEditable() |
| 4761 @Experimental() // untriaged | 5914 @Experimental() // untriaged |
| 4762 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(this, index, value); | 5915 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 4763 | 5916 |
| 4764 @DomName('SVGPointList.appendItem') | 5917 @DomName('SVGPointList.appendItem') |
| 4765 @DocsEditable() | 5918 @DocsEditable() |
| 4766 Point appendItem(Point item) => _blink.BlinkSVGPointList.instance.appendItem_C
allback_1_(this, item); | 5919 Point appendItem(Point item) => _blink.BlinkSVGPointList.instance.appendItem_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 4767 | 5920 |
| 4768 @DomName('SVGPointList.clear') | 5921 @DomName('SVGPointList.clear') |
| 4769 @DocsEditable() | 5922 @DocsEditable() |
| 4770 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(this); | 5923 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso
(this)); |
| 4771 | 5924 |
| 4772 @DomName('SVGPointList.getItem') | 5925 @DomName('SVGPointList.getItem') |
| 4773 @DocsEditable() | 5926 @DocsEditable() |
| 4774 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback
_1_(this, index); | 5927 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback
_1_(unwrap_jso(this), index); |
| 4775 | 5928 |
| 4776 @DomName('SVGPointList.initialize') | 5929 @DomName('SVGPointList.initialize') |
| 4777 @DocsEditable() | 5930 @DocsEditable() |
| 4778 Point initialize(Point item) => _blink.BlinkSVGPointList.instance.initialize_C
allback_1_(this, item); | 5931 Point initialize(Point item) => _blink.BlinkSVGPointList.instance.initialize_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 4779 | 5932 |
| 4780 @DomName('SVGPointList.insertItemBefore') | 5933 @DomName('SVGPointList.insertItemBefore') |
| 4781 @DocsEditable() | 5934 @DocsEditable() |
| 4782 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inst
ance.insertItemBefore_Callback_2_(this, item, index); | 5935 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inst
ance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 4783 | 5936 |
| 4784 @DomName('SVGPointList.removeItem') | 5937 @DomName('SVGPointList.removeItem') |
| 4785 @DocsEditable() | 5938 @DocsEditable() |
| 4786 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca
llback_1_(this, index); | 5939 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca
llback_1_(unwrap_jso(this), index); |
| 4787 | 5940 |
| 4788 @DomName('SVGPointList.replaceItem') | 5941 @DomName('SVGPointList.replaceItem') |
| 4789 @DocsEditable() | 5942 @DocsEditable() |
| 4790 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.instance.
replaceItem_Callback_2_(this, item, index); | 5943 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.instance.
replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 4791 | 5944 |
| 4792 } | 5945 } |
| 4793 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4794 // for details. All rights reserved. Use of this source code is governed by a | 5947 // for details. All rights reserved. Use of this source code is governed by a |
| 4795 // BSD-style license that can be found in the LICENSE file. | 5948 // BSD-style license that can be found in the LICENSE file. |
| 4796 | 5949 |
| 4797 // WARNING: Do not edit - generated code. | 5950 // WARNING: Do not edit - generated code. |
| 4798 | 5951 |
| 4799 | 5952 |
| 4800 @DocsEditable() | 5953 @DocsEditable() |
| 4801 @DomName('SVGPolygonElement') | 5954 @DomName('SVGPolygonElement') |
| 4802 @Unstable() | 5955 @Unstable() |
| 4803 class PolygonElement extends GeometryElement { | 5956 class PolygonElement extends GeometryElement { |
| 4804 // To suppress missing implicit constructor warnings. | 5957 // To suppress missing implicit constructor warnings. |
| 4805 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } | 5958 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } |
| 4806 | 5959 |
| 4807 @DomName('SVGPolygonElement.SVGPolygonElement') | 5960 @DomName('SVGPolygonElement.SVGPolygonElement') |
| 4808 @DocsEditable() | 5961 @DocsEditable() |
| 4809 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); | 5962 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 |
| 4810 /** | 5975 /** |
| 4811 * Constructor instantiated by the DOM when a custom element has been created. | 5976 * Constructor instantiated by the DOM when a custom element has been created. |
| 4812 * | 5977 * |
| 4813 * This can only be called by subclasses from their created constructor. | 5978 * This can only be called by subclasses from their created constructor. |
| 4814 */ | 5979 */ |
| 4815 PolygonElement.created() : super.created(); | 5980 PolygonElement.created() : super.created(); |
| 4816 | 5981 |
| 4817 @DomName('SVGPolygonElement.animatedPoints') | 5982 @DomName('SVGPolygonElement.animatedPoints') |
| 4818 @DocsEditable() | 5983 @DocsEditable() |
| 4819 PointList get animatedPoints => _blink.BlinkSVGPolygonElement.instance.animate
dPoints_Getter_(this); | 5984 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); |
| 4820 | 5985 |
| 4821 @DomName('SVGPolygonElement.points') | 5986 @DomName('SVGPolygonElement.points') |
| 4822 @DocsEditable() | 5987 @DocsEditable() |
| 4823 PointList get points => _blink.BlinkSVGPolygonElement.instance.points_Getter_(
this); | 5988 PointList get points => wrap_jso(_blink.BlinkSVGPolygonElement.instance.points
_Getter_(unwrap_jso(this))); |
| 4824 | 5989 |
| 4825 } | 5990 } |
| 4826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4827 // for details. All rights reserved. Use of this source code is governed by a | 5992 // for details. All rights reserved. Use of this source code is governed by a |
| 4828 // BSD-style license that can be found in the LICENSE file. | 5993 // BSD-style license that can be found in the LICENSE file. |
| 4829 | 5994 |
| 4830 // WARNING: Do not edit - generated code. | 5995 // WARNING: Do not edit - generated code. |
| 4831 | 5996 |
| 4832 | 5997 |
| 4833 @DocsEditable() | 5998 @DocsEditable() |
| 4834 @DomName('SVGPolylineElement') | 5999 @DomName('SVGPolylineElement') |
| 4835 @Unstable() | 6000 @Unstable() |
| 4836 class PolylineElement extends GeometryElement { | 6001 class PolylineElement extends GeometryElement { |
| 4837 // To suppress missing implicit constructor warnings. | 6002 // To suppress missing implicit constructor warnings. |
| 4838 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } | 6003 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } |
| 4839 | 6004 |
| 4840 @DomName('SVGPolylineElement.SVGPolylineElement') | 6005 @DomName('SVGPolylineElement.SVGPolylineElement') |
| 4841 @DocsEditable() | 6006 @DocsEditable() |
| 4842 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); | 6007 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 |
| 4843 /** | 6020 /** |
| 4844 * Constructor instantiated by the DOM when a custom element has been created. | 6021 * Constructor instantiated by the DOM when a custom element has been created. |
| 4845 * | 6022 * |
| 4846 * This can only be called by subclasses from their created constructor. | 6023 * This can only be called by subclasses from their created constructor. |
| 4847 */ | 6024 */ |
| 4848 PolylineElement.created() : super.created(); | 6025 PolylineElement.created() : super.created(); |
| 4849 | 6026 |
| 4850 @DomName('SVGPolylineElement.animatedPoints') | 6027 @DomName('SVGPolylineElement.animatedPoints') |
| 4851 @DocsEditable() | 6028 @DocsEditable() |
| 4852 PointList get animatedPoints => _blink.BlinkSVGPolylineElement.instance.animat
edPoints_Getter_(this); | 6029 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); |
| 4853 | 6030 |
| 4854 @DomName('SVGPolylineElement.points') | 6031 @DomName('SVGPolylineElement.points') |
| 4855 @DocsEditable() | 6032 @DocsEditable() |
| 4856 PointList get points => _blink.BlinkSVGPolylineElement.instance.points_Getter_
(this); | 6033 PointList get points => wrap_jso(_blink.BlinkSVGPolylineElement.instance.point
s_Getter_(unwrap_jso(this))); |
| 4857 | 6034 |
| 4858 } | 6035 } |
| 4859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6036 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4860 // for details. All rights reserved. Use of this source code is governed by a | 6037 // for details. All rights reserved. Use of this source code is governed by a |
| 4861 // BSD-style license that can be found in the LICENSE file. | 6038 // BSD-style license that can be found in the LICENSE file. |
| 4862 | 6039 |
| 4863 // WARNING: Do not edit - generated code. | 6040 // WARNING: Do not edit - generated code. |
| 4864 | 6041 |
| 4865 | 6042 |
| 4866 @DocsEditable() | 6043 @DocsEditable() |
| 4867 @DomName('SVGPreserveAspectRatio') | 6044 @DomName('SVGPreserveAspectRatio') |
| 4868 @Unstable() | 6045 @Unstable() |
| 4869 class PreserveAspectRatio extends NativeFieldWrapperClass2 { | 6046 class PreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 4870 // To suppress missing implicit constructor warnings. | 6047 // To suppress missing implicit constructor warnings. |
| 4871 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 6048 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
| 4872 | 6049 |
| 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 |
| 4873 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 6064 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
| 4874 @DocsEditable() | 6065 @DocsEditable() |
| 4875 static const int SVG_MEETORSLICE_MEET = 1; | 6066 static const int SVG_MEETORSLICE_MEET = 1; |
| 4876 | 6067 |
| 4877 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') | 6068 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') |
| 4878 @DocsEditable() | 6069 @DocsEditable() |
| 4879 static const int SVG_MEETORSLICE_SLICE = 2; | 6070 static const int SVG_MEETORSLICE_SLICE = 2; |
| 4880 | 6071 |
| 4881 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') | 6072 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') |
| 4882 @DocsEditable() | 6073 @DocsEditable() |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4921 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID') | 6112 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID') |
| 4922 @DocsEditable() | 6113 @DocsEditable() |
| 4923 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; | 6114 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; |
| 4924 | 6115 |
| 4925 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') | 6116 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') |
| 4926 @DocsEditable() | 6117 @DocsEditable() |
| 4927 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 6118 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 4928 | 6119 |
| 4929 @DomName('SVGPreserveAspectRatio.align') | 6120 @DomName('SVGPreserveAspectRatio.align') |
| 4930 @DocsEditable() | 6121 @DocsEditable() |
| 4931 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(thi
s); | 6122 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw
rap_jso(this)); |
| 4932 | 6123 |
| 4933 @DomName('SVGPreserveAspectRatio.align') | 6124 @DomName('SVGPreserveAspectRatio.align') |
| 4934 @DocsEditable() | 6125 @DocsEditable() |
| 4935 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align
_Setter_(this, value); | 6126 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align
_Setter_(unwrap_jso(this), value); |
| 4936 | 6127 |
| 4937 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 6128 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 4938 @DocsEditable() | 6129 @DocsEditable() |
| 4939 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(this); | 6130 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(unwrap_jso(this)); |
| 4940 | 6131 |
| 4941 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 6132 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 4942 @DocsEditable() | 6133 @DocsEditable() |
| 4943 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance
.meetOrSlice_Setter_(this, value); | 6134 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance
.meetOrSlice_Setter_(unwrap_jso(this), value); |
| 4944 | 6135 |
| 4945 } | 6136 } |
| 4946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4947 // for details. All rights reserved. Use of this source code is governed by a | 6138 // for details. All rights reserved. Use of this source code is governed by a |
| 4948 // BSD-style license that can be found in the LICENSE file. | 6139 // BSD-style license that can be found in the LICENSE file. |
| 4949 | 6140 |
| 4950 // WARNING: Do not edit - generated code. | 6141 // WARNING: Do not edit - generated code. |
| 4951 | 6142 |
| 4952 | 6143 |
| 4953 @DocsEditable() | 6144 @DocsEditable() |
| 4954 @DomName('SVGRadialGradientElement') | 6145 @DomName('SVGRadialGradientElement') |
| 4955 @Unstable() | 6146 @Unstable() |
| 4956 class RadialGradientElement extends _GradientElement { | 6147 class RadialGradientElement extends _GradientElement { |
| 4957 // To suppress missing implicit constructor warnings. | 6148 // To suppress missing implicit constructor warnings. |
| 4958 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } | 6149 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 4959 | 6150 |
| 4960 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') | 6151 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
| 4961 @DocsEditable() | 6152 @DocsEditable() |
| 4962 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); | 6153 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 |
| 4963 /** | 6166 /** |
| 4964 * Constructor instantiated by the DOM when a custom element has been created. | 6167 * Constructor instantiated by the DOM when a custom element has been created. |
| 4965 * | 6168 * |
| 4966 * This can only be called by subclasses from their created constructor. | 6169 * This can only be called by subclasses from their created constructor. |
| 4967 */ | 6170 */ |
| 4968 RadialGradientElement.created() : super.created(); | 6171 RadialGradientElement.created() : super.created(); |
| 4969 | 6172 |
| 4970 @DomName('SVGRadialGradientElement.cx') | 6173 @DomName('SVGRadialGradientElement.cx') |
| 4971 @DocsEditable() | 6174 @DocsEditable() |
| 4972 AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.instance.cx_Gett
er_(this); | 6175 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); |
| 4973 | 6176 |
| 4974 @DomName('SVGRadialGradientElement.cy') | 6177 @DomName('SVGRadialGradientElement.cy') |
| 4975 @DocsEditable() | 6178 @DocsEditable() |
| 4976 AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.instance.cy_Gett
er_(this); | 6179 AnimatedLength get cy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cy_Getter_(unwrap_jso(this))); |
| 4977 | 6180 |
| 4978 @DomName('SVGRadialGradientElement.fr') | 6181 @DomName('SVGRadialGradientElement.fr') |
| 4979 @DocsEditable() | 6182 @DocsEditable() |
| 4980 AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.instance.fr_Gett
er_(this); | 6183 AnimatedLength get fr => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.fr_Getter_(unwrap_jso(this))); |
| 4981 | 6184 |
| 4982 @DomName('SVGRadialGradientElement.fx') | 6185 @DomName('SVGRadialGradientElement.fx') |
| 4983 @DocsEditable() | 6186 @DocsEditable() |
| 4984 AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.instance.fx_Gett
er_(this); | 6187 AnimatedLength get fx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.fx_Getter_(unwrap_jso(this))); |
| 4985 | 6188 |
| 4986 @DomName('SVGRadialGradientElement.fy') | 6189 @DomName('SVGRadialGradientElement.fy') |
| 4987 @DocsEditable() | 6190 @DocsEditable() |
| 4988 AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.instance.fy_Gett
er_(this); | 6191 AnimatedLength get fy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.fy_Getter_(unwrap_jso(this))); |
| 4989 | 6192 |
| 4990 @DomName('SVGRadialGradientElement.r') | 6193 @DomName('SVGRadialGradientElement.r') |
| 4991 @DocsEditable() | 6194 @DocsEditable() |
| 4992 AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.instance.r_Getter
_(this); | 6195 AnimatedLength get r => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance
.r_Getter_(unwrap_jso(this))); |
| 4993 | 6196 |
| 4994 } | 6197 } |
| 4995 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4996 // for details. All rights reserved. Use of this source code is governed by a | 6199 // for details. All rights reserved. Use of this source code is governed by a |
| 4997 // BSD-style license that can be found in the LICENSE file. | 6200 // BSD-style license that can be found in the LICENSE file. |
| 4998 | 6201 |
| 4999 // WARNING: Do not edit - generated code. | 6202 // WARNING: Do not edit - generated code. |
| 5000 | 6203 |
| 5001 | 6204 |
| 5002 @DocsEditable() | 6205 @DocsEditable() |
| 5003 @DomName('SVGRect') | 6206 @DomName('SVGRect') |
| 5004 @Unstable() | 6207 @Unstable() |
| 5005 class Rect extends NativeFieldWrapperClass2 { | 6208 class Rect extends NativeFieldWrapperClass2 { |
| 5006 // To suppress missing implicit constructor warnings. | 6209 // To suppress missing implicit constructor warnings. |
| 5007 factory Rect._() { throw new UnsupportedError("Not supported"); } | 6210 factory Rect._() { throw new UnsupportedError("Not supported"); } |
| 5008 | 6211 |
| 5009 @DomName('SVGRect.height') | 6212 static Rect internalCreateRect() { |
| 5010 @DocsEditable() | 6213 return new Rect._internalWrap(); |
| 5011 num get height => _blink.BlinkSVGRect.instance.height_Getter_(this); | 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); |
| 5012 | 6225 |
| 5013 @DomName('SVGRect.height') | 6226 @DomName('SVGRect.height') |
| 5014 @DocsEditable() | 6227 @DocsEditable() |
| 5015 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(this
, value); | 6228 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); |
| 5016 | 6229 |
| 6230 @DomName('SVGRect.height') |
| 6231 @DocsEditable() |
| 6232 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr
ap_jso(this), value); |
| 6233 |
| 5017 @DomName('SVGRect.width') | 6234 @DomName('SVGRect.width') |
| 5018 @DocsEditable() | 6235 @DocsEditable() |
| 5019 num get width => _blink.BlinkSVGRect.instance.width_Getter_(this); | 6236 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); |
| 5020 | 6237 |
| 5021 @DomName('SVGRect.width') | 6238 @DomName('SVGRect.width') |
| 5022 @DocsEditable() | 6239 @DocsEditable() |
| 5023 void set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(this,
value); | 6240 void set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap
_jso(this), value); |
| 5024 | 6241 |
| 5025 @DomName('SVGRect.x') | 6242 @DomName('SVGRect.x') |
| 5026 @DocsEditable() | 6243 @DocsEditable() |
| 5027 num get x => _blink.BlinkSVGRect.instance.x_Getter_(this); | 6244 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); |
| 5028 | 6245 |
| 5029 @DomName('SVGRect.x') | 6246 @DomName('SVGRect.x') |
| 5030 @DocsEditable() | 6247 @DocsEditable() |
| 5031 void set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(this, value); | 6248 void set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(thi
s), value); |
| 5032 | 6249 |
| 5033 @DomName('SVGRect.y') | 6250 @DomName('SVGRect.y') |
| 5034 @DocsEditable() | 6251 @DocsEditable() |
| 5035 num get y => _blink.BlinkSVGRect.instance.y_Getter_(this); | 6252 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); |
| 5036 | 6253 |
| 5037 @DomName('SVGRect.y') | 6254 @DomName('SVGRect.y') |
| 5038 @DocsEditable() | 6255 @DocsEditable() |
| 5039 void set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(this, value); | 6256 void set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(thi
s), value); |
| 5040 | 6257 |
| 5041 } | 6258 } |
| 5042 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6259 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5043 // for details. All rights reserved. Use of this source code is governed by a | 6260 // for details. All rights reserved. Use of this source code is governed by a |
| 5044 // BSD-style license that can be found in the LICENSE file. | 6261 // BSD-style license that can be found in the LICENSE file. |
| 5045 | 6262 |
| 5046 // WARNING: Do not edit - generated code. | 6263 // WARNING: Do not edit - generated code. |
| 5047 | 6264 |
| 5048 | 6265 |
| 5049 @DocsEditable() | 6266 @DocsEditable() |
| 5050 @DomName('SVGRectElement') | 6267 @DomName('SVGRectElement') |
| 5051 @Unstable() | 6268 @Unstable() |
| 5052 class RectElement extends GeometryElement { | 6269 class RectElement extends GeometryElement { |
| 5053 // To suppress missing implicit constructor warnings. | 6270 // To suppress missing implicit constructor warnings. |
| 5054 factory RectElement._() { throw new UnsupportedError("Not supported"); } | 6271 factory RectElement._() { throw new UnsupportedError("Not supported"); } |
| 5055 | 6272 |
| 5056 @DomName('SVGRectElement.SVGRectElement') | 6273 @DomName('SVGRectElement.SVGRectElement') |
| 5057 @DocsEditable() | 6274 @DocsEditable() |
| 5058 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); | 6275 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 |
| 5059 /** | 6288 /** |
| 5060 * Constructor instantiated by the DOM when a custom element has been created. | 6289 * Constructor instantiated by the DOM when a custom element has been created. |
| 5061 * | 6290 * |
| 5062 * This can only be called by subclasses from their created constructor. | 6291 * This can only be called by subclasses from their created constructor. |
| 5063 */ | 6292 */ |
| 5064 RectElement.created() : super.created(); | 6293 RectElement.created() : super.created(); |
| 5065 | 6294 |
| 5066 @DomName('SVGRectElement.height') | 6295 @DomName('SVGRectElement.height') |
| 5067 @DocsEditable() | 6296 @DocsEditable() |
| 5068 AnimatedLength get height => _blink.BlinkSVGRectElement.instance.height_Getter
_(this); | 6297 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| 5069 | 6298 |
| 5070 @DomName('SVGRectElement.rx') | 6299 @DomName('SVGRectElement.rx') |
| 5071 @DocsEditable() | 6300 @DocsEditable() |
| 5072 AnimatedLength get rx => _blink.BlinkSVGRectElement.instance.rx_Getter_(this); | 6301 AnimatedLength get rx => wrap_jso(_blink.BlinkSVGRectElement.instance.rx_Gette
r_(unwrap_jso(this))); |
| 5073 | 6302 |
| 5074 @DomName('SVGRectElement.ry') | 6303 @DomName('SVGRectElement.ry') |
| 5075 @DocsEditable() | 6304 @DocsEditable() |
| 5076 AnimatedLength get ry => _blink.BlinkSVGRectElement.instance.ry_Getter_(this); | 6305 AnimatedLength get ry => wrap_jso(_blink.BlinkSVGRectElement.instance.ry_Gette
r_(unwrap_jso(this))); |
| 5077 | 6306 |
| 5078 @DomName('SVGRectElement.width') | 6307 @DomName('SVGRectElement.width') |
| 5079 @DocsEditable() | 6308 @DocsEditable() |
| 5080 AnimatedLength get width => _blink.BlinkSVGRectElement.instance.width_Getter_(
this); | 6309 AnimatedLength get width => wrap_jso(_blink.BlinkSVGRectElement.instance.width
_Getter_(unwrap_jso(this))); |
| 5081 | 6310 |
| 5082 @DomName('SVGRectElement.x') | 6311 @DomName('SVGRectElement.x') |
| 5083 @DocsEditable() | 6312 @DocsEditable() |
| 5084 AnimatedLength get x => _blink.BlinkSVGRectElement.instance.x_Getter_(this); | 6313 AnimatedLength get x => wrap_jso(_blink.BlinkSVGRectElement.instance.x_Getter_
(unwrap_jso(this))); |
| 5085 | 6314 |
| 5086 @DomName('SVGRectElement.y') | 6315 @DomName('SVGRectElement.y') |
| 5087 @DocsEditable() | 6316 @DocsEditable() |
| 5088 AnimatedLength get y => _blink.BlinkSVGRectElement.instance.y_Getter_(this); | 6317 AnimatedLength get y => wrap_jso(_blink.BlinkSVGRectElement.instance.y_Getter_
(unwrap_jso(this))); |
| 5089 | 6318 |
| 5090 } | 6319 } |
| 5091 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5092 // for details. All rights reserved. Use of this source code is governed by a | 6321 // for details. All rights reserved. Use of this source code is governed by a |
| 5093 // BSD-style license that can be found in the LICENSE file. | 6322 // BSD-style license that can be found in the LICENSE file. |
| 5094 | 6323 |
| 5095 // WARNING: Do not edit - generated code. | 6324 // WARNING: Do not edit - generated code. |
| 5096 | 6325 |
| 5097 | 6326 |
| 5098 @DocsEditable() | 6327 @DocsEditable() |
| 5099 @DomName('SVGRenderingIntent') | 6328 @DomName('SVGRenderingIntent') |
| 5100 @Unstable() | 6329 @Unstable() |
| 5101 class RenderingIntent extends NativeFieldWrapperClass2 { | 6330 class RenderingIntent extends NativeFieldWrapperClass2 { |
| 5102 // To suppress missing implicit constructor warnings. | 6331 // To suppress missing implicit constructor warnings. |
| 5103 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 6332 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
| 5104 | 6333 |
| 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 |
| 5105 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 6348 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
| 5106 @DocsEditable() | 6349 @DocsEditable() |
| 5107 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 6350 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 5108 | 6351 |
| 5109 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') | 6352 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') |
| 5110 @DocsEditable() | 6353 @DocsEditable() |
| 5111 static const int RENDERING_INTENT_AUTO = 1; | 6354 static const int RENDERING_INTENT_AUTO = 1; |
| 5112 | 6355 |
| 5113 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') | 6356 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') |
| 5114 @DocsEditable() | 6357 @DocsEditable() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5137 @DocsEditable() | 6380 @DocsEditable() |
| 5138 @DomName('SVGScriptElement') | 6381 @DomName('SVGScriptElement') |
| 5139 @Unstable() | 6382 @Unstable() |
| 5140 class ScriptElement extends SvgElement implements UriReference { | 6383 class ScriptElement extends SvgElement implements UriReference { |
| 5141 // To suppress missing implicit constructor warnings. | 6384 // To suppress missing implicit constructor warnings. |
| 5142 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } | 6385 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } |
| 5143 | 6386 |
| 5144 @DomName('SVGScriptElement.SVGScriptElement') | 6387 @DomName('SVGScriptElement.SVGScriptElement') |
| 5145 @DocsEditable() | 6388 @DocsEditable() |
| 5146 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); | 6389 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 |
| 5147 /** | 6402 /** |
| 5148 * Constructor instantiated by the DOM when a custom element has been created. | 6403 * Constructor instantiated by the DOM when a custom element has been created. |
| 5149 * | 6404 * |
| 5150 * This can only be called by subclasses from their created constructor. | 6405 * This can only be called by subclasses from their created constructor. |
| 5151 */ | 6406 */ |
| 5152 ScriptElement.created() : super.created(); | 6407 ScriptElement.created() : super.created(); |
| 5153 | 6408 |
| 5154 @DomName('SVGScriptElement.type') | 6409 @DomName('SVGScriptElement.type') |
| 5155 @DocsEditable() | 6410 @DocsEditable() |
| 5156 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(this); | 6411 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); |
| 5157 | 6412 |
| 5158 @DomName('SVGScriptElement.type') | 6413 @DomName('SVGScriptElement.type') |
| 5159 @DocsEditable() | 6414 @DocsEditable() |
| 5160 void set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Sett
er_(this, value); | 6415 void set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Sett
er_(unwrap_jso(this), value); |
| 5161 | 6416 |
| 5162 @DomName('SVGScriptElement.href') | 6417 @DomName('SVGScriptElement.href') |
| 5163 @DocsEditable() | 6418 @DocsEditable() |
| 5164 AnimatedString get href => _blink.BlinkSVGScriptElement.instance.href_Getter_(
this); | 6419 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href
_Getter_(unwrap_jso(this))); |
| 5165 | 6420 |
| 5166 } | 6421 } |
| 5167 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6422 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5168 // for details. All rights reserved. Use of this source code is governed by a | 6423 // for details. All rights reserved. Use of this source code is governed by a |
| 5169 // BSD-style license that can be found in the LICENSE file. | 6424 // BSD-style license that can be found in the LICENSE file. |
| 5170 | 6425 |
| 5171 // WARNING: Do not edit - generated code. | 6426 // WARNING: Do not edit - generated code. |
| 5172 | 6427 |
| 5173 | 6428 |
| 5174 @DocsEditable() | 6429 @DocsEditable() |
| 5175 @DomName('SVGSetElement') | 6430 @DomName('SVGSetElement') |
| 5176 @SupportedBrowser(SupportedBrowser.CHROME) | 6431 @SupportedBrowser(SupportedBrowser.CHROME) |
| 5177 @SupportedBrowser(SupportedBrowser.FIREFOX) | 6432 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 5178 @SupportedBrowser(SupportedBrowser.SAFARI) | 6433 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 5179 @Unstable() | 6434 @Unstable() |
| 5180 class SetElement extends AnimationElement { | 6435 class SetElement extends AnimationElement { |
| 5181 // To suppress missing implicit constructor warnings. | 6436 // To suppress missing implicit constructor warnings. |
| 5182 factory SetElement._() { throw new UnsupportedError("Not supported"); } | 6437 factory SetElement._() { throw new UnsupportedError("Not supported"); } |
| 5183 | 6438 |
| 5184 @DomName('SVGSetElement.SVGSetElement') | 6439 @DomName('SVGSetElement.SVGSetElement') |
| 5185 @DocsEditable() | 6440 @DocsEditable() |
| 5186 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; | 6441 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 |
| 5187 /** | 6454 /** |
| 5188 * Constructor instantiated by the DOM when a custom element has been created. | 6455 * Constructor instantiated by the DOM when a custom element has been created. |
| 5189 * | 6456 * |
| 5190 * This can only be called by subclasses from their created constructor. | 6457 * This can only be called by subclasses from their created constructor. |
| 5191 */ | 6458 */ |
| 5192 SetElement.created() : super.created(); | 6459 SetElement.created() : super.created(); |
| 5193 | 6460 |
| 5194 /// Checks if this type is supported on the current platform. | 6461 /// Checks if this type is supported on the current platform. |
| 5195 static bool get supported => true; | 6462 static bool get supported => true; |
| 5196 | 6463 |
| 5197 } | 6464 } |
| 5198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5199 // for details. All rights reserved. Use of this source code is governed by a | 6466 // for details. All rights reserved. Use of this source code is governed by a |
| 5200 // BSD-style license that can be found in the LICENSE file. | 6467 // BSD-style license that can be found in the LICENSE file. |
| 5201 | 6468 |
| 5202 // WARNING: Do not edit - generated code. | 6469 // WARNING: Do not edit - generated code. |
| 5203 | 6470 |
| 5204 | 6471 |
| 5205 @DocsEditable() | 6472 @DocsEditable() |
| 5206 @DomName('SVGStopElement') | 6473 @DomName('SVGStopElement') |
| 5207 @Unstable() | 6474 @Unstable() |
| 5208 class StopElement extends SvgElement { | 6475 class StopElement extends SvgElement { |
| 5209 // To suppress missing implicit constructor warnings. | 6476 // To suppress missing implicit constructor warnings. |
| 5210 factory StopElement._() { throw new UnsupportedError("Not supported"); } | 6477 factory StopElement._() { throw new UnsupportedError("Not supported"); } |
| 5211 | 6478 |
| 5212 @DomName('SVGStopElement.SVGStopElement') | 6479 @DomName('SVGStopElement.SVGStopElement') |
| 5213 @DocsEditable() | 6480 @DocsEditable() |
| 5214 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); | 6481 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 |
| 5215 /** | 6494 /** |
| 5216 * Constructor instantiated by the DOM when a custom element has been created. | 6495 * Constructor instantiated by the DOM when a custom element has been created. |
| 5217 * | 6496 * |
| 5218 * This can only be called by subclasses from their created constructor. | 6497 * This can only be called by subclasses from their created constructor. |
| 5219 */ | 6498 */ |
| 5220 StopElement.created() : super.created(); | 6499 StopElement.created() : super.created(); |
| 5221 | 6500 |
| 5222 @DomName('SVGStopElement.offset') | 6501 @DomName('SVGStopElement.offset') |
| 5223 @DocsEditable() | 6502 @DocsEditable() |
| 5224 AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.instance.offse
t_Getter_(this); | 6503 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); |
| 5225 | 6504 |
| 5226 } | 6505 } |
| 5227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5228 // for details. All rights reserved. Use of this source code is governed by a | 6507 // for details. All rights reserved. Use of this source code is governed by a |
| 5229 // BSD-style license that can be found in the LICENSE file. | 6508 // BSD-style license that can be found in the LICENSE file. |
| 5230 | 6509 |
| 5231 // WARNING: Do not edit - generated code. | 6510 // WARNING: Do not edit - generated code. |
| 5232 | 6511 |
| 5233 | 6512 |
| 5234 @DocsEditable() | 6513 @DocsEditable() |
| 5235 @DomName('SVGStringList') | 6514 @DomName('SVGStringList') |
| 5236 @Unstable() | 6515 @Unstable() |
| 5237 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { | 6516 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { |
| 5238 // To suppress missing implicit constructor warnings. | 6517 // To suppress missing implicit constructor warnings. |
| 5239 factory StringList._() { throw new UnsupportedError("Not supported"); } | 6518 factory StringList._() { throw new UnsupportedError("Not supported"); } |
| 5240 | 6519 |
| 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 |
| 5241 @DomName('SVGStringList.length') | 6534 @DomName('SVGStringList.length') |
| 5242 @DocsEditable() | 6535 @DocsEditable() |
| 5243 @Experimental() // untriaged | 6536 @Experimental() // untriaged |
| 5244 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(this); | 6537 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); |
| 5245 | 6538 |
| 5246 @DomName('SVGStringList.numberOfItems') | 6539 @DomName('SVGStringList.numberOfItems') |
| 5247 @DocsEditable() | 6540 @DocsEditable() |
| 5248 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(this); | 6541 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 5249 | 6542 |
| 5250 String operator[](int index) { | 6543 String operator[](int index) { |
| 5251 if (index < 0 || index >= length) | 6544 if (index < 0 || index >= length) |
| 5252 throw new RangeError.index(index, this); | 6545 throw new RangeError.index(index, this); |
| 5253 return getItem(index); | 6546 return getItem(index); |
| 5254 } | 6547 } |
| 5255 | 6548 |
| 5256 void operator[]=(int index, String value) { | 6549 void operator[]=(int index, String value) { |
| 5257 throw new UnsupportedError("Cannot assign element of immutable List."); | 6550 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 5258 } | 6551 } |
| 5259 // -- start List<String> mixins. | 6552 // -- start List<String> mixins. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 5287 if (len == 0) throw new StateError("No elements"); | 6580 if (len == 0) throw new StateError("No elements"); |
| 5288 throw new StateError("More than one element"); | 6581 throw new StateError("More than one element"); |
| 5289 } | 6582 } |
| 5290 | 6583 |
| 5291 String elementAt(int index) => this[index]; | 6584 String elementAt(int index) => this[index]; |
| 5292 // -- end List<String> mixins. | 6585 // -- end List<String> mixins. |
| 5293 | 6586 |
| 5294 @DomName('SVGStringList.__setter__') | 6587 @DomName('SVGStringList.__setter__') |
| 5295 @DocsEditable() | 6588 @DocsEditable() |
| 5296 @Experimental() // untriaged | 6589 @Experimental() // untriaged |
| 5297 void __setter__(int index, String value) => _blink.BlinkSVGStringList.instance
.$__setter___Callback_2_(this, index, value); | 6590 void __setter__(int index, String value) => _blink.BlinkSVGStringList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, value); |
| 5298 | 6591 |
| 5299 @DomName('SVGStringList.appendItem') | 6592 @DomName('SVGStringList.appendItem') |
| 5300 @DocsEditable() | 6593 @DocsEditable() |
| 5301 String appendItem(String item) => _blink.BlinkSVGStringList.instance.appendIte
m_Callback_1_(this, item); | 6594 String appendItem(String item) => _blink.BlinkSVGStringList.instance.appendIte
m_Callback_1_(unwrap_jso(this), item); |
| 5302 | 6595 |
| 5303 @DomName('SVGStringList.clear') | 6596 @DomName('SVGStringList.clear') |
| 5304 @DocsEditable() | 6597 @DocsEditable() |
| 5305 void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(this); | 6598 void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(unwrap_js
o(this)); |
| 5306 | 6599 |
| 5307 @DomName('SVGStringList.getItem') | 6600 @DomName('SVGStringList.getItem') |
| 5308 @DocsEditable() | 6601 @DocsEditable() |
| 5309 String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callba
ck_1_(this, index); | 6602 String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); |
| 5310 | 6603 |
| 5311 @DomName('SVGStringList.initialize') | 6604 @DomName('SVGStringList.initialize') |
| 5312 @DocsEditable() | 6605 @DocsEditable() |
| 5313 String initialize(String item) => _blink.BlinkSVGStringList.instance.initializ
e_Callback_1_(this, item); | 6606 String initialize(String item) => _blink.BlinkSVGStringList.instance.initializ
e_Callback_1_(unwrap_jso(this), item); |
| 5314 | 6607 |
| 5315 @DomName('SVGStringList.insertItemBefore') | 6608 @DomName('SVGStringList.insertItemBefore') |
| 5316 @DocsEditable() | 6609 @DocsEditable() |
| 5317 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i
nstance.insertItemBefore_Callback_2_(this, item, index); | 6610 String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), item, index); |
| 5318 | 6611 |
| 5319 @DomName('SVGStringList.removeItem') | 6612 @DomName('SVGStringList.removeItem') |
| 5320 @DocsEditable() | 6613 @DocsEditable() |
| 5321 String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_
Callback_1_(this, index); | 6614 String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); |
| 5322 | 6615 |
| 5323 @DomName('SVGStringList.replaceItem') | 6616 @DomName('SVGStringList.replaceItem') |
| 5324 @DocsEditable() | 6617 @DocsEditable() |
| 5325 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.instan
ce.replaceItem_Callback_2_(this, item, index); | 6618 String replaceItem(String item, int index) => _blink.BlinkSVGStringList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), item, index); |
| 5326 | 6619 |
| 5327 } | 6620 } |
| 5328 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6621 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5329 // for details. All rights reserved. Use of this source code is governed by a | 6622 // for details. All rights reserved. Use of this source code is governed by a |
| 5330 // BSD-style license that can be found in the LICENSE file. | 6623 // BSD-style license that can be found in the LICENSE file. |
| 5331 | 6624 |
| 5332 // WARNING: Do not edit - generated code. | 6625 // WARNING: Do not edit - generated code. |
| 5333 | 6626 |
| 5334 | 6627 |
| 5335 @DocsEditable() | 6628 @DocsEditable() |
| 5336 @DomName('SVGStyleElement') | 6629 @DomName('SVGStyleElement') |
| 5337 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable | 6630 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable |
| 5338 @Experimental() // nonstandard | 6631 @Experimental() // nonstandard |
| 5339 class StyleElement extends SvgElement { | 6632 class StyleElement extends SvgElement { |
| 5340 // To suppress missing implicit constructor warnings. | 6633 // To suppress missing implicit constructor warnings. |
| 5341 factory StyleElement._() { throw new UnsupportedError("Not supported"); } | 6634 factory StyleElement._() { throw new UnsupportedError("Not supported"); } |
| 5342 | 6635 |
| 5343 @DomName('SVGStyleElement.SVGStyleElement') | 6636 @DomName('SVGStyleElement.SVGStyleElement') |
| 5344 @DocsEditable() | 6637 @DocsEditable() |
| 5345 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); | 6638 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 |
| 5346 /** | 6651 /** |
| 5347 * Constructor instantiated by the DOM when a custom element has been created. | 6652 * Constructor instantiated by the DOM when a custom element has been created. |
| 5348 * | 6653 * |
| 5349 * This can only be called by subclasses from their created constructor. | 6654 * This can only be called by subclasses from their created constructor. |
| 5350 */ | 6655 */ |
| 5351 StyleElement.created() : super.created(); | 6656 StyleElement.created() : super.created(); |
| 5352 | 6657 |
| 5353 @DomName('SVGStyleElement.disabled') | 6658 @DomName('SVGStyleElement.disabled') |
| 5354 @DocsEditable() | 6659 @DocsEditable() |
| 5355 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(thi
s); | 6660 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); |
| 5356 | 6661 |
| 5357 @DomName('SVGStyleElement.disabled') | 6662 @DomName('SVGStyleElement.disabled') |
| 5358 @DocsEditable() | 6663 @DocsEditable() |
| 5359 void set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled
_Setter_(this, value); | 6664 void set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled
_Setter_(unwrap_jso(this), value); |
| 5360 | 6665 |
| 5361 @DomName('SVGStyleElement.media') | 6666 @DomName('SVGStyleElement.media') |
| 5362 @DocsEditable() | 6667 @DocsEditable() |
| 5363 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(this); | 6668 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_
jso(this)); |
| 5364 | 6669 |
| 5365 @DomName('SVGStyleElement.media') | 6670 @DomName('SVGStyleElement.media') |
| 5366 @DocsEditable() | 6671 @DocsEditable() |
| 5367 void set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Set
ter_(this, value); | 6672 void set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Set
ter_(unwrap_jso(this), value); |
| 5368 | 6673 |
| 5369 @DomName('SVGStyleElement.sheet') | 6674 @DomName('SVGStyleElement.sheet') |
| 5370 @DocsEditable() | 6675 @DocsEditable() |
| 5371 @Experimental() // untriaged | 6676 @Experimental() // untriaged |
| 5372 StyleSheet get sheet => _blink.BlinkSVGStyleElement.instance.sheet_Getter_(thi
s); | 6677 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge
tter_(unwrap_jso(this))); |
| 5373 | 6678 |
| 5374 @DomName('SVGStyleElement.title') | 6679 @DomName('SVGStyleElement.title') |
| 5375 @DocsEditable() | 6680 @DocsEditable() |
| 5376 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(this); | 6681 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_
jso(this)); |
| 5377 | 6682 |
| 5378 @DomName('SVGStyleElement.title') | 6683 @DomName('SVGStyleElement.title') |
| 5379 @DocsEditable() | 6684 @DocsEditable() |
| 5380 void set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Set
ter_(this, value); | 6685 void set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Set
ter_(unwrap_jso(this), value); |
| 5381 | 6686 |
| 5382 @DomName('SVGStyleElement.type') | 6687 @DomName('SVGStyleElement.type') |
| 5383 @DocsEditable() | 6688 @DocsEditable() |
| 5384 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(this); | 6689 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js
o(this)); |
| 5385 | 6690 |
| 5386 @DomName('SVGStyleElement.type') | 6691 @DomName('SVGStyleElement.type') |
| 5387 @DocsEditable() | 6692 @DocsEditable() |
| 5388 void set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Sette
r_(this, value); | 6693 void set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Sette
r_(unwrap_jso(this), value); |
| 5389 | 6694 |
| 5390 } | 6695 } |
| 5391 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 6696 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 5392 // for details. All rights reserved. Use of this source code is governed by a | 6697 // for details. All rights reserved. Use of this source code is governed by a |
| 5393 // BSD-style license that can be found in the LICENSE file. | 6698 // BSD-style license that can be found in the LICENSE file. |
| 5394 | 6699 |
| 5395 | 6700 |
| 5396 class _AttributeClassSet extends CssClassSetImpl { | 6701 class _AttributeClassSet extends CssClassSetImpl { |
| 5397 final Element _element; | 6702 final Element _element; |
| 5398 | 6703 |
| 5399 _AttributeClassSet(this._element); | 6704 _AttributeClassSet(this._element); |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5789 | 7094 |
| 5790 @DomName('SVGElement.volumechangeEvent') | 7095 @DomName('SVGElement.volumechangeEvent') |
| 5791 @DocsEditable() | 7096 @DocsEditable() |
| 5792 @Experimental() // untriaged | 7097 @Experimental() // untriaged |
| 5793 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); | 7098 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); |
| 5794 | 7099 |
| 5795 @DomName('SVGElement.waitingEvent') | 7100 @DomName('SVGElement.waitingEvent') |
| 5796 @DocsEditable() | 7101 @DocsEditable() |
| 5797 @Experimental() // untriaged | 7102 @Experimental() // untriaged |
| 5798 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); | 7103 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 |
| 5799 /** | 7116 /** |
| 5800 * Constructor instantiated by the DOM when a custom element has been created. | 7117 * Constructor instantiated by the DOM when a custom element has been created. |
| 5801 * | 7118 * |
| 5802 * This can only be called by subclasses from their created constructor. | 7119 * This can only be called by subclasses from their created constructor. |
| 5803 */ | 7120 */ |
| 5804 SvgElement.created() : super.created(); | 7121 SvgElement.created() : super.created(); |
| 5805 | 7122 |
| 5806 @DomName('SVGElement.className') | 7123 @DomName('SVGElement.className') |
| 5807 @DocsEditable() | 7124 @DocsEditable() |
| 5808 @Experimental() // untriaged | 7125 @Experimental() // untriaged |
| 5809 AnimatedString get _svgClassName => _blink.BlinkSVGElement.instance.className_
Getter_(this); | 7126 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c
lassName_Getter_(unwrap_jso(this))); |
| 5810 | 7127 |
| 5811 @DomName('SVGElement.ownerSVGElement') | 7128 @DomName('SVGElement.ownerSVGElement') |
| 5812 @DocsEditable() | 7129 @DocsEditable() |
| 5813 SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.instance.ownerSVGE
lement_Getter_(this); | 7130 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.
ownerSVGElement_Getter_(unwrap_jso(this))); |
| 5814 | 7131 |
| 5815 @DomName('SVGElement.style') | 7132 @DomName('SVGElement.style') |
| 5816 @DocsEditable() | 7133 @DocsEditable() |
| 5817 @Experimental() // untriaged | 7134 @Experimental() // untriaged |
| 5818 CssStyleDeclaration get style => _blink.BlinkSVGElement.instance.style_Getter_
(this); | 7135 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl
e_Getter_(unwrap_jso(this))); |
| 5819 | 7136 |
| 5820 @DomName('SVGElement.tabIndex') | 7137 @DomName('SVGElement.tabIndex') |
| 5821 @DocsEditable() | 7138 @DocsEditable() |
| 5822 @Experimental() // untriaged | 7139 @Experimental() // untriaged |
| 5823 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(this); | 7140 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js
o(this)); |
| 5824 | 7141 |
| 5825 @DomName('SVGElement.tabIndex') | 7142 @DomName('SVGElement.tabIndex') |
| 5826 @DocsEditable() | 7143 @DocsEditable() |
| 5827 @Experimental() // untriaged | 7144 @Experimental() // untriaged |
| 5828 void set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Sette
r_(this, value); | 7145 void set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Sette
r_(unwrap_jso(this), value); |
| 5829 | 7146 |
| 5830 @DomName('SVGElement.viewportElement') | 7147 @DomName('SVGElement.viewportElement') |
| 5831 @DocsEditable() | 7148 @DocsEditable() |
| 5832 SvgElement get viewportElement => _blink.BlinkSVGElement.instance.viewportElem
ent_Getter_(this); | 7149 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie
wportElement_Getter_(unwrap_jso(this))); |
| 5833 | 7150 |
| 5834 @DomName('SVGElement.xmlbase') | 7151 @DomName('SVGElement.xmlbase') |
| 5835 @DocsEditable() | 7152 @DocsEditable() |
| 5836 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(this); | 7153 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(unwrap_j
so(this)); |
| 5837 | 7154 |
| 5838 @DomName('SVGElement.xmlbase') | 7155 @DomName('SVGElement.xmlbase') |
| 5839 @DocsEditable() | 7156 @DocsEditable() |
| 5840 void set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Sett
er_(this, value); | 7157 void set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Sett
er_(unwrap_jso(this), value); |
| 5841 | 7158 |
| 5842 @DomName('SVGElement.xmllang') | 7159 @DomName('SVGElement.xmllang') |
| 5843 @DocsEditable() | 7160 @DocsEditable() |
| 5844 @Experimental() // untriaged | 7161 @Experimental() // untriaged |
| 5845 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(this); | 7162 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(unwrap_j
so(this)); |
| 5846 | 7163 |
| 5847 @DomName('SVGElement.xmllang') | 7164 @DomName('SVGElement.xmllang') |
| 5848 @DocsEditable() | 7165 @DocsEditable() |
| 5849 @Experimental() // untriaged | 7166 @Experimental() // untriaged |
| 5850 void set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Sett
er_(this, value); | 7167 void set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Sett
er_(unwrap_jso(this), value); |
| 5851 | 7168 |
| 5852 @DomName('SVGElement.xmlspace') | 7169 @DomName('SVGElement.xmlspace') |
| 5853 @DocsEditable() | 7170 @DocsEditable() |
| 5854 @Experimental() // untriaged | 7171 @Experimental() // untriaged |
| 5855 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(this); | 7172 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(unwrap
_jso(this)); |
| 5856 | 7173 |
| 5857 @DomName('SVGElement.xmlspace') | 7174 @DomName('SVGElement.xmlspace') |
| 5858 @DocsEditable() | 7175 @DocsEditable() |
| 5859 @Experimental() // untriaged | 7176 @Experimental() // untriaged |
| 5860 void set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Se
tter_(this, value); | 7177 void set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Se
tter_(unwrap_jso(this), value); |
| 5861 | 7178 |
| 5862 @DomName('SVGElement.onabort') | 7179 @DomName('SVGElement.onabort') |
| 5863 @DocsEditable() | 7180 @DocsEditable() |
| 5864 @Experimental() // untriaged | 7181 @Experimental() // untriaged |
| 5865 ElementStream<Event> get onAbort => abortEvent.forElement(this); | 7182 ElementStream<Event> get onAbort => abortEvent.forElement(this); |
| 5866 | 7183 |
| 5867 @DomName('SVGElement.onblur') | 7184 @DomName('SVGElement.onblur') |
| 5868 @DocsEditable() | 7185 @DocsEditable() |
| 5869 @Experimental() // untriaged | 7186 @Experimental() // untriaged |
| 5870 ElementStream<Event> get onBlur => blurEvent.forElement(this); | 7187 ElementStream<Event> get onBlur => blurEvent.forElement(this); |
| 5871 | 7188 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6130 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ | 7447 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ |
| 6131 factory SvgSvgElement() { | 7448 factory SvgSvgElement() { |
| 6132 final el = new SvgElement.tag("svg"); | 7449 final el = new SvgElement.tag("svg"); |
| 6133 // The SVG spec requires the version attribute to match the spec version | 7450 // The SVG spec requires the version attribute to match the spec version |
| 6134 el.attributes['version'] = "1.1"; | 7451 el.attributes['version'] = "1.1"; |
| 6135 return el; | 7452 return el; |
| 6136 } | 7453 } |
| 6137 | 7454 |
| 6138 // To suppress missing implicit constructor warnings. | 7455 // To suppress missing implicit constructor warnings. |
| 6139 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } | 7456 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 |
| 6140 /** | 7469 /** |
| 6141 * Constructor instantiated by the DOM when a custom element has been created. | 7470 * Constructor instantiated by the DOM when a custom element has been created. |
| 6142 * | 7471 * |
| 6143 * This can only be called by subclasses from their created constructor. | 7472 * This can only be called by subclasses from their created constructor. |
| 6144 */ | 7473 */ |
| 6145 SvgSvgElement.created() : super.created(); | 7474 SvgSvgElement.created() : super.created(); |
| 6146 | 7475 |
| 6147 @DomName('SVGSVGElement.currentScale') | 7476 @DomName('SVGSVGElement.currentScale') |
| 6148 @DocsEditable() | 7477 @DocsEditable() |
| 6149 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(this); | 7478 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); |
| 6150 | 7479 |
| 6151 @DomName('SVGSVGElement.currentScale') | 7480 @DomName('SVGSVGElement.currentScale') |
| 6152 @DocsEditable() | 7481 @DocsEditable() |
| 6153 void set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.current
Scale_Setter_(this, value); | 7482 void set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.current
Scale_Setter_(unwrap_jso(this), value); |
| 6154 | 7483 |
| 6155 @DomName('SVGSVGElement.currentTranslate') | 7484 @DomName('SVGSVGElement.currentTranslate') |
| 6156 @DocsEditable() | 7485 @DocsEditable() |
| 6157 Point get currentTranslate => _blink.BlinkSVGSVGElement.instance.currentTransl
ate_Getter_(this); | 7486 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr
entTranslate_Getter_(unwrap_jso(this))); |
| 6158 | 7487 |
| 6159 @DomName('SVGSVGElement.currentView') | 7488 @DomName('SVGSVGElement.currentView') |
| 6160 @DocsEditable() | 7489 @DocsEditable() |
| 6161 ViewSpec get currentView => _blink.BlinkSVGSVGElement.instance.currentView_Get
ter_(this); | 7490 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren
tView_Getter_(unwrap_jso(this))); |
| 6162 | 7491 |
| 6163 @DomName('SVGSVGElement.height') | 7492 @DomName('SVGSVGElement.height') |
| 6164 @DocsEditable() | 7493 @DocsEditable() |
| 6165 AnimatedLength get height => _blink.BlinkSVGSVGElement.instance.height_Getter_
(this); | 7494 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
| 6166 | 7495 |
| 6167 @DomName('SVGSVGElement.pixelUnitToMillimeterX') | 7496 @DomName('SVGSVGElement.pixelUnitToMillimeterX') |
| 6168 @DocsEditable() | 7497 @DocsEditable() |
| 6169 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterX_Getter_(this); | 7498 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterX_Getter_(unwrap_jso(this)); |
| 6170 | 7499 |
| 6171 @DomName('SVGSVGElement.pixelUnitToMillimeterY') | 7500 @DomName('SVGSVGElement.pixelUnitToMillimeterY') |
| 6172 @DocsEditable() | 7501 @DocsEditable() |
| 6173 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterY_Getter_(this); | 7502 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterY_Getter_(unwrap_jso(this)); |
| 6174 | 7503 |
| 6175 @DomName('SVGSVGElement.screenPixelToMillimeterX') | 7504 @DomName('SVGSVGElement.screenPixelToMillimeterX') |
| 6176 @DocsEditable() | 7505 @DocsEditable() |
| 6177 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterX_Getter_(this); | 7506 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterX_Getter_(unwrap_jso(this)); |
| 6178 | 7507 |
| 6179 @DomName('SVGSVGElement.screenPixelToMillimeterY') | 7508 @DomName('SVGSVGElement.screenPixelToMillimeterY') |
| 6180 @DocsEditable() | 7509 @DocsEditable() |
| 6181 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterY_Getter_(this); | 7510 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterY_Getter_(unwrap_jso(this)); |
| 6182 | 7511 |
| 6183 @DomName('SVGSVGElement.useCurrentView') | 7512 @DomName('SVGSVGElement.useCurrentView') |
| 6184 @DocsEditable() | 7513 @DocsEditable() |
| 6185 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(this); | 7514 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(unwrap_jso(this)); |
| 6186 | 7515 |
| 6187 @DomName('SVGSVGElement.viewport') | 7516 @DomName('SVGSVGElement.viewport') |
| 6188 @DocsEditable() | 7517 @DocsEditable() |
| 6189 Rect get viewport => _blink.BlinkSVGSVGElement.instance.viewport_Getter_(this)
; | 7518 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett
er_(unwrap_jso(this))); |
| 6190 | 7519 |
| 6191 @DomName('SVGSVGElement.width') | 7520 @DomName('SVGSVGElement.width') |
| 6192 @DocsEditable() | 7521 @DocsEditable() |
| 6193 AnimatedLength get width => _blink.BlinkSVGSVGElement.instance.width_Getter_(t
his); | 7522 AnimatedLength get width => wrap_jso(_blink.BlinkSVGSVGElement.instance.width_
Getter_(unwrap_jso(this))); |
| 6194 | 7523 |
| 6195 @DomName('SVGSVGElement.x') | 7524 @DomName('SVGSVGElement.x') |
| 6196 @DocsEditable() | 7525 @DocsEditable() |
| 6197 AnimatedLength get x => _blink.BlinkSVGSVGElement.instance.x_Getter_(this); | 7526 AnimatedLength get x => wrap_jso(_blink.BlinkSVGSVGElement.instance.x_Getter_(
unwrap_jso(this))); |
| 6198 | 7527 |
| 6199 @DomName('SVGSVGElement.y') | 7528 @DomName('SVGSVGElement.y') |
| 6200 @DocsEditable() | 7529 @DocsEditable() |
| 6201 AnimatedLength get y => _blink.BlinkSVGSVGElement.instance.y_Getter_(this); | 7530 AnimatedLength get y => wrap_jso(_blink.BlinkSVGSVGElement.instance.y_Getter_(
unwrap_jso(this))); |
| 6202 | 7531 |
| 6203 @DomName('SVGSVGElement.animationsPaused') | 7532 @DomName('SVGSVGElement.animationsPaused') |
| 6204 @DocsEditable() | 7533 @DocsEditable() |
| 6205 bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused
_Callback_0_(this); | 7534 bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused
_Callback_0_(unwrap_jso(this)); |
| 6206 | 7535 |
| 6207 @DomName('SVGSVGElement.checkEnclosure') | 7536 @DomName('SVGSVGElement.checkEnclosure') |
| 6208 @DocsEditable() | 7537 @DocsEditable() |
| 6209 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(this, element, rect); | 7538 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw
rap_jso(rect)); |
| 6210 | 7539 |
| 6211 @DomName('SVGSVGElement.checkIntersection') | 7540 @DomName('SVGSVGElement.checkIntersection') |
| 6212 @DocsEditable() | 7541 @DocsEditable() |
| 6213 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(this, element, rect); | 7542 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element
), unwrap_jso(rect)); |
| 6214 | 7543 |
| 6215 @DomName('SVGSVGElement.createSVGAngle') | 7544 @DomName('SVGSVGElement.createSVGAngle') |
| 6216 @DocsEditable() | 7545 @DocsEditable() |
| 6217 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca
llback_0_(this); | 7546 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca
llback_0_(unwrap_jso(this)); |
| 6218 | 7547 |
| 6219 @DomName('SVGSVGElement.createSVGLength') | 7548 @DomName('SVGSVGElement.createSVGLength') |
| 6220 @DocsEditable() | 7549 @DocsEditable() |
| 6221 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength
_Callback_0_(this); | 7550 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength
_Callback_0_(unwrap_jso(this)); |
| 6222 | 7551 |
| 6223 @DomName('SVGSVGElement.createSVGMatrix') | 7552 @DomName('SVGSVGElement.createSVGMatrix') |
| 6224 @DocsEditable() | 7553 @DocsEditable() |
| 6225 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix
_Callback_0_(this); | 7554 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix
_Callback_0_(unwrap_jso(this)); |
| 6226 | 7555 |
| 6227 @DomName('SVGSVGElement.createSVGNumber') | 7556 @DomName('SVGSVGElement.createSVGNumber') |
| 6228 @DocsEditable() | 7557 @DocsEditable() |
| 6229 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber
_Callback_0_(this); | 7558 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber
_Callback_0_(unwrap_jso(this)); |
| 6230 | 7559 |
| 6231 @DomName('SVGSVGElement.createSVGPoint') | 7560 @DomName('SVGSVGElement.createSVGPoint') |
| 6232 @DocsEditable() | 7561 @DocsEditable() |
| 6233 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca
llback_0_(this); | 7562 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca
llback_0_(unwrap_jso(this)); |
| 6234 | 7563 |
| 6235 @DomName('SVGSVGElement.createSVGRect') | 7564 @DomName('SVGSVGElement.createSVGRect') |
| 6236 @DocsEditable() | 7565 @DocsEditable() |
| 6237 Rect createSvgRect() => _blink.BlinkSVGSVGElement.instance.createSVGRect_Callb
ack_0_(this); | 7566 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR
ect_Callback_0_(unwrap_jso(this))); |
| 6238 | 7567 |
| 6239 @DomName('SVGSVGElement.createSVGTransform') | 7568 @DomName('SVGSVGElement.createSVGTransform') |
| 6240 @DocsEditable() | 7569 @DocsEditable() |
| 6241 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG
Transform_Callback_0_(this); | 7570 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG
Transform_Callback_0_(unwrap_jso(this)); |
| 6242 | 7571 |
| 6243 @DomName('SVGSVGElement.createSVGTransformFromMatrix') | 7572 @DomName('SVGSVGElement.createSVGTransformFromMatrix') |
| 6244 @DocsEditable() | 7573 @DocsEditable() |
| 6245 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix); | 7574 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwrap_
jso(matrix)); |
| 6246 | 7575 |
| 6247 @DomName('SVGSVGElement.deselectAll') | 7576 @DomName('SVGSVGElement.deselectAll') |
| 6248 @DocsEditable() | 7577 @DocsEditable() |
| 6249 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(this); | 7578 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(unwrap_jso(this)); |
| 6250 | 7579 |
| 6251 @DomName('SVGSVGElement.forceRedraw') | 7580 @DomName('SVGSVGElement.forceRedraw') |
| 6252 @DocsEditable() | 7581 @DocsEditable() |
| 6253 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(this); | 7582 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(unwrap_jso(this)); |
| 6254 | 7583 |
| 6255 @DomName('SVGSVGElement.getCurrentTime') | 7584 @DomName('SVGSVGElement.getCurrentTime') |
| 6256 @DocsEditable() | 7585 @DocsEditable() |
| 6257 double getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_C
allback_0_(this); | 7586 double getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_C
allback_0_(unwrap_jso(this)); |
| 6258 | 7587 |
| 6259 @DomName('SVGSVGElement.getElementById') | 7588 @DomName('SVGSVGElement.getElementById') |
| 6260 @DocsEditable() | 7589 @DocsEditable() |
| 6261 Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.instance
.getElementById_Callback_1_(this, elementId); | 7590 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement
.instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); |
| 6262 | 7591 |
| 6263 @DomName('SVGSVGElement.getEnclosureList') | 7592 @DomName('SVGSVGElement.getEnclosureList') |
| 6264 @DocsEditable() | 7593 @DocsEditable() |
| 6265 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink.
BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(this, rect, referenceEl
ement); | 7594 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js
o_list(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_js
o(this), unwrap_jso(rect), unwrap_jso(referenceElement))); |
| 6266 | 7595 |
| 6267 @DomName('SVGSVGElement.getIntersectionList') | 7596 @DomName('SVGSVGElement.getIntersectionList') |
| 6268 @DocsEditable() | 7597 @DocsEditable() |
| 6269 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _bli
nk.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(this, rect, refer
enceElement); | 7598 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap
_jso_list(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unw
rap_jso(this), unwrap_jso(rect), unwrap_jso(referenceElement))); |
| 6270 | 7599 |
| 6271 @DomName('SVGSVGElement.pauseAnimations') | 7600 @DomName('SVGSVGElement.pauseAnimations') |
| 6272 @DocsEditable() | 7601 @DocsEditable() |
| 6273 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(this); | 7602 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(unwrap_jso(this)); |
| 6274 | 7603 |
| 6275 @DomName('SVGSVGElement.setCurrentTime') | 7604 @DomName('SVGSVGElement.setCurrentTime') |
| 6276 @DocsEditable() | 7605 @DocsEditable() |
| 6277 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(this, seconds); | 7606 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(unwrap_jso(this), seconds); |
| 6278 | 7607 |
| 6279 @DomName('SVGSVGElement.suspendRedraw') | 7608 @DomName('SVGSVGElement.suspendRedraw') |
| 6280 @DocsEditable() | 7609 @DocsEditable() |
| 6281 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instan
ce.suspendRedraw_Callback_1_(this, maxWaitMilliseconds); | 7610 int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instan
ce.suspendRedraw_Callback_1_(unwrap_jso(this), maxWaitMilliseconds); |
| 6282 | 7611 |
| 6283 @DomName('SVGSVGElement.unpauseAnimations') | 7612 @DomName('SVGSVGElement.unpauseAnimations') |
| 6284 @DocsEditable() | 7613 @DocsEditable() |
| 6285 void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimatio
ns_Callback_0_(this); | 7614 void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimatio
ns_Callback_0_(unwrap_jso(this)); |
| 6286 | 7615 |
| 6287 @DomName('SVGSVGElement.unsuspendRedraw') | 7616 @DomName('SVGSVGElement.unsuspendRedraw') |
| 6288 @DocsEditable() | 7617 @DocsEditable() |
| 6289 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instanc
e.unsuspendRedraw_Callback_1_(this, suspendHandleId); | 7618 void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instanc
e.unsuspendRedraw_Callback_1_(unwrap_jso(this), suspendHandleId); |
| 6290 | 7619 |
| 6291 @DomName('SVGSVGElement.unsuspendRedrawAll') | 7620 @DomName('SVGSVGElement.unsuspendRedrawAll') |
| 6292 @DocsEditable() | 7621 @DocsEditable() |
| 6293 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedra
wAll_Callback_0_(this); | 7622 void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedra
wAll_Callback_0_(unwrap_jso(this)); |
| 6294 | 7623 |
| 6295 @DomName('SVGSVGElement.preserveAspectRatio') | 7624 @DomName('SVGSVGElement.preserveAspectRatio') |
| 6296 @DocsEditable() | 7625 @DocsEditable() |
| 6297 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGEleme
nt.instance.preserveAspectRatio_Getter_(this); | 7626 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSVGElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 6298 | 7627 |
| 6299 @DomName('SVGSVGElement.viewBox') | 7628 @DomName('SVGSVGElement.viewBox') |
| 6300 @DocsEditable() | 7629 @DocsEditable() |
| 6301 AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.instance.viewBox_Getter_
(this); | 7630 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo
x_Getter_(unwrap_jso(this))); |
| 6302 | 7631 |
| 6303 @DomName('SVGSVGElement.zoomAndPan') | 7632 @DomName('SVGSVGElement.zoomAndPan') |
| 6304 @DocsEditable() | 7633 @DocsEditable() |
| 6305 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(th
is); | 7634 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un
wrap_jso(this)); |
| 6306 | 7635 |
| 6307 @DomName('SVGSVGElement.zoomAndPan') | 7636 @DomName('SVGSVGElement.zoomAndPan') |
| 6308 @DocsEditable() | 7637 @DocsEditable() |
| 6309 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPa
n_Setter_(this, value); | 7638 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPa
n_Setter_(unwrap_jso(this), value); |
| 6310 | 7639 |
| 6311 } | 7640 } |
| 6312 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6313 // for details. All rights reserved. Use of this source code is governed by a | 7642 // for details. All rights reserved. Use of this source code is governed by a |
| 6314 // BSD-style license that can be found in the LICENSE file. | 7643 // BSD-style license that can be found in the LICENSE file. |
| 6315 | 7644 |
| 6316 // WARNING: Do not edit - generated code. | 7645 // WARNING: Do not edit - generated code. |
| 6317 | 7646 |
| 6318 | 7647 |
| 6319 @DocsEditable() | 7648 @DocsEditable() |
| 6320 @DomName('SVGSwitchElement') | 7649 @DomName('SVGSwitchElement') |
| 6321 @Unstable() | 7650 @Unstable() |
| 6322 class SwitchElement extends GraphicsElement { | 7651 class SwitchElement extends GraphicsElement { |
| 6323 // To suppress missing implicit constructor warnings. | 7652 // To suppress missing implicit constructor warnings. |
| 6324 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } | 7653 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } |
| 6325 | 7654 |
| 6326 @DomName('SVGSwitchElement.SVGSwitchElement') | 7655 @DomName('SVGSwitchElement.SVGSwitchElement') |
| 6327 @DocsEditable() | 7656 @DocsEditable() |
| 6328 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); | 7657 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 |
| 6329 /** | 7670 /** |
| 6330 * Constructor instantiated by the DOM when a custom element has been created. | 7671 * Constructor instantiated by the DOM when a custom element has been created. |
| 6331 * | 7672 * |
| 6332 * This can only be called by subclasses from their created constructor. | 7673 * This can only be called by subclasses from their created constructor. |
| 6333 */ | 7674 */ |
| 6334 SwitchElement.created() : super.created(); | 7675 SwitchElement.created() : super.created(); |
| 6335 | 7676 |
| 6336 } | 7677 } |
| 6337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6338 // for details. All rights reserved. Use of this source code is governed by a | 7679 // for details. All rights reserved. Use of this source code is governed by a |
| 6339 // BSD-style license that can be found in the LICENSE file. | 7680 // BSD-style license that can be found in the LICENSE file. |
| 6340 | 7681 |
| 6341 // WARNING: Do not edit - generated code. | 7682 // WARNING: Do not edit - generated code. |
| 6342 | 7683 |
| 6343 | 7684 |
| 6344 @DocsEditable() | 7685 @DocsEditable() |
| 6345 @DomName('SVGSymbolElement') | 7686 @DomName('SVGSymbolElement') |
| 6346 @Unstable() | 7687 @Unstable() |
| 6347 class SymbolElement extends SvgElement implements FitToViewBox { | 7688 class SymbolElement extends SvgElement implements FitToViewBox { |
| 6348 // To suppress missing implicit constructor warnings. | 7689 // To suppress missing implicit constructor warnings. |
| 6349 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } | 7690 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } |
| 6350 | 7691 |
| 6351 @DomName('SVGSymbolElement.SVGSymbolElement') | 7692 @DomName('SVGSymbolElement.SVGSymbolElement') |
| 6352 @DocsEditable() | 7693 @DocsEditable() |
| 6353 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); | 7694 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 |
| 6354 /** | 7707 /** |
| 6355 * Constructor instantiated by the DOM when a custom element has been created. | 7708 * Constructor instantiated by the DOM when a custom element has been created. |
| 6356 * | 7709 * |
| 6357 * This can only be called by subclasses from their created constructor. | 7710 * This can only be called by subclasses from their created constructor. |
| 6358 */ | 7711 */ |
| 6359 SymbolElement.created() : super.created(); | 7712 SymbolElement.created() : super.created(); |
| 6360 | 7713 |
| 6361 @DomName('SVGSymbolElement.preserveAspectRatio') | 7714 @DomName('SVGSymbolElement.preserveAspectRatio') |
| 6362 @DocsEditable() | 7715 @DocsEditable() |
| 6363 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolEl
ement.instance.preserveAspectRatio_Getter_(this); | 7716 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 6364 | 7717 |
| 6365 @DomName('SVGSymbolElement.viewBox') | 7718 @DomName('SVGSymbolElement.viewBox') |
| 6366 @DocsEditable() | 7719 @DocsEditable() |
| 6367 AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.instance.viewBox_Gett
er_(this); | 7720 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSymbolElement.instance.vie
wBox_Getter_(unwrap_jso(this))); |
| 6368 | 7721 |
| 6369 } | 7722 } |
| 6370 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7723 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6371 // for details. All rights reserved. Use of this source code is governed by a | 7724 // for details. All rights reserved. Use of this source code is governed by a |
| 6372 // BSD-style license that can be found in the LICENSE file. | 7725 // BSD-style license that can be found in the LICENSE file. |
| 6373 | 7726 |
| 6374 // WARNING: Do not edit - generated code. | 7727 // WARNING: Do not edit - generated code. |
| 6375 | 7728 |
| 6376 | 7729 |
| 6377 @DocsEditable() | 7730 @DocsEditable() |
| 6378 @DomName('SVGTSpanElement') | 7731 @DomName('SVGTSpanElement') |
| 6379 @Unstable() | 7732 @Unstable() |
| 6380 class TSpanElement extends TextPositioningElement { | 7733 class TSpanElement extends TextPositioningElement { |
| 6381 // To suppress missing implicit constructor warnings. | 7734 // To suppress missing implicit constructor warnings. |
| 6382 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } | 7735 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } |
| 6383 | 7736 |
| 6384 @DomName('SVGTSpanElement.SVGTSpanElement') | 7737 @DomName('SVGTSpanElement.SVGTSpanElement') |
| 6385 @DocsEditable() | 7738 @DocsEditable() |
| 6386 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); | 7739 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 |
| 6387 /** | 7752 /** |
| 6388 * Constructor instantiated by the DOM when a custom element has been created. | 7753 * Constructor instantiated by the DOM when a custom element has been created. |
| 6389 * | 7754 * |
| 6390 * This can only be called by subclasses from their created constructor. | 7755 * This can only be called by subclasses from their created constructor. |
| 6391 */ | 7756 */ |
| 6392 TSpanElement.created() : super.created(); | 7757 TSpanElement.created() : super.created(); |
| 6393 | 7758 |
| 6394 } | 7759 } |
| 6395 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6396 // for details. All rights reserved. Use of this source code is governed by a | 7761 // for details. All rights reserved. Use of this source code is governed by a |
| 6397 // BSD-style license that can be found in the LICENSE file. | 7762 // BSD-style license that can be found in the LICENSE file. |
| 6398 | 7763 |
| 6399 // WARNING: Do not edit - generated code. | 7764 // WARNING: Do not edit - generated code. |
| 6400 | 7765 |
| 6401 | 7766 |
| 6402 @DocsEditable() | 7767 @DocsEditable() |
| 6403 @DomName('SVGTests') | 7768 @DomName('SVGTests') |
| 6404 @Unstable() | 7769 @Unstable() |
| 6405 abstract class Tests extends NativeFieldWrapperClass2 { | 7770 abstract class Tests extends NativeFieldWrapperClass2 { |
| 6406 // To suppress missing implicit constructor warnings. | 7771 // To suppress missing implicit constructor warnings. |
| 6407 factory Tests._() { throw new UnsupportedError("Not supported"); } | 7772 factory Tests._() { throw new UnsupportedError("Not supported"); } |
| 6408 | 7773 |
| 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 |
| 6409 @DomName('SVGTests.requiredExtensions') | 7788 @DomName('SVGTests.requiredExtensions') |
| 6410 @DocsEditable() | 7789 @DocsEditable() |
| 6411 StringList get requiredExtensions; | 7790 StringList get requiredExtensions; |
| 6412 | 7791 |
| 6413 @DomName('SVGTests.requiredFeatures') | 7792 @DomName('SVGTests.requiredFeatures') |
| 6414 @DocsEditable() | 7793 @DocsEditable() |
| 6415 StringList get requiredFeatures; | 7794 StringList get requiredFeatures; |
| 6416 | 7795 |
| 6417 @DomName('SVGTests.systemLanguage') | 7796 @DomName('SVGTests.systemLanguage') |
| 6418 @DocsEditable() | 7797 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6429 | 7808 |
| 6430 // WARNING: Do not edit - generated code. | 7809 // WARNING: Do not edit - generated code. |
| 6431 | 7810 |
| 6432 | 7811 |
| 6433 @DocsEditable() | 7812 @DocsEditable() |
| 6434 @DomName('SVGTextContentElement') | 7813 @DomName('SVGTextContentElement') |
| 6435 @Unstable() | 7814 @Unstable() |
| 6436 class TextContentElement extends GraphicsElement { | 7815 class TextContentElement extends GraphicsElement { |
| 6437 // To suppress missing implicit constructor warnings. | 7816 // To suppress missing implicit constructor warnings. |
| 6438 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} | 7817 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 |
| 6439 /** | 7830 /** |
| 6440 * Constructor instantiated by the DOM when a custom element has been created. | 7831 * Constructor instantiated by the DOM when a custom element has been created. |
| 6441 * | 7832 * |
| 6442 * This can only be called by subclasses from their created constructor. | 7833 * This can only be called by subclasses from their created constructor. |
| 6443 */ | 7834 */ |
| 6444 TextContentElement.created() : super.created(); | 7835 TextContentElement.created() : super.created(); |
| 6445 | 7836 |
| 6446 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') | 7837 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
| 6447 @DocsEditable() | 7838 @DocsEditable() |
| 6448 static const int LENGTHADJUST_SPACING = 1; | 7839 static const int LENGTHADJUST_SPACING = 1; |
| 6449 | 7840 |
| 6450 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') | 7841 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS') |
| 6451 @DocsEditable() | 7842 @DocsEditable() |
| 6452 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 7843 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 6453 | 7844 |
| 6454 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') | 7845 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN') |
| 6455 @DocsEditable() | 7846 @DocsEditable() |
| 6456 static const int LENGTHADJUST_UNKNOWN = 0; | 7847 static const int LENGTHADJUST_UNKNOWN = 0; |
| 6457 | 7848 |
| 6458 @DomName('SVGTextContentElement.lengthAdjust') | 7849 @DomName('SVGTextContentElement.lengthAdjust') |
| 6459 @DocsEditable() | 7850 @DocsEditable() |
| 6460 AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.inst
ance.lengthAdjust_Getter_(this); | 7851 AnimatedEnumeration get lengthAdjust => wrap_jso(_blink.BlinkSVGTextContentEle
ment.instance.lengthAdjust_Getter_(unwrap_jso(this))); |
| 6461 | 7852 |
| 6462 @DomName('SVGTextContentElement.textLength') | 7853 @DomName('SVGTextContentElement.textLength') |
| 6463 @DocsEditable() | 7854 @DocsEditable() |
| 6464 AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.instance.te
xtLength_Getter_(this); | 7855 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in
stance.textLength_Getter_(unwrap_jso(this))); |
| 6465 | 7856 |
| 6466 @DomName('SVGTextContentElement.getCharNumAtPosition') | 7857 @DomName('SVGTextContentElement.getCharNumAtPosition') |
| 6467 @DocsEditable() | 7858 @DocsEditable() |
| 6468 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(this, point); | 7859 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); |
| 6469 | 7860 |
| 6470 @DomName('SVGTextContentElement.getComputedTextLength') | 7861 @DomName('SVGTextContentElement.getComputedTextLength') |
| 6471 @DocsEditable() | 7862 @DocsEditable() |
| 6472 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.g
etComputedTextLength_Callback_0_(this); | 7863 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.g
etComputedTextLength_Callback_0_(unwrap_jso(this)); |
| 6473 | 7864 |
| 6474 @DomName('SVGTextContentElement.getEndPositionOfChar') | 7865 @DomName('SVGTextContentElement.getEndPositionOfChar') |
| 6475 @DocsEditable() | 7866 @DocsEditable() |
| 6476 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.in
stance.getEndPositionOfChar_Callback_1_(this, offset); | 7867 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.in
stance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), offset); |
| 6477 | 7868 |
| 6478 @DomName('SVGTextContentElement.getExtentOfChar') | 7869 @DomName('SVGTextContentElement.getExtentOfChar') |
| 6479 @DocsEditable() | 7870 @DocsEditable() |
| 6480 Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.instance
.getExtentOfChar_Callback_1_(this, offset); | 7871 Rect getExtentOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentElement
.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), offset)); |
| 6481 | 7872 |
| 6482 @DomName('SVGTextContentElement.getNumberOfChars') | 7873 @DomName('SVGTextContentElement.getNumberOfChars') |
| 6483 @DocsEditable() | 7874 @DocsEditable() |
| 6484 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(this); | 7875 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(unwrap_jso(this)); |
| 6485 | 7876 |
| 6486 @DomName('SVGTextContentElement.getRotationOfChar') | 7877 @DomName('SVGTextContentElement.getRotationOfChar') |
| 6487 @DocsEditable() | 7878 @DocsEditable() |
| 6488 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.inst
ance.getRotationOfChar_Callback_1_(this, offset); | 7879 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.inst
ance.getRotationOfChar_Callback_1_(unwrap_jso(this), offset); |
| 6489 | 7880 |
| 6490 @DomName('SVGTextContentElement.getStartPositionOfChar') | 7881 @DomName('SVGTextContentElement.getStartPositionOfChar') |
| 6491 @DocsEditable() | 7882 @DocsEditable() |
| 6492 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
instance.getStartPositionOfChar_Callback_1_(this, offset); | 7883 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), offset); |
| 6493 | 7884 |
| 6494 @DomName('SVGTextContentElement.getSubStringLength') | 7885 @DomName('SVGTextContentElement.getSubStringLength') |
| 6495 @DocsEditable() | 7886 @DocsEditable() |
| 6496 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.instance.getSubStringLength_Callback_2_(this, offset, length); | 7887 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), offset, lengt
h); |
| 6497 | 7888 |
| 6498 @DomName('SVGTextContentElement.selectSubString') | 7889 @DomName('SVGTextContentElement.selectSubString') |
| 6499 @DocsEditable() | 7890 @DocsEditable() |
| 6500 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(this, offset, length); | 7891 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(unwrap_jso(this), offset, length); |
| 6501 | 7892 |
| 6502 } | 7893 } |
| 6503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7894 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6504 // for details. All rights reserved. Use of this source code is governed by a | 7895 // for details. All rights reserved. Use of this source code is governed by a |
| 6505 // BSD-style license that can be found in the LICENSE file. | 7896 // BSD-style license that can be found in the LICENSE file. |
| 6506 | 7897 |
| 6507 // WARNING: Do not edit - generated code. | 7898 // WARNING: Do not edit - generated code. |
| 6508 | 7899 |
| 6509 | 7900 |
| 6510 @DocsEditable() | 7901 @DocsEditable() |
| 6511 @DomName('SVGTextElement') | 7902 @DomName('SVGTextElement') |
| 6512 @Unstable() | 7903 @Unstable() |
| 6513 class TextElement extends TextPositioningElement { | 7904 class TextElement extends TextPositioningElement { |
| 6514 // To suppress missing implicit constructor warnings. | 7905 // To suppress missing implicit constructor warnings. |
| 6515 factory TextElement._() { throw new UnsupportedError("Not supported"); } | 7906 factory TextElement._() { throw new UnsupportedError("Not supported"); } |
| 6516 | 7907 |
| 6517 @DomName('SVGTextElement.SVGTextElement') | 7908 @DomName('SVGTextElement.SVGTextElement') |
| 6518 @DocsEditable() | 7909 @DocsEditable() |
| 6519 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); | 7910 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 |
| 6520 /** | 7923 /** |
| 6521 * Constructor instantiated by the DOM when a custom element has been created. | 7924 * Constructor instantiated by the DOM when a custom element has been created. |
| 6522 * | 7925 * |
| 6523 * This can only be called by subclasses from their created constructor. | 7926 * This can only be called by subclasses from their created constructor. |
| 6524 */ | 7927 */ |
| 6525 TextElement.created() : super.created(); | 7928 TextElement.created() : super.created(); |
| 6526 | 7929 |
| 6527 } | 7930 } |
| 6528 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6529 // for details. All rights reserved. Use of this source code is governed by a | 7932 // for details. All rights reserved. Use of this source code is governed by a |
| 6530 // BSD-style license that can be found in the LICENSE file. | 7933 // BSD-style license that can be found in the LICENSE file. |
| 6531 | 7934 |
| 6532 // WARNING: Do not edit - generated code. | 7935 // WARNING: Do not edit - generated code. |
| 6533 | 7936 |
| 6534 | 7937 |
| 6535 @DocsEditable() | 7938 @DocsEditable() |
| 6536 @DomName('SVGTextPathElement') | 7939 @DomName('SVGTextPathElement') |
| 6537 @Unstable() | 7940 @Unstable() |
| 6538 class TextPathElement extends TextContentElement implements UriReference { | 7941 class TextPathElement extends TextContentElement implements UriReference { |
| 6539 // To suppress missing implicit constructor warnings. | 7942 // To suppress missing implicit constructor warnings. |
| 6540 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } | 7943 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 |
| 6541 /** | 7956 /** |
| 6542 * Constructor instantiated by the DOM when a custom element has been created. | 7957 * Constructor instantiated by the DOM when a custom element has been created. |
| 6543 * | 7958 * |
| 6544 * This can only be called by subclasses from their created constructor. | 7959 * This can only be called by subclasses from their created constructor. |
| 6545 */ | 7960 */ |
| 6546 TextPathElement.created() : super.created(); | 7961 TextPathElement.created() : super.created(); |
| 6547 | 7962 |
| 6548 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') | 7963 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
| 6549 @DocsEditable() | 7964 @DocsEditable() |
| 6550 static const int TEXTPATH_METHODTYPE_ALIGN = 1; | 7965 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6564 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT') | 7979 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT') |
| 6565 @DocsEditable() | 7980 @DocsEditable() |
| 6566 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; | 7981 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 6567 | 7982 |
| 6568 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN') | 7983 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN') |
| 6569 @DocsEditable() | 7984 @DocsEditable() |
| 6570 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; | 7985 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 6571 | 7986 |
| 6572 @DomName('SVGTextPathElement.method') | 7987 @DomName('SVGTextPathElement.method') |
| 6573 @DocsEditable() | 7988 @DocsEditable() |
| 6574 AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.instance.meth
od_Getter_(this); | 7989 AnimatedEnumeration get method => wrap_jso(_blink.BlinkSVGTextPathElement.inst
ance.method_Getter_(unwrap_jso(this))); |
| 6575 | 7990 |
| 6576 @DomName('SVGTextPathElement.spacing') | 7991 @DomName('SVGTextPathElement.spacing') |
| 6577 @DocsEditable() | 7992 @DocsEditable() |
| 6578 AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.instance.spa
cing_Getter_(this); | 7993 AnimatedEnumeration get spacing => wrap_jso(_blink.BlinkSVGTextPathElement.ins
tance.spacing_Getter_(unwrap_jso(this))); |
| 6579 | 7994 |
| 6580 @DomName('SVGTextPathElement.startOffset') | 7995 @DomName('SVGTextPathElement.startOffset') |
| 6581 @DocsEditable() | 7996 @DocsEditable() |
| 6582 AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.instance.star
tOffset_Getter_(this); | 7997 AnimatedLength get startOffset => wrap_jso(_blink.BlinkSVGTextPathElement.inst
ance.startOffset_Getter_(unwrap_jso(this))); |
| 6583 | 7998 |
| 6584 @DomName('SVGTextPathElement.href') | 7999 @DomName('SVGTextPathElement.href') |
| 6585 @DocsEditable() | 8000 @DocsEditable() |
| 6586 AnimatedString get href => _blink.BlinkSVGTextPathElement.instance.href_Getter
_(this); | 8001 AnimatedString get href => wrap_jso(_blink.BlinkSVGTextPathElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
| 6587 | 8002 |
| 6588 } | 8003 } |
| 6589 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8004 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6590 // for details. All rights reserved. Use of this source code is governed by a | 8005 // for details. All rights reserved. Use of this source code is governed by a |
| 6591 // BSD-style license that can be found in the LICENSE file. | 8006 // BSD-style license that can be found in the LICENSE file. |
| 6592 | 8007 |
| 6593 // WARNING: Do not edit - generated code. | 8008 // WARNING: Do not edit - generated code. |
| 6594 | 8009 |
| 6595 | 8010 |
| 6596 @DocsEditable() | 8011 @DocsEditable() |
| 6597 @DomName('SVGTextPositioningElement') | 8012 @DomName('SVGTextPositioningElement') |
| 6598 @Unstable() | 8013 @Unstable() |
| 6599 class TextPositioningElement extends TextContentElement { | 8014 class TextPositioningElement extends TextContentElement { |
| 6600 // To suppress missing implicit constructor warnings. | 8015 // To suppress missing implicit constructor warnings. |
| 6601 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } | 8016 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 |
| 6602 /** | 8029 /** |
| 6603 * Constructor instantiated by the DOM when a custom element has been created. | 8030 * Constructor instantiated by the DOM when a custom element has been created. |
| 6604 * | 8031 * |
| 6605 * This can only be called by subclasses from their created constructor. | 8032 * This can only be called by subclasses from their created constructor. |
| 6606 */ | 8033 */ |
| 6607 TextPositioningElement.created() : super.created(); | 8034 TextPositioningElement.created() : super.created(); |
| 6608 | 8035 |
| 6609 @DomName('SVGTextPositioningElement.dx') | 8036 @DomName('SVGTextPositioningElement.dx') |
| 6610 @DocsEditable() | 8037 @DocsEditable() |
| 6611 AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.instance.dx
_Getter_(this); | 8038 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); |
| 6612 | 8039 |
| 6613 @DomName('SVGTextPositioningElement.dy') | 8040 @DomName('SVGTextPositioningElement.dy') |
| 6614 @DocsEditable() | 8041 @DocsEditable() |
| 6615 AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.instance.dy
_Getter_(this); | 8042 AnimatedLengthList get dy => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dy_Getter_(unwrap_jso(this))); |
| 6616 | 8043 |
| 6617 @DomName('SVGTextPositioningElement.rotate') | 8044 @DomName('SVGTextPositioningElement.rotate') |
| 6618 @DocsEditable() | 8045 @DocsEditable() |
| 6619 AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.instanc
e.rotate_Getter_(this); | 8046 AnimatedNumberList get rotate => wrap_jso(_blink.BlinkSVGTextPositioningElemen
t.instance.rotate_Getter_(unwrap_jso(this))); |
| 6620 | 8047 |
| 6621 @DomName('SVGTextPositioningElement.x') | 8048 @DomName('SVGTextPositioningElement.x') |
| 6622 @DocsEditable() | 8049 @DocsEditable() |
| 6623 AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.instance.x_G
etter_(this); | 8050 AnimatedLengthList get x => wrap_jso(_blink.BlinkSVGTextPositioningElement.ins
tance.x_Getter_(unwrap_jso(this))); |
| 6624 | 8051 |
| 6625 @DomName('SVGTextPositioningElement.y') | 8052 @DomName('SVGTextPositioningElement.y') |
| 6626 @DocsEditable() | 8053 @DocsEditable() |
| 6627 AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.instance.y_G
etter_(this); | 8054 AnimatedLengthList get y => wrap_jso(_blink.BlinkSVGTextPositioningElement.ins
tance.y_Getter_(unwrap_jso(this))); |
| 6628 | 8055 |
| 6629 } | 8056 } |
| 6630 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8057 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6631 // for details. All rights reserved. Use of this source code is governed by a | 8058 // for details. All rights reserved. Use of this source code is governed by a |
| 6632 // BSD-style license that can be found in the LICENSE file. | 8059 // BSD-style license that can be found in the LICENSE file. |
| 6633 | 8060 |
| 6634 // WARNING: Do not edit - generated code. | 8061 // WARNING: Do not edit - generated code. |
| 6635 | 8062 |
| 6636 | 8063 |
| 6637 @DocsEditable() | 8064 @DocsEditable() |
| 6638 @DomName('SVGTitleElement') | 8065 @DomName('SVGTitleElement') |
| 6639 @Unstable() | 8066 @Unstable() |
| 6640 class TitleElement extends SvgElement { | 8067 class TitleElement extends SvgElement { |
| 6641 // To suppress missing implicit constructor warnings. | 8068 // To suppress missing implicit constructor warnings. |
| 6642 factory TitleElement._() { throw new UnsupportedError("Not supported"); } | 8069 factory TitleElement._() { throw new UnsupportedError("Not supported"); } |
| 6643 | 8070 |
| 6644 @DomName('SVGTitleElement.SVGTitleElement') | 8071 @DomName('SVGTitleElement.SVGTitleElement') |
| 6645 @DocsEditable() | 8072 @DocsEditable() |
| 6646 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); | 8073 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 |
| 6647 /** | 8086 /** |
| 6648 * Constructor instantiated by the DOM when a custom element has been created. | 8087 * Constructor instantiated by the DOM when a custom element has been created. |
| 6649 * | 8088 * |
| 6650 * This can only be called by subclasses from their created constructor. | 8089 * This can only be called by subclasses from their created constructor. |
| 6651 */ | 8090 */ |
| 6652 TitleElement.created() : super.created(); | 8091 TitleElement.created() : super.created(); |
| 6653 | 8092 |
| 6654 } | 8093 } |
| 6655 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6656 // for details. All rights reserved. Use of this source code is governed by a | 8095 // for details. All rights reserved. Use of this source code is governed by a |
| 6657 // BSD-style license that can be found in the LICENSE file. | 8096 // BSD-style license that can be found in the LICENSE file. |
| 6658 | 8097 |
| 6659 // WARNING: Do not edit - generated code. | 8098 // WARNING: Do not edit - generated code. |
| 6660 | 8099 |
| 6661 | 8100 |
| 6662 @DocsEditable() | 8101 @DocsEditable() |
| 6663 @DomName('SVGTransform') | 8102 @DomName('SVGTransform') |
| 6664 @Unstable() | 8103 @Unstable() |
| 6665 class Transform extends NativeFieldWrapperClass2 { | 8104 class Transform extends NativeFieldWrapperClass2 { |
| 6666 // To suppress missing implicit constructor warnings. | 8105 // To suppress missing implicit constructor warnings. |
| 6667 factory Transform._() { throw new UnsupportedError("Not supported"); } | 8106 factory Transform._() { throw new UnsupportedError("Not supported"); } |
| 6668 | 8107 |
| 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 |
| 6669 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 8122 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
| 6670 @DocsEditable() | 8123 @DocsEditable() |
| 6671 static const int SVG_TRANSFORM_MATRIX = 1; | 8124 static const int SVG_TRANSFORM_MATRIX = 1; |
| 6672 | 8125 |
| 6673 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') | 8126 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') |
| 6674 @DocsEditable() | 8127 @DocsEditable() |
| 6675 static const int SVG_TRANSFORM_ROTATE = 4; | 8128 static const int SVG_TRANSFORM_ROTATE = 4; |
| 6676 | 8129 |
| 6677 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') | 8130 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') |
| 6678 @DocsEditable() | 8131 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6689 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') | 8142 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') |
| 6690 @DocsEditable() | 8143 @DocsEditable() |
| 6691 static const int SVG_TRANSFORM_TRANSLATE = 2; | 8144 static const int SVG_TRANSFORM_TRANSLATE = 2; |
| 6692 | 8145 |
| 6693 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') | 8146 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') |
| 6694 @DocsEditable() | 8147 @DocsEditable() |
| 6695 static const int SVG_TRANSFORM_UNKNOWN = 0; | 8148 static const int SVG_TRANSFORM_UNKNOWN = 0; |
| 6696 | 8149 |
| 6697 @DomName('SVGTransform.angle') | 8150 @DomName('SVGTransform.angle') |
| 6698 @DocsEditable() | 8151 @DocsEditable() |
| 6699 double get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(this); | 8152 double get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso
(this)); |
| 6700 | 8153 |
| 6701 @DomName('SVGTransform.matrix') | 8154 @DomName('SVGTransform.matrix') |
| 6702 @DocsEditable() | 8155 @DocsEditable() |
| 6703 Matrix get matrix => _blink.BlinkSVGTransform.instance.matrix_Getter_(this); | 8156 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_
(unwrap_jso(this))); |
| 6704 | 8157 |
| 6705 @DomName('SVGTransform.type') | 8158 @DomName('SVGTransform.type') |
| 6706 @DocsEditable() | 8159 @DocsEditable() |
| 6707 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(this); | 8160 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this
)); |
| 6708 | 8161 |
| 6709 @DomName('SVGTransform.setMatrix') | 8162 @DomName('SVGTransform.setMatrix') |
| 6710 @DocsEditable() | 8163 @DocsEditable() |
| 6711 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_C
allback_1_(this, matrix); | 8164 void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_C
allback_1_(unwrap_jso(this), unwrap_jso(matrix)); |
| 6712 | 8165 |
| 6713 @DomName('SVGTransform.setRotate') | 8166 @DomName('SVGTransform.setRotate') |
| 6714 @DocsEditable() | 8167 @DocsEditable() |
| 6715 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance
.setRotate_Callback_3_(this, angle, cx, cy); | 8168 void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance
.setRotate_Callback_3_(unwrap_jso(this), angle, cx, cy); |
| 6716 | 8169 |
| 6717 @DomName('SVGTransform.setScale') | 8170 @DomName('SVGTransform.setScale') |
| 6718 @DocsEditable() | 8171 @DocsEditable() |
| 6719 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Ca
llback_2_(this, sx, sy); | 8172 void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Ca
llback_2_(unwrap_jso(this), sx, sy); |
| 6720 | 8173 |
| 6721 @DomName('SVGTransform.setSkewX') | 8174 @DomName('SVGTransform.setSkewX') |
| 6722 @DocsEditable() | 8175 @DocsEditable() |
| 6723 void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callbac
k_1_(this, angle); | 8176 void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callbac
k_1_(unwrap_jso(this), angle); |
| 6724 | 8177 |
| 6725 @DomName('SVGTransform.setSkewY') | 8178 @DomName('SVGTransform.setSkewY') |
| 6726 @DocsEditable() | 8179 @DocsEditable() |
| 6727 void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callbac
k_1_(this, angle); | 8180 void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callbac
k_1_(unwrap_jso(this), angle); |
| 6728 | 8181 |
| 6729 @DomName('SVGTransform.setTranslate') | 8182 @DomName('SVGTransform.setTranslate') |
| 6730 @DocsEditable() | 8183 @DocsEditable() |
| 6731 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTran
slate_Callback_2_(this, tx, ty); | 8184 void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTran
slate_Callback_2_(unwrap_jso(this), tx, ty); |
| 6732 | 8185 |
| 6733 } | 8186 } |
| 6734 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6735 // for details. All rights reserved. Use of this source code is governed by a | 8188 // for details. All rights reserved. Use of this source code is governed by a |
| 6736 // BSD-style license that can be found in the LICENSE file. | 8189 // BSD-style license that can be found in the LICENSE file. |
| 6737 | 8190 |
| 6738 // WARNING: Do not edit - generated code. | 8191 // WARNING: Do not edit - generated code. |
| 6739 | 8192 |
| 6740 | 8193 |
| 6741 @DocsEditable() | 8194 @DocsEditable() |
| 6742 @DomName('SVGTransformList') | 8195 @DomName('SVGTransformList') |
| 6743 @Unstable() | 8196 @Unstable() |
| 6744 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { | 8197 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { |
| 6745 // To suppress missing implicit constructor warnings. | 8198 // To suppress missing implicit constructor warnings. |
| 6746 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 8199 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
| 6747 | 8200 |
| 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 |
| 6748 @DomName('SVGTransformList.length') | 8215 @DomName('SVGTransformList.length') |
| 6749 @DocsEditable() | 8216 @DocsEditable() |
| 6750 @Experimental() // untriaged | 8217 @Experimental() // untriaged |
| 6751 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(this); | 8218 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); |
| 6752 | 8219 |
| 6753 @DomName('SVGTransformList.numberOfItems') | 8220 @DomName('SVGTransformList.numberOfItems') |
| 6754 @DocsEditable() | 8221 @DocsEditable() |
| 6755 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(this); | 8222 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); |
| 6756 | 8223 |
| 6757 Transform operator[](int index) { | 8224 Transform operator[](int index) { |
| 6758 if (index < 0 || index >= length) | 8225 if (index < 0 || index >= length) |
| 6759 throw new RangeError.index(index, this); | 8226 throw new RangeError.index(index, this); |
| 6760 return getItem(index); | 8227 return getItem(index); |
| 6761 } | 8228 } |
| 6762 | 8229 |
| 6763 void operator[]=(int index, Transform value) { | 8230 void operator[]=(int index, Transform value) { |
| 6764 throw new UnsupportedError("Cannot assign element of immutable List."); | 8231 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 6765 } | 8232 } |
| 6766 // -- start List<Transform> mixins. | 8233 // -- start List<Transform> mixins. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6794 if (len == 0) throw new StateError("No elements"); | 8261 if (len == 0) throw new StateError("No elements"); |
| 6795 throw new StateError("More than one element"); | 8262 throw new StateError("More than one element"); |
| 6796 } | 8263 } |
| 6797 | 8264 |
| 6798 Transform elementAt(int index) => this[index]; | 8265 Transform elementAt(int index) => this[index]; |
| 6799 // -- end List<Transform> mixins. | 8266 // -- end List<Transform> mixins. |
| 6800 | 8267 |
| 6801 @DomName('SVGTransformList.__setter__') | 8268 @DomName('SVGTransformList.__setter__') |
| 6802 @DocsEditable() | 8269 @DocsEditable() |
| 6803 @Experimental() // untriaged | 8270 @Experimental() // untriaged |
| 6804 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(this, index, value); | 8271 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 6805 | 8272 |
| 6806 @DomName('SVGTransformList.appendItem') | 8273 @DomName('SVGTransformList.appendItem') |
| 6807 @DocsEditable() | 8274 @DocsEditable() |
| 6808 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.instance.
appendItem_Callback_1_(this, item); | 8275 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 6809 | 8276 |
| 6810 @DomName('SVGTransformList.clear') | 8277 @DomName('SVGTransformList.clear') |
| 6811 @DocsEditable() | 8278 @DocsEditable() |
| 6812 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(this); | 8279 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap
_jso(this)); |
| 6813 | 8280 |
| 6814 @DomName('SVGTransformList.consolidate') | 8281 @DomName('SVGTransformList.consolidate') |
| 6815 @DocsEditable() | 8282 @DocsEditable() |
| 6816 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C
allback_0_(this); | 8283 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C
allback_0_(unwrap_jso(this)); |
| 6817 | 8284 |
| 6818 @DomName('SVGTransformList.createSVGTransformFromMatrix') | 8285 @DomName('SVGTransformList.createSVGTransformFromMatrix') |
| 6819 @DocsEditable() | 8286 @DocsEditable() |
| 6820 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix); | 8287 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwr
ap_jso(matrix)); |
| 6821 | 8288 |
| 6822 @DomName('SVGTransformList.getItem') | 8289 @DomName('SVGTransformList.getItem') |
| 6823 @DocsEditable() | 8290 @DocsEditable() |
| 6824 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_
Callback_1_(this, index); | 8291 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_
Callback_1_(unwrap_jso(this), index); |
| 6825 | 8292 |
| 6826 @DomName('SVGTransformList.initialize') | 8293 @DomName('SVGTransformList.initialize') |
| 6827 @DocsEditable() | 8294 @DocsEditable() |
| 6828 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.instance.
initialize_Callback_1_(this, item); | 8295 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 6829 | 8296 |
| 6830 @DomName('SVGTransformList.insertItemBefore') | 8297 @DomName('SVGTransformList.insertItemBefore') |
| 6831 @DocsEditable() | 8298 @DocsEditable() |
| 6832 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.instance.insertItemBefore_Callback_2_(this, item, index); | 8299 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index); |
| 6833 | 8300 |
| 6834 @DomName('SVGTransformList.removeItem') | 8301 @DomName('SVGTransformList.removeItem') |
| 6835 @DocsEditable() | 8302 @DocsEditable() |
| 6836 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov
eItem_Callback_1_(this, index); | 8303 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov
eItem_Callback_1_(unwrap_jso(this), index); |
| 6837 | 8304 |
| 6838 @DomName('SVGTransformList.replaceItem') | 8305 @DomName('SVGTransformList.replaceItem') |
| 6839 @DocsEditable() | 8306 @DocsEditable() |
| 6840 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.instance.replaceItem_Callback_2_(this, item, index); | 8307 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 6841 | 8308 |
| 6842 } | 8309 } |
| 6843 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6844 // for details. All rights reserved. Use of this source code is governed by a | 8311 // for details. All rights reserved. Use of this source code is governed by a |
| 6845 // BSD-style license that can be found in the LICENSE file. | 8312 // BSD-style license that can be found in the LICENSE file. |
| 6846 | 8313 |
| 6847 // WARNING: Do not edit - generated code. | 8314 // WARNING: Do not edit - generated code. |
| 6848 | 8315 |
| 6849 | 8316 |
| 6850 @DocsEditable() | 8317 @DocsEditable() |
| 6851 @DomName('SVGUnitTypes') | 8318 @DomName('SVGUnitTypes') |
| 6852 @Unstable() | 8319 @Unstable() |
| 6853 class UnitTypes extends NativeFieldWrapperClass2 { | 8320 class UnitTypes extends NativeFieldWrapperClass2 { |
| 6854 // To suppress missing implicit constructor warnings. | 8321 // To suppress missing implicit constructor warnings. |
| 6855 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 8322 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
| 6856 | 8323 |
| 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 |
| 6857 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 8338 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
| 6858 @DocsEditable() | 8339 @DocsEditable() |
| 6859 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 8340 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 6860 | 8341 |
| 6861 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') | 8342 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') |
| 6862 @DocsEditable() | 8343 @DocsEditable() |
| 6863 static const int SVG_UNIT_TYPE_UNKNOWN = 0; | 8344 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 6864 | 8345 |
| 6865 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') | 8346 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') |
| 6866 @DocsEditable() | 8347 @DocsEditable() |
| 6867 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | 8348 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 6868 | 8349 |
| 6869 } | 8350 } |
| 6870 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6871 // for details. All rights reserved. Use of this source code is governed by a | 8352 // for details. All rights reserved. Use of this source code is governed by a |
| 6872 // BSD-style license that can be found in the LICENSE file. | 8353 // BSD-style license that can be found in the LICENSE file. |
| 6873 | 8354 |
| 6874 // WARNING: Do not edit - generated code. | 8355 // WARNING: Do not edit - generated code. |
| 6875 | 8356 |
| 6876 | 8357 |
| 6877 @DocsEditable() | 8358 @DocsEditable() |
| 6878 @DomName('SVGURIReference') | 8359 @DomName('SVGURIReference') |
| 6879 @Unstable() | 8360 @Unstable() |
| 6880 abstract class UriReference extends NativeFieldWrapperClass2 { | 8361 abstract class UriReference extends NativeFieldWrapperClass2 { |
| 6881 // To suppress missing implicit constructor warnings. | 8362 // To suppress missing implicit constructor warnings. |
| 6882 factory UriReference._() { throw new UnsupportedError("Not supported"); } | 8363 factory UriReference._() { throw new UnsupportedError("Not supported"); } |
| 6883 | 8364 |
| 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 |
| 6884 @DomName('SVGURIReference.href') | 8379 @DomName('SVGURIReference.href') |
| 6885 @DocsEditable() | 8380 @DocsEditable() |
| 6886 AnimatedString get href; | 8381 AnimatedString get href; |
| 6887 | 8382 |
| 6888 } | 8383 } |
| 6889 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6890 // for details. All rights reserved. Use of this source code is governed by a | 8385 // for details. All rights reserved. Use of this source code is governed by a |
| 6891 // BSD-style license that can be found in the LICENSE file. | 8386 // BSD-style license that can be found in the LICENSE file. |
| 6892 | 8387 |
| 6893 // WARNING: Do not edit - generated code. | 8388 // WARNING: Do not edit - generated code. |
| 6894 | 8389 |
| 6895 | 8390 |
| 6896 @DocsEditable() | 8391 @DocsEditable() |
| 6897 @DomName('SVGUseElement') | 8392 @DomName('SVGUseElement') |
| 6898 @Unstable() | 8393 @Unstable() |
| 6899 class UseElement extends GraphicsElement implements UriReference { | 8394 class UseElement extends GraphicsElement implements UriReference { |
| 6900 // To suppress missing implicit constructor warnings. | 8395 // To suppress missing implicit constructor warnings. |
| 6901 factory UseElement._() { throw new UnsupportedError("Not supported"); } | 8396 factory UseElement._() { throw new UnsupportedError("Not supported"); } |
| 6902 | 8397 |
| 6903 @DomName('SVGUseElement.SVGUseElement') | 8398 @DomName('SVGUseElement.SVGUseElement') |
| 6904 @DocsEditable() | 8399 @DocsEditable() |
| 6905 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; | 8400 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 |
| 6906 /** | 8413 /** |
| 6907 * Constructor instantiated by the DOM when a custom element has been created. | 8414 * Constructor instantiated by the DOM when a custom element has been created. |
| 6908 * | 8415 * |
| 6909 * This can only be called by subclasses from their created constructor. | 8416 * This can only be called by subclasses from their created constructor. |
| 6910 */ | 8417 */ |
| 6911 UseElement.created() : super.created(); | 8418 UseElement.created() : super.created(); |
| 6912 | 8419 |
| 6913 @DomName('SVGUseElement.height') | 8420 @DomName('SVGUseElement.height') |
| 6914 @DocsEditable() | 8421 @DocsEditable() |
| 6915 AnimatedLength get height => _blink.BlinkSVGUseElement.instance.height_Getter_
(this); | 8422 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
| 6916 | 8423 |
| 6917 @DomName('SVGUseElement.width') | 8424 @DomName('SVGUseElement.width') |
| 6918 @DocsEditable() | 8425 @DocsEditable() |
| 6919 AnimatedLength get width => _blink.BlinkSVGUseElement.instance.width_Getter_(t
his); | 8426 AnimatedLength get width => wrap_jso(_blink.BlinkSVGUseElement.instance.width_
Getter_(unwrap_jso(this))); |
| 6920 | 8427 |
| 6921 @DomName('SVGUseElement.x') | 8428 @DomName('SVGUseElement.x') |
| 6922 @DocsEditable() | 8429 @DocsEditable() |
| 6923 AnimatedLength get x => _blink.BlinkSVGUseElement.instance.x_Getter_(this); | 8430 AnimatedLength get x => wrap_jso(_blink.BlinkSVGUseElement.instance.x_Getter_(
unwrap_jso(this))); |
| 6924 | 8431 |
| 6925 @DomName('SVGUseElement.y') | 8432 @DomName('SVGUseElement.y') |
| 6926 @DocsEditable() | 8433 @DocsEditable() |
| 6927 AnimatedLength get y => _blink.BlinkSVGUseElement.instance.y_Getter_(this); | 8434 AnimatedLength get y => wrap_jso(_blink.BlinkSVGUseElement.instance.y_Getter_(
unwrap_jso(this))); |
| 6928 | 8435 |
| 6929 @DomName('SVGUseElement.href') | 8436 @DomName('SVGUseElement.href') |
| 6930 @DocsEditable() | 8437 @DocsEditable() |
| 6931 AnimatedString get href => _blink.BlinkSVGUseElement.instance.href_Getter_(thi
s); | 8438 AnimatedString get href => wrap_jso(_blink.BlinkSVGUseElement.instance.href_Ge
tter_(unwrap_jso(this))); |
| 6932 | 8439 |
| 6933 } | 8440 } |
| 6934 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8441 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6935 // for details. All rights reserved. Use of this source code is governed by a | 8442 // for details. All rights reserved. Use of this source code is governed by a |
| 6936 // BSD-style license that can be found in the LICENSE file. | 8443 // BSD-style license that can be found in the LICENSE file. |
| 6937 | 8444 |
| 6938 // WARNING: Do not edit - generated code. | 8445 // WARNING: Do not edit - generated code. |
| 6939 | 8446 |
| 6940 | 8447 |
| 6941 @DocsEditable() | 8448 @DocsEditable() |
| 6942 @DomName('SVGViewElement') | 8449 @DomName('SVGViewElement') |
| 6943 @Unstable() | 8450 @Unstable() |
| 6944 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { | 8451 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { |
| 6945 // To suppress missing implicit constructor warnings. | 8452 // To suppress missing implicit constructor warnings. |
| 6946 factory ViewElement._() { throw new UnsupportedError("Not supported"); } | 8453 factory ViewElement._() { throw new UnsupportedError("Not supported"); } |
| 6947 | 8454 |
| 6948 @DomName('SVGViewElement.SVGViewElement') | 8455 @DomName('SVGViewElement.SVGViewElement') |
| 6949 @DocsEditable() | 8456 @DocsEditable() |
| 6950 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); | 8457 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 |
| 6951 /** | 8470 /** |
| 6952 * Constructor instantiated by the DOM when a custom element has been created. | 8471 * Constructor instantiated by the DOM when a custom element has been created. |
| 6953 * | 8472 * |
| 6954 * This can only be called by subclasses from their created constructor. | 8473 * This can only be called by subclasses from their created constructor. |
| 6955 */ | 8474 */ |
| 6956 ViewElement.created() : super.created(); | 8475 ViewElement.created() : super.created(); |
| 6957 | 8476 |
| 6958 @DomName('SVGViewElement.viewTarget') | 8477 @DomName('SVGViewElement.viewTarget') |
| 6959 @DocsEditable() | 8478 @DocsEditable() |
| 6960 StringList get viewTarget => _blink.BlinkSVGViewElement.instance.viewTarget_Ge
tter_(this); | 8479 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); |
| 6961 | 8480 |
| 6962 @DomName('SVGViewElement.preserveAspectRatio') | 8481 @DomName('SVGViewElement.preserveAspectRatio') |
| 6963 @DocsEditable() | 8482 @DocsEditable() |
| 6964 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElem
ent.instance.preserveAspectRatio_Getter_(this); | 8483 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 6965 | 8484 |
| 6966 @DomName('SVGViewElement.viewBox') | 8485 @DomName('SVGViewElement.viewBox') |
| 6967 @DocsEditable() | 8486 @DocsEditable() |
| 6968 AnimatedRect get viewBox => _blink.BlinkSVGViewElement.instance.viewBox_Getter
_(this); | 8487 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB
ox_Getter_(unwrap_jso(this))); |
| 6969 | 8488 |
| 6970 @DomName('SVGViewElement.zoomAndPan') | 8489 @DomName('SVGViewElement.zoomAndPan') |
| 6971 @DocsEditable() | 8490 @DocsEditable() |
| 6972 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(t
his); | 8491 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u
nwrap_jso(this)); |
| 6973 | 8492 |
| 6974 @DomName('SVGViewElement.zoomAndPan') | 8493 @DomName('SVGViewElement.zoomAndPan') |
| 6975 @DocsEditable() | 8494 @DocsEditable() |
| 6976 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndP
an_Setter_(this, value); | 8495 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndP
an_Setter_(unwrap_jso(this), value); |
| 6977 | 8496 |
| 6978 } | 8497 } |
| 6979 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8498 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6980 // for details. All rights reserved. Use of this source code is governed by a | 8499 // for details. All rights reserved. Use of this source code is governed by a |
| 6981 // BSD-style license that can be found in the LICENSE file. | 8500 // BSD-style license that can be found in the LICENSE file. |
| 6982 | 8501 |
| 6983 // WARNING: Do not edit - generated code. | 8502 // WARNING: Do not edit - generated code. |
| 6984 | 8503 |
| 6985 | 8504 |
| 6986 @DocsEditable() | 8505 @DocsEditable() |
| 6987 @DomName('SVGViewSpec') | 8506 @DomName('SVGViewSpec') |
| 6988 @Unstable() | 8507 @Unstable() |
| 6989 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { | 8508 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { |
| 6990 // To suppress missing implicit constructor warnings. | 8509 // To suppress missing implicit constructor warnings. |
| 6991 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 8510 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
| 6992 | 8511 |
| 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 |
| 6993 @DomName('SVGViewSpec.preserveAspectRatioString') | 8526 @DomName('SVGViewSpec.preserveAspectRatioString') |
| 6994 @DocsEditable() | 8527 @DocsEditable() |
| 6995 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(this); | 8528 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); |
| 6996 | 8529 |
| 6997 @DomName('SVGViewSpec.transform') | 8530 @DomName('SVGViewSpec.transform') |
| 6998 @DocsEditable() | 8531 @DocsEditable() |
| 6999 TransformList get transform => _blink.BlinkSVGViewSpec.instance.transform_Gett
er_(this); | 8532 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); |
| 7000 | 8533 |
| 7001 @DomName('SVGViewSpec.transformString') | 8534 @DomName('SVGViewSpec.transformString') |
| 7002 @DocsEditable() | 8535 @DocsEditable() |
| 7003 String get transformString => _blink.BlinkSVGViewSpec.instance.transformString
_Getter_(this); | 8536 String get transformString => _blink.BlinkSVGViewSpec.instance.transformString
_Getter_(unwrap_jso(this)); |
| 7004 | 8537 |
| 7005 @DomName('SVGViewSpec.viewBoxString') | 8538 @DomName('SVGViewSpec.viewBoxString') |
| 7006 @DocsEditable() | 8539 @DocsEditable() |
| 7007 String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Get
ter_(this); | 8540 String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Get
ter_(unwrap_jso(this)); |
| 7008 | 8541 |
| 7009 @DomName('SVGViewSpec.viewTarget') | 8542 @DomName('SVGViewSpec.viewTarget') |
| 7010 @DocsEditable() | 8543 @DocsEditable() |
| 7011 SvgElement get viewTarget => _blink.BlinkSVGViewSpec.instance.viewTarget_Gette
r_(this); | 8544 SvgElement get viewTarget => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewTar
get_Getter_(unwrap_jso(this))); |
| 7012 | 8545 |
| 7013 @DomName('SVGViewSpec.viewTargetString') | 8546 @DomName('SVGViewSpec.viewTargetString') |
| 7014 @DocsEditable() | 8547 @DocsEditable() |
| 7015 String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetStri
ng_Getter_(this); | 8548 String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetStri
ng_Getter_(unwrap_jso(this)); |
| 7016 | 8549 |
| 7017 @DomName('SVGViewSpec.preserveAspectRatio') | 8550 @DomName('SVGViewSpec.preserveAspectRatio') |
| 7018 @DocsEditable() | 8551 @DocsEditable() |
| 7019 @Experimental() // nonstandard | 8552 @Experimental() // nonstandard |
| 7020 AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec
.instance.preserveAspectRatio_Getter_(this); | 8553 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewSpec.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 7021 | 8554 |
| 7022 @DomName('SVGViewSpec.viewBox') | 8555 @DomName('SVGViewSpec.viewBox') |
| 7023 @DocsEditable() | 8556 @DocsEditable() |
| 7024 @Experimental() // nonstandard | 8557 @Experimental() // nonstandard |
| 7025 AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.instance.viewBox_Getter_(t
his); | 8558 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_
Getter_(unwrap_jso(this))); |
| 7026 | 8559 |
| 7027 @DomName('SVGViewSpec.zoomAndPan') | 8560 @DomName('SVGViewSpec.zoomAndPan') |
| 7028 @DocsEditable() | 8561 @DocsEditable() |
| 7029 @Experimental() // nonstandard | 8562 @Experimental() // nonstandard |
| 7030 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(this
); | 8563 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr
ap_jso(this)); |
| 7031 | 8564 |
| 7032 @DomName('SVGViewSpec.zoomAndPan') | 8565 @DomName('SVGViewSpec.zoomAndPan') |
| 7033 @DocsEditable() | 8566 @DocsEditable() |
| 7034 @Experimental() // nonstandard | 8567 @Experimental() // nonstandard |
| 7035 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_
Setter_(this, value); | 8568 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_
Setter_(unwrap_jso(this), value); |
| 7036 | 8569 |
| 7037 } | 8570 } |
| 7038 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8571 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7039 // for details. All rights reserved. Use of this source code is governed by a | 8572 // for details. All rights reserved. Use of this source code is governed by a |
| 7040 // BSD-style license that can be found in the LICENSE file. | 8573 // BSD-style license that can be found in the LICENSE file. |
| 7041 | 8574 |
| 7042 // WARNING: Do not edit - generated code. | 8575 // WARNING: Do not edit - generated code. |
| 7043 | 8576 |
| 7044 | 8577 |
| 7045 @DocsEditable() | 8578 @DocsEditable() |
| 7046 @DomName('SVGZoomAndPan') | 8579 @DomName('SVGZoomAndPan') |
| 7047 @Unstable() | 8580 @Unstable() |
| 7048 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { | 8581 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { |
| 7049 // To suppress missing implicit constructor warnings. | 8582 // To suppress missing implicit constructor warnings. |
| 7050 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } | 8583 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } |
| 7051 | 8584 |
| 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 |
| 7052 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') | 8599 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') |
| 7053 @DocsEditable() | 8600 @DocsEditable() |
| 7054 static const int SVG_ZOOMANDPAN_DISABLE = 1; | 8601 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
| 7055 | 8602 |
| 7056 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') | 8603 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') |
| 7057 @DocsEditable() | 8604 @DocsEditable() |
| 7058 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; | 8605 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 7059 | 8606 |
| 7060 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') | 8607 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') |
| 7061 @DocsEditable() | 8608 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 7077 // WARNING: Do not edit - generated code. | 8624 // WARNING: Do not edit - generated code. |
| 7078 | 8625 |
| 7079 | 8626 |
| 7080 @DocsEditable() | 8627 @DocsEditable() |
| 7081 @DomName('SVGZoomEvent') | 8628 @DomName('SVGZoomEvent') |
| 7082 @Unstable() | 8629 @Unstable() |
| 7083 class ZoomEvent extends UIEvent { | 8630 class ZoomEvent extends UIEvent { |
| 7084 // To suppress missing implicit constructor warnings. | 8631 // To suppress missing implicit constructor warnings. |
| 7085 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } | 8632 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } |
| 7086 | 8633 |
| 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 |
| 7087 @DomName('SVGZoomEvent.newScale') | 8646 @DomName('SVGZoomEvent.newScale') |
| 7088 @DocsEditable() | 8647 @DocsEditable() |
| 7089 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(this
); | 8648 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwr
ap_jso(this)); |
| 7090 | 8649 |
| 7091 @DomName('SVGZoomEvent.newTranslate') | 8650 @DomName('SVGZoomEvent.newTranslate') |
| 7092 @DocsEditable() | 8651 @DocsEditable() |
| 7093 Point get newTranslate => _blink.BlinkSVGZoomEvent.instance.newTranslate_Gette
r_(this); | 8652 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); |
| 7094 | 8653 |
| 7095 @DomName('SVGZoomEvent.previousScale') | 8654 @DomName('SVGZoomEvent.previousScale') |
| 7096 @DocsEditable() | 8655 @DocsEditable() |
| 7097 double get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Ge
tter_(this); | 8656 double get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Ge
tter_(unwrap_jso(this)); |
| 7098 | 8657 |
| 7099 @DomName('SVGZoomEvent.previousTranslate') | 8658 @DomName('SVGZoomEvent.previousTranslate') |
| 7100 @DocsEditable() | 8659 @DocsEditable() |
| 7101 Point get previousTranslate => _blink.BlinkSVGZoomEvent.instance.previousTrans
late_Getter_(this); | 8660 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev
iousTranslate_Getter_(unwrap_jso(this))); |
| 7102 | 8661 |
| 7103 @DomName('SVGZoomEvent.zoomRectScreen') | 8662 @DomName('SVGZoomEvent.zoomRectScreen') |
| 7104 @DocsEditable() | 8663 @DocsEditable() |
| 7105 Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.instance.zoomRectScreen_Ge
tter_(this); | 8664 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect
Screen_Getter_(unwrap_jso(this))); |
| 7106 | 8665 |
| 7107 } | 8666 } |
| 7108 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8667 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7109 // for details. All rights reserved. Use of this source code is governed by a | 8668 // for details. All rights reserved. Use of this source code is governed by a |
| 7110 // BSD-style license that can be found in the LICENSE file. | 8669 // BSD-style license that can be found in the LICENSE file. |
| 7111 | 8670 |
| 7112 // WARNING: Do not edit - generated code. | 8671 // WARNING: Do not edit - generated code. |
| 7113 | 8672 |
| 7114 | 8673 |
| 7115 @DocsEditable() | 8674 @DocsEditable() |
| 7116 @DomName('SVGGradientElement') | 8675 @DomName('SVGGradientElement') |
| 7117 @Unstable() | 8676 @Unstable() |
| 7118 class _GradientElement extends SvgElement implements UriReference { | 8677 class _GradientElement extends SvgElement implements UriReference { |
| 7119 // To suppress missing implicit constructor warnings. | 8678 // To suppress missing implicit constructor warnings. |
| 7120 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } | 8679 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 |
| 7121 /** | 8692 /** |
| 7122 * Constructor instantiated by the DOM when a custom element has been created. | 8693 * Constructor instantiated by the DOM when a custom element has been created. |
| 7123 * | 8694 * |
| 7124 * This can only be called by subclasses from their created constructor. | 8695 * This can only be called by subclasses from their created constructor. |
| 7125 */ | 8696 */ |
| 7126 _GradientElement.created() : super.created(); | 8697 _GradientElement.created() : super.created(); |
| 7127 | 8698 |
| 7128 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') | 8699 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
| 7129 @DocsEditable() | 8700 @DocsEditable() |
| 7130 static const int SVG_SPREADMETHOD_PAD = 1; | 8701 static const int SVG_SPREADMETHOD_PAD = 1; |
| 7131 | 8702 |
| 7132 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') | 8703 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') |
| 7133 @DocsEditable() | 8704 @DocsEditable() |
| 7134 static const int SVG_SPREADMETHOD_REFLECT = 2; | 8705 static const int SVG_SPREADMETHOD_REFLECT = 2; |
| 7135 | 8706 |
| 7136 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') | 8707 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT') |
| 7137 @DocsEditable() | 8708 @DocsEditable() |
| 7138 static const int SVG_SPREADMETHOD_REPEAT = 3; | 8709 static const int SVG_SPREADMETHOD_REPEAT = 3; |
| 7139 | 8710 |
| 7140 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN') | 8711 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN') |
| 7141 @DocsEditable() | 8712 @DocsEditable() |
| 7142 static const int SVG_SPREADMETHOD_UNKNOWN = 0; | 8713 static const int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 7143 | 8714 |
| 7144 @DomName('SVGGradientElement.gradientTransform') | 8715 @DomName('SVGGradientElement.gradientTransform') |
| 7145 @DocsEditable() | 8716 @DocsEditable() |
| 7146 AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement.
instance.gradientTransform_Getter_(this); | 8717 AnimatedTransformList get gradientTransform => wrap_jso(_blink.BlinkSVGGradien
tElement.instance.gradientTransform_Getter_(unwrap_jso(this))); |
| 7147 | 8718 |
| 7148 @DomName('SVGGradientElement.gradientUnits') | 8719 @DomName('SVGGradientElement.gradientUnits') |
| 7149 @DocsEditable() | 8720 @DocsEditable() |
| 7150 AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.instan
ce.gradientUnits_Getter_(this); | 8721 AnimatedEnumeration get gradientUnits => wrap_jso(_blink.BlinkSVGGradientEleme
nt.instance.gradientUnits_Getter_(unwrap_jso(this))); |
| 7151 | 8722 |
| 7152 @DomName('SVGGradientElement.spreadMethod') | 8723 @DomName('SVGGradientElement.spreadMethod') |
| 7153 @DocsEditable() | 8724 @DocsEditable() |
| 7154 AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.instanc
e.spreadMethod_Getter_(this); | 8725 AnimatedEnumeration get spreadMethod => wrap_jso(_blink.BlinkSVGGradientElemen
t.instance.spreadMethod_Getter_(unwrap_jso(this))); |
| 7155 | 8726 |
| 7156 @DomName('SVGGradientElement.href') | 8727 @DomName('SVGGradientElement.href') |
| 7157 @DocsEditable() | 8728 @DocsEditable() |
| 7158 AnimatedString get href => _blink.BlinkSVGGradientElement.instance.href_Getter
_(this); | 8729 AnimatedString get href => wrap_jso(_blink.BlinkSVGGradientElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
| 7159 | 8730 |
| 7160 } | 8731 } |
| 7161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8732 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7162 // for details. All rights reserved. Use of this source code is governed by a | 8733 // for details. All rights reserved. Use of this source code is governed by a |
| 7163 // BSD-style license that can be found in the LICENSE file. | 8734 // BSD-style license that can be found in the LICENSE file. |
| 7164 | 8735 |
| 7165 // WARNING: Do not edit - generated code. | 8736 // WARNING: Do not edit - generated code. |
| 7166 | 8737 |
| 7167 | 8738 |
| 7168 @DocsEditable() | 8739 @DocsEditable() |
| 7169 @DomName('SVGAltGlyphDefElement') | 8740 @DomName('SVGAltGlyphDefElement') |
| 7170 @Unstable() | 8741 @Unstable() |
| 7171 abstract class _SVGAltGlyphDefElement extends SvgElement { | 8742 abstract class _SVGAltGlyphDefElement extends SvgElement { |
| 7172 // To suppress missing implicit constructor warnings. | 8743 // To suppress missing implicit constructor warnings. |
| 7173 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } | 8744 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 |
| 7174 /** | 8757 /** |
| 7175 * Constructor instantiated by the DOM when a custom element has been created. | 8758 * Constructor instantiated by the DOM when a custom element has been created. |
| 7176 * | 8759 * |
| 7177 * This can only be called by subclasses from their created constructor. | 8760 * This can only be called by subclasses from their created constructor. |
| 7178 */ | 8761 */ |
| 7179 _SVGAltGlyphDefElement.created() : super.created(); | 8762 _SVGAltGlyphDefElement.created() : super.created(); |
| 7180 | 8763 |
| 7181 } | 8764 } |
| 7182 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8765 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7183 // for details. All rights reserved. Use of this source code is governed by a | 8766 // for details. All rights reserved. Use of this source code is governed by a |
| 7184 // BSD-style license that can be found in the LICENSE file. | 8767 // BSD-style license that can be found in the LICENSE file. |
| 7185 | 8768 |
| 7186 // WARNING: Do not edit - generated code. | 8769 // WARNING: Do not edit - generated code. |
| 7187 | 8770 |
| 7188 | 8771 |
| 7189 @DocsEditable() | 8772 @DocsEditable() |
| 7190 @DomName('SVGAltGlyphItemElement') | 8773 @DomName('SVGAltGlyphItemElement') |
| 7191 @Unstable() | 8774 @Unstable() |
| 7192 abstract class _SVGAltGlyphItemElement extends SvgElement { | 8775 abstract class _SVGAltGlyphItemElement extends SvgElement { |
| 7193 // To suppress missing implicit constructor warnings. | 8776 // To suppress missing implicit constructor warnings. |
| 7194 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } | 8777 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 |
| 7195 /** | 8790 /** |
| 7196 * Constructor instantiated by the DOM when a custom element has been created. | 8791 * Constructor instantiated by the DOM when a custom element has been created. |
| 7197 * | 8792 * |
| 7198 * This can only be called by subclasses from their created constructor. | 8793 * This can only be called by subclasses from their created constructor. |
| 7199 */ | 8794 */ |
| 7200 _SVGAltGlyphItemElement.created() : super.created(); | 8795 _SVGAltGlyphItemElement.created() : super.created(); |
| 7201 | 8796 |
| 7202 } | 8797 } |
| 7203 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7204 // for details. All rights reserved. Use of this source code is governed by a | 8799 // for details. All rights reserved. Use of this source code is governed by a |
| 7205 // BSD-style license that can be found in the LICENSE file. | 8800 // BSD-style license that can be found in the LICENSE file. |
| 7206 | 8801 |
| 7207 // WARNING: Do not edit - generated code. | 8802 // WARNING: Do not edit - generated code. |
| 7208 | 8803 |
| 7209 | 8804 |
| 7210 @DocsEditable() | 8805 @DocsEditable() |
| 7211 @DomName('SVGComponentTransferFunctionElement') | 8806 @DomName('SVGComponentTransferFunctionElement') |
| 7212 @Unstable() | 8807 @Unstable() |
| 7213 abstract class _SVGComponentTransferFunctionElement extends SvgElement { | 8808 abstract class _SVGComponentTransferFunctionElement extends SvgElement { |
| 7214 // To suppress missing implicit constructor warnings. | 8809 // To suppress missing implicit constructor warnings. |
| 7215 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } | 8810 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 |
| 7216 /** | 8823 /** |
| 7217 * Constructor instantiated by the DOM when a custom element has been created. | 8824 * Constructor instantiated by the DOM when a custom element has been created. |
| 7218 * | 8825 * |
| 7219 * This can only be called by subclasses from their created constructor. | 8826 * This can only be called by subclasses from their created constructor. |
| 7220 */ | 8827 */ |
| 7221 _SVGComponentTransferFunctionElement.created() : super.created(); | 8828 _SVGComponentTransferFunctionElement.created() : super.created(); |
| 7222 | 8829 |
| 7223 } | 8830 } |
| 7224 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7225 // for details. All rights reserved. Use of this source code is governed by a | 8832 // for details. All rights reserved. Use of this source code is governed by a |
| 7226 // BSD-style license that can be found in the LICENSE file. | 8833 // BSD-style license that can be found in the LICENSE file. |
| 7227 | 8834 |
| 7228 // WARNING: Do not edit - generated code. | 8835 // WARNING: Do not edit - generated code. |
| 7229 | 8836 |
| 7230 | 8837 |
| 7231 @DocsEditable() | 8838 @DocsEditable() |
| 7232 @DomName('SVGCursorElement') | 8839 @DomName('SVGCursorElement') |
| 7233 @Unstable() | 8840 @Unstable() |
| 7234 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { | 8841 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { |
| 7235 // To suppress missing implicit constructor warnings. | 8842 // To suppress missing implicit constructor warnings. |
| 7236 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } | 8843 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } |
| 7237 | 8844 |
| 7238 @DomName('SVGCursorElement.SVGCursorElement') | 8845 @DomName('SVGCursorElement.SVGCursorElement') |
| 7239 @DocsEditable() | 8846 @DocsEditable() |
| 7240 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); | 8847 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 |
| 7241 /** | 8860 /** |
| 7242 * Constructor instantiated by the DOM when a custom element has been created. | 8861 * Constructor instantiated by the DOM when a custom element has been created. |
| 7243 * | 8862 * |
| 7244 * This can only be called by subclasses from their created constructor. | 8863 * This can only be called by subclasses from their created constructor. |
| 7245 */ | 8864 */ |
| 7246 _SVGCursorElement.created() : super.created(); | 8865 _SVGCursorElement.created() : super.created(); |
| 7247 | 8866 |
| 7248 /// Checks if this type is supported on the current platform. | 8867 /// Checks if this type is supported on the current platform. |
| 7249 static bool get supported => true; | 8868 static bool get supported => true; |
| 7250 | 8869 |
| 7251 } | 8870 } |
| 7252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8871 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7253 // for details. All rights reserved. Use of this source code is governed by a | 8872 // for details. All rights reserved. Use of this source code is governed by a |
| 7254 // BSD-style license that can be found in the LICENSE file. | 8873 // BSD-style license that can be found in the LICENSE file. |
| 7255 | 8874 |
| 7256 // WARNING: Do not edit - generated code. | 8875 // WARNING: Do not edit - generated code. |
| 7257 | 8876 |
| 7258 | 8877 |
| 7259 @DocsEditable() | 8878 @DocsEditable() |
| 7260 @DomName('SVGFEDropShadowElement') | 8879 @DomName('SVGFEDropShadowElement') |
| 7261 @Experimental() // nonstandard | 8880 @Experimental() // nonstandard |
| 7262 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { | 8881 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { |
| 7263 // To suppress missing implicit constructor warnings. | 8882 // To suppress missing implicit constructor warnings. |
| 7264 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } | 8883 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 |
| 7265 /** | 8896 /** |
| 7266 * Constructor instantiated by the DOM when a custom element has been created. | 8897 * Constructor instantiated by the DOM when a custom element has been created. |
| 7267 * | 8898 * |
| 7268 * This can only be called by subclasses from their created constructor. | 8899 * This can only be called by subclasses from their created constructor. |
| 7269 */ | 8900 */ |
| 7270 _SVGFEDropShadowElement.created() : super.created(); | 8901 _SVGFEDropShadowElement.created() : super.created(); |
| 7271 | 8902 |
| 7272 } | 8903 } |
| 7273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8904 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7274 // for details. All rights reserved. Use of this source code is governed by a | 8905 // for details. All rights reserved. Use of this source code is governed by a |
| 7275 // BSD-style license that can be found in the LICENSE file. | 8906 // BSD-style license that can be found in the LICENSE file. |
| 7276 | 8907 |
| 7277 // WARNING: Do not edit - generated code. | 8908 // WARNING: Do not edit - generated code. |
| 7278 | 8909 |
| 7279 | 8910 |
| 7280 @DocsEditable() | 8911 @DocsEditable() |
| 7281 @DomName('SVGFontElement') | 8912 @DomName('SVGFontElement') |
| 7282 @Unstable() | 8913 @Unstable() |
| 7283 abstract class _SVGFontElement extends SvgElement { | 8914 abstract class _SVGFontElement extends SvgElement { |
| 7284 // To suppress missing implicit constructor warnings. | 8915 // To suppress missing implicit constructor warnings. |
| 7285 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } | 8916 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 |
| 7286 /** | 8929 /** |
| 7287 * Constructor instantiated by the DOM when a custom element has been created. | 8930 * Constructor instantiated by the DOM when a custom element has been created. |
| 7288 * | 8931 * |
| 7289 * This can only be called by subclasses from their created constructor. | 8932 * This can only be called by subclasses from their created constructor. |
| 7290 */ | 8933 */ |
| 7291 _SVGFontElement.created() : super.created(); | 8934 _SVGFontElement.created() : super.created(); |
| 7292 | 8935 |
| 7293 } | 8936 } |
| 7294 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7295 // for details. All rights reserved. Use of this source code is governed by a | 8938 // for details. All rights reserved. Use of this source code is governed by a |
| 7296 // BSD-style license that can be found in the LICENSE file. | 8939 // BSD-style license that can be found in the LICENSE file. |
| 7297 | 8940 |
| 7298 // WARNING: Do not edit - generated code. | 8941 // WARNING: Do not edit - generated code. |
| 7299 | 8942 |
| 7300 | 8943 |
| 7301 @DocsEditable() | 8944 @DocsEditable() |
| 7302 @DomName('SVGFontFaceElement') | 8945 @DomName('SVGFontFaceElement') |
| 7303 @Unstable() | 8946 @Unstable() |
| 7304 abstract class _SVGFontFaceElement extends SvgElement { | 8947 abstract class _SVGFontFaceElement extends SvgElement { |
| 7305 // To suppress missing implicit constructor warnings. | 8948 // To suppress missing implicit constructor warnings. |
| 7306 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} | 8949 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 |
| 7307 /** | 8962 /** |
| 7308 * Constructor instantiated by the DOM when a custom element has been created. | 8963 * Constructor instantiated by the DOM when a custom element has been created. |
| 7309 * | 8964 * |
| 7310 * This can only be called by subclasses from their created constructor. | 8965 * This can only be called by subclasses from their created constructor. |
| 7311 */ | 8966 */ |
| 7312 _SVGFontFaceElement.created() : super.created(); | 8967 _SVGFontFaceElement.created() : super.created(); |
| 7313 | 8968 |
| 7314 } | 8969 } |
| 7315 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8970 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7316 // for details. All rights reserved. Use of this source code is governed by a | 8971 // for details. All rights reserved. Use of this source code is governed by a |
| 7317 // BSD-style license that can be found in the LICENSE file. | 8972 // BSD-style license that can be found in the LICENSE file. |
| 7318 | 8973 |
| 7319 // WARNING: Do not edit - generated code. | 8974 // WARNING: Do not edit - generated code. |
| 7320 | 8975 |
| 7321 | 8976 |
| 7322 @DocsEditable() | 8977 @DocsEditable() |
| 7323 @DomName('SVGFontFaceFormatElement') | 8978 @DomName('SVGFontFaceFormatElement') |
| 7324 @Unstable() | 8979 @Unstable() |
| 7325 abstract class _SVGFontFaceFormatElement extends SvgElement { | 8980 abstract class _SVGFontFaceFormatElement extends SvgElement { |
| 7326 // To suppress missing implicit constructor warnings. | 8981 // To suppress missing implicit constructor warnings. |
| 7327 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } | 8982 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 |
| 7328 /** | 8995 /** |
| 7329 * Constructor instantiated by the DOM when a custom element has been created. | 8996 * Constructor instantiated by the DOM when a custom element has been created. |
| 7330 * | 8997 * |
| 7331 * This can only be called by subclasses from their created constructor. | 8998 * This can only be called by subclasses from their created constructor. |
| 7332 */ | 8999 */ |
| 7333 _SVGFontFaceFormatElement.created() : super.created(); | 9000 _SVGFontFaceFormatElement.created() : super.created(); |
| 7334 | 9001 |
| 7335 } | 9002 } |
| 7336 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7337 // for details. All rights reserved. Use of this source code is governed by a | 9004 // for details. All rights reserved. Use of this source code is governed by a |
| 7338 // BSD-style license that can be found in the LICENSE file. | 9005 // BSD-style license that can be found in the LICENSE file. |
| 7339 | 9006 |
| 7340 // WARNING: Do not edit - generated code. | 9007 // WARNING: Do not edit - generated code. |
| 7341 | 9008 |
| 7342 | 9009 |
| 7343 @DocsEditable() | 9010 @DocsEditable() |
| 7344 @DomName('SVGFontFaceNameElement') | 9011 @DomName('SVGFontFaceNameElement') |
| 7345 @Unstable() | 9012 @Unstable() |
| 7346 abstract class _SVGFontFaceNameElement extends SvgElement { | 9013 abstract class _SVGFontFaceNameElement extends SvgElement { |
| 7347 // To suppress missing implicit constructor warnings. | 9014 // To suppress missing implicit constructor warnings. |
| 7348 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } | 9015 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 |
| 7349 /** | 9028 /** |
| 7350 * Constructor instantiated by the DOM when a custom element has been created. | 9029 * Constructor instantiated by the DOM when a custom element has been created. |
| 7351 * | 9030 * |
| 7352 * This can only be called by subclasses from their created constructor. | 9031 * This can only be called by subclasses from their created constructor. |
| 7353 */ | 9032 */ |
| 7354 _SVGFontFaceNameElement.created() : super.created(); | 9033 _SVGFontFaceNameElement.created() : super.created(); |
| 7355 | 9034 |
| 7356 } | 9035 } |
| 7357 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9036 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7358 // for details. All rights reserved. Use of this source code is governed by a | 9037 // for details. All rights reserved. Use of this source code is governed by a |
| 7359 // BSD-style license that can be found in the LICENSE file. | 9038 // BSD-style license that can be found in the LICENSE file. |
| 7360 | 9039 |
| 7361 // WARNING: Do not edit - generated code. | 9040 // WARNING: Do not edit - generated code. |
| 7362 | 9041 |
| 7363 | 9042 |
| 7364 @DocsEditable() | 9043 @DocsEditable() |
| 7365 @DomName('SVGFontFaceSrcElement') | 9044 @DomName('SVGFontFaceSrcElement') |
| 7366 @Unstable() | 9045 @Unstable() |
| 7367 abstract class _SVGFontFaceSrcElement extends SvgElement { | 9046 abstract class _SVGFontFaceSrcElement extends SvgElement { |
| 7368 // To suppress missing implicit constructor warnings. | 9047 // To suppress missing implicit constructor warnings. |
| 7369 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } | 9048 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 |
| 7370 /** | 9061 /** |
| 7371 * Constructor instantiated by the DOM when a custom element has been created. | 9062 * Constructor instantiated by the DOM when a custom element has been created. |
| 7372 * | 9063 * |
| 7373 * This can only be called by subclasses from their created constructor. | 9064 * This can only be called by subclasses from their created constructor. |
| 7374 */ | 9065 */ |
| 7375 _SVGFontFaceSrcElement.created() : super.created(); | 9066 _SVGFontFaceSrcElement.created() : super.created(); |
| 7376 | 9067 |
| 7377 } | 9068 } |
| 7378 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9069 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7379 // for details. All rights reserved. Use of this source code is governed by a | 9070 // for details. All rights reserved. Use of this source code is governed by a |
| 7380 // BSD-style license that can be found in the LICENSE file. | 9071 // BSD-style license that can be found in the LICENSE file. |
| 7381 | 9072 |
| 7382 // WARNING: Do not edit - generated code. | 9073 // WARNING: Do not edit - generated code. |
| 7383 | 9074 |
| 7384 | 9075 |
| 7385 @DocsEditable() | 9076 @DocsEditable() |
| 7386 @DomName('SVGFontFaceUriElement') | 9077 @DomName('SVGFontFaceUriElement') |
| 7387 @Unstable() | 9078 @Unstable() |
| 7388 abstract class _SVGFontFaceUriElement extends SvgElement { | 9079 abstract class _SVGFontFaceUriElement extends SvgElement { |
| 7389 // To suppress missing implicit constructor warnings. | 9080 // To suppress missing implicit constructor warnings. |
| 7390 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } | 9081 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 |
| 7391 /** | 9094 /** |
| 7392 * Constructor instantiated by the DOM when a custom element has been created. | 9095 * Constructor instantiated by the DOM when a custom element has been created. |
| 7393 * | 9096 * |
| 7394 * This can only be called by subclasses from their created constructor. | 9097 * This can only be called by subclasses from their created constructor. |
| 7395 */ | 9098 */ |
| 7396 _SVGFontFaceUriElement.created() : super.created(); | 9099 _SVGFontFaceUriElement.created() : super.created(); |
| 7397 | 9100 |
| 7398 } | 9101 } |
| 7399 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9102 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7400 // for details. All rights reserved. Use of this source code is governed by a | 9103 // for details. All rights reserved. Use of this source code is governed by a |
| 7401 // BSD-style license that can be found in the LICENSE file. | 9104 // BSD-style license that can be found in the LICENSE file. |
| 7402 | 9105 |
| 7403 // WARNING: Do not edit - generated code. | 9106 // WARNING: Do not edit - generated code. |
| 7404 | 9107 |
| 7405 | 9108 |
| 7406 @DocsEditable() | 9109 @DocsEditable() |
| 7407 @DomName('SVGGlyphElement') | 9110 @DomName('SVGGlyphElement') |
| 7408 @Unstable() | 9111 @Unstable() |
| 7409 abstract class _SVGGlyphElement extends SvgElement { | 9112 abstract class _SVGGlyphElement extends SvgElement { |
| 7410 // To suppress missing implicit constructor warnings. | 9113 // To suppress missing implicit constructor warnings. |
| 7411 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } | 9114 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 7412 | 9115 |
| 7413 @DomName('SVGGlyphElement.SVGGlyphElement') | 9116 @DomName('SVGGlyphElement.SVGGlyphElement') |
| 7414 @DocsEditable() | 9117 @DocsEditable() |
| 7415 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); | 9118 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 |
| 7416 /** | 9131 /** |
| 7417 * Constructor instantiated by the DOM when a custom element has been created. | 9132 * Constructor instantiated by the DOM when a custom element has been created. |
| 7418 * | 9133 * |
| 7419 * This can only be called by subclasses from their created constructor. | 9134 * This can only be called by subclasses from their created constructor. |
| 7420 */ | 9135 */ |
| 7421 _SVGGlyphElement.created() : super.created(); | 9136 _SVGGlyphElement.created() : super.created(); |
| 7422 | 9137 |
| 7423 } | 9138 } |
| 7424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7425 // for details. All rights reserved. Use of this source code is governed by a | 9140 // for details. All rights reserved. Use of this source code is governed by a |
| 7426 // BSD-style license that can be found in the LICENSE file. | 9141 // BSD-style license that can be found in the LICENSE file. |
| 7427 | 9142 |
| 7428 // WARNING: Do not edit - generated code. | 9143 // WARNING: Do not edit - generated code. |
| 7429 | 9144 |
| 7430 | 9145 |
| 7431 @DocsEditable() | 9146 @DocsEditable() |
| 7432 @DomName('SVGGlyphRefElement') | 9147 @DomName('SVGGlyphRefElement') |
| 7433 @Unstable() | 9148 @Unstable() |
| 7434 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { | 9149 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { |
| 7435 // To suppress missing implicit constructor warnings. | 9150 // To suppress missing implicit constructor warnings. |
| 7436 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} | 9151 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 |
| 7437 /** | 9164 /** |
| 7438 * Constructor instantiated by the DOM when a custom element has been created. | 9165 * Constructor instantiated by the DOM when a custom element has been created. |
| 7439 * | 9166 * |
| 7440 * This can only be called by subclasses from their created constructor. | 9167 * This can only be called by subclasses from their created constructor. |
| 7441 */ | 9168 */ |
| 7442 _SVGGlyphRefElement.created() : super.created(); | 9169 _SVGGlyphRefElement.created() : super.created(); |
| 7443 | 9170 |
| 7444 } | 9171 } |
| 7445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7446 // for details. All rights reserved. Use of this source code is governed by a | 9173 // for details. All rights reserved. Use of this source code is governed by a |
| 7447 // BSD-style license that can be found in the LICENSE file. | 9174 // BSD-style license that can be found in the LICENSE file. |
| 7448 | 9175 |
| 7449 // WARNING: Do not edit - generated code. | 9176 // WARNING: Do not edit - generated code. |
| 7450 | 9177 |
| 7451 | 9178 |
| 7452 @DocsEditable() | 9179 @DocsEditable() |
| 7453 @DomName('SVGHKernElement') | 9180 @DomName('SVGHKernElement') |
| 7454 @Unstable() | 9181 @Unstable() |
| 7455 abstract class _SVGHKernElement extends SvgElement { | 9182 abstract class _SVGHKernElement extends SvgElement { |
| 7456 // To suppress missing implicit constructor warnings. | 9183 // To suppress missing implicit constructor warnings. |
| 7457 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } | 9184 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } |
| 7458 | 9185 |
| 7459 @DomName('SVGHKernElement.SVGHKernElement') | 9186 @DomName('SVGHKernElement.SVGHKernElement') |
| 7460 @DocsEditable() | 9187 @DocsEditable() |
| 7461 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); | 9188 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 |
| 7462 /** | 9201 /** |
| 7463 * Constructor instantiated by the DOM when a custom element has been created. | 9202 * Constructor instantiated by the DOM when a custom element has been created. |
| 7464 * | 9203 * |
| 7465 * This can only be called by subclasses from their created constructor. | 9204 * This can only be called by subclasses from their created constructor. |
| 7466 */ | 9205 */ |
| 7467 _SVGHKernElement.created() : super.created(); | 9206 _SVGHKernElement.created() : super.created(); |
| 7468 | 9207 |
| 7469 } | 9208 } |
| 7470 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7471 // for details. All rights reserved. Use of this source code is governed by a | 9210 // for details. All rights reserved. Use of this source code is governed by a |
| 7472 // BSD-style license that can be found in the LICENSE file. | 9211 // BSD-style license that can be found in the LICENSE file. |
| 7473 | 9212 |
| 7474 // WARNING: Do not edit - generated code. | 9213 // WARNING: Do not edit - generated code. |
| 7475 | 9214 |
| 7476 | 9215 |
| 7477 @DocsEditable() | 9216 @DocsEditable() |
| 7478 @DomName('SVGMPathElement') | 9217 @DomName('SVGMPathElement') |
| 7479 abstract class _SVGMPathElement extends SvgElement implements UriReference { | 9218 abstract class _SVGMPathElement extends SvgElement implements UriReference { |
| 7480 // To suppress missing implicit constructor warnings. | 9219 // To suppress missing implicit constructor warnings. |
| 7481 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } | 9220 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } |
| 7482 | 9221 |
| 7483 @DomName('SVGMPathElement.SVGMPathElement') | 9222 @DomName('SVGMPathElement.SVGMPathElement') |
| 7484 @DocsEditable() | 9223 @DocsEditable() |
| 7485 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); | 9224 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 |
| 7486 /** | 9237 /** |
| 7487 * Constructor instantiated by the DOM when a custom element has been created. | 9238 * Constructor instantiated by the DOM when a custom element has been created. |
| 7488 * | 9239 * |
| 7489 * This can only be called by subclasses from their created constructor. | 9240 * This can only be called by subclasses from their created constructor. |
| 7490 */ | 9241 */ |
| 7491 _SVGMPathElement.created() : super.created(); | 9242 _SVGMPathElement.created() : super.created(); |
| 7492 | 9243 |
| 7493 } | 9244 } |
| 7494 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9245 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7495 // for details. All rights reserved. Use of this source code is governed by a | 9246 // for details. All rights reserved. Use of this source code is governed by a |
| 7496 // BSD-style license that can be found in the LICENSE file. | 9247 // BSD-style license that can be found in the LICENSE file. |
| 7497 | 9248 |
| 7498 // WARNING: Do not edit - generated code. | 9249 // WARNING: Do not edit - generated code. |
| 7499 | 9250 |
| 7500 | 9251 |
| 7501 @DocsEditable() | 9252 @DocsEditable() |
| 7502 @DomName('SVGMissingGlyphElement') | 9253 @DomName('SVGMissingGlyphElement') |
| 7503 @Unstable() | 9254 @Unstable() |
| 7504 abstract class _SVGMissingGlyphElement extends SvgElement { | 9255 abstract class _SVGMissingGlyphElement extends SvgElement { |
| 7505 // To suppress missing implicit constructor warnings. | 9256 // To suppress missing implicit constructor warnings. |
| 7506 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } | 9257 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 |
| 7507 /** | 9270 /** |
| 7508 * Constructor instantiated by the DOM when a custom element has been created. | 9271 * Constructor instantiated by the DOM when a custom element has been created. |
| 7509 * | 9272 * |
| 7510 * This can only be called by subclasses from their created constructor. | 9273 * This can only be called by subclasses from their created constructor. |
| 7511 */ | 9274 */ |
| 7512 _SVGMissingGlyphElement.created() : super.created(); | 9275 _SVGMissingGlyphElement.created() : super.created(); |
| 7513 | 9276 |
| 7514 } | 9277 } |
| 7515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7516 // for details. All rights reserved. Use of this source code is governed by a | 9279 // for details. All rights reserved. Use of this source code is governed by a |
| 7517 // BSD-style license that can be found in the LICENSE file. | 9280 // BSD-style license that can be found in the LICENSE file. |
| 7518 | 9281 |
| 7519 // WARNING: Do not edit - generated code. | 9282 // WARNING: Do not edit - generated code. |
| 7520 | 9283 |
| 7521 | 9284 |
| 7522 @DocsEditable() | 9285 @DocsEditable() |
| 7523 @DomName('SVGVKernElement') | 9286 @DomName('SVGVKernElement') |
| 7524 @Unstable() | 9287 @Unstable() |
| 7525 abstract class _SVGVKernElement extends SvgElement { | 9288 abstract class _SVGVKernElement extends SvgElement { |
| 7526 // To suppress missing implicit constructor warnings. | 9289 // To suppress missing implicit constructor warnings. |
| 7527 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 9290 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
| 7528 | 9291 |
| 7529 @DomName('SVGVKernElement.SVGVKernElement') | 9292 @DomName('SVGVKernElement.SVGVKernElement') |
| 7530 @DocsEditable() | 9293 @DocsEditable() |
| 7531 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 9294 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 |
| 7532 /** | 9307 /** |
| 7533 * Constructor instantiated by the DOM when a custom element has been created. | 9308 * Constructor instantiated by the DOM when a custom element has been created. |
| 7534 * | 9309 * |
| 7535 * This can only be called by subclasses from their created constructor. | 9310 * This can only be called by subclasses from their created constructor. |
| 7536 */ | 9311 */ |
| 7537 _SVGVKernElement.created() : super.created(); | 9312 _SVGVKernElement.created() : super.created(); |
| 7538 | 9313 |
| 7539 } | 9314 } |
| OLD | NEW |