| OLD | NEW |
| 1 library svg; | 1 library svg; |
| 2 | 2 |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 import 'dart:nativewrappers'; | 4 import 'dart:nativewrappers'; |
| 5 // DO NOT EDIT | 5 // DO NOT EDIT |
| 6 // Auto-generated dart:svg library. | 6 // Auto-generated dart:svg library. |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| 11 | 11 |
| 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13 // for details. All rights reserved. Use of this source code is governed by a | 13 // for details. All rights reserved. Use of this source code is governed by a |
| 14 // BSD-style license that can be found in the LICENSE file. | 14 // BSD-style license that can be found in the LICENSE file. |
| 15 | 15 |
| 16 | 16 |
| 17 final _START_TAG_REGEXP = new RegExp('<(\\w+)'); | 17 final _START_TAG_REGEXP = new RegExp('<(\\w+)'); |
| 18 | 18 |
| 19 class _SVGElementFactoryProvider { | 19 class _SvgElementFactoryProvider { |
| 20 static SVGElement createSVGElement_tag(String tag) { | 20 static SvgElement createSvgElement_tag(String tag) { |
| 21 final Element temp = | 21 final Element temp = |
| 22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag); | 22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag); |
| 23 return temp; | 23 return temp; |
| 24 } | 24 } |
| 25 | 25 |
| 26 static SVGElement createSVGElement_svg(String svg) { | 26 static SvgElement createSvgElement_svg(String svg) { |
| 27 Element parentTag; | 27 Element parentTag; |
| 28 final match = _START_TAG_REGEXP.firstMatch(svg); | 28 final match = _START_TAG_REGEXP.firstMatch(svg); |
| 29 if (match != null && match.group(1).toLowerCase() == 'svg') { | 29 if (match != null && match.group(1).toLowerCase() == 'svg') { |
| 30 parentTag = new Element.tag('div'); | 30 parentTag = new Element.tag('div'); |
| 31 } else { | 31 } else { |
| 32 parentTag = new SVGSVGElement(); | 32 parentTag = new SvgSvgElement(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 parentTag.innerHTML = svg; | 35 parentTag.innerHTML = svg; |
| 36 if (parentTag.elements.length == 1) return parentTag.elements.removeLast(); | 36 if (parentTag.elements.length == 1) return parentTag.elements.removeLast(); |
| 37 | 37 |
| 38 throw new ArgumentError( | 38 throw new ArgumentError( |
| 39 'SVG had ${parentTag.elements.length} ' | 39 'SVG had ${parentTag.elements.length} ' |
| 40 'top-level elements but 1 expected'); | 40 'top-level elements but 1 expected'); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 class _SVGSVGElementFactoryProvider { | 44 class _SvgSvgElementFactoryProvider { |
| 45 static SVGSVGElement createSVGSVGElement() { | 45 static SvgSvgElement createSvgSvgElement() { |
| 46 final el = new SVGElement.tag("svg"); | 46 final el = new SvgElement.tag("svg"); |
| 47 // The SVG spec requires the version attribute to match the spec version | 47 // The SVG spec requires the version attribute to match the spec version |
| 48 el.attributes['version'] = "1.1"; | 48 el.attributes['version'] = "1.1"; |
| 49 return el; | 49 return el; |
| 50 } | 50 } |
| 51 } | 51 } |
| 52 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 52 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 53 // for details. All rights reserved. Use of this source code is governed by a | 53 // for details. All rights reserved. Use of this source code is governed by a |
| 54 // BSD-style license that can be found in the LICENSE file. | 54 // BSD-style license that can be found in the LICENSE file. |
| 55 | 55 |
| 56 // WARNING: Do not edit - generated code. | 56 // WARNING: Do not edit - generated code. |
| 57 | 57 |
| 58 | 58 |
| 59 /// @domName SVGAElement | 59 /// @domName SVGAElement |
| 60 class SVGAElement extends SVGElement implements SVGLangSpace, SVGTests, SVGStyla
ble, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { | 60 class AElement extends SvgElement implements Transformable, Tests, UriReference,
Stylable, ExternalResourcesRequired, LangSpace { |
| 61 | 61 |
| 62 factory SVGAElement() => _SVGElementFactoryProvider.createSVGElement_tag("a"); | 62 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); |
| 63 SVGAElement.internal(): super.internal(); | 63 AElement.internal(): super.internal(); |
| 64 | 64 |
| 65 | 65 |
| 66 /** @domName SVGAElement.target */ | 66 /** @domName SVGAElement.target */ |
| 67 SVGAnimatedString get target native "SVGAElement_target_Getter"; | 67 AnimatedString get target native "SVGAElement_target_Getter"; |
| 68 | 68 |
| 69 | 69 |
| 70 /** @domName SVGAElement.externalResourcesRequired */ | 70 /** @domName SVGAElement.externalResourcesRequired */ |
| 71 SVGAnimatedBoolean get externalResourcesRequired native "SVGAElement_externalR
esourcesRequired_Getter"; | 71 AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalReso
urcesRequired_Getter"; |
| 72 | 72 |
| 73 | 73 |
| 74 /** @domName SVGAElement.xmllang */ | 74 /** @domName SVGAElement.xmllang */ |
| 75 String get xmllang native "SVGAElement_xmllang_Getter"; | 75 String get xmllang native "SVGAElement_xmllang_Getter"; |
| 76 | 76 |
| 77 | 77 |
| 78 /** @domName SVGAElement.xmllang */ | 78 /** @domName SVGAElement.xmllang */ |
| 79 void set xmllang(String value) native "SVGAElement_xmllang_Setter"; | 79 void set xmllang(String value) native "SVGAElement_xmllang_Setter"; |
| 80 | 80 |
| 81 | 81 |
| 82 /** @domName SVGAElement.xmlspace */ | 82 /** @domName SVGAElement.xmlspace */ |
| 83 String get xmlspace native "SVGAElement_xmlspace_Getter"; | 83 String get xmlspace native "SVGAElement_xmlspace_Getter"; |
| 84 | 84 |
| 85 | 85 |
| 86 /** @domName SVGAElement.xmlspace */ | 86 /** @domName SVGAElement.xmlspace */ |
| 87 void set xmlspace(String value) native "SVGAElement_xmlspace_Setter"; | 87 void set xmlspace(String value) native "SVGAElement_xmlspace_Setter"; |
| 88 | 88 |
| 89 | 89 |
| 90 /** @domName SVGAElement.farthestViewportElement */ | 90 /** @domName SVGAElement.farthestViewportElement */ |
| 91 SVGElement get farthestViewportElement native "SVGAElement_farthestViewportEle
ment_Getter"; | 91 SvgElement get farthestViewportElement native "SVGAElement_farthestViewportEle
ment_Getter"; |
| 92 | 92 |
| 93 | 93 |
| 94 /** @domName SVGAElement.nearestViewportElement */ | 94 /** @domName SVGAElement.nearestViewportElement */ |
| 95 SVGElement get nearestViewportElement native "SVGAElement_nearestViewportEleme
nt_Getter"; | 95 SvgElement get nearestViewportElement native "SVGAElement_nearestViewportEleme
nt_Getter"; |
| 96 | 96 |
| 97 | 97 |
| 98 /** @domName SVGAElement.getBBox */ | 98 /** @domName SVGAElement.getBBox */ |
| 99 SVGRect getBBox() native "SVGAElement_getBBox_Callback"; | 99 Rect getBBox() native "SVGAElement_getBBox_Callback"; |
| 100 | 100 |
| 101 | 101 |
| 102 /** @domName SVGAElement.getCTM */ | 102 /** @domName SVGAElement.getCTM */ |
| 103 SVGMatrix getCTM() native "SVGAElement_getCTM_Callback"; | 103 Matrix getCTM() native "SVGAElement_getCTM_Callback"; |
| 104 | 104 |
| 105 | 105 |
| 106 /** @domName SVGAElement.getScreenCTM */ | 106 /** @domName SVGAElement.getScreenCTM */ |
| 107 SVGMatrix getScreenCTM() native "SVGAElement_getScreenCTM_Callback"; | 107 Matrix getScreenCTM() native "SVGAElement_getScreenCTM_Callback"; |
| 108 | 108 |
| 109 | 109 |
| 110 /** @domName SVGAElement.getTransformToElement */ | 110 /** @domName SVGAElement.getTransformToElement */ |
| 111 SVGMatrix getTransformToElement(SVGElement element) native "SVGAElement_getTra
nsformToElement_Callback"; | 111 Matrix getTransformToElement(SvgElement element) native "SVGAElement_getTransf
ormToElement_Callback"; |
| 112 | 112 |
| 113 | 113 |
| 114 /** @domName SVGAElement.className */ | 114 /** @domName SVGAElement.className */ |
| 115 SVGAnimatedString get $dom_svgClassName native "SVGAElement_className_Getter"; | 115 AnimatedString get $dom_svgClassName native "SVGAElement_className_Getter"; |
| 116 | 116 |
| 117 | 117 |
| 118 /** @domName SVGAElement.style */ | 118 /** @domName SVGAElement.style */ |
| 119 CSSStyleDeclaration get style native "SVGAElement_style_Getter"; | 119 CSSStyleDeclaration get style native "SVGAElement_style_Getter"; |
| 120 | 120 |
| 121 | 121 |
| 122 /** @domName SVGAElement.getPresentationAttribute */ | 122 /** @domName SVGAElement.getPresentationAttribute */ |
| 123 CSSValue getPresentationAttribute(String name) native "SVGAElement_getPresenta
tionAttribute_Callback"; | 123 CSSValue getPresentationAttribute(String name) native "SVGAElement_getPresenta
tionAttribute_Callback"; |
| 124 | 124 |
| 125 | 125 |
| 126 /** @domName SVGAElement.requiredExtensions */ | 126 /** @domName SVGAElement.requiredExtensions */ |
| 127 SVGStringList get requiredExtensions native "SVGAElement_requiredExtensions_Ge
tter"; | 127 StringList get requiredExtensions native "SVGAElement_requiredExtensions_Gette
r"; |
| 128 | 128 |
| 129 | 129 |
| 130 /** @domName SVGAElement.requiredFeatures */ | 130 /** @domName SVGAElement.requiredFeatures */ |
| 131 SVGStringList get requiredFeatures native "SVGAElement_requiredFeatures_Getter
"; | 131 StringList get requiredFeatures native "SVGAElement_requiredFeatures_Getter"; |
| 132 | 132 |
| 133 | 133 |
| 134 /** @domName SVGAElement.systemLanguage */ | 134 /** @domName SVGAElement.systemLanguage */ |
| 135 SVGStringList get systemLanguage native "SVGAElement_systemLanguage_Getter"; | 135 StringList get systemLanguage native "SVGAElement_systemLanguage_Getter"; |
| 136 | 136 |
| 137 | 137 |
| 138 /** @domName SVGAElement.hasExtension */ | 138 /** @domName SVGAElement.hasExtension */ |
| 139 bool hasExtension(String extension) native "SVGAElement_hasExtension_Callback"
; | 139 bool hasExtension(String extension) native "SVGAElement_hasExtension_Callback"
; |
| 140 | 140 |
| 141 | 141 |
| 142 /** @domName SVGAElement.transform */ | 142 /** @domName SVGAElement.transform */ |
| 143 SVGAnimatedTransformList get transform native "SVGAElement_transform_Getter"; | 143 AnimatedTransformList get transform native "SVGAElement_transform_Getter"; |
| 144 | 144 |
| 145 | 145 |
| 146 /** @domName SVGAElement.href */ | 146 /** @domName SVGAElement.href */ |
| 147 SVGAnimatedString get href native "SVGAElement_href_Getter"; | 147 AnimatedString get href native "SVGAElement_href_Getter"; |
| 148 | 148 |
| 149 } | 149 } |
| 150 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 150 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 151 // for details. All rights reserved. Use of this source code is governed by a | 151 // for details. All rights reserved. Use of this source code is governed by a |
| 152 // BSD-style license that can be found in the LICENSE file. | 152 // BSD-style license that can be found in the LICENSE file. |
| 153 | 153 |
| 154 // WARNING: Do not edit - generated code. | 154 // WARNING: Do not edit - generated code. |
| 155 | 155 |
| 156 | 156 |
| 157 /// @domName SVGAltGlyphDefElement | 157 /// @domName SVGAltGlyphDefElement |
| 158 class SVGAltGlyphDefElement extends SVGElement { | 158 class AltGlyphDefElement extends SvgElement { |
| 159 SVGAltGlyphDefElement.internal(): super.internal(); | 159 AltGlyphDefElement.internal(): super.internal(); |
| 160 | 160 |
| 161 } | 161 } |
| 162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 163 // for details. All rights reserved. Use of this source code is governed by a | 163 // for details. All rights reserved. Use of this source code is governed by a |
| 164 // BSD-style license that can be found in the LICENSE file. | 164 // BSD-style license that can be found in the LICENSE file. |
| 165 | 165 |
| 166 // WARNING: Do not edit - generated code. | 166 // WARNING: Do not edit - generated code. |
| 167 | 167 |
| 168 | 168 |
| 169 /// @domName SVGAltGlyphElement | 169 /// @domName SVGAltGlyphElement |
| 170 class SVGAltGlyphElement extends SVGTextPositioningElement implements SVGURIRefe
rence { | 170 class AltGlyphElement extends TextPositioningElement implements UriReference { |
| 171 SVGAltGlyphElement.internal(): super.internal(); | 171 AltGlyphElement.internal(): super.internal(); |
| 172 | 172 |
| 173 | 173 |
| 174 /** @domName SVGAltGlyphElement.format */ | 174 /** @domName SVGAltGlyphElement.format */ |
| 175 String get format native "SVGAltGlyphElement_format_Getter"; | 175 String get format native "SVGAltGlyphElement_format_Getter"; |
| 176 | 176 |
| 177 | 177 |
| 178 /** @domName SVGAltGlyphElement.format */ | 178 /** @domName SVGAltGlyphElement.format */ |
| 179 void set format(String value) native "SVGAltGlyphElement_format_Setter"; | 179 void set format(String value) native "SVGAltGlyphElement_format_Setter"; |
| 180 | 180 |
| 181 | 181 |
| 182 /** @domName SVGAltGlyphElement.glyphRef */ | 182 /** @domName SVGAltGlyphElement.glyphRef */ |
| 183 String get glyphRef native "SVGAltGlyphElement_glyphRef_Getter"; | 183 String get glyphRef native "SVGAltGlyphElement_glyphRef_Getter"; |
| 184 | 184 |
| 185 | 185 |
| 186 /** @domName SVGAltGlyphElement.glyphRef */ | 186 /** @domName SVGAltGlyphElement.glyphRef */ |
| 187 void set glyphRef(String value) native "SVGAltGlyphElement_glyphRef_Setter"; | 187 void set glyphRef(String value) native "SVGAltGlyphElement_glyphRef_Setter"; |
| 188 | 188 |
| 189 | 189 |
| 190 /** @domName SVGAltGlyphElement.href */ | 190 /** @domName SVGAltGlyphElement.href */ |
| 191 SVGAnimatedString get href native "SVGAltGlyphElement_href_Getter"; | 191 AnimatedString get href native "SVGAltGlyphElement_href_Getter"; |
| 192 | 192 |
| 193 } | 193 } |
| 194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 194 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 195 // for details. All rights reserved. Use of this source code is governed by a | 195 // for details. All rights reserved. Use of this source code is governed by a |
| 196 // BSD-style license that can be found in the LICENSE file. | 196 // BSD-style license that can be found in the LICENSE file. |
| 197 | 197 |
| 198 // WARNING: Do not edit - generated code. | 198 // WARNING: Do not edit - generated code. |
| 199 | 199 |
| 200 | 200 |
| 201 /// @domName SVGAltGlyphItemElement | 201 /// @domName SVGAltGlyphItemElement |
| 202 class SVGAltGlyphItemElement extends SVGElement { | 202 class AltGlyphItemElement extends SvgElement { |
| 203 SVGAltGlyphItemElement.internal(): super.internal(); | 203 AltGlyphItemElement.internal(): super.internal(); |
| 204 | 204 |
| 205 } | 205 } |
| 206 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 206 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 207 // for details. All rights reserved. Use of this source code is governed by a | 207 // for details. All rights reserved. Use of this source code is governed by a |
| 208 // BSD-style license that can be found in the LICENSE file. | 208 // BSD-style license that can be found in the LICENSE file. |
| 209 | 209 |
| 210 // WARNING: Do not edit - generated code. | 210 // WARNING: Do not edit - generated code. |
| 211 | 211 |
| 212 | 212 |
| 213 /// @domName SVGAngle | 213 /// @domName SVGAngle |
| 214 class SVGAngle extends NativeFieldWrapperClass1 { | 214 class Angle extends NativeFieldWrapperClass1 { |
| 215 SVGAngle.internal(); | 215 Angle.internal(); |
| 216 | 216 |
| 217 static const int SVG_ANGLETYPE_DEG = 2; | 217 static const int SVG_ANGLETYPE_DEG = 2; |
| 218 | 218 |
| 219 static const int SVG_ANGLETYPE_GRAD = 4; | 219 static const int SVG_ANGLETYPE_GRAD = 4; |
| 220 | 220 |
| 221 static const int SVG_ANGLETYPE_RAD = 3; | 221 static const int SVG_ANGLETYPE_RAD = 3; |
| 222 | 222 |
| 223 static const int SVG_ANGLETYPE_UNKNOWN = 0; | 223 static const int SVG_ANGLETYPE_UNKNOWN = 0; |
| 224 | 224 |
| 225 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; | 225 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 262 |
| 263 } | 263 } |
| 264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 264 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 265 // for details. All rights reserved. Use of this source code is governed by a | 265 // for details. All rights reserved. Use of this source code is governed by a |
| 266 // BSD-style license that can be found in the LICENSE file. | 266 // BSD-style license that can be found in the LICENSE file. |
| 267 | 267 |
| 268 // WARNING: Do not edit - generated code. | 268 // WARNING: Do not edit - generated code. |
| 269 | 269 |
| 270 | 270 |
| 271 /// @domName SVGAnimateColorElement | 271 /// @domName SVGAnimateColorElement |
| 272 class SVGAnimateColorElement extends SVGAnimationElement { | 272 class AnimateColorElement extends AnimationElement { |
| 273 | 273 |
| 274 factory SVGAnimateColorElement() => _SVGElementFactoryProvider.createSVGElemen
t_tag("animateColor"); | 274 factory AnimateColorElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("animateColor"); |
| 275 SVGAnimateColorElement.internal(): super.internal(); | 275 AnimateColorElement.internal(): super.internal(); |
| 276 | 276 |
| 277 } | 277 } |
| 278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 278 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 279 // for details. All rights reserved. Use of this source code is governed by a | 279 // for details. All rights reserved. Use of this source code is governed by a |
| 280 // BSD-style license that can be found in the LICENSE file. | 280 // BSD-style license that can be found in the LICENSE file. |
| 281 | 281 |
| 282 // WARNING: Do not edit - generated code. | 282 // WARNING: Do not edit - generated code. |
| 283 | 283 |
| 284 | 284 |
| 285 /// @domName SVGAnimateElement | 285 /// @domName SVGAnimateElement |
| 286 class SVGAnimateElement extends SVGAnimationElement { | 286 class AnimateElement extends AnimationElement { |
| 287 | 287 |
| 288 factory SVGAnimateElement() => _SVGElementFactoryProvider.createSVGElement_tag
("animate"); | 288 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); |
| 289 SVGAnimateElement.internal(): super.internal(); | 289 AnimateElement.internal(): super.internal(); |
| 290 | 290 |
| 291 } | 291 } |
| 292 // 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 |
| 293 // 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 |
| 294 // BSD-style license that can be found in the LICENSE file. | 294 // BSD-style license that can be found in the LICENSE file. |
| 295 | 295 |
| 296 // WARNING: Do not edit - generated code. | 296 // WARNING: Do not edit - generated code. |
| 297 | 297 |
| 298 | 298 |
| 299 /// @domName SVGAnimateMotionElement | 299 /// @domName SVGAnimateMotionElement |
| 300 class SVGAnimateMotionElement extends SVGAnimationElement { | 300 class AnimateMotionElement extends AnimationElement { |
| 301 | 301 |
| 302 factory SVGAnimateMotionElement() => _SVGElementFactoryProvider.createSVGEleme
nt_tag("animateMotion"); | 302 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); |
| 303 SVGAnimateMotionElement.internal(): super.internal(); | 303 AnimateMotionElement.internal(): super.internal(); |
| 304 | 304 |
| 305 } | 305 } |
| 306 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 306 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 307 // for details. All rights reserved. Use of this source code is governed by a | 307 // for details. All rights reserved. Use of this source code is governed by a |
| 308 // BSD-style license that can be found in the LICENSE file. | 308 // BSD-style license that can be found in the LICENSE file. |
| 309 | 309 |
| 310 // WARNING: Do not edit - generated code. | 310 // WARNING: Do not edit - generated code. |
| 311 | 311 |
| 312 | 312 |
| 313 /// @domName SVGAnimateTransformElement | 313 /// @domName SVGAnimateTransformElement |
| 314 class SVGAnimateTransformElement extends SVGAnimationElement { | 314 class AnimateTransformElement extends AnimationElement { |
| 315 | 315 |
| 316 factory SVGAnimateTransformElement() => _SVGElementFactoryProvider.createSVGEl
ement_tag("animateTransform"); | 316 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); |
| 317 SVGAnimateTransformElement.internal(): super.internal(); | 317 AnimateTransformElement.internal(): super.internal(); |
| 318 | 318 |
| 319 } | 319 } |
| 320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 320 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 321 // for details. All rights reserved. Use of this source code is governed by a | 321 // for details. All rights reserved. Use of this source code is governed by a |
| 322 // BSD-style license that can be found in the LICENSE file. | 322 // BSD-style license that can be found in the LICENSE file. |
| 323 | 323 |
| 324 // WARNING: Do not edit - generated code. | 324 // WARNING: Do not edit - generated code. |
| 325 | 325 |
| 326 | 326 |
| 327 /// @domName SVGAnimatedAngle | 327 /// @domName SVGAnimatedAngle |
| 328 class SVGAnimatedAngle extends NativeFieldWrapperClass1 { | 328 class AnimatedAngle extends NativeFieldWrapperClass1 { |
| 329 SVGAnimatedAngle.internal(); | 329 AnimatedAngle.internal(); |
| 330 | 330 |
| 331 | 331 |
| 332 /** @domName SVGAnimatedAngle.animVal */ | 332 /** @domName SVGAnimatedAngle.animVal */ |
| 333 SVGAngle get animVal native "SVGAnimatedAngle_animVal_Getter"; | 333 Angle get animVal native "SVGAnimatedAngle_animVal_Getter"; |
| 334 | 334 |
| 335 | 335 |
| 336 /** @domName SVGAnimatedAngle.baseVal */ | 336 /** @domName SVGAnimatedAngle.baseVal */ |
| 337 SVGAngle get baseVal native "SVGAnimatedAngle_baseVal_Getter"; | 337 Angle get baseVal native "SVGAnimatedAngle_baseVal_Getter"; |
| 338 | 338 |
| 339 } | 339 } |
| 340 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 340 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 341 // for details. All rights reserved. Use of this source code is governed by a | 341 // for details. All rights reserved. Use of this source code is governed by a |
| 342 // BSD-style license that can be found in the LICENSE file. | 342 // BSD-style license that can be found in the LICENSE file. |
| 343 | 343 |
| 344 // WARNING: Do not edit - generated code. | 344 // WARNING: Do not edit - generated code. |
| 345 | 345 |
| 346 | 346 |
| 347 /// @domName SVGAnimatedBoolean | 347 /// @domName SVGAnimatedBoolean |
| 348 class SVGAnimatedBoolean extends NativeFieldWrapperClass1 { | 348 class AnimatedBoolean extends NativeFieldWrapperClass1 { |
| 349 SVGAnimatedBoolean.internal(); | 349 AnimatedBoolean.internal(); |
| 350 | 350 |
| 351 | 351 |
| 352 /** @domName SVGAnimatedBoolean.animVal */ | 352 /** @domName SVGAnimatedBoolean.animVal */ |
| 353 bool get animVal native "SVGAnimatedBoolean_animVal_Getter"; | 353 bool get animVal native "SVGAnimatedBoolean_animVal_Getter"; |
| 354 | 354 |
| 355 | 355 |
| 356 /** @domName SVGAnimatedBoolean.baseVal */ | 356 /** @domName SVGAnimatedBoolean.baseVal */ |
| 357 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter"; | 357 bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter"; |
| 358 | 358 |
| 359 | 359 |
| 360 /** @domName SVGAnimatedBoolean.baseVal */ | 360 /** @domName SVGAnimatedBoolean.baseVal */ |
| 361 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter"; | 361 void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter"; |
| 362 | 362 |
| 363 } | 363 } |
| 364 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 364 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 365 // for details. All rights reserved. Use of this source code is governed by a | 365 // for details. All rights reserved. Use of this source code is governed by a |
| 366 // BSD-style license that can be found in the LICENSE file. | 366 // BSD-style license that can be found in the LICENSE file. |
| 367 | 367 |
| 368 // WARNING: Do not edit - generated code. | 368 // WARNING: Do not edit - generated code. |
| 369 | 369 |
| 370 | 370 |
| 371 /// @domName SVGAnimatedEnumeration | 371 /// @domName SVGAnimatedEnumeration |
| 372 class SVGAnimatedEnumeration extends NativeFieldWrapperClass1 { | 372 class AnimatedEnumeration extends NativeFieldWrapperClass1 { |
| 373 SVGAnimatedEnumeration.internal(); | 373 AnimatedEnumeration.internal(); |
| 374 | 374 |
| 375 | 375 |
| 376 /** @domName SVGAnimatedEnumeration.animVal */ | 376 /** @domName SVGAnimatedEnumeration.animVal */ |
| 377 int get animVal native "SVGAnimatedEnumeration_animVal_Getter"; | 377 int get animVal native "SVGAnimatedEnumeration_animVal_Getter"; |
| 378 | 378 |
| 379 | 379 |
| 380 /** @domName SVGAnimatedEnumeration.baseVal */ | 380 /** @domName SVGAnimatedEnumeration.baseVal */ |
| 381 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter"; | 381 int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter"; |
| 382 | 382 |
| 383 | 383 |
| 384 /** @domName SVGAnimatedEnumeration.baseVal */ | 384 /** @domName SVGAnimatedEnumeration.baseVal */ |
| 385 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter"; | 385 void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter"; |
| 386 | 386 |
| 387 } | 387 } |
| 388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 389 // for details. All rights reserved. Use of this source code is governed by a | 389 // for details. All rights reserved. Use of this source code is governed by a |
| 390 // BSD-style license that can be found in the LICENSE file. | 390 // BSD-style license that can be found in the LICENSE file. |
| 391 | 391 |
| 392 // WARNING: Do not edit - generated code. | 392 // WARNING: Do not edit - generated code. |
| 393 | 393 |
| 394 | 394 |
| 395 /// @domName SVGAnimatedInteger | 395 /// @domName SVGAnimatedInteger |
| 396 class SVGAnimatedInteger extends NativeFieldWrapperClass1 { | 396 class AnimatedInteger extends NativeFieldWrapperClass1 { |
| 397 SVGAnimatedInteger.internal(); | 397 AnimatedInteger.internal(); |
| 398 | 398 |
| 399 | 399 |
| 400 /** @domName SVGAnimatedInteger.animVal */ | 400 /** @domName SVGAnimatedInteger.animVal */ |
| 401 int get animVal native "SVGAnimatedInteger_animVal_Getter"; | 401 int get animVal native "SVGAnimatedInteger_animVal_Getter"; |
| 402 | 402 |
| 403 | 403 |
| 404 /** @domName SVGAnimatedInteger.baseVal */ | 404 /** @domName SVGAnimatedInteger.baseVal */ |
| 405 int get baseVal native "SVGAnimatedInteger_baseVal_Getter"; | 405 int get baseVal native "SVGAnimatedInteger_baseVal_Getter"; |
| 406 | 406 |
| 407 | 407 |
| 408 /** @domName SVGAnimatedInteger.baseVal */ | 408 /** @domName SVGAnimatedInteger.baseVal */ |
| 409 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter"; | 409 void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter"; |
| 410 | 410 |
| 411 } | 411 } |
| 412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 413 // for details. All rights reserved. Use of this source code is governed by a | 413 // for details. All rights reserved. Use of this source code is governed by a |
| 414 // BSD-style license that can be found in the LICENSE file. | 414 // BSD-style license that can be found in the LICENSE file. |
| 415 | 415 |
| 416 // WARNING: Do not edit - generated code. | 416 // WARNING: Do not edit - generated code. |
| 417 | 417 |
| 418 | 418 |
| 419 /// @domName SVGAnimatedLength | 419 /// @domName SVGAnimatedLength |
| 420 class SVGAnimatedLength extends NativeFieldWrapperClass1 { | 420 class AnimatedLength extends NativeFieldWrapperClass1 { |
| 421 SVGAnimatedLength.internal(); | 421 AnimatedLength.internal(); |
| 422 | 422 |
| 423 | 423 |
| 424 /** @domName SVGAnimatedLength.animVal */ | 424 /** @domName SVGAnimatedLength.animVal */ |
| 425 SVGLength get animVal native "SVGAnimatedLength_animVal_Getter"; | 425 Length get animVal native "SVGAnimatedLength_animVal_Getter"; |
| 426 | 426 |
| 427 | 427 |
| 428 /** @domName SVGAnimatedLength.baseVal */ | 428 /** @domName SVGAnimatedLength.baseVal */ |
| 429 SVGLength get baseVal native "SVGAnimatedLength_baseVal_Getter"; | 429 Length get baseVal native "SVGAnimatedLength_baseVal_Getter"; |
| 430 | 430 |
| 431 } | 431 } |
| 432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 433 // for details. All rights reserved. Use of this source code is governed by a | 433 // for details. All rights reserved. Use of this source code is governed by a |
| 434 // BSD-style license that can be found in the LICENSE file. | 434 // BSD-style license that can be found in the LICENSE file. |
| 435 | 435 |
| 436 // WARNING: Do not edit - generated code. | 436 // WARNING: Do not edit - generated code. |
| 437 | 437 |
| 438 | 438 |
| 439 /// @domName SVGAnimatedLengthList | 439 /// @domName SVGAnimatedLengthList |
| 440 class SVGAnimatedLengthList extends NativeFieldWrapperClass1 implements List<SVG
AnimatedLength> { | 440 class AnimatedLengthList extends NativeFieldWrapperClass1 implements List<Animat
edLength> { |
| 441 SVGAnimatedLengthList.internal(); | 441 AnimatedLengthList.internal(); |
| 442 | 442 |
| 443 | 443 |
| 444 /** @domName SVGAnimatedLengthList.animVal */ | 444 /** @domName SVGAnimatedLengthList.animVal */ |
| 445 SVGLengthList get animVal native "SVGAnimatedLengthList_animVal_Getter"; | 445 LengthList get animVal native "SVGAnimatedLengthList_animVal_Getter"; |
| 446 | 446 |
| 447 | 447 |
| 448 /** @domName SVGAnimatedLengthList.baseVal */ | 448 /** @domName SVGAnimatedLengthList.baseVal */ |
| 449 SVGLengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter"; | 449 LengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter"; |
| 450 | 450 |
| 451 SVGAnimatedLength operator[](int index) native "SVGAnimatedLengthList_item_Cal
lback"; | 451 AnimatedLength operator[](int index) native "SVGAnimatedLengthList_item_Callba
ck"; |
| 452 | 452 |
| 453 void operator[]=(int index, SVGAnimatedLength value) { | 453 void operator[]=(int index, AnimatedLength value) { |
| 454 throw new UnsupportedError("Cannot assign element of immutable List."); | 454 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 455 } | 455 } |
| 456 // -- start List<SVGAnimatedLength> mixins. | 456 // -- start List<AnimatedLength> mixins. |
| 457 // SVGAnimatedLength is the element type. | 457 // AnimatedLength is the element type. |
| 458 | 458 |
| 459 // From Iterable<SVGAnimatedLength>: | 459 // From Iterable<AnimatedLength>: |
| 460 | 460 |
| 461 Iterator<SVGAnimatedLength> iterator() { | 461 Iterator<AnimatedLength> iterator() { |
| 462 // Note: NodeLists are not fixed size. And most probably length shouldn't | 462 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 463 // be cached in both iterator _and_ forEach method. For now caching it | 463 // be cached in both iterator _and_ forEach method. For now caching it |
| 464 // for consistency. | 464 // for consistency. |
| 465 return new FixedSizeListIterator<SVGAnimatedLength>(this); | 465 return new FixedSizeListIterator<AnimatedLength>(this); |
| 466 } | 466 } |
| 467 | 467 |
| 468 // From Collection<SVGAnimatedLength>: | 468 // From Collection<AnimatedLength>: |
| 469 | 469 |
| 470 void add(SVGAnimatedLength value) { | 470 void add(AnimatedLength value) { |
| 471 throw new UnsupportedError("Cannot add to immutable List."); | 471 throw new UnsupportedError("Cannot add to immutable List."); |
| 472 } | 472 } |
| 473 | 473 |
| 474 void addLast(SVGAnimatedLength value) { | 474 void addLast(AnimatedLength value) { |
| 475 throw new UnsupportedError("Cannot add to immutable List."); | 475 throw new UnsupportedError("Cannot add to immutable List."); |
| 476 } | 476 } |
| 477 | 477 |
| 478 void addAll(Collection<SVGAnimatedLength> collection) { | 478 void addAll(Collection<AnimatedLength> collection) { |
| 479 throw new UnsupportedError("Cannot add to immutable List."); | 479 throw new UnsupportedError("Cannot add to immutable List."); |
| 480 } | 480 } |
| 481 | 481 |
| 482 bool contains(SVGAnimatedLength element) => _Collections.contains(this, elemen
t); | 482 bool contains(AnimatedLength element) => _Collections.contains(this, element); |
| 483 | 483 |
| 484 void forEach(void f(SVGAnimatedLength element)) => _Collections.forEach(this,
f); | 484 void forEach(void f(AnimatedLength element)) => _Collections.forEach(this, f); |
| 485 | 485 |
| 486 Collection map(f(SVGAnimatedLength element)) => _Collections.map(this, [], f); | 486 Collection map(f(AnimatedLength element)) => _Collections.map(this, [], f); |
| 487 | 487 |
| 488 Collection<SVGAnimatedLength> filter(bool f(SVGAnimatedLength element)) => | 488 Collection<AnimatedLength> filter(bool f(AnimatedLength element)) => |
| 489 _Collections.filter(this, <SVGAnimatedLength>[], f); | 489 _Collections.filter(this, <AnimatedLength>[], f); |
| 490 | 490 |
| 491 bool every(bool f(SVGAnimatedLength element)) => _Collections.every(this, f); | 491 bool every(bool f(AnimatedLength element)) => _Collections.every(this, f); |
| 492 | 492 |
| 493 bool some(bool f(SVGAnimatedLength element)) => _Collections.some(this, f); | 493 bool some(bool f(AnimatedLength element)) => _Collections.some(this, f); |
| 494 | 494 |
| 495 bool get isEmpty => this.length == 0; | 495 bool get isEmpty => this.length == 0; |
| 496 | 496 |
| 497 // From List<SVGAnimatedLength>: | 497 // From List<AnimatedLength>: |
| 498 | 498 |
| 499 void sort([Comparator<SVGAnimatedLength> compare = Comparable.compare]) { | 499 void sort([Comparator<AnimatedLength> compare = Comparable.compare]) { |
| 500 throw new UnsupportedError("Cannot sort immutable List."); | 500 throw new UnsupportedError("Cannot sort immutable List."); |
| 501 } | 501 } |
| 502 | 502 |
| 503 int indexOf(SVGAnimatedLength element, [int start = 0]) => | 503 int indexOf(AnimatedLength element, [int start = 0]) => |
| 504 _Lists.indexOf(this, element, start, this.length); | 504 _Lists.indexOf(this, element, start, this.length); |
| 505 | 505 |
| 506 int lastIndexOf(SVGAnimatedLength element, [int start]) { | 506 int lastIndexOf(AnimatedLength element, [int start]) { |
| 507 if (start == null) start = length - 1; | 507 if (start == null) start = length - 1; |
| 508 return _Lists.lastIndexOf(this, element, start); | 508 return _Lists.lastIndexOf(this, element, start); |
| 509 } | 509 } |
| 510 | 510 |
| 511 SVGAnimatedLength get first => this[0]; | 511 AnimatedLength get first => this[0]; |
| 512 | 512 |
| 513 SVGAnimatedLength get last => this[length - 1]; | 513 AnimatedLength get last => this[length - 1]; |
| 514 | 514 |
| 515 SVGAnimatedLength removeLast() { | 515 AnimatedLength removeLast() { |
| 516 throw new UnsupportedError("Cannot removeLast on immutable List."); | 516 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 517 } | 517 } |
| 518 | 518 |
| 519 void setRange(int start, int rangeLength, List<SVGAnimatedLength> from, [int s
tartFrom]) { | 519 void setRange(int start, int rangeLength, List<AnimatedLength> from, [int star
tFrom]) { |
| 520 throw new UnsupportedError("Cannot setRange on immutable List."); | 520 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 521 } | 521 } |
| 522 | 522 |
| 523 void removeRange(int start, int rangeLength) { | 523 void removeRange(int start, int rangeLength) { |
| 524 throw new UnsupportedError("Cannot removeRange on immutable List."); | 524 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 525 } | 525 } |
| 526 | 526 |
| 527 void insertRange(int start, int rangeLength, [SVGAnimatedLength initialValue])
{ | 527 void insertRange(int start, int rangeLength, [AnimatedLength initialValue]) { |
| 528 throw new UnsupportedError("Cannot insertRange on immutable List."); | 528 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 529 } | 529 } |
| 530 | 530 |
| 531 List<SVGAnimatedLength> getRange(int start, int rangeLength) => | 531 List<AnimatedLength> getRange(int start, int rangeLength) => |
| 532 _Lists.getRange(this, start, rangeLength, <SVGAnimatedLength>[]); | 532 _Lists.getRange(this, start, rangeLength, <AnimatedLength>[]); |
| 533 | 533 |
| 534 // -- end List<SVGAnimatedLength> mixins. | 534 // -- end List<AnimatedLength> mixins. |
| 535 | 535 |
| 536 } | 536 } |
| 537 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 537 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 538 // for details. All rights reserved. Use of this source code is governed by a | 538 // for details. All rights reserved. Use of this source code is governed by a |
| 539 // BSD-style license that can be found in the LICENSE file. | 539 // BSD-style license that can be found in the LICENSE file. |
| 540 | 540 |
| 541 // WARNING: Do not edit - generated code. | 541 // WARNING: Do not edit - generated code. |
| 542 | 542 |
| 543 | 543 |
| 544 /// @domName SVGAnimatedNumber | 544 /// @domName SVGAnimatedNumber |
| 545 class SVGAnimatedNumber extends NativeFieldWrapperClass1 { | 545 class AnimatedNumber extends NativeFieldWrapperClass1 { |
| 546 SVGAnimatedNumber.internal(); | 546 AnimatedNumber.internal(); |
| 547 | 547 |
| 548 | 548 |
| 549 /** @domName SVGAnimatedNumber.animVal */ | 549 /** @domName SVGAnimatedNumber.animVal */ |
| 550 num get animVal native "SVGAnimatedNumber_animVal_Getter"; | 550 num get animVal native "SVGAnimatedNumber_animVal_Getter"; |
| 551 | 551 |
| 552 | 552 |
| 553 /** @domName SVGAnimatedNumber.baseVal */ | 553 /** @domName SVGAnimatedNumber.baseVal */ |
| 554 num get baseVal native "SVGAnimatedNumber_baseVal_Getter"; | 554 num get baseVal native "SVGAnimatedNumber_baseVal_Getter"; |
| 555 | 555 |
| 556 | 556 |
| 557 /** @domName SVGAnimatedNumber.baseVal */ | 557 /** @domName SVGAnimatedNumber.baseVal */ |
| 558 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter"; | 558 void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter"; |
| 559 | 559 |
| 560 } | 560 } |
| 561 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 561 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 562 // for details. All rights reserved. Use of this source code is governed by a | 562 // for details. All rights reserved. Use of this source code is governed by a |
| 563 // BSD-style license that can be found in the LICENSE file. | 563 // BSD-style license that can be found in the LICENSE file. |
| 564 | 564 |
| 565 // WARNING: Do not edit - generated code. | 565 // WARNING: Do not edit - generated code. |
| 566 | 566 |
| 567 | 567 |
| 568 /// @domName SVGAnimatedNumberList | 568 /// @domName SVGAnimatedNumberList |
| 569 class SVGAnimatedNumberList extends NativeFieldWrapperClass1 implements List<SVG
AnimatedNumber> { | 569 class AnimatedNumberList extends NativeFieldWrapperClass1 implements List<Animat
edNumber> { |
| 570 SVGAnimatedNumberList.internal(); | 570 AnimatedNumberList.internal(); |
| 571 | 571 |
| 572 | 572 |
| 573 /** @domName SVGAnimatedNumberList.animVal */ | 573 /** @domName SVGAnimatedNumberList.animVal */ |
| 574 SVGNumberList get animVal native "SVGAnimatedNumberList_animVal_Getter"; | 574 NumberList get animVal native "SVGAnimatedNumberList_animVal_Getter"; |
| 575 | 575 |
| 576 | 576 |
| 577 /** @domName SVGAnimatedNumberList.baseVal */ | 577 /** @domName SVGAnimatedNumberList.baseVal */ |
| 578 SVGNumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter"; | 578 NumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter"; |
| 579 | 579 |
| 580 SVGAnimatedNumber operator[](int index) native "SVGAnimatedNumberList_item_Cal
lback"; | 580 AnimatedNumber operator[](int index) native "SVGAnimatedNumberList_item_Callba
ck"; |
| 581 | 581 |
| 582 void operator[]=(int index, SVGAnimatedNumber value) { | 582 void operator[]=(int index, AnimatedNumber value) { |
| 583 throw new UnsupportedError("Cannot assign element of immutable List."); | 583 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 584 } | 584 } |
| 585 // -- start List<SVGAnimatedNumber> mixins. | 585 // -- start List<AnimatedNumber> mixins. |
| 586 // SVGAnimatedNumber is the element type. | 586 // AnimatedNumber is the element type. |
| 587 | 587 |
| 588 // From Iterable<SVGAnimatedNumber>: | 588 // From Iterable<AnimatedNumber>: |
| 589 | 589 |
| 590 Iterator<SVGAnimatedNumber> iterator() { | 590 Iterator<AnimatedNumber> iterator() { |
| 591 // Note: NodeLists are not fixed size. And most probably length shouldn't | 591 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 592 // be cached in both iterator _and_ forEach method. For now caching it | 592 // be cached in both iterator _and_ forEach method. For now caching it |
| 593 // for consistency. | 593 // for consistency. |
| 594 return new FixedSizeListIterator<SVGAnimatedNumber>(this); | 594 return new FixedSizeListIterator<AnimatedNumber>(this); |
| 595 } | 595 } |
| 596 | 596 |
| 597 // From Collection<SVGAnimatedNumber>: | 597 // From Collection<AnimatedNumber>: |
| 598 | 598 |
| 599 void add(SVGAnimatedNumber value) { | 599 void add(AnimatedNumber value) { |
| 600 throw new UnsupportedError("Cannot add to immutable List."); | 600 throw new UnsupportedError("Cannot add to immutable List."); |
| 601 } | 601 } |
| 602 | 602 |
| 603 void addLast(SVGAnimatedNumber value) { | 603 void addLast(AnimatedNumber value) { |
| 604 throw new UnsupportedError("Cannot add to immutable List."); | 604 throw new UnsupportedError("Cannot add to immutable List."); |
| 605 } | 605 } |
| 606 | 606 |
| 607 void addAll(Collection<SVGAnimatedNumber> collection) { | 607 void addAll(Collection<AnimatedNumber> collection) { |
| 608 throw new UnsupportedError("Cannot add to immutable List."); | 608 throw new UnsupportedError("Cannot add to immutable List."); |
| 609 } | 609 } |
| 610 | 610 |
| 611 bool contains(SVGAnimatedNumber element) => _Collections.contains(this, elemen
t); | 611 bool contains(AnimatedNumber element) => _Collections.contains(this, element); |
| 612 | 612 |
| 613 void forEach(void f(SVGAnimatedNumber element)) => _Collections.forEach(this,
f); | 613 void forEach(void f(AnimatedNumber element)) => _Collections.forEach(this, f); |
| 614 | 614 |
| 615 Collection map(f(SVGAnimatedNumber element)) => _Collections.map(this, [], f); | 615 Collection map(f(AnimatedNumber element)) => _Collections.map(this, [], f); |
| 616 | 616 |
| 617 Collection<SVGAnimatedNumber> filter(bool f(SVGAnimatedNumber element)) => | 617 Collection<AnimatedNumber> filter(bool f(AnimatedNumber element)) => |
| 618 _Collections.filter(this, <SVGAnimatedNumber>[], f); | 618 _Collections.filter(this, <AnimatedNumber>[], f); |
| 619 | 619 |
| 620 bool every(bool f(SVGAnimatedNumber element)) => _Collections.every(this, f); | 620 bool every(bool f(AnimatedNumber element)) => _Collections.every(this, f); |
| 621 | 621 |
| 622 bool some(bool f(SVGAnimatedNumber element)) => _Collections.some(this, f); | 622 bool some(bool f(AnimatedNumber element)) => _Collections.some(this, f); |
| 623 | 623 |
| 624 bool get isEmpty => this.length == 0; | 624 bool get isEmpty => this.length == 0; |
| 625 | 625 |
| 626 // From List<SVGAnimatedNumber>: | 626 // From List<AnimatedNumber>: |
| 627 | 627 |
| 628 void sort([Comparator<SVGAnimatedNumber> compare = Comparable.compare]) { | 628 void sort([Comparator<AnimatedNumber> compare = Comparable.compare]) { |
| 629 throw new UnsupportedError("Cannot sort immutable List."); | 629 throw new UnsupportedError("Cannot sort immutable List."); |
| 630 } | 630 } |
| 631 | 631 |
| 632 int indexOf(SVGAnimatedNumber element, [int start = 0]) => | 632 int indexOf(AnimatedNumber element, [int start = 0]) => |
| 633 _Lists.indexOf(this, element, start, this.length); | 633 _Lists.indexOf(this, element, start, this.length); |
| 634 | 634 |
| 635 int lastIndexOf(SVGAnimatedNumber element, [int start]) { | 635 int lastIndexOf(AnimatedNumber element, [int start]) { |
| 636 if (start == null) start = length - 1; | 636 if (start == null) start = length - 1; |
| 637 return _Lists.lastIndexOf(this, element, start); | 637 return _Lists.lastIndexOf(this, element, start); |
| 638 } | 638 } |
| 639 | 639 |
| 640 SVGAnimatedNumber get first => this[0]; | 640 AnimatedNumber get first => this[0]; |
| 641 | 641 |
| 642 SVGAnimatedNumber get last => this[length - 1]; | 642 AnimatedNumber get last => this[length - 1]; |
| 643 | 643 |
| 644 SVGAnimatedNumber removeLast() { | 644 AnimatedNumber removeLast() { |
| 645 throw new UnsupportedError("Cannot removeLast on immutable List."); | 645 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 646 } | 646 } |
| 647 | 647 |
| 648 void setRange(int start, int rangeLength, List<SVGAnimatedNumber> from, [int s
tartFrom]) { | 648 void setRange(int start, int rangeLength, List<AnimatedNumber> from, [int star
tFrom]) { |
| 649 throw new UnsupportedError("Cannot setRange on immutable List."); | 649 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 650 } | 650 } |
| 651 | 651 |
| 652 void removeRange(int start, int rangeLength) { | 652 void removeRange(int start, int rangeLength) { |
| 653 throw new UnsupportedError("Cannot removeRange on immutable List."); | 653 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 654 } | 654 } |
| 655 | 655 |
| 656 void insertRange(int start, int rangeLength, [SVGAnimatedNumber initialValue])
{ | 656 void insertRange(int start, int rangeLength, [AnimatedNumber initialValue]) { |
| 657 throw new UnsupportedError("Cannot insertRange on immutable List."); | 657 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 658 } | 658 } |
| 659 | 659 |
| 660 List<SVGAnimatedNumber> getRange(int start, int rangeLength) => | 660 List<AnimatedNumber> getRange(int start, int rangeLength) => |
| 661 _Lists.getRange(this, start, rangeLength, <SVGAnimatedNumber>[]); | 661 _Lists.getRange(this, start, rangeLength, <AnimatedNumber>[]); |
| 662 | 662 |
| 663 // -- end List<SVGAnimatedNumber> mixins. | 663 // -- end List<AnimatedNumber> mixins. |
| 664 | 664 |
| 665 } | 665 } |
| 666 // 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 |
| 667 // 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 |
| 668 // BSD-style license that can be found in the LICENSE file. | 668 // BSD-style license that can be found in the LICENSE file. |
| 669 | 669 |
| 670 // WARNING: Do not edit - generated code. | 670 // WARNING: Do not edit - generated code. |
| 671 | 671 |
| 672 | 672 |
| 673 /// @domName SVGAnimatedPreserveAspectRatio | 673 /// @domName SVGAnimatedPreserveAspectRatio |
| 674 class SVGAnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 { | 674 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 { |
| 675 SVGAnimatedPreserveAspectRatio.internal(); | 675 AnimatedPreserveAspectRatio.internal(); |
| 676 | 676 |
| 677 | 677 |
| 678 /** @domName SVGAnimatedPreserveAspectRatio.animVal */ | 678 /** @domName SVGAnimatedPreserveAspectRatio.animVal */ |
| 679 SVGPreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_anim
Val_Getter"; | 679 PreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_animVal
_Getter"; |
| 680 | 680 |
| 681 | 681 |
| 682 /** @domName SVGAnimatedPreserveAspectRatio.baseVal */ | 682 /** @domName SVGAnimatedPreserveAspectRatio.baseVal */ |
| 683 SVGPreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_base
Val_Getter"; | 683 PreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_baseVal
_Getter"; |
| 684 | 684 |
| 685 } | 685 } |
| 686 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 686 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 687 // for details. All rights reserved. Use of this source code is governed by a | 687 // for details. All rights reserved. Use of this source code is governed by a |
| 688 // BSD-style license that can be found in the LICENSE file. | 688 // BSD-style license that can be found in the LICENSE file. |
| 689 | 689 |
| 690 // WARNING: Do not edit - generated code. | 690 // WARNING: Do not edit - generated code. |
| 691 | 691 |
| 692 | 692 |
| 693 /// @domName SVGAnimatedRect | 693 /// @domName SVGAnimatedRect |
| 694 class SVGAnimatedRect extends NativeFieldWrapperClass1 { | 694 class AnimatedRect extends NativeFieldWrapperClass1 { |
| 695 SVGAnimatedRect.internal(); | 695 AnimatedRect.internal(); |
| 696 | 696 |
| 697 | 697 |
| 698 /** @domName SVGAnimatedRect.animVal */ | 698 /** @domName SVGAnimatedRect.animVal */ |
| 699 SVGRect get animVal native "SVGAnimatedRect_animVal_Getter"; | 699 Rect get animVal native "SVGAnimatedRect_animVal_Getter"; |
| 700 | 700 |
| 701 | 701 |
| 702 /** @domName SVGAnimatedRect.baseVal */ | 702 /** @domName SVGAnimatedRect.baseVal */ |
| 703 SVGRect get baseVal native "SVGAnimatedRect_baseVal_Getter"; | 703 Rect get baseVal native "SVGAnimatedRect_baseVal_Getter"; |
| 704 | 704 |
| 705 } | 705 } |
| 706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 707 // for details. All rights reserved. Use of this source code is governed by a | 707 // for details. All rights reserved. Use of this source code is governed by a |
| 708 // BSD-style license that can be found in the LICENSE file. | 708 // BSD-style license that can be found in the LICENSE file. |
| 709 | 709 |
| 710 // WARNING: Do not edit - generated code. | 710 // WARNING: Do not edit - generated code. |
| 711 | 711 |
| 712 | 712 |
| 713 /// @domName SVGAnimatedString | 713 /// @domName SVGAnimatedString |
| 714 class SVGAnimatedString extends NativeFieldWrapperClass1 { | 714 class AnimatedString extends NativeFieldWrapperClass1 { |
| 715 SVGAnimatedString.internal(); | 715 AnimatedString.internal(); |
| 716 | 716 |
| 717 | 717 |
| 718 /** @domName SVGAnimatedString.animVal */ | 718 /** @domName SVGAnimatedString.animVal */ |
| 719 String get animVal native "SVGAnimatedString_animVal_Getter"; | 719 String get animVal native "SVGAnimatedString_animVal_Getter"; |
| 720 | 720 |
| 721 | 721 |
| 722 /** @domName SVGAnimatedString.baseVal */ | 722 /** @domName SVGAnimatedString.baseVal */ |
| 723 String get baseVal native "SVGAnimatedString_baseVal_Getter"; | 723 String get baseVal native "SVGAnimatedString_baseVal_Getter"; |
| 724 | 724 |
| 725 | 725 |
| 726 /** @domName SVGAnimatedString.baseVal */ | 726 /** @domName SVGAnimatedString.baseVal */ |
| 727 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter"; | 727 void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter"; |
| 728 | 728 |
| 729 } | 729 } |
| 730 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 730 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 731 // for details. All rights reserved. Use of this source code is governed by a | 731 // for details. All rights reserved. Use of this source code is governed by a |
| 732 // BSD-style license that can be found in the LICENSE file. | 732 // BSD-style license that can be found in the LICENSE file. |
| 733 | 733 |
| 734 // WARNING: Do not edit - generated code. | 734 // WARNING: Do not edit - generated code. |
| 735 | 735 |
| 736 | 736 |
| 737 /// @domName SVGAnimatedTransformList | 737 /// @domName SVGAnimatedTransformList |
| 738 class SVGAnimatedTransformList extends NativeFieldWrapperClass1 implements List<
SVGAnimateTransformElement> { | 738 class AnimatedTransformList extends NativeFieldWrapperClass1 implements List<Ani
mateTransformElement> { |
| 739 SVGAnimatedTransformList.internal(); | 739 AnimatedTransformList.internal(); |
| 740 | 740 |
| 741 | 741 |
| 742 /** @domName SVGAnimatedTransformList.animVal */ | 742 /** @domName SVGAnimatedTransformList.animVal */ |
| 743 SVGTransformList get animVal native "SVGAnimatedTransformList_animVal_Getter"; | 743 TransformList get animVal native "SVGAnimatedTransformList_animVal_Getter"; |
| 744 | 744 |
| 745 | 745 |
| 746 /** @domName SVGAnimatedTransformList.baseVal */ | 746 /** @domName SVGAnimatedTransformList.baseVal */ |
| 747 SVGTransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter"; | 747 TransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter"; |
| 748 | 748 |
| 749 SVGAnimateTransformElement operator[](int index) native "SVGAnimatedTransformL
ist_item_Callback"; | 749 AnimateTransformElement operator[](int index) native "SVGAnimatedTransformList
_item_Callback"; |
| 750 | 750 |
| 751 void operator[]=(int index, SVGAnimateTransformElement value) { | 751 void operator[]=(int index, AnimateTransformElement value) { |
| 752 throw new UnsupportedError("Cannot assign element of immutable List."); | 752 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 753 } | 753 } |
| 754 // -- start List<SVGAnimateTransformElement> mixins. | 754 // -- start List<AnimateTransformElement> mixins. |
| 755 // SVGAnimateTransformElement is the element type. | 755 // AnimateTransformElement is the element type. |
| 756 | 756 |
| 757 // From Iterable<SVGAnimateTransformElement>: | 757 // From Iterable<AnimateTransformElement>: |
| 758 | 758 |
| 759 Iterator<SVGAnimateTransformElement> iterator() { | 759 Iterator<AnimateTransformElement> iterator() { |
| 760 // Note: NodeLists are not fixed size. And most probably length shouldn't | 760 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 761 // be cached in both iterator _and_ forEach method. For now caching it | 761 // be cached in both iterator _and_ forEach method. For now caching it |
| 762 // for consistency. | 762 // for consistency. |
| 763 return new FixedSizeListIterator<SVGAnimateTransformElement>(this); | 763 return new FixedSizeListIterator<AnimateTransformElement>(this); |
| 764 } | 764 } |
| 765 | 765 |
| 766 // From Collection<SVGAnimateTransformElement>: | 766 // From Collection<AnimateTransformElement>: |
| 767 | 767 |
| 768 void add(SVGAnimateTransformElement value) { | 768 void add(AnimateTransformElement value) { |
| 769 throw new UnsupportedError("Cannot add to immutable List."); | 769 throw new UnsupportedError("Cannot add to immutable List."); |
| 770 } | 770 } |
| 771 | 771 |
| 772 void addLast(SVGAnimateTransformElement value) { | 772 void addLast(AnimateTransformElement value) { |
| 773 throw new UnsupportedError("Cannot add to immutable List."); | 773 throw new UnsupportedError("Cannot add to immutable List."); |
| 774 } | 774 } |
| 775 | 775 |
| 776 void addAll(Collection<SVGAnimateTransformElement> collection) { | 776 void addAll(Collection<AnimateTransformElement> collection) { |
| 777 throw new UnsupportedError("Cannot add to immutable List."); | 777 throw new UnsupportedError("Cannot add to immutable List."); |
| 778 } | 778 } |
| 779 | 779 |
| 780 bool contains(SVGAnimateTransformElement element) => _Collections.contains(thi
s, element); | 780 bool contains(AnimateTransformElement element) => _Collections.contains(this,
element); |
| 781 | 781 |
| 782 void forEach(void f(SVGAnimateTransformElement element)) => _Collections.forEa
ch(this, f); | 782 void forEach(void f(AnimateTransformElement element)) => _Collections.forEach(
this, f); |
| 783 | 783 |
| 784 Collection map(f(SVGAnimateTransformElement element)) => _Collections.map(this
, [], f); | 784 Collection map(f(AnimateTransformElement element)) => _Collections.map(this, [
], f); |
| 785 | 785 |
| 786 Collection<SVGAnimateTransformElement> filter(bool f(SVGAnimateTransformElemen
t element)) => | 786 Collection<AnimateTransformElement> filter(bool f(AnimateTransformElement elem
ent)) => |
| 787 _Collections.filter(this, <SVGAnimateTransformElement>[], f); | 787 _Collections.filter(this, <AnimateTransformElement>[], f); |
| 788 | 788 |
| 789 bool every(bool f(SVGAnimateTransformElement element)) => _Collections.every(t
his, f); | 789 bool every(bool f(AnimateTransformElement element)) => _Collections.every(this
, f); |
| 790 | 790 |
| 791 bool some(bool f(SVGAnimateTransformElement element)) => _Collections.some(thi
s, f); | 791 bool some(bool f(AnimateTransformElement element)) => _Collections.some(this,
f); |
| 792 | 792 |
| 793 bool get isEmpty => this.length == 0; | 793 bool get isEmpty => this.length == 0; |
| 794 | 794 |
| 795 // From List<SVGAnimateTransformElement>: | 795 // From List<AnimateTransformElement>: |
| 796 | 796 |
| 797 void sort([Comparator<SVGAnimateTransformElement> compare = Comparable.compare
]) { | 797 void sort([Comparator<AnimateTransformElement> compare = Comparable.compare])
{ |
| 798 throw new UnsupportedError("Cannot sort immutable List."); | 798 throw new UnsupportedError("Cannot sort immutable List."); |
| 799 } | 799 } |
| 800 | 800 |
| 801 int indexOf(SVGAnimateTransformElement element, [int start = 0]) => | 801 int indexOf(AnimateTransformElement element, [int start = 0]) => |
| 802 _Lists.indexOf(this, element, start, this.length); | 802 _Lists.indexOf(this, element, start, this.length); |
| 803 | 803 |
| 804 int lastIndexOf(SVGAnimateTransformElement element, [int start]) { | 804 int lastIndexOf(AnimateTransformElement element, [int start]) { |
| 805 if (start == null) start = length - 1; | 805 if (start == null) start = length - 1; |
| 806 return _Lists.lastIndexOf(this, element, start); | 806 return _Lists.lastIndexOf(this, element, start); |
| 807 } | 807 } |
| 808 | 808 |
| 809 SVGAnimateTransformElement get first => this[0]; | 809 AnimateTransformElement get first => this[0]; |
| 810 | 810 |
| 811 SVGAnimateTransformElement get last => this[length - 1]; | 811 AnimateTransformElement get last => this[length - 1]; |
| 812 | 812 |
| 813 SVGAnimateTransformElement removeLast() { | 813 AnimateTransformElement removeLast() { |
| 814 throw new UnsupportedError("Cannot removeLast on immutable List."); | 814 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 815 } | 815 } |
| 816 | 816 |
| 817 void setRange(int start, int rangeLength, List<SVGAnimateTransformElement> fro
m, [int startFrom]) { | 817 void setRange(int start, int rangeLength, List<AnimateTransformElement> from,
[int startFrom]) { |
| 818 throw new UnsupportedError("Cannot setRange on immutable List."); | 818 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 819 } | 819 } |
| 820 | 820 |
| 821 void removeRange(int start, int rangeLength) { | 821 void removeRange(int start, int rangeLength) { |
| 822 throw new UnsupportedError("Cannot removeRange on immutable List."); | 822 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 823 } | 823 } |
| 824 | 824 |
| 825 void insertRange(int start, int rangeLength, [SVGAnimateTransformElement initi
alValue]) { | 825 void insertRange(int start, int rangeLength, [AnimateTransformElement initialV
alue]) { |
| 826 throw new UnsupportedError("Cannot insertRange on immutable List."); | 826 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 827 } | 827 } |
| 828 | 828 |
| 829 List<SVGAnimateTransformElement> getRange(int start, int rangeLength) => | 829 List<AnimateTransformElement> getRange(int start, int rangeLength) => |
| 830 _Lists.getRange(this, start, rangeLength, <SVGAnimateTransformElement>[]); | 830 _Lists.getRange(this, start, rangeLength, <AnimateTransformElement>[]); |
| 831 | 831 |
| 832 // -- end List<SVGAnimateTransformElement> mixins. | 832 // -- end List<AnimateTransformElement> mixins. |
| 833 | 833 |
| 834 } | 834 } |
| 835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 836 // for details. All rights reserved. Use of this source code is governed by a | 836 // for details. All rights reserved. Use of this source code is governed by a |
| 837 // BSD-style license that can be found in the LICENSE file. | 837 // BSD-style license that can be found in the LICENSE file. |
| 838 | 838 |
| 839 // WARNING: Do not edit - generated code. | 839 // WARNING: Do not edit - generated code. |
| 840 | 840 |
| 841 | 841 |
| 842 /// @domName SVGAnimationElement | 842 /// @domName SVGAnimationElement |
| 843 class SVGAnimationElement extends SVGElement implements ElementTimeControl, SVGT
ests, SVGExternalResourcesRequired { | 843 class AnimationElement extends SvgElement implements Tests, ElementTimeControl,
ExternalResourcesRequired { |
| 844 | 844 |
| 845 factory SVGAnimationElement() => _SVGElementFactoryProvider.createSVGElement_t
ag("animation"); | 845 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); |
| 846 SVGAnimationElement.internal(): super.internal(); | 846 AnimationElement.internal(): super.internal(); |
| 847 | 847 |
| 848 | 848 |
| 849 /** @domName SVGAnimationElement.targetElement */ | 849 /** @domName SVGAnimationElement.targetElement */ |
| 850 SVGElement get targetElement native "SVGAnimationElement_targetElement_Getter"
; | 850 SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter"
; |
| 851 | 851 |
| 852 | 852 |
| 853 /** @domName SVGAnimationElement.getCurrentTime */ | 853 /** @domName SVGAnimationElement.getCurrentTime */ |
| 854 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback"; | 854 num getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback"; |
| 855 | 855 |
| 856 | 856 |
| 857 /** @domName SVGAnimationElement.getSimpleDuration */ | 857 /** @domName SVGAnimationElement.getSimpleDuration */ |
| 858 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback
"; | 858 num getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback
"; |
| 859 | 859 |
| 860 | 860 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 872 | 872 |
| 873 /** @domName SVGAnimationElement.endElement */ | 873 /** @domName SVGAnimationElement.endElement */ |
| 874 void endElement() native "SVGAnimationElement_endElement_Callback"; | 874 void endElement() native "SVGAnimationElement_endElement_Callback"; |
| 875 | 875 |
| 876 | 876 |
| 877 /** @domName SVGAnimationElement.endElementAt */ | 877 /** @domName SVGAnimationElement.endElementAt */ |
| 878 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac
k"; | 878 void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callbac
k"; |
| 879 | 879 |
| 880 | 880 |
| 881 /** @domName SVGAnimationElement.externalResourcesRequired */ | 881 /** @domName SVGAnimationElement.externalResourcesRequired */ |
| 882 SVGAnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_e
xternalResourcesRequired_Getter"; | 882 AnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_exte
rnalResourcesRequired_Getter"; |
| 883 | 883 |
| 884 | 884 |
| 885 /** @domName SVGAnimationElement.requiredExtensions */ | 885 /** @domName SVGAnimationElement.requiredExtensions */ |
| 886 SVGStringList get requiredExtensions native "SVGAnimationElement_requiredExten
sions_Getter"; | 886 StringList get requiredExtensions native "SVGAnimationElement_requiredExtensio
ns_Getter"; |
| 887 | 887 |
| 888 | 888 |
| 889 /** @domName SVGAnimationElement.requiredFeatures */ | 889 /** @domName SVGAnimationElement.requiredFeatures */ |
| 890 SVGStringList get requiredFeatures native "SVGAnimationElement_requiredFeature
s_Getter"; | 890 StringList get requiredFeatures native "SVGAnimationElement_requiredFeatures_G
etter"; |
| 891 | 891 |
| 892 | 892 |
| 893 /** @domName SVGAnimationElement.systemLanguage */ | 893 /** @domName SVGAnimationElement.systemLanguage */ |
| 894 SVGStringList get systemLanguage native "SVGAnimationElement_systemLanguage_Ge
tter"; | 894 StringList get systemLanguage native "SVGAnimationElement_systemLanguage_Gette
r"; |
| 895 | 895 |
| 896 | 896 |
| 897 /** @domName SVGAnimationElement.hasExtension */ | 897 /** @domName SVGAnimationElement.hasExtension */ |
| 898 bool hasExtension(String extension) native "SVGAnimationElement_hasExtension_C
allback"; | 898 bool hasExtension(String extension) native "SVGAnimationElement_hasExtension_C
allback"; |
| 899 | 899 |
| 900 } | 900 } |
| 901 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 901 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 902 // for details. All rights reserved. Use of this source code is governed by a | 902 // for details. All rights reserved. Use of this source code is governed by a |
| 903 // BSD-style license that can be found in the LICENSE file. | 903 // BSD-style license that can be found in the LICENSE file. |
| 904 | 904 |
| 905 // WARNING: Do not edit - generated code. | 905 // WARNING: Do not edit - generated code. |
| 906 | 906 |
| 907 | 907 |
| 908 /// @domName SVGCircleElement | 908 /// @domName SVGCircleElement |
| 909 class SVGCircleElement extends SVGElement implements SVGLangSpace, SVGStylable,
SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 909 class CircleElement extends SvgElement implements Transformable, Tests, Stylable
, ExternalResourcesRequired, LangSpace { |
| 910 | 910 |
| 911 factory SVGCircleElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"circle"); | 911 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); |
| 912 SVGCircleElement.internal(): super.internal(); | 912 CircleElement.internal(): super.internal(); |
| 913 | 913 |
| 914 | 914 |
| 915 /** @domName SVGCircleElement.cx */ | 915 /** @domName SVGCircleElement.cx */ |
| 916 SVGAnimatedLength get cx native "SVGCircleElement_cx_Getter"; | 916 AnimatedLength get cx native "SVGCircleElement_cx_Getter"; |
| 917 | 917 |
| 918 | 918 |
| 919 /** @domName SVGCircleElement.cy */ | 919 /** @domName SVGCircleElement.cy */ |
| 920 SVGAnimatedLength get cy native "SVGCircleElement_cy_Getter"; | 920 AnimatedLength get cy native "SVGCircleElement_cy_Getter"; |
| 921 | 921 |
| 922 | 922 |
| 923 /** @domName SVGCircleElement.r */ | 923 /** @domName SVGCircleElement.r */ |
| 924 SVGAnimatedLength get r native "SVGCircleElement_r_Getter"; | 924 AnimatedLength get r native "SVGCircleElement_r_Getter"; |
| 925 | 925 |
| 926 | 926 |
| 927 /** @domName SVGCircleElement.externalResourcesRequired */ | 927 /** @domName SVGCircleElement.externalResourcesRequired */ |
| 928 SVGAnimatedBoolean get externalResourcesRequired native "SVGCircleElement_exte
rnalResourcesRequired_Getter"; | 928 AnimatedBoolean get externalResourcesRequired native "SVGCircleElement_externa
lResourcesRequired_Getter"; |
| 929 | 929 |
| 930 | 930 |
| 931 /** @domName SVGCircleElement.xmllang */ | 931 /** @domName SVGCircleElement.xmllang */ |
| 932 String get xmllang native "SVGCircleElement_xmllang_Getter"; | 932 String get xmllang native "SVGCircleElement_xmllang_Getter"; |
| 933 | 933 |
| 934 | 934 |
| 935 /** @domName SVGCircleElement.xmllang */ | 935 /** @domName SVGCircleElement.xmllang */ |
| 936 void set xmllang(String value) native "SVGCircleElement_xmllang_Setter"; | 936 void set xmllang(String value) native "SVGCircleElement_xmllang_Setter"; |
| 937 | 937 |
| 938 | 938 |
| 939 /** @domName SVGCircleElement.xmlspace */ | 939 /** @domName SVGCircleElement.xmlspace */ |
| 940 String get xmlspace native "SVGCircleElement_xmlspace_Getter"; | 940 String get xmlspace native "SVGCircleElement_xmlspace_Getter"; |
| 941 | 941 |
| 942 | 942 |
| 943 /** @domName SVGCircleElement.xmlspace */ | 943 /** @domName SVGCircleElement.xmlspace */ |
| 944 void set xmlspace(String value) native "SVGCircleElement_xmlspace_Setter"; | 944 void set xmlspace(String value) native "SVGCircleElement_xmlspace_Setter"; |
| 945 | 945 |
| 946 | 946 |
| 947 /** @domName SVGCircleElement.farthestViewportElement */ | 947 /** @domName SVGCircleElement.farthestViewportElement */ |
| 948 SVGElement get farthestViewportElement native "SVGCircleElement_farthestViewpo
rtElement_Getter"; | 948 SvgElement get farthestViewportElement native "SVGCircleElement_farthestViewpo
rtElement_Getter"; |
| 949 | 949 |
| 950 | 950 |
| 951 /** @domName SVGCircleElement.nearestViewportElement */ | 951 /** @domName SVGCircleElement.nearestViewportElement */ |
| 952 SVGElement get nearestViewportElement native "SVGCircleElement_nearestViewport
Element_Getter"; | 952 SvgElement get nearestViewportElement native "SVGCircleElement_nearestViewport
Element_Getter"; |
| 953 | 953 |
| 954 | 954 |
| 955 /** @domName SVGCircleElement.getBBox */ | 955 /** @domName SVGCircleElement.getBBox */ |
| 956 SVGRect getBBox() native "SVGCircleElement_getBBox_Callback"; | 956 Rect getBBox() native "SVGCircleElement_getBBox_Callback"; |
| 957 | 957 |
| 958 | 958 |
| 959 /** @domName SVGCircleElement.getCTM */ | 959 /** @domName SVGCircleElement.getCTM */ |
| 960 SVGMatrix getCTM() native "SVGCircleElement_getCTM_Callback"; | 960 Matrix getCTM() native "SVGCircleElement_getCTM_Callback"; |
| 961 | 961 |
| 962 | 962 |
| 963 /** @domName SVGCircleElement.getScreenCTM */ | 963 /** @domName SVGCircleElement.getScreenCTM */ |
| 964 SVGMatrix getScreenCTM() native "SVGCircleElement_getScreenCTM_Callback"; | 964 Matrix getScreenCTM() native "SVGCircleElement_getScreenCTM_Callback"; |
| 965 | 965 |
| 966 | 966 |
| 967 /** @domName SVGCircleElement.getTransformToElement */ | 967 /** @domName SVGCircleElement.getTransformToElement */ |
| 968 SVGMatrix getTransformToElement(SVGElement element) native "SVGCircleElement_g
etTransformToElement_Callback"; | 968 Matrix getTransformToElement(SvgElement element) native "SVGCircleElement_getT
ransformToElement_Callback"; |
| 969 | 969 |
| 970 | 970 |
| 971 /** @domName SVGCircleElement.className */ | 971 /** @domName SVGCircleElement.className */ |
| 972 SVGAnimatedString get $dom_svgClassName native "SVGCircleElement_className_Get
ter"; | 972 AnimatedString get $dom_svgClassName native "SVGCircleElement_className_Getter
"; |
| 973 | 973 |
| 974 | 974 |
| 975 /** @domName SVGCircleElement.style */ | 975 /** @domName SVGCircleElement.style */ |
| 976 CSSStyleDeclaration get style native "SVGCircleElement_style_Getter"; | 976 CSSStyleDeclaration get style native "SVGCircleElement_style_Getter"; |
| 977 | 977 |
| 978 | 978 |
| 979 /** @domName SVGCircleElement.getPresentationAttribute */ | 979 /** @domName SVGCircleElement.getPresentationAttribute */ |
| 980 CSSValue getPresentationAttribute(String name) native "SVGCircleElement_getPre
sentationAttribute_Callback"; | 980 CSSValue getPresentationAttribute(String name) native "SVGCircleElement_getPre
sentationAttribute_Callback"; |
| 981 | 981 |
| 982 | 982 |
| 983 /** @domName SVGCircleElement.requiredExtensions */ | 983 /** @domName SVGCircleElement.requiredExtensions */ |
| 984 SVGStringList get requiredExtensions native "SVGCircleElement_requiredExtensio
ns_Getter"; | 984 StringList get requiredExtensions native "SVGCircleElement_requiredExtensions_
Getter"; |
| 985 | 985 |
| 986 | 986 |
| 987 /** @domName SVGCircleElement.requiredFeatures */ | 987 /** @domName SVGCircleElement.requiredFeatures */ |
| 988 SVGStringList get requiredFeatures native "SVGCircleElement_requiredFeatures_G
etter"; | 988 StringList get requiredFeatures native "SVGCircleElement_requiredFeatures_Gett
er"; |
| 989 | 989 |
| 990 | 990 |
| 991 /** @domName SVGCircleElement.systemLanguage */ | 991 /** @domName SVGCircleElement.systemLanguage */ |
| 992 SVGStringList get systemLanguage native "SVGCircleElement_systemLanguage_Gette
r"; | 992 StringList get systemLanguage native "SVGCircleElement_systemLanguage_Getter"; |
| 993 | 993 |
| 994 | 994 |
| 995 /** @domName SVGCircleElement.hasExtension */ | 995 /** @domName SVGCircleElement.hasExtension */ |
| 996 bool hasExtension(String extension) native "SVGCircleElement_hasExtension_Call
back"; | 996 bool hasExtension(String extension) native "SVGCircleElement_hasExtension_Call
back"; |
| 997 | 997 |
| 998 | 998 |
| 999 /** @domName SVGCircleElement.transform */ | 999 /** @domName SVGCircleElement.transform */ |
| 1000 SVGAnimatedTransformList get transform native "SVGCircleElement_transform_Gett
er"; | 1000 AnimatedTransformList get transform native "SVGCircleElement_transform_Getter"
; |
| 1001 | 1001 |
| 1002 } | 1002 } |
| 1003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1004 // for details. All rights reserved. Use of this source code is governed by a | 1004 // for details. All rights reserved. Use of this source code is governed by a |
| 1005 // BSD-style license that can be found in the LICENSE file. | 1005 // BSD-style license that can be found in the LICENSE file. |
| 1006 | 1006 |
| 1007 // WARNING: Do not edit - generated code. | 1007 // WARNING: Do not edit - generated code. |
| 1008 | 1008 |
| 1009 | 1009 |
| 1010 /// @domName SVGClipPathElement | 1010 /// @domName SVGClipPathElement |
| 1011 class SVGClipPathElement extends SVGElement implements SVGLangSpace, SVGStylable
, SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 1011 class ClipPathElement extends SvgElement implements Transformable, Tests, Stylab
le, ExternalResourcesRequired, LangSpace { |
| 1012 | 1012 |
| 1013 factory SVGClipPathElement() => _SVGElementFactoryProvider.createSVGElement_ta
g("clipPath"); | 1013 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); |
| 1014 SVGClipPathElement.internal(): super.internal(); | 1014 ClipPathElement.internal(): super.internal(); |
| 1015 | 1015 |
| 1016 | 1016 |
| 1017 /** @domName SVGClipPathElement.clipPathUnits */ | 1017 /** @domName SVGClipPathElement.clipPathUnits */ |
| 1018 SVGAnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUn
its_Getter"; | 1018 AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits
_Getter"; |
| 1019 | 1019 |
| 1020 | 1020 |
| 1021 /** @domName SVGClipPathElement.externalResourcesRequired */ | 1021 /** @domName SVGClipPathElement.externalResourcesRequired */ |
| 1022 SVGAnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_ex
ternalResourcesRequired_Getter"; | 1022 AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_exter
nalResourcesRequired_Getter"; |
| 1023 | 1023 |
| 1024 | 1024 |
| 1025 /** @domName SVGClipPathElement.xmllang */ | 1025 /** @domName SVGClipPathElement.xmllang */ |
| 1026 String get xmllang native "SVGClipPathElement_xmllang_Getter"; | 1026 String get xmllang native "SVGClipPathElement_xmllang_Getter"; |
| 1027 | 1027 |
| 1028 | 1028 |
| 1029 /** @domName SVGClipPathElement.xmllang */ | 1029 /** @domName SVGClipPathElement.xmllang */ |
| 1030 void set xmllang(String value) native "SVGClipPathElement_xmllang_Setter"; | 1030 void set xmllang(String value) native "SVGClipPathElement_xmllang_Setter"; |
| 1031 | 1031 |
| 1032 | 1032 |
| 1033 /** @domName SVGClipPathElement.xmlspace */ | 1033 /** @domName SVGClipPathElement.xmlspace */ |
| 1034 String get xmlspace native "SVGClipPathElement_xmlspace_Getter"; | 1034 String get xmlspace native "SVGClipPathElement_xmlspace_Getter"; |
| 1035 | 1035 |
| 1036 | 1036 |
| 1037 /** @domName SVGClipPathElement.xmlspace */ | 1037 /** @domName SVGClipPathElement.xmlspace */ |
| 1038 void set xmlspace(String value) native "SVGClipPathElement_xmlspace_Setter"; | 1038 void set xmlspace(String value) native "SVGClipPathElement_xmlspace_Setter"; |
| 1039 | 1039 |
| 1040 | 1040 |
| 1041 /** @domName SVGClipPathElement.farthestViewportElement */ | 1041 /** @domName SVGClipPathElement.farthestViewportElement */ |
| 1042 SVGElement get farthestViewportElement native "SVGClipPathElement_farthestView
portElement_Getter"; | 1042 SvgElement get farthestViewportElement native "SVGClipPathElement_farthestView
portElement_Getter"; |
| 1043 | 1043 |
| 1044 | 1044 |
| 1045 /** @domName SVGClipPathElement.nearestViewportElement */ | 1045 /** @domName SVGClipPathElement.nearestViewportElement */ |
| 1046 SVGElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo
rtElement_Getter"; | 1046 SvgElement get nearestViewportElement native "SVGClipPathElement_nearestViewpo
rtElement_Getter"; |
| 1047 | 1047 |
| 1048 | 1048 |
| 1049 /** @domName SVGClipPathElement.getBBox */ | 1049 /** @domName SVGClipPathElement.getBBox */ |
| 1050 SVGRect getBBox() native "SVGClipPathElement_getBBox_Callback"; | 1050 Rect getBBox() native "SVGClipPathElement_getBBox_Callback"; |
| 1051 | 1051 |
| 1052 | 1052 |
| 1053 /** @domName SVGClipPathElement.getCTM */ | 1053 /** @domName SVGClipPathElement.getCTM */ |
| 1054 SVGMatrix getCTM() native "SVGClipPathElement_getCTM_Callback"; | 1054 Matrix getCTM() native "SVGClipPathElement_getCTM_Callback"; |
| 1055 | 1055 |
| 1056 | 1056 |
| 1057 /** @domName SVGClipPathElement.getScreenCTM */ | 1057 /** @domName SVGClipPathElement.getScreenCTM */ |
| 1058 SVGMatrix getScreenCTM() native "SVGClipPathElement_getScreenCTM_Callback"; | 1058 Matrix getScreenCTM() native "SVGClipPathElement_getScreenCTM_Callback"; |
| 1059 | 1059 |
| 1060 | 1060 |
| 1061 /** @domName SVGClipPathElement.getTransformToElement */ | 1061 /** @domName SVGClipPathElement.getTransformToElement */ |
| 1062 SVGMatrix getTransformToElement(SVGElement element) native "SVGClipPathElement
_getTransformToElement_Callback"; | 1062 Matrix getTransformToElement(SvgElement element) native "SVGClipPathElement_ge
tTransformToElement_Callback"; |
| 1063 | 1063 |
| 1064 | 1064 |
| 1065 /** @domName SVGClipPathElement.className */ | 1065 /** @domName SVGClipPathElement.className */ |
| 1066 SVGAnimatedString get $dom_svgClassName native "SVGClipPathElement_className_G
etter"; | 1066 AnimatedString get $dom_svgClassName native "SVGClipPathElement_className_Gett
er"; |
| 1067 | 1067 |
| 1068 | 1068 |
| 1069 /** @domName SVGClipPathElement.style */ | 1069 /** @domName SVGClipPathElement.style */ |
| 1070 CSSStyleDeclaration get style native "SVGClipPathElement_style_Getter"; | 1070 CSSStyleDeclaration get style native "SVGClipPathElement_style_Getter"; |
| 1071 | 1071 |
| 1072 | 1072 |
| 1073 /** @domName SVGClipPathElement.getPresentationAttribute */ | 1073 /** @domName SVGClipPathElement.getPresentationAttribute */ |
| 1074 CSSValue getPresentationAttribute(String name) native "SVGClipPathElement_getP
resentationAttribute_Callback"; | 1074 CSSValue getPresentationAttribute(String name) native "SVGClipPathElement_getP
resentationAttribute_Callback"; |
| 1075 | 1075 |
| 1076 | 1076 |
| 1077 /** @domName SVGClipPathElement.requiredExtensions */ | 1077 /** @domName SVGClipPathElement.requiredExtensions */ |
| 1078 SVGStringList get requiredExtensions native "SVGClipPathElement_requiredExtens
ions_Getter"; | 1078 StringList get requiredExtensions native "SVGClipPathElement_requiredExtension
s_Getter"; |
| 1079 | 1079 |
| 1080 | 1080 |
| 1081 /** @domName SVGClipPathElement.requiredFeatures */ | 1081 /** @domName SVGClipPathElement.requiredFeatures */ |
| 1082 SVGStringList get requiredFeatures native "SVGClipPathElement_requiredFeatures
_Getter"; | 1082 StringList get requiredFeatures native "SVGClipPathElement_requiredFeatures_Ge
tter"; |
| 1083 | 1083 |
| 1084 | 1084 |
| 1085 /** @domName SVGClipPathElement.systemLanguage */ | 1085 /** @domName SVGClipPathElement.systemLanguage */ |
| 1086 SVGStringList get systemLanguage native "SVGClipPathElement_systemLanguage_Get
ter"; | 1086 StringList get systemLanguage native "SVGClipPathElement_systemLanguage_Getter
"; |
| 1087 | 1087 |
| 1088 | 1088 |
| 1089 /** @domName SVGClipPathElement.hasExtension */ | 1089 /** @domName SVGClipPathElement.hasExtension */ |
| 1090 bool hasExtension(String extension) native "SVGClipPathElement_hasExtension_Ca
llback"; | 1090 bool hasExtension(String extension) native "SVGClipPathElement_hasExtension_Ca
llback"; |
| 1091 | 1091 |
| 1092 | 1092 |
| 1093 /** @domName SVGClipPathElement.transform */ | 1093 /** @domName SVGClipPathElement.transform */ |
| 1094 SVGAnimatedTransformList get transform native "SVGClipPathElement_transform_Ge
tter"; | 1094 AnimatedTransformList get transform native "SVGClipPathElement_transform_Gette
r"; |
| 1095 | 1095 |
| 1096 } | 1096 } |
| 1097 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1097 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1098 // for details. All rights reserved. Use of this source code is governed by a | 1098 // for details. All rights reserved. Use of this source code is governed by a |
| 1099 // BSD-style license that can be found in the LICENSE file. | 1099 // BSD-style license that can be found in the LICENSE file. |
| 1100 | 1100 |
| 1101 // WARNING: Do not edit - generated code. | 1101 // WARNING: Do not edit - generated code. |
| 1102 | 1102 |
| 1103 | 1103 |
| 1104 /// @domName SVGColor | 1104 /// @domName SVGColor |
| 1105 class SVGColor extends CSSValue { | 1105 class Color extends CSSValue { |
| 1106 SVGColor.internal(): super.internal(); | 1106 Color.internal(): super.internal(); |
| 1107 | 1107 |
| 1108 static const int SVG_COLORTYPE_CURRENTCOLOR = 3; | 1108 static const int SVG_COLORTYPE_CURRENTCOLOR = 3; |
| 1109 | 1109 |
| 1110 static const int SVG_COLORTYPE_RGBCOLOR = 1; | 1110 static const int SVG_COLORTYPE_RGBCOLOR = 1; |
| 1111 | 1111 |
| 1112 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; | 1112 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 1113 | 1113 |
| 1114 static const int SVG_COLORTYPE_UNKNOWN = 0; | 1114 static const int SVG_COLORTYPE_UNKNOWN = 0; |
| 1115 | 1115 |
| 1116 | 1116 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 1135 | 1135 |
| 1136 } | 1136 } |
| 1137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1138 // for details. All rights reserved. Use of this source code is governed by a | 1138 // for details. All rights reserved. Use of this source code is governed by a |
| 1139 // BSD-style license that can be found in the LICENSE file. | 1139 // BSD-style license that can be found in the LICENSE file. |
| 1140 | 1140 |
| 1141 // WARNING: Do not edit - generated code. | 1141 // WARNING: Do not edit - generated code. |
| 1142 | 1142 |
| 1143 | 1143 |
| 1144 /// @domName SVGComponentTransferFunctionElement | 1144 /// @domName SVGComponentTransferFunctionElement |
| 1145 class SVGComponentTransferFunctionElement extends SVGElement { | 1145 class ComponentTransferFunctionElement extends SvgElement { |
| 1146 SVGComponentTransferFunctionElement.internal(): super.internal(); | 1146 ComponentTransferFunctionElement.internal(): super.internal(); |
| 1147 | 1147 |
| 1148 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; | 1148 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
| 1149 | 1149 |
| 1150 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; | 1150 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
| 1151 | 1151 |
| 1152 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; | 1152 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
| 1153 | 1153 |
| 1154 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; | 1154 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
| 1155 | 1155 |
| 1156 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; | 1156 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
| 1157 | 1157 |
| 1158 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; | 1158 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
| 1159 | 1159 |
| 1160 | 1160 |
| 1161 /** @domName SVGComponentTransferFunctionElement.amplitude */ | 1161 /** @domName SVGComponentTransferFunctionElement.amplitude */ |
| 1162 SVGAnimatedNumber get amplitude native "SVGComponentTransferFunctionElement_am
plitude_Getter"; | 1162 AnimatedNumber get amplitude native "SVGComponentTransferFunctionElement_ampli
tude_Getter"; |
| 1163 | 1163 |
| 1164 | 1164 |
| 1165 /** @domName SVGComponentTransferFunctionElement.exponent */ | 1165 /** @domName SVGComponentTransferFunctionElement.exponent */ |
| 1166 SVGAnimatedNumber get exponent native "SVGComponentTransferFunctionElement_exp
onent_Getter"; | 1166 AnimatedNumber get exponent native "SVGComponentTransferFunctionElement_expone
nt_Getter"; |
| 1167 | 1167 |
| 1168 | 1168 |
| 1169 /** @domName SVGComponentTransferFunctionElement.intercept */ | 1169 /** @domName SVGComponentTransferFunctionElement.intercept */ |
| 1170 SVGAnimatedNumber get intercept native "SVGComponentTransferFunctionElement_in
tercept_Getter"; | 1170 AnimatedNumber get intercept native "SVGComponentTransferFunctionElement_inter
cept_Getter"; |
| 1171 | 1171 |
| 1172 | 1172 |
| 1173 /** @domName SVGComponentTransferFunctionElement.offset */ | 1173 /** @domName SVGComponentTransferFunctionElement.offset */ |
| 1174 SVGAnimatedNumber get offset native "SVGComponentTransferFunctionElement_offse
t_Getter"; | 1174 AnimatedNumber get offset native "SVGComponentTransferFunctionElement_offset_G
etter"; |
| 1175 | 1175 |
| 1176 | 1176 |
| 1177 /** @domName SVGComponentTransferFunctionElement.slope */ | 1177 /** @domName SVGComponentTransferFunctionElement.slope */ |
| 1178 SVGAnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_
Getter"; | 1178 AnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_Get
ter"; |
| 1179 | 1179 |
| 1180 | 1180 |
| 1181 /** @domName SVGComponentTransferFunctionElement.tableValues */ | 1181 /** @domName SVGComponentTransferFunctionElement.tableValues */ |
| 1182 SVGAnimatedNumberList get tableValues native "SVGComponentTransferFunctionElem
ent_tableValues_Getter"; | 1182 AnimatedNumberList get tableValues native "SVGComponentTransferFunctionElement
_tableValues_Getter"; |
| 1183 | 1183 |
| 1184 | 1184 |
| 1185 /** @domName SVGComponentTransferFunctionElement.type */ | 1185 /** @domName SVGComponentTransferFunctionElement.type */ |
| 1186 SVGAnimatedEnumeration get type native "SVGComponentTransferFunctionElement_ty
pe_Getter"; | 1186 AnimatedEnumeration get type native "SVGComponentTransferFunctionElement_type_
Getter"; |
| 1187 | 1187 |
| 1188 } | 1188 } |
| 1189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1190 // for details. All rights reserved. Use of this source code is governed by a | 1190 // for details. All rights reserved. Use of this source code is governed by a |
| 1191 // BSD-style license that can be found in the LICENSE file. | 1191 // BSD-style license that can be found in the LICENSE file. |
| 1192 | 1192 |
| 1193 // WARNING: Do not edit - generated code. | 1193 // WARNING: Do not edit - generated code. |
| 1194 | 1194 |
| 1195 | 1195 |
| 1196 /// @domName SVGCursorElement | 1196 /// @domName SVGCursorElement |
| 1197 class SVGCursorElement extends SVGElement implements SVGURIReference, SVGTests,
SVGExternalResourcesRequired { | 1197 class CursorElement extends SvgElement implements UriReference, Tests, ExternalR
esourcesRequired { |
| 1198 | 1198 |
| 1199 factory SVGCursorElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"cursor"); | 1199 factory CursorElement() => _SvgElementFactoryProvider.createSvgElement_tag("cu
rsor"); |
| 1200 SVGCursorElement.internal(): super.internal(); | 1200 CursorElement.internal(): super.internal(); |
| 1201 | 1201 |
| 1202 | 1202 |
| 1203 /** @domName SVGCursorElement.x */ | 1203 /** @domName SVGCursorElement.x */ |
| 1204 SVGAnimatedLength get x native "SVGCursorElement_x_Getter"; | 1204 AnimatedLength get x native "SVGCursorElement_x_Getter"; |
| 1205 | 1205 |
| 1206 | 1206 |
| 1207 /** @domName SVGCursorElement.y */ | 1207 /** @domName SVGCursorElement.y */ |
| 1208 SVGAnimatedLength get y native "SVGCursorElement_y_Getter"; | 1208 AnimatedLength get y native "SVGCursorElement_y_Getter"; |
| 1209 | 1209 |
| 1210 | 1210 |
| 1211 /** @domName SVGCursorElement.externalResourcesRequired */ | 1211 /** @domName SVGCursorElement.externalResourcesRequired */ |
| 1212 SVGAnimatedBoolean get externalResourcesRequired native "SVGCursorElement_exte
rnalResourcesRequired_Getter"; | 1212 AnimatedBoolean get externalResourcesRequired native "SVGCursorElement_externa
lResourcesRequired_Getter"; |
| 1213 | 1213 |
| 1214 | 1214 |
| 1215 /** @domName SVGCursorElement.requiredExtensions */ | 1215 /** @domName SVGCursorElement.requiredExtensions */ |
| 1216 SVGStringList get requiredExtensions native "SVGCursorElement_requiredExtensio
ns_Getter"; | 1216 StringList get requiredExtensions native "SVGCursorElement_requiredExtensions_
Getter"; |
| 1217 | 1217 |
| 1218 | 1218 |
| 1219 /** @domName SVGCursorElement.requiredFeatures */ | 1219 /** @domName SVGCursorElement.requiredFeatures */ |
| 1220 SVGStringList get requiredFeatures native "SVGCursorElement_requiredFeatures_G
etter"; | 1220 StringList get requiredFeatures native "SVGCursorElement_requiredFeatures_Gett
er"; |
| 1221 | 1221 |
| 1222 | 1222 |
| 1223 /** @domName SVGCursorElement.systemLanguage */ | 1223 /** @domName SVGCursorElement.systemLanguage */ |
| 1224 SVGStringList get systemLanguage native "SVGCursorElement_systemLanguage_Gette
r"; | 1224 StringList get systemLanguage native "SVGCursorElement_systemLanguage_Getter"; |
| 1225 | 1225 |
| 1226 | 1226 |
| 1227 /** @domName SVGCursorElement.hasExtension */ | 1227 /** @domName SVGCursorElement.hasExtension */ |
| 1228 bool hasExtension(String extension) native "SVGCursorElement_hasExtension_Call
back"; | 1228 bool hasExtension(String extension) native "SVGCursorElement_hasExtension_Call
back"; |
| 1229 | 1229 |
| 1230 | 1230 |
| 1231 /** @domName SVGCursorElement.href */ | 1231 /** @domName SVGCursorElement.href */ |
| 1232 SVGAnimatedString get href native "SVGCursorElement_href_Getter"; | 1232 AnimatedString get href native "SVGCursorElement_href_Getter"; |
| 1233 | 1233 |
| 1234 } | 1234 } |
| 1235 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1235 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1236 // for details. All rights reserved. Use of this source code is governed by a | 1236 // for details. All rights reserved. Use of this source code is governed by a |
| 1237 // BSD-style license that can be found in the LICENSE file. | 1237 // BSD-style license that can be found in the LICENSE file. |
| 1238 | 1238 |
| 1239 // WARNING: Do not edit - generated code. | 1239 // WARNING: Do not edit - generated code. |
| 1240 | 1240 |
| 1241 | 1241 |
| 1242 /// @domName SVGDefsElement | 1242 /// @domName SVGDefsElement |
| 1243 class SVGDefsElement extends SVGElement implements SVGLangSpace, SVGStylable, SV
GTests, SVGTransformable, SVGExternalResourcesRequired { | 1243 class DefsElement extends SvgElement implements Transformable, Tests, Stylable,
ExternalResourcesRequired, LangSpace { |
| 1244 | 1244 |
| 1245 factory SVGDefsElement() => _SVGElementFactoryProvider.createSVGElement_tag("d
efs"); | 1245 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); |
| 1246 SVGDefsElement.internal(): super.internal(); | 1246 DefsElement.internal(): super.internal(); |
| 1247 | 1247 |
| 1248 | 1248 |
| 1249 /** @domName SVGDefsElement.externalResourcesRequired */ | 1249 /** @domName SVGDefsElement.externalResourcesRequired */ |
| 1250 SVGAnimatedBoolean get externalResourcesRequired native "SVGDefsElement_extern
alResourcesRequired_Getter"; | 1250 AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalR
esourcesRequired_Getter"; |
| 1251 | 1251 |
| 1252 | 1252 |
| 1253 /** @domName SVGDefsElement.xmllang */ | 1253 /** @domName SVGDefsElement.xmllang */ |
| 1254 String get xmllang native "SVGDefsElement_xmllang_Getter"; | 1254 String get xmllang native "SVGDefsElement_xmllang_Getter"; |
| 1255 | 1255 |
| 1256 | 1256 |
| 1257 /** @domName SVGDefsElement.xmllang */ | 1257 /** @domName SVGDefsElement.xmllang */ |
| 1258 void set xmllang(String value) native "SVGDefsElement_xmllang_Setter"; | 1258 void set xmllang(String value) native "SVGDefsElement_xmllang_Setter"; |
| 1259 | 1259 |
| 1260 | 1260 |
| 1261 /** @domName SVGDefsElement.xmlspace */ | 1261 /** @domName SVGDefsElement.xmlspace */ |
| 1262 String get xmlspace native "SVGDefsElement_xmlspace_Getter"; | 1262 String get xmlspace native "SVGDefsElement_xmlspace_Getter"; |
| 1263 | 1263 |
| 1264 | 1264 |
| 1265 /** @domName SVGDefsElement.xmlspace */ | 1265 /** @domName SVGDefsElement.xmlspace */ |
| 1266 void set xmlspace(String value) native "SVGDefsElement_xmlspace_Setter"; | 1266 void set xmlspace(String value) native "SVGDefsElement_xmlspace_Setter"; |
| 1267 | 1267 |
| 1268 | 1268 |
| 1269 /** @domName SVGDefsElement.farthestViewportElement */ | 1269 /** @domName SVGDefsElement.farthestViewportElement */ |
| 1270 SVGElement get farthestViewportElement native "SVGDefsElement_farthestViewport
Element_Getter"; | 1270 SvgElement get farthestViewportElement native "SVGDefsElement_farthestViewport
Element_Getter"; |
| 1271 | 1271 |
| 1272 | 1272 |
| 1273 /** @domName SVGDefsElement.nearestViewportElement */ | 1273 /** @domName SVGDefsElement.nearestViewportElement */ |
| 1274 SVGElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl
ement_Getter"; | 1274 SvgElement get nearestViewportElement native "SVGDefsElement_nearestViewportEl
ement_Getter"; |
| 1275 | 1275 |
| 1276 | 1276 |
| 1277 /** @domName SVGDefsElement.getBBox */ | 1277 /** @domName SVGDefsElement.getBBox */ |
| 1278 SVGRect getBBox() native "SVGDefsElement_getBBox_Callback"; | 1278 Rect getBBox() native "SVGDefsElement_getBBox_Callback"; |
| 1279 | 1279 |
| 1280 | 1280 |
| 1281 /** @domName SVGDefsElement.getCTM */ | 1281 /** @domName SVGDefsElement.getCTM */ |
| 1282 SVGMatrix getCTM() native "SVGDefsElement_getCTM_Callback"; | 1282 Matrix getCTM() native "SVGDefsElement_getCTM_Callback"; |
| 1283 | 1283 |
| 1284 | 1284 |
| 1285 /** @domName SVGDefsElement.getScreenCTM */ | 1285 /** @domName SVGDefsElement.getScreenCTM */ |
| 1286 SVGMatrix getScreenCTM() native "SVGDefsElement_getScreenCTM_Callback"; | 1286 Matrix getScreenCTM() native "SVGDefsElement_getScreenCTM_Callback"; |
| 1287 | 1287 |
| 1288 | 1288 |
| 1289 /** @domName SVGDefsElement.getTransformToElement */ | 1289 /** @domName SVGDefsElement.getTransformToElement */ |
| 1290 SVGMatrix getTransformToElement(SVGElement element) native "SVGDefsElement_get
TransformToElement_Callback"; | 1290 Matrix getTransformToElement(SvgElement element) native "SVGDefsElement_getTra
nsformToElement_Callback"; |
| 1291 | 1291 |
| 1292 | 1292 |
| 1293 /** @domName SVGDefsElement.className */ | 1293 /** @domName SVGDefsElement.className */ |
| 1294 SVGAnimatedString get $dom_svgClassName native "SVGDefsElement_className_Gette
r"; | 1294 AnimatedString get $dom_svgClassName native "SVGDefsElement_className_Getter"; |
| 1295 | 1295 |
| 1296 | 1296 |
| 1297 /** @domName SVGDefsElement.style */ | 1297 /** @domName SVGDefsElement.style */ |
| 1298 CSSStyleDeclaration get style native "SVGDefsElement_style_Getter"; | 1298 CSSStyleDeclaration get style native "SVGDefsElement_style_Getter"; |
| 1299 | 1299 |
| 1300 | 1300 |
| 1301 /** @domName SVGDefsElement.getPresentationAttribute */ | 1301 /** @domName SVGDefsElement.getPresentationAttribute */ |
| 1302 CSSValue getPresentationAttribute(String name) native "SVGDefsElement_getPrese
ntationAttribute_Callback"; | 1302 CSSValue getPresentationAttribute(String name) native "SVGDefsElement_getPrese
ntationAttribute_Callback"; |
| 1303 | 1303 |
| 1304 | 1304 |
| 1305 /** @domName SVGDefsElement.requiredExtensions */ | 1305 /** @domName SVGDefsElement.requiredExtensions */ |
| 1306 SVGStringList get requiredExtensions native "SVGDefsElement_requiredExtensions
_Getter"; | 1306 StringList get requiredExtensions native "SVGDefsElement_requiredExtensions_Ge
tter"; |
| 1307 | 1307 |
| 1308 | 1308 |
| 1309 /** @domName SVGDefsElement.requiredFeatures */ | 1309 /** @domName SVGDefsElement.requiredFeatures */ |
| 1310 SVGStringList get requiredFeatures native "SVGDefsElement_requiredFeatures_Get
ter"; | 1310 StringList get requiredFeatures native "SVGDefsElement_requiredFeatures_Getter
"; |
| 1311 | 1311 |
| 1312 | 1312 |
| 1313 /** @domName SVGDefsElement.systemLanguage */ | 1313 /** @domName SVGDefsElement.systemLanguage */ |
| 1314 SVGStringList get systemLanguage native "SVGDefsElement_systemLanguage_Getter"
; | 1314 StringList get systemLanguage native "SVGDefsElement_systemLanguage_Getter"; |
| 1315 | 1315 |
| 1316 | 1316 |
| 1317 /** @domName SVGDefsElement.hasExtension */ | 1317 /** @domName SVGDefsElement.hasExtension */ |
| 1318 bool hasExtension(String extension) native "SVGDefsElement_hasExtension_Callba
ck"; | 1318 bool hasExtension(String extension) native "SVGDefsElement_hasExtension_Callba
ck"; |
| 1319 | 1319 |
| 1320 | 1320 |
| 1321 /** @domName SVGDefsElement.transform */ | 1321 /** @domName SVGDefsElement.transform */ |
| 1322 SVGAnimatedTransformList get transform native "SVGDefsElement_transform_Getter
"; | 1322 AnimatedTransformList get transform native "SVGDefsElement_transform_Getter"; |
| 1323 | 1323 |
| 1324 } | 1324 } |
| 1325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1326 // for details. All rights reserved. Use of this source code is governed by a | 1326 // for details. All rights reserved. Use of this source code is governed by a |
| 1327 // BSD-style license that can be found in the LICENSE file. | 1327 // BSD-style license that can be found in the LICENSE file. |
| 1328 | 1328 |
| 1329 // WARNING: Do not edit - generated code. | 1329 // WARNING: Do not edit - generated code. |
| 1330 | 1330 |
| 1331 | 1331 |
| 1332 /// @domName SVGDescElement | 1332 /// @domName SVGDescElement |
| 1333 class SVGDescElement extends SVGElement implements SVGLangSpace, SVGStylable { | 1333 class DescElement extends SvgElement implements Stylable, LangSpace { |
| 1334 | 1334 |
| 1335 factory SVGDescElement() => _SVGElementFactoryProvider.createSVGElement_tag("d
esc"); | 1335 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); |
| 1336 SVGDescElement.internal(): super.internal(); | 1336 DescElement.internal(): super.internal(); |
| 1337 | 1337 |
| 1338 | 1338 |
| 1339 /** @domName SVGDescElement.xmllang */ | 1339 /** @domName SVGDescElement.xmllang */ |
| 1340 String get xmllang native "SVGDescElement_xmllang_Getter"; | 1340 String get xmllang native "SVGDescElement_xmllang_Getter"; |
| 1341 | 1341 |
| 1342 | 1342 |
| 1343 /** @domName SVGDescElement.xmllang */ | 1343 /** @domName SVGDescElement.xmllang */ |
| 1344 void set xmllang(String value) native "SVGDescElement_xmllang_Setter"; | 1344 void set xmllang(String value) native "SVGDescElement_xmllang_Setter"; |
| 1345 | 1345 |
| 1346 | 1346 |
| 1347 /** @domName SVGDescElement.xmlspace */ | 1347 /** @domName SVGDescElement.xmlspace */ |
| 1348 String get xmlspace native "SVGDescElement_xmlspace_Getter"; | 1348 String get xmlspace native "SVGDescElement_xmlspace_Getter"; |
| 1349 | 1349 |
| 1350 | 1350 |
| 1351 /** @domName SVGDescElement.xmlspace */ | 1351 /** @domName SVGDescElement.xmlspace */ |
| 1352 void set xmlspace(String value) native "SVGDescElement_xmlspace_Setter"; | 1352 void set xmlspace(String value) native "SVGDescElement_xmlspace_Setter"; |
| 1353 | 1353 |
| 1354 | 1354 |
| 1355 /** @domName SVGDescElement.className */ | 1355 /** @domName SVGDescElement.className */ |
| 1356 SVGAnimatedString get $dom_svgClassName native "SVGDescElement_className_Gette
r"; | 1356 AnimatedString get $dom_svgClassName native "SVGDescElement_className_Getter"; |
| 1357 | 1357 |
| 1358 | 1358 |
| 1359 /** @domName SVGDescElement.style */ | 1359 /** @domName SVGDescElement.style */ |
| 1360 CSSStyleDeclaration get style native "SVGDescElement_style_Getter"; | 1360 CSSStyleDeclaration get style native "SVGDescElement_style_Getter"; |
| 1361 | 1361 |
| 1362 | 1362 |
| 1363 /** @domName SVGDescElement.getPresentationAttribute */ | 1363 /** @domName SVGDescElement.getPresentationAttribute */ |
| 1364 CSSValue getPresentationAttribute(String name) native "SVGDescElement_getPrese
ntationAttribute_Callback"; | 1364 CSSValue getPresentationAttribute(String name) native "SVGDescElement_getPrese
ntationAttribute_Callback"; |
| 1365 | 1365 |
| 1366 } | 1366 } |
| 1367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1367 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1368 // for details. All rights reserved. Use of this source code is governed by a | 1368 // for details. All rights reserved. Use of this source code is governed by a |
| 1369 // BSD-style license that can be found in the LICENSE file. | 1369 // BSD-style license that can be found in the LICENSE file. |
| 1370 | 1370 |
| 1371 // WARNING: Do not edit - generated code. | 1371 // WARNING: Do not edit - generated code. |
| 1372 | 1372 |
| 1373 | 1373 |
| 1374 /// @domName SVGDocument | |
| 1375 class SVGDocument extends Document { | |
| 1376 SVGDocument.internal(): super.internal(); | |
| 1377 | |
| 1378 | |
| 1379 /** @domName SVGDocument.rootElement */ | |
| 1380 SVGSVGElement get rootElement native "SVGDocument_rootElement_Getter"; | |
| 1381 | |
| 1382 | |
| 1383 /** @domName SVGDocument.createEvent */ | |
| 1384 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb
ack"; | |
| 1385 | |
| 1386 } | |
| 1387 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 1388 // for details. All rights reserved. Use of this source code is governed by a | |
| 1389 // BSD-style license that can be found in the LICENSE file. | |
| 1390 | |
| 1391 | |
| 1392 class _AttributeClassSet extends CssClassSet { | |
| 1393 final Element _element; | |
| 1394 | |
| 1395 _AttributeClassSet(this._element); | |
| 1396 | |
| 1397 Set<String> readClasses() { | |
| 1398 var classname = _element.attributes['class']; | |
| 1399 | |
| 1400 Set<String> s = new Set<String>(); | |
| 1401 if (classname == null) { | |
| 1402 return s; | |
| 1403 } | |
| 1404 for (String name in classname.split(' ')) { | |
| 1405 String trimmed = name.trim(); | |
| 1406 if (!trimmed.isEmpty) { | |
| 1407 s.add(trimmed); | |
| 1408 } | |
| 1409 } | |
| 1410 return s; | |
| 1411 } | |
| 1412 | |
| 1413 void writeClasses(Set s) { | |
| 1414 List list = new List.from(s); | |
| 1415 _element.attributes['class'] = Strings.join(list, ' '); | |
| 1416 } | |
| 1417 } | |
| 1418 | |
| 1419 class SVGElement extends Element { | |
| 1420 factory SVGElement.tag(String tag) => | |
| 1421 _SVGElementFactoryProvider.createSVGElement_tag(tag); | |
| 1422 factory SVGElement.svg(String svg) => | |
| 1423 _SVGElementFactoryProvider.createSVGElement_svg(svg); | |
| 1424 | |
| 1425 _AttributeClassSet _cssClassSet; | |
| 1426 CssClassSet get classes { | |
| 1427 if (_cssClassSet == null) { | |
| 1428 _cssClassSet = new _AttributeClassSet(this); | |
| 1429 } | |
| 1430 return _cssClassSet; | |
| 1431 } | |
| 1432 | |
| 1433 List<Element> get elements => new FilteredElementList(this); | |
| 1434 | |
| 1435 void set elements(Collection<Element> value) { | |
| 1436 final elements = this.elements; | |
| 1437 elements.clear(); | |
| 1438 elements.addAll(value); | |
| 1439 } | |
| 1440 | |
| 1441 String get outerHTML { | |
| 1442 final container = new Element.tag("div"); | |
| 1443 final SVGElement cloned = this.clone(true); | |
| 1444 container.elements.add(cloned); | |
| 1445 return container.innerHTML; | |
| 1446 } | |
| 1447 | |
| 1448 String get innerHTML { | |
| 1449 final container = new Element.tag("div"); | |
| 1450 final SVGElement cloned = this.clone(true); | |
| 1451 container.elements.addAll(cloned.elements); | |
| 1452 return container.innerHTML; | |
| 1453 } | |
| 1454 | |
| 1455 void set innerHTML(String svg) { | |
| 1456 final container = new Element.tag("div"); | |
| 1457 // Wrap the SVG string in <svg> so that SVGElements are created, rather than | |
| 1458 // HTMLElements. | |
| 1459 container.innerHTML = '<svg version="1.1">$svg</svg>'; | |
| 1460 this.elements = container.elements[0].elements; | |
| 1461 } | |
| 1462 | |
| 1463 SVGElement.internal(): super.internal(); | |
| 1464 | |
| 1465 | |
| 1466 /** @domName SVGElement.id */ | |
| 1467 String get id native "SVGElement_id_Getter"; | |
| 1468 | |
| 1469 | |
| 1470 /** @domName SVGElement.id */ | |
| 1471 void set id(String value) native "SVGElement_id_Setter"; | |
| 1472 | |
| 1473 | |
| 1474 /** @domName SVGElement.ownerSVGElement */ | |
| 1475 SVGSVGElement get ownerSVGElement native "SVGElement_ownerSVGElement_Getter"; | |
| 1476 | |
| 1477 | |
| 1478 /** @domName SVGElement.viewportElement */ | |
| 1479 SVGElement get viewportElement native "SVGElement_viewportElement_Getter"; | |
| 1480 | |
| 1481 | |
| 1482 /** @domName SVGElement.xmlbase */ | |
| 1483 String get xmlbase native "SVGElement_xmlbase_Getter"; | |
| 1484 | |
| 1485 | |
| 1486 /** @domName SVGElement.xmlbase */ | |
| 1487 void set xmlbase(String value) native "SVGElement_xmlbase_Setter"; | |
| 1488 | |
| 1489 } | |
| 1490 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 1491 // for details. All rights reserved. Use of this source code is governed by a | |
| 1492 // BSD-style license that can be found in the LICENSE file. | |
| 1493 | |
| 1494 // WARNING: Do not edit - generated code. | |
| 1495 | |
| 1496 | |
| 1497 /// @domName SVGElementInstance | 1374 /// @domName SVGElementInstance |
| 1498 class SVGElementInstance extends EventTarget { | 1375 class ElementInstance extends EventTarget { |
| 1499 SVGElementInstance.internal(): super.internal(); | 1376 ElementInstance.internal(): super.internal(); |
| 1500 | 1377 |
| 1501 /** | 1378 /** |
| 1502 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve
ntTarget.dispatchEvent | 1379 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve
ntTarget.dispatchEvent |
| 1503 */ | 1380 */ |
| 1504 SVGElementInstanceEvents get on => | 1381 ElementInstanceEvents get on => |
| 1505 new SVGElementInstanceEvents(this); | 1382 new ElementInstanceEvents(this); |
| 1506 | 1383 |
| 1507 | 1384 |
| 1508 /** @domName SVGElementInstance.childNodes */ | 1385 /** @domName SVGElementInstance.childNodes */ |
| 1509 List<SVGElementInstance> get childNodes native "SVGElementInstance_childNodes_
Getter"; | 1386 List<ElementInstance> get childNodes native "SVGElementInstance_childNodes_Get
ter"; |
| 1510 | 1387 |
| 1511 | 1388 |
| 1512 /** @domName SVGElementInstance.correspondingElement */ | 1389 /** @domName SVGElementInstance.correspondingElement */ |
| 1513 SVGElement get correspondingElement native "SVGElementInstance_correspondingEl
ement_Getter"; | 1390 SvgElement get correspondingElement native "SVGElementInstance_correspondingEl
ement_Getter"; |
| 1514 | 1391 |
| 1515 | 1392 |
| 1516 /** @domName SVGElementInstance.correspondingUseElement */ | 1393 /** @domName SVGElementInstance.correspondingUseElement */ |
| 1517 SVGUseElement get correspondingUseElement native "SVGElementInstance_correspon
dingUseElement_Getter"; | 1394 UseElement get correspondingUseElement native "SVGElementInstance_correspondin
gUseElement_Getter"; |
| 1518 | 1395 |
| 1519 | 1396 |
| 1520 /** @domName SVGElementInstance.firstChild */ | 1397 /** @domName SVGElementInstance.firstChild */ |
| 1521 SVGElementInstance get firstChild native "SVGElementInstance_firstChild_Getter
"; | 1398 ElementInstance get firstChild native "SVGElementInstance_firstChild_Getter"; |
| 1522 | 1399 |
| 1523 | 1400 |
| 1524 /** @domName SVGElementInstance.lastChild */ | 1401 /** @domName SVGElementInstance.lastChild */ |
| 1525 SVGElementInstance get lastChild native "SVGElementInstance_lastChild_Getter"; | 1402 ElementInstance get lastChild native "SVGElementInstance_lastChild_Getter"; |
| 1526 | 1403 |
| 1527 | 1404 |
| 1528 /** @domName SVGElementInstance.nextSibling */ | 1405 /** @domName SVGElementInstance.nextSibling */ |
| 1529 SVGElementInstance get nextSibling native "SVGElementInstance_nextSibling_Gett
er"; | 1406 ElementInstance get nextSibling native "SVGElementInstance_nextSibling_Getter"
; |
| 1530 | 1407 |
| 1531 | 1408 |
| 1532 /** @domName SVGElementInstance.parentNode */ | 1409 /** @domName SVGElementInstance.parentNode */ |
| 1533 SVGElementInstance get parentNode native "SVGElementInstance_parentNode_Getter
"; | 1410 ElementInstance get parentNode native "SVGElementInstance_parentNode_Getter"; |
| 1534 | 1411 |
| 1535 | 1412 |
| 1536 /** @domName SVGElementInstance.previousSibling */ | 1413 /** @domName SVGElementInstance.previousSibling */ |
| 1537 SVGElementInstance get previousSibling native "SVGElementInstance_previousSibl
ing_Getter"; | 1414 ElementInstance get previousSibling native "SVGElementInstance_previousSibling
_Getter"; |
| 1538 | 1415 |
| 1539 } | 1416 } |
| 1540 | 1417 |
| 1541 class SVGElementInstanceEvents extends Events { | 1418 class ElementInstanceEvents extends Events { |
| 1542 SVGElementInstanceEvents(EventTarget _ptr) : super(_ptr); | 1419 ElementInstanceEvents(EventTarget _ptr) : super(_ptr); |
| 1543 | 1420 |
| 1544 EventListenerList get abort => this['abort']; | 1421 EventListenerList get abort => this['abort']; |
| 1545 | 1422 |
| 1546 EventListenerList get beforeCopy => this['beforecopy']; | 1423 EventListenerList get beforeCopy => this['beforecopy']; |
| 1547 | 1424 |
| 1548 EventListenerList get beforeCut => this['beforecut']; | 1425 EventListenerList get beforeCut => this['beforecut']; |
| 1549 | 1426 |
| 1550 EventListenerList get beforePaste => this['beforepaste']; | 1427 EventListenerList get beforePaste => this['beforepaste']; |
| 1551 | 1428 |
| 1552 EventListenerList get blur => this['blur']; | 1429 EventListenerList get blur => this['blur']; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1622 EventListenerList get unload => this['unload']; | 1499 EventListenerList get unload => this['unload']; |
| 1623 } | 1500 } |
| 1624 // 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 |
| 1625 // 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 |
| 1626 // BSD-style license that can be found in the LICENSE file. | 1503 // BSD-style license that can be found in the LICENSE file. |
| 1627 | 1504 |
| 1628 // WARNING: Do not edit - generated code. | 1505 // WARNING: Do not edit - generated code. |
| 1629 | 1506 |
| 1630 | 1507 |
| 1631 /// @domName SVGEllipseElement | 1508 /// @domName SVGEllipseElement |
| 1632 class SVGEllipseElement extends SVGElement implements SVGLangSpace, SVGStylable,
SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 1509 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl
e, ExternalResourcesRequired, LangSpace { |
| 1633 | 1510 |
| 1634 factory SVGEllipseElement() => _SVGElementFactoryProvider.createSVGElement_tag
("ellipse"); | 1511 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
| 1635 SVGEllipseElement.internal(): super.internal(); | 1512 EllipseElement.internal(): super.internal(); |
| 1636 | 1513 |
| 1637 | 1514 |
| 1638 /** @domName SVGEllipseElement.cx */ | 1515 /** @domName SVGEllipseElement.cx */ |
| 1639 SVGAnimatedLength get cx native "SVGEllipseElement_cx_Getter"; | 1516 AnimatedLength get cx native "SVGEllipseElement_cx_Getter"; |
| 1640 | 1517 |
| 1641 | 1518 |
| 1642 /** @domName SVGEllipseElement.cy */ | 1519 /** @domName SVGEllipseElement.cy */ |
| 1643 SVGAnimatedLength get cy native "SVGEllipseElement_cy_Getter"; | 1520 AnimatedLength get cy native "SVGEllipseElement_cy_Getter"; |
| 1644 | 1521 |
| 1645 | 1522 |
| 1646 /** @domName SVGEllipseElement.rx */ | 1523 /** @domName SVGEllipseElement.rx */ |
| 1647 SVGAnimatedLength get rx native "SVGEllipseElement_rx_Getter"; | 1524 AnimatedLength get rx native "SVGEllipseElement_rx_Getter"; |
| 1648 | 1525 |
| 1649 | 1526 |
| 1650 /** @domName SVGEllipseElement.ry */ | 1527 /** @domName SVGEllipseElement.ry */ |
| 1651 SVGAnimatedLength get ry native "SVGEllipseElement_ry_Getter"; | 1528 AnimatedLength get ry native "SVGEllipseElement_ry_Getter"; |
| 1652 | 1529 |
| 1653 | 1530 |
| 1654 /** @domName SVGEllipseElement.externalResourcesRequired */ | 1531 /** @domName SVGEllipseElement.externalResourcesRequired */ |
| 1655 SVGAnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_ext
ernalResourcesRequired_Getter"; | 1532 AnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_extern
alResourcesRequired_Getter"; |
| 1656 | 1533 |
| 1657 | 1534 |
| 1658 /** @domName SVGEllipseElement.xmllang */ | 1535 /** @domName SVGEllipseElement.xmllang */ |
| 1659 String get xmllang native "SVGEllipseElement_xmllang_Getter"; | 1536 String get xmllang native "SVGEllipseElement_xmllang_Getter"; |
| 1660 | 1537 |
| 1661 | 1538 |
| 1662 /** @domName SVGEllipseElement.xmllang */ | 1539 /** @domName SVGEllipseElement.xmllang */ |
| 1663 void set xmllang(String value) native "SVGEllipseElement_xmllang_Setter"; | 1540 void set xmllang(String value) native "SVGEllipseElement_xmllang_Setter"; |
| 1664 | 1541 |
| 1665 | 1542 |
| 1666 /** @domName SVGEllipseElement.xmlspace */ | 1543 /** @domName SVGEllipseElement.xmlspace */ |
| 1667 String get xmlspace native "SVGEllipseElement_xmlspace_Getter"; | 1544 String get xmlspace native "SVGEllipseElement_xmlspace_Getter"; |
| 1668 | 1545 |
| 1669 | 1546 |
| 1670 /** @domName SVGEllipseElement.xmlspace */ | 1547 /** @domName SVGEllipseElement.xmlspace */ |
| 1671 void set xmlspace(String value) native "SVGEllipseElement_xmlspace_Setter"; | 1548 void set xmlspace(String value) native "SVGEllipseElement_xmlspace_Setter"; |
| 1672 | 1549 |
| 1673 | 1550 |
| 1674 /** @domName SVGEllipseElement.farthestViewportElement */ | 1551 /** @domName SVGEllipseElement.farthestViewportElement */ |
| 1675 SVGElement get farthestViewportElement native "SVGEllipseElement_farthestViewp
ortElement_Getter"; | 1552 SvgElement get farthestViewportElement native "SVGEllipseElement_farthestViewp
ortElement_Getter"; |
| 1676 | 1553 |
| 1677 | 1554 |
| 1678 /** @domName SVGEllipseElement.nearestViewportElement */ | 1555 /** @domName SVGEllipseElement.nearestViewportElement */ |
| 1679 SVGElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor
tElement_Getter"; | 1556 SvgElement get nearestViewportElement native "SVGEllipseElement_nearestViewpor
tElement_Getter"; |
| 1680 | 1557 |
| 1681 | 1558 |
| 1682 /** @domName SVGEllipseElement.getBBox */ | 1559 /** @domName SVGEllipseElement.getBBox */ |
| 1683 SVGRect getBBox() native "SVGEllipseElement_getBBox_Callback"; | 1560 Rect getBBox() native "SVGEllipseElement_getBBox_Callback"; |
| 1684 | 1561 |
| 1685 | 1562 |
| 1686 /** @domName SVGEllipseElement.getCTM */ | 1563 /** @domName SVGEllipseElement.getCTM */ |
| 1687 SVGMatrix getCTM() native "SVGEllipseElement_getCTM_Callback"; | 1564 Matrix getCTM() native "SVGEllipseElement_getCTM_Callback"; |
| 1688 | 1565 |
| 1689 | 1566 |
| 1690 /** @domName SVGEllipseElement.getScreenCTM */ | 1567 /** @domName SVGEllipseElement.getScreenCTM */ |
| 1691 SVGMatrix getScreenCTM() native "SVGEllipseElement_getScreenCTM_Callback"; | 1568 Matrix getScreenCTM() native "SVGEllipseElement_getScreenCTM_Callback"; |
| 1692 | 1569 |
| 1693 | 1570 |
| 1694 /** @domName SVGEllipseElement.getTransformToElement */ | 1571 /** @domName SVGEllipseElement.getTransformToElement */ |
| 1695 SVGMatrix getTransformToElement(SVGElement element) native "SVGEllipseElement_
getTransformToElement_Callback"; | 1572 Matrix getTransformToElement(SvgElement element) native "SVGEllipseElement_get
TransformToElement_Callback"; |
| 1696 | 1573 |
| 1697 | 1574 |
| 1698 /** @domName SVGEllipseElement.className */ | 1575 /** @domName SVGEllipseElement.className */ |
| 1699 SVGAnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Ge
tter"; | 1576 AnimatedString get $dom_svgClassName native "SVGEllipseElement_className_Gette
r"; |
| 1700 | 1577 |
| 1701 | 1578 |
| 1702 /** @domName SVGEllipseElement.style */ | 1579 /** @domName SVGEllipseElement.style */ |
| 1703 CSSStyleDeclaration get style native "SVGEllipseElement_style_Getter"; | 1580 CSSStyleDeclaration get style native "SVGEllipseElement_style_Getter"; |
| 1704 | 1581 |
| 1705 | 1582 |
| 1706 /** @domName SVGEllipseElement.getPresentationAttribute */ | 1583 /** @domName SVGEllipseElement.getPresentationAttribute */ |
| 1707 CSSValue getPresentationAttribute(String name) native "SVGEllipseElement_getPr
esentationAttribute_Callback"; | 1584 CSSValue getPresentationAttribute(String name) native "SVGEllipseElement_getPr
esentationAttribute_Callback"; |
| 1708 | 1585 |
| 1709 | 1586 |
| 1710 /** @domName SVGEllipseElement.requiredExtensions */ | 1587 /** @domName SVGEllipseElement.requiredExtensions */ |
| 1711 SVGStringList get requiredExtensions native "SVGEllipseElement_requiredExtensi
ons_Getter"; | 1588 StringList get requiredExtensions native "SVGEllipseElement_requiredExtensions
_Getter"; |
| 1712 | 1589 |
| 1713 | 1590 |
| 1714 /** @domName SVGEllipseElement.requiredFeatures */ | 1591 /** @domName SVGEllipseElement.requiredFeatures */ |
| 1715 SVGStringList get requiredFeatures native "SVGEllipseElement_requiredFeatures_
Getter"; | 1592 StringList get requiredFeatures native "SVGEllipseElement_requiredFeatures_Get
ter"; |
| 1716 | 1593 |
| 1717 | 1594 |
| 1718 /** @domName SVGEllipseElement.systemLanguage */ | 1595 /** @domName SVGEllipseElement.systemLanguage */ |
| 1719 SVGStringList get systemLanguage native "SVGEllipseElement_systemLanguage_Gett
er"; | 1596 StringList get systemLanguage native "SVGEllipseElement_systemLanguage_Getter"
; |
| 1720 | 1597 |
| 1721 | 1598 |
| 1722 /** @domName SVGEllipseElement.hasExtension */ | 1599 /** @domName SVGEllipseElement.hasExtension */ |
| 1723 bool hasExtension(String extension) native "SVGEllipseElement_hasExtension_Cal
lback"; | 1600 bool hasExtension(String extension) native "SVGEllipseElement_hasExtension_Cal
lback"; |
| 1724 | 1601 |
| 1725 | 1602 |
| 1726 /** @domName SVGEllipseElement.transform */ | 1603 /** @domName SVGEllipseElement.transform */ |
| 1727 SVGAnimatedTransformList get transform native "SVGEllipseElement_transform_Get
ter"; | 1604 AnimatedTransformList get transform native "SVGEllipseElement_transform_Getter
"; |
| 1728 | 1605 |
| 1729 } | 1606 } |
| 1730 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1731 // for details. All rights reserved. Use of this source code is governed by a | 1608 // for details. All rights reserved. Use of this source code is governed by a |
| 1732 // BSD-style license that can be found in the LICENSE file. | 1609 // BSD-style license that can be found in the LICENSE file. |
| 1733 | 1610 |
| 1734 // WARNING: Do not edit - generated code. | 1611 // WARNING: Do not edit - generated code. |
| 1735 | 1612 |
| 1736 | 1613 |
| 1737 /// @domName SVGException | 1614 /// @domName SVGException |
| 1738 class SVGException extends NativeFieldWrapperClass1 { | 1615 class Exception extends NativeFieldWrapperClass1 { |
| 1739 SVGException.internal(); | 1616 Exception.internal(); |
| 1740 | 1617 |
| 1741 static const int SVG_INVALID_VALUE_ERR = 1; | 1618 static const int SVG_INVALID_VALUE_ERR = 1; |
| 1742 | 1619 |
| 1743 static const int SVG_MATRIX_NOT_INVERTABLE = 2; | 1620 static const int SVG_MATRIX_NOT_INVERTABLE = 2; |
| 1744 | 1621 |
| 1745 static const int SVG_WRONG_TYPE_ERR = 0; | 1622 static const int SVG_WRONG_TYPE_ERR = 0; |
| 1746 | 1623 |
| 1747 | 1624 |
| 1748 /** @domName SVGException.code */ | 1625 /** @domName SVGException.code */ |
| 1749 int get code native "SVGException_code_Getter"; | 1626 int get code native "SVGException_code_Getter"; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1762 | 1639 |
| 1763 } | 1640 } |
| 1764 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1641 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1765 // for details. All rights reserved. Use of this source code is governed by a | 1642 // for details. All rights reserved. Use of this source code is governed by a |
| 1766 // BSD-style license that can be found in the LICENSE file. | 1643 // BSD-style license that can be found in the LICENSE file. |
| 1767 | 1644 |
| 1768 // WARNING: Do not edit - generated code. | 1645 // WARNING: Do not edit - generated code. |
| 1769 | 1646 |
| 1770 | 1647 |
| 1771 /// @domName SVGExternalResourcesRequired | 1648 /// @domName SVGExternalResourcesRequired |
| 1772 class SVGExternalResourcesRequired extends NativeFieldWrapperClass1 { | 1649 class ExternalResourcesRequired extends NativeFieldWrapperClass1 { |
| 1773 SVGExternalResourcesRequired.internal(); | 1650 ExternalResourcesRequired.internal(); |
| 1774 | 1651 |
| 1775 | 1652 |
| 1776 /** @domName SVGExternalResourcesRequired.externalResourcesRequired */ | 1653 /** @domName SVGExternalResourcesRequired.externalResourcesRequired */ |
| 1777 SVGAnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesR
equired_externalResourcesRequired_Getter"; | 1654 AnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesRequ
ired_externalResourcesRequired_Getter"; |
| 1778 | 1655 |
| 1779 } | 1656 } |
| 1780 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1657 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1781 // for details. All rights reserved. Use of this source code is governed by a | 1658 // for details. All rights reserved. Use of this source code is governed by a |
| 1782 // BSD-style license that can be found in the LICENSE file. | 1659 // BSD-style license that can be found in the LICENSE file. |
| 1783 | 1660 |
| 1784 // WARNING: Do not edit - generated code. | 1661 // WARNING: Do not edit - generated code. |
| 1785 | 1662 |
| 1786 | 1663 |
| 1787 /// @domName SVGFEBlendElement | 1664 /// @domName SVGFEBlendElement |
| 1788 class SVGFEBlendElement extends SVGElement implements SVGFilterPrimitiveStandard
Attributes { | 1665 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 1789 SVGFEBlendElement.internal(): super.internal(); | 1666 FEBlendElement.internal(): super.internal(); |
| 1790 | 1667 |
| 1791 static const int SVG_FEBLEND_MODE_DARKEN = 4; | 1668 static const int SVG_FEBLEND_MODE_DARKEN = 4; |
| 1792 | 1669 |
| 1793 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; | 1670 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; |
| 1794 | 1671 |
| 1795 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; | 1672 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; |
| 1796 | 1673 |
| 1797 static const int SVG_FEBLEND_MODE_NORMAL = 1; | 1674 static const int SVG_FEBLEND_MODE_NORMAL = 1; |
| 1798 | 1675 |
| 1799 static const int SVG_FEBLEND_MODE_SCREEN = 3; | 1676 static const int SVG_FEBLEND_MODE_SCREEN = 3; |
| 1800 | 1677 |
| 1801 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; | 1678 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 1802 | 1679 |
| 1803 | 1680 |
| 1804 /** @domName SVGFEBlendElement.in1 */ | 1681 /** @domName SVGFEBlendElement.in1 */ |
| 1805 SVGAnimatedString get in1 native "SVGFEBlendElement_in1_Getter"; | 1682 AnimatedString get in1 native "SVGFEBlendElement_in1_Getter"; |
| 1806 | 1683 |
| 1807 | 1684 |
| 1808 /** @domName SVGFEBlendElement.in2 */ | 1685 /** @domName SVGFEBlendElement.in2 */ |
| 1809 SVGAnimatedString get in2 native "SVGFEBlendElement_in2_Getter"; | 1686 AnimatedString get in2 native "SVGFEBlendElement_in2_Getter"; |
| 1810 | 1687 |
| 1811 | 1688 |
| 1812 /** @domName SVGFEBlendElement.mode */ | 1689 /** @domName SVGFEBlendElement.mode */ |
| 1813 SVGAnimatedEnumeration get mode native "SVGFEBlendElement_mode_Getter"; | 1690 AnimatedEnumeration get mode native "SVGFEBlendElement_mode_Getter"; |
| 1814 | 1691 |
| 1815 | 1692 |
| 1816 /** @domName SVGFEBlendElement.height */ | 1693 /** @domName SVGFEBlendElement.height */ |
| 1817 SVGAnimatedLength get height native "SVGFEBlendElement_height_Getter"; | 1694 AnimatedLength get height native "SVGFEBlendElement_height_Getter"; |
| 1818 | 1695 |
| 1819 | 1696 |
| 1820 /** @domName SVGFEBlendElement.result */ | 1697 /** @domName SVGFEBlendElement.result */ |
| 1821 SVGAnimatedString get result native "SVGFEBlendElement_result_Getter"; | 1698 AnimatedString get result native "SVGFEBlendElement_result_Getter"; |
| 1822 | 1699 |
| 1823 | 1700 |
| 1824 /** @domName SVGFEBlendElement.width */ | 1701 /** @domName SVGFEBlendElement.width */ |
| 1825 SVGAnimatedLength get width native "SVGFEBlendElement_width_Getter"; | 1702 AnimatedLength get width native "SVGFEBlendElement_width_Getter"; |
| 1826 | 1703 |
| 1827 | 1704 |
| 1828 /** @domName SVGFEBlendElement.x */ | 1705 /** @domName SVGFEBlendElement.x */ |
| 1829 SVGAnimatedLength get x native "SVGFEBlendElement_x_Getter"; | 1706 AnimatedLength get x native "SVGFEBlendElement_x_Getter"; |
| 1830 | 1707 |
| 1831 | 1708 |
| 1832 /** @domName SVGFEBlendElement.y */ | 1709 /** @domName SVGFEBlendElement.y */ |
| 1833 SVGAnimatedLength get y native "SVGFEBlendElement_y_Getter"; | 1710 AnimatedLength get y native "SVGFEBlendElement_y_Getter"; |
| 1834 | 1711 |
| 1835 | 1712 |
| 1836 /** @domName SVGFEBlendElement.className */ | 1713 /** @domName SVGFEBlendElement.className */ |
| 1837 SVGAnimatedString get $dom_svgClassName native "SVGFEBlendElement_className_Ge
tter"; | 1714 AnimatedString get $dom_svgClassName native "SVGFEBlendElement_className_Gette
r"; |
| 1838 | 1715 |
| 1839 | 1716 |
| 1840 /** @domName SVGFEBlendElement.style */ | 1717 /** @domName SVGFEBlendElement.style */ |
| 1841 CSSStyleDeclaration get style native "SVGFEBlendElement_style_Getter"; | 1718 CSSStyleDeclaration get style native "SVGFEBlendElement_style_Getter"; |
| 1842 | 1719 |
| 1843 | 1720 |
| 1844 /** @domName SVGFEBlendElement.getPresentationAttribute */ | 1721 /** @domName SVGFEBlendElement.getPresentationAttribute */ |
| 1845 CSSValue getPresentationAttribute(String name) native "SVGFEBlendElement_getPr
esentationAttribute_Callback"; | 1722 CSSValue getPresentationAttribute(String name) native "SVGFEBlendElement_getPr
esentationAttribute_Callback"; |
| 1846 | 1723 |
| 1847 } | 1724 } |
| 1848 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1725 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1849 // for details. All rights reserved. Use of this source code is governed by a | 1726 // for details. All rights reserved. Use of this source code is governed by a |
| 1850 // BSD-style license that can be found in the LICENSE file. | 1727 // BSD-style license that can be found in the LICENSE file. |
| 1851 | 1728 |
| 1852 // WARNING: Do not edit - generated code. | 1729 // WARNING: Do not edit - generated code. |
| 1853 | 1730 |
| 1854 | 1731 |
| 1855 /// @domName SVGFEColorMatrixElement | 1732 /// @domName SVGFEColorMatrixElement |
| 1856 class SVGFEColorMatrixElement extends SVGElement implements SVGFilterPrimitiveSt
andardAttributes { | 1733 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
| 1857 SVGFEColorMatrixElement.internal(): super.internal(); | 1734 FEColorMatrixElement.internal(): super.internal(); |
| 1858 | 1735 |
| 1859 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; | 1736 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
| 1860 | 1737 |
| 1861 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; | 1738 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
| 1862 | 1739 |
| 1863 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; | 1740 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
| 1864 | 1741 |
| 1865 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; | 1742 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 1866 | 1743 |
| 1867 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; | 1744 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 1868 | 1745 |
| 1869 | 1746 |
| 1870 /** @domName SVGFEColorMatrixElement.in1 */ | 1747 /** @domName SVGFEColorMatrixElement.in1 */ |
| 1871 SVGAnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter"; | 1748 AnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter"; |
| 1872 | 1749 |
| 1873 | 1750 |
| 1874 /** @domName SVGFEColorMatrixElement.type */ | 1751 /** @domName SVGFEColorMatrixElement.type */ |
| 1875 SVGAnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter"; | 1752 AnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter"; |
| 1876 | 1753 |
| 1877 | 1754 |
| 1878 /** @domName SVGFEColorMatrixElement.values */ | 1755 /** @domName SVGFEColorMatrixElement.values */ |
| 1879 SVGAnimatedNumberList get values native "SVGFEColorMatrixElement_values_Getter
"; | 1756 AnimatedNumberList get values native "SVGFEColorMatrixElement_values_Getter"; |
| 1880 | 1757 |
| 1881 | 1758 |
| 1882 /** @domName SVGFEColorMatrixElement.height */ | 1759 /** @domName SVGFEColorMatrixElement.height */ |
| 1883 SVGAnimatedLength get height native "SVGFEColorMatrixElement_height_Getter"; | 1760 AnimatedLength get height native "SVGFEColorMatrixElement_height_Getter"; |
| 1884 | 1761 |
| 1885 | 1762 |
| 1886 /** @domName SVGFEColorMatrixElement.result */ | 1763 /** @domName SVGFEColorMatrixElement.result */ |
| 1887 SVGAnimatedString get result native "SVGFEColorMatrixElement_result_Getter"; | 1764 AnimatedString get result native "SVGFEColorMatrixElement_result_Getter"; |
| 1888 | 1765 |
| 1889 | 1766 |
| 1890 /** @domName SVGFEColorMatrixElement.width */ | 1767 /** @domName SVGFEColorMatrixElement.width */ |
| 1891 SVGAnimatedLength get width native "SVGFEColorMatrixElement_width_Getter"; | 1768 AnimatedLength get width native "SVGFEColorMatrixElement_width_Getter"; |
| 1892 | 1769 |
| 1893 | 1770 |
| 1894 /** @domName SVGFEColorMatrixElement.x */ | 1771 /** @domName SVGFEColorMatrixElement.x */ |
| 1895 SVGAnimatedLength get x native "SVGFEColorMatrixElement_x_Getter"; | 1772 AnimatedLength get x native "SVGFEColorMatrixElement_x_Getter"; |
| 1896 | 1773 |
| 1897 | 1774 |
| 1898 /** @domName SVGFEColorMatrixElement.y */ | 1775 /** @domName SVGFEColorMatrixElement.y */ |
| 1899 SVGAnimatedLength get y native "SVGFEColorMatrixElement_y_Getter"; | 1776 AnimatedLength get y native "SVGFEColorMatrixElement_y_Getter"; |
| 1900 | 1777 |
| 1901 | 1778 |
| 1902 /** @domName SVGFEColorMatrixElement.className */ | 1779 /** @domName SVGFEColorMatrixElement.className */ |
| 1903 SVGAnimatedString get $dom_svgClassName native "SVGFEColorMatrixElement_classN
ame_Getter"; | 1780 AnimatedString get $dom_svgClassName native "SVGFEColorMatrixElement_className
_Getter"; |
| 1904 | 1781 |
| 1905 | 1782 |
| 1906 /** @domName SVGFEColorMatrixElement.style */ | 1783 /** @domName SVGFEColorMatrixElement.style */ |
| 1907 CSSStyleDeclaration get style native "SVGFEColorMatrixElement_style_Getter"; | 1784 CSSStyleDeclaration get style native "SVGFEColorMatrixElement_style_Getter"; |
| 1908 | 1785 |
| 1909 | 1786 |
| 1910 /** @domName SVGFEColorMatrixElement.getPresentationAttribute */ | 1787 /** @domName SVGFEColorMatrixElement.getPresentationAttribute */ |
| 1911 CSSValue getPresentationAttribute(String name) native "SVGFEColorMatrixElement
_getPresentationAttribute_Callback"; | 1788 CSSValue getPresentationAttribute(String name) native "SVGFEColorMatrixElement
_getPresentationAttribute_Callback"; |
| 1912 | 1789 |
| 1913 } | 1790 } |
| 1914 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1791 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1915 // for details. All rights reserved. Use of this source code is governed by a | 1792 // for details. All rights reserved. Use of this source code is governed by a |
| 1916 // BSD-style license that can be found in the LICENSE file. | 1793 // BSD-style license that can be found in the LICENSE file. |
| 1917 | 1794 |
| 1918 // WARNING: Do not edit - generated code. | 1795 // WARNING: Do not edit - generated code. |
| 1919 | 1796 |
| 1920 | 1797 |
| 1921 /// @domName SVGFEComponentTransferElement | 1798 /// @domName SVGFEComponentTransferElement |
| 1922 class SVGFEComponentTransferElement extends SVGElement implements SVGFilterPrimi
tiveStandardAttributes { | 1799 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
| 1923 SVGFEComponentTransferElement.internal(): super.internal(); | 1800 FEComponentTransferElement.internal(): super.internal(); |
| 1924 | 1801 |
| 1925 | 1802 |
| 1926 /** @domName SVGFEComponentTransferElement.in1 */ | 1803 /** @domName SVGFEComponentTransferElement.in1 */ |
| 1927 SVGAnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter"; | 1804 AnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter"; |
| 1928 | 1805 |
| 1929 | 1806 |
| 1930 /** @domName SVGFEComponentTransferElement.height */ | 1807 /** @domName SVGFEComponentTransferElement.height */ |
| 1931 SVGAnimatedLength get height native "SVGFEComponentTransferElement_height_Gett
er"; | 1808 AnimatedLength get height native "SVGFEComponentTransferElement_height_Getter"
; |
| 1932 | 1809 |
| 1933 | 1810 |
| 1934 /** @domName SVGFEComponentTransferElement.result */ | 1811 /** @domName SVGFEComponentTransferElement.result */ |
| 1935 SVGAnimatedString get result native "SVGFEComponentTransferElement_result_Gett
er"; | 1812 AnimatedString get result native "SVGFEComponentTransferElement_result_Getter"
; |
| 1936 | 1813 |
| 1937 | 1814 |
| 1938 /** @domName SVGFEComponentTransferElement.width */ | 1815 /** @domName SVGFEComponentTransferElement.width */ |
| 1939 SVGAnimatedLength get width native "SVGFEComponentTransferElement_width_Getter
"; | 1816 AnimatedLength get width native "SVGFEComponentTransferElement_width_Getter"; |
| 1940 | 1817 |
| 1941 | 1818 |
| 1942 /** @domName SVGFEComponentTransferElement.x */ | 1819 /** @domName SVGFEComponentTransferElement.x */ |
| 1943 SVGAnimatedLength get x native "SVGFEComponentTransferElement_x_Getter"; | 1820 AnimatedLength get x native "SVGFEComponentTransferElement_x_Getter"; |
| 1944 | 1821 |
| 1945 | 1822 |
| 1946 /** @domName SVGFEComponentTransferElement.y */ | 1823 /** @domName SVGFEComponentTransferElement.y */ |
| 1947 SVGAnimatedLength get y native "SVGFEComponentTransferElement_y_Getter"; | 1824 AnimatedLength get y native "SVGFEComponentTransferElement_y_Getter"; |
| 1948 | 1825 |
| 1949 | 1826 |
| 1950 /** @domName SVGFEComponentTransferElement.className */ | 1827 /** @domName SVGFEComponentTransferElement.className */ |
| 1951 SVGAnimatedString get $dom_svgClassName native "SVGFEComponentTransferElement_
className_Getter"; | 1828 AnimatedString get $dom_svgClassName native "SVGFEComponentTransferElement_cla
ssName_Getter"; |
| 1952 | 1829 |
| 1953 | 1830 |
| 1954 /** @domName SVGFEComponentTransferElement.style */ | 1831 /** @domName SVGFEComponentTransferElement.style */ |
| 1955 CSSStyleDeclaration get style native "SVGFEComponentTransferElement_style_Gett
er"; | 1832 CSSStyleDeclaration get style native "SVGFEComponentTransferElement_style_Gett
er"; |
| 1956 | 1833 |
| 1957 | 1834 |
| 1958 /** @domName SVGFEComponentTransferElement.getPresentationAttribute */ | 1835 /** @domName SVGFEComponentTransferElement.getPresentationAttribute */ |
| 1959 CSSValue getPresentationAttribute(String name) native "SVGFEComponentTransferE
lement_getPresentationAttribute_Callback"; | 1836 CSSValue getPresentationAttribute(String name) native "SVGFEComponentTransferE
lement_getPresentationAttribute_Callback"; |
| 1960 | 1837 |
| 1961 } | 1838 } |
| 1962 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1839 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1963 // for details. All rights reserved. Use of this source code is governed by a | 1840 // for details. All rights reserved. Use of this source code is governed by a |
| 1964 // BSD-style license that can be found in the LICENSE file. | 1841 // BSD-style license that can be found in the LICENSE file. |
| 1965 | 1842 |
| 1966 // WARNING: Do not edit - generated code. | 1843 // WARNING: Do not edit - generated code. |
| 1967 | 1844 |
| 1968 | 1845 |
| 1969 /// @domName SVGFECompositeElement | 1846 /// @domName SVGFECompositeElement |
| 1970 class SVGFECompositeElement extends SVGElement implements SVGFilterPrimitiveStan
dardAttributes { | 1847 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
| 1971 SVGFECompositeElement.internal(): super.internal(); | 1848 FECompositeElement.internal(): super.internal(); |
| 1972 | 1849 |
| 1973 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 1850 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| 1974 | 1851 |
| 1975 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; | 1852 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
| 1976 | 1853 |
| 1977 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; | 1854 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
| 1978 | 1855 |
| 1979 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; | 1856 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
| 1980 | 1857 |
| 1981 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; | 1858 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
| 1982 | 1859 |
| 1983 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; | 1860 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 1984 | 1861 |
| 1985 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; | 1862 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 1986 | 1863 |
| 1987 | 1864 |
| 1988 /** @domName SVGFECompositeElement.in1 */ | 1865 /** @domName SVGFECompositeElement.in1 */ |
| 1989 SVGAnimatedString get in1 native "SVGFECompositeElement_in1_Getter"; | 1866 AnimatedString get in1 native "SVGFECompositeElement_in1_Getter"; |
| 1990 | 1867 |
| 1991 | 1868 |
| 1992 /** @domName SVGFECompositeElement.in2 */ | 1869 /** @domName SVGFECompositeElement.in2 */ |
| 1993 SVGAnimatedString get in2 native "SVGFECompositeElement_in2_Getter"; | 1870 AnimatedString get in2 native "SVGFECompositeElement_in2_Getter"; |
| 1994 | 1871 |
| 1995 | 1872 |
| 1996 /** @domName SVGFECompositeElement.k1 */ | 1873 /** @domName SVGFECompositeElement.k1 */ |
| 1997 SVGAnimatedNumber get k1 native "SVGFECompositeElement_k1_Getter"; | 1874 AnimatedNumber get k1 native "SVGFECompositeElement_k1_Getter"; |
| 1998 | 1875 |
| 1999 | 1876 |
| 2000 /** @domName SVGFECompositeElement.k2 */ | 1877 /** @domName SVGFECompositeElement.k2 */ |
| 2001 SVGAnimatedNumber get k2 native "SVGFECompositeElement_k2_Getter"; | 1878 AnimatedNumber get k2 native "SVGFECompositeElement_k2_Getter"; |
| 2002 | 1879 |
| 2003 | 1880 |
| 2004 /** @domName SVGFECompositeElement.k3 */ | 1881 /** @domName SVGFECompositeElement.k3 */ |
| 2005 SVGAnimatedNumber get k3 native "SVGFECompositeElement_k3_Getter"; | 1882 AnimatedNumber get k3 native "SVGFECompositeElement_k3_Getter"; |
| 2006 | 1883 |
| 2007 | 1884 |
| 2008 /** @domName SVGFECompositeElement.k4 */ | 1885 /** @domName SVGFECompositeElement.k4 */ |
| 2009 SVGAnimatedNumber get k4 native "SVGFECompositeElement_k4_Getter"; | 1886 AnimatedNumber get k4 native "SVGFECompositeElement_k4_Getter"; |
| 2010 | 1887 |
| 2011 | 1888 |
| 2012 /** @domName SVGFECompositeElement.operator */ | 1889 /** @domName SVGFECompositeElement.operator */ |
| 2013 SVGAnimatedEnumeration get operator native "SVGFECompositeElement_operator_Get
ter"; | 1890 AnimatedEnumeration get operator native "SVGFECompositeElement_operator_Getter
"; |
| 2014 | 1891 |
| 2015 | 1892 |
| 2016 /** @domName SVGFECompositeElement.height */ | 1893 /** @domName SVGFECompositeElement.height */ |
| 2017 SVGAnimatedLength get height native "SVGFECompositeElement_height_Getter"; | 1894 AnimatedLength get height native "SVGFECompositeElement_height_Getter"; |
| 2018 | 1895 |
| 2019 | 1896 |
| 2020 /** @domName SVGFECompositeElement.result */ | 1897 /** @domName SVGFECompositeElement.result */ |
| 2021 SVGAnimatedString get result native "SVGFECompositeElement_result_Getter"; | 1898 AnimatedString get result native "SVGFECompositeElement_result_Getter"; |
| 2022 | 1899 |
| 2023 | 1900 |
| 2024 /** @domName SVGFECompositeElement.width */ | 1901 /** @domName SVGFECompositeElement.width */ |
| 2025 SVGAnimatedLength get width native "SVGFECompositeElement_width_Getter"; | 1902 AnimatedLength get width native "SVGFECompositeElement_width_Getter"; |
| 2026 | 1903 |
| 2027 | 1904 |
| 2028 /** @domName SVGFECompositeElement.x */ | 1905 /** @domName SVGFECompositeElement.x */ |
| 2029 SVGAnimatedLength get x native "SVGFECompositeElement_x_Getter"; | 1906 AnimatedLength get x native "SVGFECompositeElement_x_Getter"; |
| 2030 | 1907 |
| 2031 | 1908 |
| 2032 /** @domName SVGFECompositeElement.y */ | 1909 /** @domName SVGFECompositeElement.y */ |
| 2033 SVGAnimatedLength get y native "SVGFECompositeElement_y_Getter"; | 1910 AnimatedLength get y native "SVGFECompositeElement_y_Getter"; |
| 2034 | 1911 |
| 2035 | 1912 |
| 2036 /** @domName SVGFECompositeElement.className */ | 1913 /** @domName SVGFECompositeElement.className */ |
| 2037 SVGAnimatedString get $dom_svgClassName native "SVGFECompositeElement_classNam
e_Getter"; | 1914 AnimatedString get $dom_svgClassName native "SVGFECompositeElement_className_G
etter"; |
| 2038 | 1915 |
| 2039 | 1916 |
| 2040 /** @domName SVGFECompositeElement.style */ | 1917 /** @domName SVGFECompositeElement.style */ |
| 2041 CSSStyleDeclaration get style native "SVGFECompositeElement_style_Getter"; | 1918 CSSStyleDeclaration get style native "SVGFECompositeElement_style_Getter"; |
| 2042 | 1919 |
| 2043 | 1920 |
| 2044 /** @domName SVGFECompositeElement.getPresentationAttribute */ | 1921 /** @domName SVGFECompositeElement.getPresentationAttribute */ |
| 2045 CSSValue getPresentationAttribute(String name) native "SVGFECompositeElement_g
etPresentationAttribute_Callback"; | 1922 CSSValue getPresentationAttribute(String name) native "SVGFECompositeElement_g
etPresentationAttribute_Callback"; |
| 2046 | 1923 |
| 2047 } | 1924 } |
| 2048 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1925 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2049 // for details. All rights reserved. Use of this source code is governed by a | 1926 // for details. All rights reserved. Use of this source code is governed by a |
| 2050 // BSD-style license that can be found in the LICENSE file. | 1927 // BSD-style license that can be found in the LICENSE file. |
| 2051 | 1928 |
| 2052 // WARNING: Do not edit - generated code. | 1929 // WARNING: Do not edit - generated code. |
| 2053 | 1930 |
| 2054 | 1931 |
| 2055 /// @domName SVGFEConvolveMatrixElement | 1932 /// @domName SVGFEConvolveMatrixElement |
| 2056 class SVGFEConvolveMatrixElement extends SVGElement implements SVGFilterPrimitiv
eStandardAttributes { | 1933 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
| 2057 SVGFEConvolveMatrixElement.internal(): super.internal(); | 1934 FEConvolveMatrixElement.internal(): super.internal(); |
| 2058 | 1935 |
| 2059 static const int SVG_EDGEMODE_DUPLICATE = 1; | 1936 static const int SVG_EDGEMODE_DUPLICATE = 1; |
| 2060 | 1937 |
| 2061 static const int SVG_EDGEMODE_NONE = 3; | 1938 static const int SVG_EDGEMODE_NONE = 3; |
| 2062 | 1939 |
| 2063 static const int SVG_EDGEMODE_UNKNOWN = 0; | 1940 static const int SVG_EDGEMODE_UNKNOWN = 0; |
| 2064 | 1941 |
| 2065 static const int SVG_EDGEMODE_WRAP = 2; | 1942 static const int SVG_EDGEMODE_WRAP = 2; |
| 2066 | 1943 |
| 2067 | 1944 |
| 2068 /** @domName SVGFEConvolveMatrixElement.bias */ | 1945 /** @domName SVGFEConvolveMatrixElement.bias */ |
| 2069 SVGAnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter"; | 1946 AnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter"; |
| 2070 | 1947 |
| 2071 | 1948 |
| 2072 /** @domName SVGFEConvolveMatrixElement.divisor */ | 1949 /** @domName SVGFEConvolveMatrixElement.divisor */ |
| 2073 SVGAnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Gette
r"; | 1950 AnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Getter"; |
| 2074 | 1951 |
| 2075 | 1952 |
| 2076 /** @domName SVGFEConvolveMatrixElement.edgeMode */ | 1953 /** @domName SVGFEConvolveMatrixElement.edgeMode */ |
| 2077 SVGAnimatedEnumeration get edgeMode native "SVGFEConvolveMatrixElement_edgeMod
e_Getter"; | 1954 AnimatedEnumeration get edgeMode native "SVGFEConvolveMatrixElement_edgeMode_G
etter"; |
| 2078 | 1955 |
| 2079 | 1956 |
| 2080 /** @domName SVGFEConvolveMatrixElement.in1 */ | 1957 /** @domName SVGFEConvolveMatrixElement.in1 */ |
| 2081 SVGAnimatedString get in1 native "SVGFEConvolveMatrixElement_in1_Getter"; | 1958 AnimatedString get in1 native "SVGFEConvolveMatrixElement_in1_Getter"; |
| 2082 | 1959 |
| 2083 | 1960 |
| 2084 /** @domName SVGFEConvolveMatrixElement.kernelMatrix */ | 1961 /** @domName SVGFEConvolveMatrixElement.kernelMatrix */ |
| 2085 SVGAnimatedNumberList get kernelMatrix native "SVGFEConvolveMatrixElement_kern
elMatrix_Getter"; | 1962 AnimatedNumberList get kernelMatrix native "SVGFEConvolveMatrixElement_kernelM
atrix_Getter"; |
| 2086 | 1963 |
| 2087 | 1964 |
| 2088 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthX */ | 1965 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthX */ |
| 2089 SVGAnimatedNumber get kernelUnitLengthX native "SVGFEConvolveMatrixElement_ker
nelUnitLengthX_Getter"; | 1966 AnimatedNumber get kernelUnitLengthX native "SVGFEConvolveMatrixElement_kernel
UnitLengthX_Getter"; |
| 2090 | 1967 |
| 2091 | 1968 |
| 2092 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthY */ | 1969 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthY */ |
| 2093 SVGAnimatedNumber get kernelUnitLengthY native "SVGFEConvolveMatrixElement_ker
nelUnitLengthY_Getter"; | 1970 AnimatedNumber get kernelUnitLengthY native "SVGFEConvolveMatrixElement_kernel
UnitLengthY_Getter"; |
| 2094 | 1971 |
| 2095 | 1972 |
| 2096 /** @domName SVGFEConvolveMatrixElement.orderX */ | 1973 /** @domName SVGFEConvolveMatrixElement.orderX */ |
| 2097 SVGAnimatedInteger get orderX native "SVGFEConvolveMatrixElement_orderX_Getter
"; | 1974 AnimatedInteger get orderX native "SVGFEConvolveMatrixElement_orderX_Getter"; |
| 2098 | 1975 |
| 2099 | 1976 |
| 2100 /** @domName SVGFEConvolveMatrixElement.orderY */ | 1977 /** @domName SVGFEConvolveMatrixElement.orderY */ |
| 2101 SVGAnimatedInteger get orderY native "SVGFEConvolveMatrixElement_orderY_Getter
"; | 1978 AnimatedInteger get orderY native "SVGFEConvolveMatrixElement_orderY_Getter"; |
| 2102 | 1979 |
| 2103 | 1980 |
| 2104 /** @domName SVGFEConvolveMatrixElement.preserveAlpha */ | 1981 /** @domName SVGFEConvolveMatrixElement.preserveAlpha */ |
| 2105 SVGAnimatedBoolean get preserveAlpha native "SVGFEConvolveMatrixElement_preser
veAlpha_Getter"; | 1982 AnimatedBoolean get preserveAlpha native "SVGFEConvolveMatrixElement_preserveA
lpha_Getter"; |
| 2106 | 1983 |
| 2107 | 1984 |
| 2108 /** @domName SVGFEConvolveMatrixElement.targetX */ | 1985 /** @domName SVGFEConvolveMatrixElement.targetX */ |
| 2109 SVGAnimatedInteger get targetX native "SVGFEConvolveMatrixElement_targetX_Gett
er"; | 1986 AnimatedInteger get targetX native "SVGFEConvolveMatrixElement_targetX_Getter"
; |
| 2110 | 1987 |
| 2111 | 1988 |
| 2112 /** @domName SVGFEConvolveMatrixElement.targetY */ | 1989 /** @domName SVGFEConvolveMatrixElement.targetY */ |
| 2113 SVGAnimatedInteger get targetY native "SVGFEConvolveMatrixElement_targetY_Gett
er"; | 1990 AnimatedInteger get targetY native "SVGFEConvolveMatrixElement_targetY_Getter"
; |
| 2114 | 1991 |
| 2115 | 1992 |
| 2116 /** @domName SVGFEConvolveMatrixElement.height */ | 1993 /** @domName SVGFEConvolveMatrixElement.height */ |
| 2117 SVGAnimatedLength get height native "SVGFEConvolveMatrixElement_height_Getter"
; | 1994 AnimatedLength get height native "SVGFEConvolveMatrixElement_height_Getter"; |
| 2118 | 1995 |
| 2119 | 1996 |
| 2120 /** @domName SVGFEConvolveMatrixElement.result */ | 1997 /** @domName SVGFEConvolveMatrixElement.result */ |
| 2121 SVGAnimatedString get result native "SVGFEConvolveMatrixElement_result_Getter"
; | 1998 AnimatedString get result native "SVGFEConvolveMatrixElement_result_Getter"; |
| 2122 | 1999 |
| 2123 | 2000 |
| 2124 /** @domName SVGFEConvolveMatrixElement.width */ | 2001 /** @domName SVGFEConvolveMatrixElement.width */ |
| 2125 SVGAnimatedLength get width native "SVGFEConvolveMatrixElement_width_Getter"; | 2002 AnimatedLength get width native "SVGFEConvolveMatrixElement_width_Getter"; |
| 2126 | 2003 |
| 2127 | 2004 |
| 2128 /** @domName SVGFEConvolveMatrixElement.x */ | 2005 /** @domName SVGFEConvolveMatrixElement.x */ |
| 2129 SVGAnimatedLength get x native "SVGFEConvolveMatrixElement_x_Getter"; | 2006 AnimatedLength get x native "SVGFEConvolveMatrixElement_x_Getter"; |
| 2130 | 2007 |
| 2131 | 2008 |
| 2132 /** @domName SVGFEConvolveMatrixElement.y */ | 2009 /** @domName SVGFEConvolveMatrixElement.y */ |
| 2133 SVGAnimatedLength get y native "SVGFEConvolveMatrixElement_y_Getter"; | 2010 AnimatedLength get y native "SVGFEConvolveMatrixElement_y_Getter"; |
| 2134 | 2011 |
| 2135 | 2012 |
| 2136 /** @domName SVGFEConvolveMatrixElement.className */ | 2013 /** @domName SVGFEConvolveMatrixElement.className */ |
| 2137 SVGAnimatedString get $dom_svgClassName native "SVGFEConvolveMatrixElement_cla
ssName_Getter"; | 2014 AnimatedString get $dom_svgClassName native "SVGFEConvolveMatrixElement_classN
ame_Getter"; |
| 2138 | 2015 |
| 2139 | 2016 |
| 2140 /** @domName SVGFEConvolveMatrixElement.style */ | 2017 /** @domName SVGFEConvolveMatrixElement.style */ |
| 2141 CSSStyleDeclaration get style native "SVGFEConvolveMatrixElement_style_Getter"
; | 2018 CSSStyleDeclaration get style native "SVGFEConvolveMatrixElement_style_Getter"
; |
| 2142 | 2019 |
| 2143 | 2020 |
| 2144 /** @domName SVGFEConvolveMatrixElement.getPresentationAttribute */ | 2021 /** @domName SVGFEConvolveMatrixElement.getPresentationAttribute */ |
| 2145 CSSValue getPresentationAttribute(String name) native "SVGFEConvolveMatrixElem
ent_getPresentationAttribute_Callback"; | 2022 CSSValue getPresentationAttribute(String name) native "SVGFEConvolveMatrixElem
ent_getPresentationAttribute_Callback"; |
| 2146 | 2023 |
| 2147 } | 2024 } |
| 2148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2025 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2149 // for details. All rights reserved. Use of this source code is governed by a | 2026 // for details. All rights reserved. Use of this source code is governed by a |
| 2150 // BSD-style license that can be found in the LICENSE file. | 2027 // BSD-style license that can be found in the LICENSE file. |
| 2151 | 2028 |
| 2152 // WARNING: Do not edit - generated code. | 2029 // WARNING: Do not edit - generated code. |
| 2153 | 2030 |
| 2154 | 2031 |
| 2155 /// @domName SVGFEDiffuseLightingElement | 2032 /// @domName SVGFEDiffuseLightingElement |
| 2156 class SVGFEDiffuseLightingElement extends SVGElement implements SVGFilterPrimiti
veStandardAttributes { | 2033 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 2157 SVGFEDiffuseLightingElement.internal(): super.internal(); | 2034 FEDiffuseLightingElement.internal(): super.internal(); |
| 2158 | 2035 |
| 2159 | 2036 |
| 2160 /** @domName SVGFEDiffuseLightingElement.diffuseConstant */ | 2037 /** @domName SVGFEDiffuseLightingElement.diffuseConstant */ |
| 2161 SVGAnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diff
useConstant_Getter"; | 2038 AnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diffuse
Constant_Getter"; |
| 2162 | 2039 |
| 2163 | 2040 |
| 2164 /** @domName SVGFEDiffuseLightingElement.in1 */ | 2041 /** @domName SVGFEDiffuseLightingElement.in1 */ |
| 2165 SVGAnimatedString get in1 native "SVGFEDiffuseLightingElement_in1_Getter"; | 2042 AnimatedString get in1 native "SVGFEDiffuseLightingElement_in1_Getter"; |
| 2166 | 2043 |
| 2167 | 2044 |
| 2168 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthX */ | 2045 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthX */ |
| 2169 SVGAnimatedNumber get kernelUnitLengthX native "SVGFEDiffuseLightingElement_ke
rnelUnitLengthX_Getter"; | 2046 AnimatedNumber get kernelUnitLengthX native "SVGFEDiffuseLightingElement_kerne
lUnitLengthX_Getter"; |
| 2170 | 2047 |
| 2171 | 2048 |
| 2172 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthY */ | 2049 /** @domName SVGFEDiffuseLightingElement.kernelUnitLengthY */ |
| 2173 SVGAnimatedNumber get kernelUnitLengthY native "SVGFEDiffuseLightingElement_ke
rnelUnitLengthY_Getter"; | 2050 AnimatedNumber get kernelUnitLengthY native "SVGFEDiffuseLightingElement_kerne
lUnitLengthY_Getter"; |
| 2174 | 2051 |
| 2175 | 2052 |
| 2176 /** @domName SVGFEDiffuseLightingElement.surfaceScale */ | 2053 /** @domName SVGFEDiffuseLightingElement.surfaceScale */ |
| 2177 SVGAnimatedNumber get surfaceScale native "SVGFEDiffuseLightingElement_surface
Scale_Getter"; | 2054 AnimatedNumber get surfaceScale native "SVGFEDiffuseLightingElement_surfaceSca
le_Getter"; |
| 2178 | 2055 |
| 2179 | 2056 |
| 2180 /** @domName SVGFEDiffuseLightingElement.height */ | 2057 /** @domName SVGFEDiffuseLightingElement.height */ |
| 2181 SVGAnimatedLength get height native "SVGFEDiffuseLightingElement_height_Getter
"; | 2058 AnimatedLength get height native "SVGFEDiffuseLightingElement_height_Getter"; |
| 2182 | 2059 |
| 2183 | 2060 |
| 2184 /** @domName SVGFEDiffuseLightingElement.result */ | 2061 /** @domName SVGFEDiffuseLightingElement.result */ |
| 2185 SVGAnimatedString get result native "SVGFEDiffuseLightingElement_result_Getter
"; | 2062 AnimatedString get result native "SVGFEDiffuseLightingElement_result_Getter"; |
| 2186 | 2063 |
| 2187 | 2064 |
| 2188 /** @domName SVGFEDiffuseLightingElement.width */ | 2065 /** @domName SVGFEDiffuseLightingElement.width */ |
| 2189 SVGAnimatedLength get width native "SVGFEDiffuseLightingElement_width_Getter"; | 2066 AnimatedLength get width native "SVGFEDiffuseLightingElement_width_Getter"; |
| 2190 | 2067 |
| 2191 | 2068 |
| 2192 /** @domName SVGFEDiffuseLightingElement.x */ | 2069 /** @domName SVGFEDiffuseLightingElement.x */ |
| 2193 SVGAnimatedLength get x native "SVGFEDiffuseLightingElement_x_Getter"; | 2070 AnimatedLength get x native "SVGFEDiffuseLightingElement_x_Getter"; |
| 2194 | 2071 |
| 2195 | 2072 |
| 2196 /** @domName SVGFEDiffuseLightingElement.y */ | 2073 /** @domName SVGFEDiffuseLightingElement.y */ |
| 2197 SVGAnimatedLength get y native "SVGFEDiffuseLightingElement_y_Getter"; | 2074 AnimatedLength get y native "SVGFEDiffuseLightingElement_y_Getter"; |
| 2198 | 2075 |
| 2199 | 2076 |
| 2200 /** @domName SVGFEDiffuseLightingElement.className */ | 2077 /** @domName SVGFEDiffuseLightingElement.className */ |
| 2201 SVGAnimatedString get $dom_svgClassName native "SVGFEDiffuseLightingElement_cl
assName_Getter"; | 2078 AnimatedString get $dom_svgClassName native "SVGFEDiffuseLightingElement_class
Name_Getter"; |
| 2202 | 2079 |
| 2203 | 2080 |
| 2204 /** @domName SVGFEDiffuseLightingElement.style */ | 2081 /** @domName SVGFEDiffuseLightingElement.style */ |
| 2205 CSSStyleDeclaration get style native "SVGFEDiffuseLightingElement_style_Getter
"; | 2082 CSSStyleDeclaration get style native "SVGFEDiffuseLightingElement_style_Getter
"; |
| 2206 | 2083 |
| 2207 | 2084 |
| 2208 /** @domName SVGFEDiffuseLightingElement.getPresentationAttribute */ | 2085 /** @domName SVGFEDiffuseLightingElement.getPresentationAttribute */ |
| 2209 CSSValue getPresentationAttribute(String name) native "SVGFEDiffuseLightingEle
ment_getPresentationAttribute_Callback"; | 2086 CSSValue getPresentationAttribute(String name) native "SVGFEDiffuseLightingEle
ment_getPresentationAttribute_Callback"; |
| 2210 | 2087 |
| 2211 } | 2088 } |
| 2212 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2213 // for details. All rights reserved. Use of this source code is governed by a | 2090 // for details. All rights reserved. Use of this source code is governed by a |
| 2214 // BSD-style license that can be found in the LICENSE file. | 2091 // BSD-style license that can be found in the LICENSE file. |
| 2215 | 2092 |
| 2216 // WARNING: Do not edit - generated code. | 2093 // WARNING: Do not edit - generated code. |
| 2217 | 2094 |
| 2218 | 2095 |
| 2219 /// @domName SVGFEDisplacementMapElement | 2096 /// @domName SVGFEDisplacementMapElement |
| 2220 class SVGFEDisplacementMapElement extends SVGElement implements SVGFilterPrimiti
veStandardAttributes { | 2097 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 2221 SVGFEDisplacementMapElement.internal(): super.internal(); | 2098 FEDisplacementMapElement.internal(): super.internal(); |
| 2222 | 2099 |
| 2223 static const int SVG_CHANNEL_A = 4; | 2100 static const int SVG_CHANNEL_A = 4; |
| 2224 | 2101 |
| 2225 static const int SVG_CHANNEL_B = 3; | 2102 static const int SVG_CHANNEL_B = 3; |
| 2226 | 2103 |
| 2227 static const int SVG_CHANNEL_G = 2; | 2104 static const int SVG_CHANNEL_G = 2; |
| 2228 | 2105 |
| 2229 static const int SVG_CHANNEL_R = 1; | 2106 static const int SVG_CHANNEL_R = 1; |
| 2230 | 2107 |
| 2231 static const int SVG_CHANNEL_UNKNOWN = 0; | 2108 static const int SVG_CHANNEL_UNKNOWN = 0; |
| 2232 | 2109 |
| 2233 | 2110 |
| 2234 /** @domName SVGFEDisplacementMapElement.in1 */ | 2111 /** @domName SVGFEDisplacementMapElement.in1 */ |
| 2235 SVGAnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter"; | 2112 AnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter"; |
| 2236 | 2113 |
| 2237 | 2114 |
| 2238 /** @domName SVGFEDisplacementMapElement.in2 */ | 2115 /** @domName SVGFEDisplacementMapElement.in2 */ |
| 2239 SVGAnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter"; | 2116 AnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter"; |
| 2240 | 2117 |
| 2241 | 2118 |
| 2242 /** @domName SVGFEDisplacementMapElement.scale */ | 2119 /** @domName SVGFEDisplacementMapElement.scale */ |
| 2243 SVGAnimatedNumber get scale native "SVGFEDisplacementMapElement_scale_Getter"; | 2120 AnimatedNumber get scale native "SVGFEDisplacementMapElement_scale_Getter"; |
| 2244 | 2121 |
| 2245 | 2122 |
| 2246 /** @domName SVGFEDisplacementMapElement.xChannelSelector */ | 2123 /** @domName SVGFEDisplacementMapElement.xChannelSelector */ |
| 2247 SVGAnimatedEnumeration get xChannelSelector native "SVGFEDisplacementMapElemen
t_xChannelSelector_Getter"; | 2124 AnimatedEnumeration get xChannelSelector native "SVGFEDisplacementMapElement_x
ChannelSelector_Getter"; |
| 2248 | 2125 |
| 2249 | 2126 |
| 2250 /** @domName SVGFEDisplacementMapElement.yChannelSelector */ | 2127 /** @domName SVGFEDisplacementMapElement.yChannelSelector */ |
| 2251 SVGAnimatedEnumeration get yChannelSelector native "SVGFEDisplacementMapElemen
t_yChannelSelector_Getter"; | 2128 AnimatedEnumeration get yChannelSelector native "SVGFEDisplacementMapElement_y
ChannelSelector_Getter"; |
| 2252 | 2129 |
| 2253 | 2130 |
| 2254 /** @domName SVGFEDisplacementMapElement.height */ | 2131 /** @domName SVGFEDisplacementMapElement.height */ |
| 2255 SVGAnimatedLength get height native "SVGFEDisplacementMapElement_height_Getter
"; | 2132 AnimatedLength get height native "SVGFEDisplacementMapElement_height_Getter"; |
| 2256 | 2133 |
| 2257 | 2134 |
| 2258 /** @domName SVGFEDisplacementMapElement.result */ | 2135 /** @domName SVGFEDisplacementMapElement.result */ |
| 2259 SVGAnimatedString get result native "SVGFEDisplacementMapElement_result_Getter
"; | 2136 AnimatedString get result native "SVGFEDisplacementMapElement_result_Getter"; |
| 2260 | 2137 |
| 2261 | 2138 |
| 2262 /** @domName SVGFEDisplacementMapElement.width */ | 2139 /** @domName SVGFEDisplacementMapElement.width */ |
| 2263 SVGAnimatedLength get width native "SVGFEDisplacementMapElement_width_Getter"; | 2140 AnimatedLength get width native "SVGFEDisplacementMapElement_width_Getter"; |
| 2264 | 2141 |
| 2265 | 2142 |
| 2266 /** @domName SVGFEDisplacementMapElement.x */ | 2143 /** @domName SVGFEDisplacementMapElement.x */ |
| 2267 SVGAnimatedLength get x native "SVGFEDisplacementMapElement_x_Getter"; | 2144 AnimatedLength get x native "SVGFEDisplacementMapElement_x_Getter"; |
| 2268 | 2145 |
| 2269 | 2146 |
| 2270 /** @domName SVGFEDisplacementMapElement.y */ | 2147 /** @domName SVGFEDisplacementMapElement.y */ |
| 2271 SVGAnimatedLength get y native "SVGFEDisplacementMapElement_y_Getter"; | 2148 AnimatedLength get y native "SVGFEDisplacementMapElement_y_Getter"; |
| 2272 | 2149 |
| 2273 | 2150 |
| 2274 /** @domName SVGFEDisplacementMapElement.className */ | 2151 /** @domName SVGFEDisplacementMapElement.className */ |
| 2275 SVGAnimatedString get $dom_svgClassName native "SVGFEDisplacementMapElement_cl
assName_Getter"; | 2152 AnimatedString get $dom_svgClassName native "SVGFEDisplacementMapElement_class
Name_Getter"; |
| 2276 | 2153 |
| 2277 | 2154 |
| 2278 /** @domName SVGFEDisplacementMapElement.style */ | 2155 /** @domName SVGFEDisplacementMapElement.style */ |
| 2279 CSSStyleDeclaration get style native "SVGFEDisplacementMapElement_style_Getter
"; | 2156 CSSStyleDeclaration get style native "SVGFEDisplacementMapElement_style_Getter
"; |
| 2280 | 2157 |
| 2281 | 2158 |
| 2282 /** @domName SVGFEDisplacementMapElement.getPresentationAttribute */ | 2159 /** @domName SVGFEDisplacementMapElement.getPresentationAttribute */ |
| 2283 CSSValue getPresentationAttribute(String name) native "SVGFEDisplacementMapEle
ment_getPresentationAttribute_Callback"; | 2160 CSSValue getPresentationAttribute(String name) native "SVGFEDisplacementMapEle
ment_getPresentationAttribute_Callback"; |
| 2284 | 2161 |
| 2285 } | 2162 } |
| 2286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2163 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2287 // for details. All rights reserved. Use of this source code is governed by a | 2164 // for details. All rights reserved. Use of this source code is governed by a |
| 2288 // BSD-style license that can be found in the LICENSE file. | 2165 // BSD-style license that can be found in the LICENSE file. |
| 2289 | 2166 |
| 2290 // WARNING: Do not edit - generated code. | 2167 // WARNING: Do not edit - generated code. |
| 2291 | 2168 |
| 2292 | 2169 |
| 2293 /// @domName SVGFEDistantLightElement | 2170 /// @domName SVGFEDistantLightElement |
| 2294 class SVGFEDistantLightElement extends SVGElement { | 2171 class FEDistantLightElement extends SvgElement { |
| 2295 SVGFEDistantLightElement.internal(): super.internal(); | 2172 FEDistantLightElement.internal(): super.internal(); |
| 2296 | 2173 |
| 2297 | 2174 |
| 2298 /** @domName SVGFEDistantLightElement.azimuth */ | 2175 /** @domName SVGFEDistantLightElement.azimuth */ |
| 2299 SVGAnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter"
; | 2176 AnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter"; |
| 2300 | 2177 |
| 2301 | 2178 |
| 2302 /** @domName SVGFEDistantLightElement.elevation */ | 2179 /** @domName SVGFEDistantLightElement.elevation */ |
| 2303 SVGAnimatedNumber get elevation native "SVGFEDistantLightElement_elevation_Get
ter"; | 2180 AnimatedNumber get elevation native "SVGFEDistantLightElement_elevation_Getter
"; |
| 2304 | 2181 |
| 2305 } | 2182 } |
| 2306 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2307 // for details. All rights reserved. Use of this source code is governed by a | 2184 // for details. All rights reserved. Use of this source code is governed by a |
| 2308 // BSD-style license that can be found in the LICENSE file. | 2185 // BSD-style license that can be found in the LICENSE file. |
| 2309 | 2186 |
| 2310 // WARNING: Do not edit - generated code. | 2187 // WARNING: Do not edit - generated code. |
| 2311 | 2188 |
| 2312 | 2189 |
| 2313 /// @domName SVGFEDropShadowElement | 2190 /// @domName SVGFEDropShadowElement |
| 2314 class SVGFEDropShadowElement extends SVGElement implements SVGFilterPrimitiveSta
ndardAttributes { | 2191 class FEDropShadowElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2315 SVGFEDropShadowElement.internal(): super.internal(); | 2192 FEDropShadowElement.internal(): super.internal(); |
| 2316 | 2193 |
| 2317 | 2194 |
| 2318 /** @domName SVGFEDropShadowElement.dx */ | 2195 /** @domName SVGFEDropShadowElement.dx */ |
| 2319 SVGAnimatedNumber get dx native "SVGFEDropShadowElement_dx_Getter"; | 2196 AnimatedNumber get dx native "SVGFEDropShadowElement_dx_Getter"; |
| 2320 | 2197 |
| 2321 | 2198 |
| 2322 /** @domName SVGFEDropShadowElement.dy */ | 2199 /** @domName SVGFEDropShadowElement.dy */ |
| 2323 SVGAnimatedNumber get dy native "SVGFEDropShadowElement_dy_Getter"; | 2200 AnimatedNumber get dy native "SVGFEDropShadowElement_dy_Getter"; |
| 2324 | 2201 |
| 2325 | 2202 |
| 2326 /** @domName SVGFEDropShadowElement.in1 */ | 2203 /** @domName SVGFEDropShadowElement.in1 */ |
| 2327 SVGAnimatedString get in1 native "SVGFEDropShadowElement_in1_Getter"; | 2204 AnimatedString get in1 native "SVGFEDropShadowElement_in1_Getter"; |
| 2328 | 2205 |
| 2329 | 2206 |
| 2330 /** @domName SVGFEDropShadowElement.stdDeviationX */ | 2207 /** @domName SVGFEDropShadowElement.stdDeviationX */ |
| 2331 SVGAnimatedNumber get stdDeviationX native "SVGFEDropShadowElement_stdDeviatio
nX_Getter"; | 2208 AnimatedNumber get stdDeviationX native "SVGFEDropShadowElement_stdDeviationX_
Getter"; |
| 2332 | 2209 |
| 2333 | 2210 |
| 2334 /** @domName SVGFEDropShadowElement.stdDeviationY */ | 2211 /** @domName SVGFEDropShadowElement.stdDeviationY */ |
| 2335 SVGAnimatedNumber get stdDeviationY native "SVGFEDropShadowElement_stdDeviatio
nY_Getter"; | 2212 AnimatedNumber get stdDeviationY native "SVGFEDropShadowElement_stdDeviationY_
Getter"; |
| 2336 | 2213 |
| 2337 | 2214 |
| 2338 /** @domName SVGFEDropShadowElement.setStdDeviation */ | 2215 /** @domName SVGFEDropShadowElement.setStdDeviation */ |
| 2339 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEDropSh
adowElement_setStdDeviation_Callback"; | 2216 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEDropSh
adowElement_setStdDeviation_Callback"; |
| 2340 | 2217 |
| 2341 | 2218 |
| 2342 /** @domName SVGFEDropShadowElement.height */ | 2219 /** @domName SVGFEDropShadowElement.height */ |
| 2343 SVGAnimatedLength get height native "SVGFEDropShadowElement_height_Getter"; | 2220 AnimatedLength get height native "SVGFEDropShadowElement_height_Getter"; |
| 2344 | 2221 |
| 2345 | 2222 |
| 2346 /** @domName SVGFEDropShadowElement.result */ | 2223 /** @domName SVGFEDropShadowElement.result */ |
| 2347 SVGAnimatedString get result native "SVGFEDropShadowElement_result_Getter"; | 2224 AnimatedString get result native "SVGFEDropShadowElement_result_Getter"; |
| 2348 | 2225 |
| 2349 | 2226 |
| 2350 /** @domName SVGFEDropShadowElement.width */ | 2227 /** @domName SVGFEDropShadowElement.width */ |
| 2351 SVGAnimatedLength get width native "SVGFEDropShadowElement_width_Getter"; | 2228 AnimatedLength get width native "SVGFEDropShadowElement_width_Getter"; |
| 2352 | 2229 |
| 2353 | 2230 |
| 2354 /** @domName SVGFEDropShadowElement.x */ | 2231 /** @domName SVGFEDropShadowElement.x */ |
| 2355 SVGAnimatedLength get x native "SVGFEDropShadowElement_x_Getter"; | 2232 AnimatedLength get x native "SVGFEDropShadowElement_x_Getter"; |
| 2356 | 2233 |
| 2357 | 2234 |
| 2358 /** @domName SVGFEDropShadowElement.y */ | 2235 /** @domName SVGFEDropShadowElement.y */ |
| 2359 SVGAnimatedLength get y native "SVGFEDropShadowElement_y_Getter"; | 2236 AnimatedLength get y native "SVGFEDropShadowElement_y_Getter"; |
| 2360 | 2237 |
| 2361 | 2238 |
| 2362 /** @domName SVGFEDropShadowElement.className */ | 2239 /** @domName SVGFEDropShadowElement.className */ |
| 2363 SVGAnimatedString get $dom_svgClassName native "SVGFEDropShadowElement_classNa
me_Getter"; | 2240 AnimatedString get $dom_svgClassName native "SVGFEDropShadowElement_className_
Getter"; |
| 2364 | 2241 |
| 2365 | 2242 |
| 2366 /** @domName SVGFEDropShadowElement.style */ | 2243 /** @domName SVGFEDropShadowElement.style */ |
| 2367 CSSStyleDeclaration get style native "SVGFEDropShadowElement_style_Getter"; | 2244 CSSStyleDeclaration get style native "SVGFEDropShadowElement_style_Getter"; |
| 2368 | 2245 |
| 2369 | 2246 |
| 2370 /** @domName SVGFEDropShadowElement.getPresentationAttribute */ | 2247 /** @domName SVGFEDropShadowElement.getPresentationAttribute */ |
| 2371 CSSValue getPresentationAttribute(String name) native "SVGFEDropShadowElement_
getPresentationAttribute_Callback"; | 2248 CSSValue getPresentationAttribute(String name) native "SVGFEDropShadowElement_
getPresentationAttribute_Callback"; |
| 2372 | 2249 |
| 2373 } | 2250 } |
| 2374 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2375 // for details. All rights reserved. Use of this source code is governed by a | 2252 // for details. All rights reserved. Use of this source code is governed by a |
| 2376 // BSD-style license that can be found in the LICENSE file. | 2253 // BSD-style license that can be found in the LICENSE file. |
| 2377 | 2254 |
| 2378 // WARNING: Do not edit - generated code. | 2255 // WARNING: Do not edit - generated code. |
| 2379 | 2256 |
| 2380 | 2257 |
| 2381 /// @domName SVGFEFloodElement | 2258 /// @domName SVGFEFloodElement |
| 2382 class SVGFEFloodElement extends SVGElement implements SVGFilterPrimitiveStandard
Attributes { | 2259 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2383 SVGFEFloodElement.internal(): super.internal(); | 2260 FEFloodElement.internal(): super.internal(); |
| 2384 | 2261 |
| 2385 | 2262 |
| 2386 /** @domName SVGFEFloodElement.height */ | 2263 /** @domName SVGFEFloodElement.height */ |
| 2387 SVGAnimatedLength get height native "SVGFEFloodElement_height_Getter"; | 2264 AnimatedLength get height native "SVGFEFloodElement_height_Getter"; |
| 2388 | 2265 |
| 2389 | 2266 |
| 2390 /** @domName SVGFEFloodElement.result */ | 2267 /** @domName SVGFEFloodElement.result */ |
| 2391 SVGAnimatedString get result native "SVGFEFloodElement_result_Getter"; | 2268 AnimatedString get result native "SVGFEFloodElement_result_Getter"; |
| 2392 | 2269 |
| 2393 | 2270 |
| 2394 /** @domName SVGFEFloodElement.width */ | 2271 /** @domName SVGFEFloodElement.width */ |
| 2395 SVGAnimatedLength get width native "SVGFEFloodElement_width_Getter"; | 2272 AnimatedLength get width native "SVGFEFloodElement_width_Getter"; |
| 2396 | 2273 |
| 2397 | 2274 |
| 2398 /** @domName SVGFEFloodElement.x */ | 2275 /** @domName SVGFEFloodElement.x */ |
| 2399 SVGAnimatedLength get x native "SVGFEFloodElement_x_Getter"; | 2276 AnimatedLength get x native "SVGFEFloodElement_x_Getter"; |
| 2400 | 2277 |
| 2401 | 2278 |
| 2402 /** @domName SVGFEFloodElement.y */ | 2279 /** @domName SVGFEFloodElement.y */ |
| 2403 SVGAnimatedLength get y native "SVGFEFloodElement_y_Getter"; | 2280 AnimatedLength get y native "SVGFEFloodElement_y_Getter"; |
| 2404 | 2281 |
| 2405 | 2282 |
| 2406 /** @domName SVGFEFloodElement.className */ | 2283 /** @domName SVGFEFloodElement.className */ |
| 2407 SVGAnimatedString get $dom_svgClassName native "SVGFEFloodElement_className_Ge
tter"; | 2284 AnimatedString get $dom_svgClassName native "SVGFEFloodElement_className_Gette
r"; |
| 2408 | 2285 |
| 2409 | 2286 |
| 2410 /** @domName SVGFEFloodElement.style */ | 2287 /** @domName SVGFEFloodElement.style */ |
| 2411 CSSStyleDeclaration get style native "SVGFEFloodElement_style_Getter"; | 2288 CSSStyleDeclaration get style native "SVGFEFloodElement_style_Getter"; |
| 2412 | 2289 |
| 2413 | 2290 |
| 2414 /** @domName SVGFEFloodElement.getPresentationAttribute */ | 2291 /** @domName SVGFEFloodElement.getPresentationAttribute */ |
| 2415 CSSValue getPresentationAttribute(String name) native "SVGFEFloodElement_getPr
esentationAttribute_Callback"; | 2292 CSSValue getPresentationAttribute(String name) native "SVGFEFloodElement_getPr
esentationAttribute_Callback"; |
| 2416 | 2293 |
| 2417 } | 2294 } |
| 2418 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2419 // for details. All rights reserved. Use of this source code is governed by a | 2296 // for details. All rights reserved. Use of this source code is governed by a |
| 2420 // BSD-style license that can be found in the LICENSE file. | 2297 // BSD-style license that can be found in the LICENSE file. |
| 2421 | 2298 |
| 2422 // WARNING: Do not edit - generated code. | 2299 // WARNING: Do not edit - generated code. |
| 2423 | 2300 |
| 2424 | 2301 |
| 2425 /// @domName SVGFEFuncAElement | 2302 /// @domName SVGFEFuncAElement |
| 2426 class SVGFEFuncAElement extends SVGComponentTransferFunctionElement { | 2303 class FEFuncAElement extends ComponentTransferFunctionElement { |
| 2427 SVGFEFuncAElement.internal(): super.internal(); | 2304 FEFuncAElement.internal(): super.internal(); |
| 2428 | 2305 |
| 2429 } | 2306 } |
| 2430 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2307 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2431 // for details. All rights reserved. Use of this source code is governed by a | 2308 // for details. All rights reserved. Use of this source code is governed by a |
| 2432 // BSD-style license that can be found in the LICENSE file. | 2309 // BSD-style license that can be found in the LICENSE file. |
| 2433 | 2310 |
| 2434 // WARNING: Do not edit - generated code. | 2311 // WARNING: Do not edit - generated code. |
| 2435 | 2312 |
| 2436 | 2313 |
| 2437 /// @domName SVGFEFuncBElement | 2314 /// @domName SVGFEFuncBElement |
| 2438 class SVGFEFuncBElement extends SVGComponentTransferFunctionElement { | 2315 class FEFuncBElement extends ComponentTransferFunctionElement { |
| 2439 SVGFEFuncBElement.internal(): super.internal(); | 2316 FEFuncBElement.internal(): super.internal(); |
| 2440 | 2317 |
| 2441 } | 2318 } |
| 2442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2319 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2443 // for details. All rights reserved. Use of this source code is governed by a | 2320 // for details. All rights reserved. Use of this source code is governed by a |
| 2444 // BSD-style license that can be found in the LICENSE file. | 2321 // BSD-style license that can be found in the LICENSE file. |
| 2445 | 2322 |
| 2446 // WARNING: Do not edit - generated code. | 2323 // WARNING: Do not edit - generated code. |
| 2447 | 2324 |
| 2448 | 2325 |
| 2449 /// @domName SVGFEFuncGElement | 2326 /// @domName SVGFEFuncGElement |
| 2450 class SVGFEFuncGElement extends SVGComponentTransferFunctionElement { | 2327 class FEFuncGElement extends ComponentTransferFunctionElement { |
| 2451 SVGFEFuncGElement.internal(): super.internal(); | 2328 FEFuncGElement.internal(): super.internal(); |
| 2452 | 2329 |
| 2453 } | 2330 } |
| 2454 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2331 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2455 // for details. All rights reserved. Use of this source code is governed by a | 2332 // for details. All rights reserved. Use of this source code is governed by a |
| 2456 // BSD-style license that can be found in the LICENSE file. | 2333 // BSD-style license that can be found in the LICENSE file. |
| 2457 | 2334 |
| 2458 // WARNING: Do not edit - generated code. | 2335 // WARNING: Do not edit - generated code. |
| 2459 | 2336 |
| 2460 | 2337 |
| 2461 /// @domName SVGFEFuncRElement | 2338 /// @domName SVGFEFuncRElement |
| 2462 class SVGFEFuncRElement extends SVGComponentTransferFunctionElement { | 2339 class FEFuncRElement extends ComponentTransferFunctionElement { |
| 2463 SVGFEFuncRElement.internal(): super.internal(); | 2340 FEFuncRElement.internal(): super.internal(); |
| 2464 | 2341 |
| 2465 } | 2342 } |
| 2466 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2343 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2467 // for details. All rights reserved. Use of this source code is governed by a | 2344 // for details. All rights reserved. Use of this source code is governed by a |
| 2468 // BSD-style license that can be found in the LICENSE file. | 2345 // BSD-style license that can be found in the LICENSE file. |
| 2469 | 2346 |
| 2470 // WARNING: Do not edit - generated code. | 2347 // WARNING: Do not edit - generated code. |
| 2471 | 2348 |
| 2472 | 2349 |
| 2473 /// @domName SVGFEGaussianBlurElement | 2350 /// @domName SVGFEGaussianBlurElement |
| 2474 class SVGFEGaussianBlurElement extends SVGElement implements SVGFilterPrimitiveS
tandardAttributes { | 2351 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
| 2475 SVGFEGaussianBlurElement.internal(): super.internal(); | 2352 FEGaussianBlurElement.internal(): super.internal(); |
| 2476 | 2353 |
| 2477 | 2354 |
| 2478 /** @domName SVGFEGaussianBlurElement.in1 */ | 2355 /** @domName SVGFEGaussianBlurElement.in1 */ |
| 2479 SVGAnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter"; | 2356 AnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter"; |
| 2480 | 2357 |
| 2481 | 2358 |
| 2482 /** @domName SVGFEGaussianBlurElement.stdDeviationX */ | 2359 /** @domName SVGFEGaussianBlurElement.stdDeviationX */ |
| 2483 SVGAnimatedNumber get stdDeviationX native "SVGFEGaussianBlurElement_stdDeviat
ionX_Getter"; | 2360 AnimatedNumber get stdDeviationX native "SVGFEGaussianBlurElement_stdDeviation
X_Getter"; |
| 2484 | 2361 |
| 2485 | 2362 |
| 2486 /** @domName SVGFEGaussianBlurElement.stdDeviationY */ | 2363 /** @domName SVGFEGaussianBlurElement.stdDeviationY */ |
| 2487 SVGAnimatedNumber get stdDeviationY native "SVGFEGaussianBlurElement_stdDeviat
ionY_Getter"; | 2364 AnimatedNumber get stdDeviationY native "SVGFEGaussianBlurElement_stdDeviation
Y_Getter"; |
| 2488 | 2365 |
| 2489 | 2366 |
| 2490 /** @domName SVGFEGaussianBlurElement.setStdDeviation */ | 2367 /** @domName SVGFEGaussianBlurElement.setStdDeviation */ |
| 2491 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussi
anBlurElement_setStdDeviation_Callback"; | 2368 void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussi
anBlurElement_setStdDeviation_Callback"; |
| 2492 | 2369 |
| 2493 | 2370 |
| 2494 /** @domName SVGFEGaussianBlurElement.height */ | 2371 /** @domName SVGFEGaussianBlurElement.height */ |
| 2495 SVGAnimatedLength get height native "SVGFEGaussianBlurElement_height_Getter"; | 2372 AnimatedLength get height native "SVGFEGaussianBlurElement_height_Getter"; |
| 2496 | 2373 |
| 2497 | 2374 |
| 2498 /** @domName SVGFEGaussianBlurElement.result */ | 2375 /** @domName SVGFEGaussianBlurElement.result */ |
| 2499 SVGAnimatedString get result native "SVGFEGaussianBlurElement_result_Getter"; | 2376 AnimatedString get result native "SVGFEGaussianBlurElement_result_Getter"; |
| 2500 | 2377 |
| 2501 | 2378 |
| 2502 /** @domName SVGFEGaussianBlurElement.width */ | 2379 /** @domName SVGFEGaussianBlurElement.width */ |
| 2503 SVGAnimatedLength get width native "SVGFEGaussianBlurElement_width_Getter"; | 2380 AnimatedLength get width native "SVGFEGaussianBlurElement_width_Getter"; |
| 2504 | 2381 |
| 2505 | 2382 |
| 2506 /** @domName SVGFEGaussianBlurElement.x */ | 2383 /** @domName SVGFEGaussianBlurElement.x */ |
| 2507 SVGAnimatedLength get x native "SVGFEGaussianBlurElement_x_Getter"; | 2384 AnimatedLength get x native "SVGFEGaussianBlurElement_x_Getter"; |
| 2508 | 2385 |
| 2509 | 2386 |
| 2510 /** @domName SVGFEGaussianBlurElement.y */ | 2387 /** @domName SVGFEGaussianBlurElement.y */ |
| 2511 SVGAnimatedLength get y native "SVGFEGaussianBlurElement_y_Getter"; | 2388 AnimatedLength get y native "SVGFEGaussianBlurElement_y_Getter"; |
| 2512 | 2389 |
| 2513 | 2390 |
| 2514 /** @domName SVGFEGaussianBlurElement.className */ | 2391 /** @domName SVGFEGaussianBlurElement.className */ |
| 2515 SVGAnimatedString get $dom_svgClassName native "SVGFEGaussianBlurElement_class
Name_Getter"; | 2392 AnimatedString get $dom_svgClassName native "SVGFEGaussianBlurElement_classNam
e_Getter"; |
| 2516 | 2393 |
| 2517 | 2394 |
| 2518 /** @domName SVGFEGaussianBlurElement.style */ | 2395 /** @domName SVGFEGaussianBlurElement.style */ |
| 2519 CSSStyleDeclaration get style native "SVGFEGaussianBlurElement_style_Getter"; | 2396 CSSStyleDeclaration get style native "SVGFEGaussianBlurElement_style_Getter"; |
| 2520 | 2397 |
| 2521 | 2398 |
| 2522 /** @domName SVGFEGaussianBlurElement.getPresentationAttribute */ | 2399 /** @domName SVGFEGaussianBlurElement.getPresentationAttribute */ |
| 2523 CSSValue getPresentationAttribute(String name) native "SVGFEGaussianBlurElemen
t_getPresentationAttribute_Callback"; | 2400 CSSValue getPresentationAttribute(String name) native "SVGFEGaussianBlurElemen
t_getPresentationAttribute_Callback"; |
| 2524 | 2401 |
| 2525 } | 2402 } |
| 2526 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2527 // for details. All rights reserved. Use of this source code is governed by a | 2404 // for details. All rights reserved. Use of this source code is governed by a |
| 2528 // BSD-style license that can be found in the LICENSE file. | 2405 // BSD-style license that can be found in the LICENSE file. |
| 2529 | 2406 |
| 2530 // WARNING: Do not edit - generated code. | 2407 // WARNING: Do not edit - generated code. |
| 2531 | 2408 |
| 2532 | 2409 |
| 2533 /// @domName SVGFEImageElement | 2410 /// @domName SVGFEImageElement |
| 2534 class SVGFEImageElement extends SVGElement implements SVGURIReference, SVGLangSp
ace, SVGFilterPrimitiveStandardAttributes, SVGExternalResourcesRequired { | 2411 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference, ExternalResourcesRequired, LangSpace { |
| 2535 SVGFEImageElement.internal(): super.internal(); | 2412 FEImageElement.internal(): super.internal(); |
| 2536 | 2413 |
| 2537 | 2414 |
| 2538 /** @domName SVGFEImageElement.preserveAspectRatio */ | 2415 /** @domName SVGFEImageElement.preserveAspectRatio */ |
| 2539 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageEleme
nt_preserveAspectRatio_Getter"; | 2416 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageElement_
preserveAspectRatio_Getter"; |
| 2540 | 2417 |
| 2541 | 2418 |
| 2542 /** @domName SVGFEImageElement.externalResourcesRequired */ | 2419 /** @domName SVGFEImageElement.externalResourcesRequired */ |
| 2543 SVGAnimatedBoolean get externalResourcesRequired native "SVGFEImageElement_ext
ernalResourcesRequired_Getter"; | 2420 AnimatedBoolean get externalResourcesRequired native "SVGFEImageElement_extern
alResourcesRequired_Getter"; |
| 2544 | 2421 |
| 2545 | 2422 |
| 2546 /** @domName SVGFEImageElement.height */ | 2423 /** @domName SVGFEImageElement.height */ |
| 2547 SVGAnimatedLength get height native "SVGFEImageElement_height_Getter"; | 2424 AnimatedLength get height native "SVGFEImageElement_height_Getter"; |
| 2548 | 2425 |
| 2549 | 2426 |
| 2550 /** @domName SVGFEImageElement.result */ | 2427 /** @domName SVGFEImageElement.result */ |
| 2551 SVGAnimatedString get result native "SVGFEImageElement_result_Getter"; | 2428 AnimatedString get result native "SVGFEImageElement_result_Getter"; |
| 2552 | 2429 |
| 2553 | 2430 |
| 2554 /** @domName SVGFEImageElement.width */ | 2431 /** @domName SVGFEImageElement.width */ |
| 2555 SVGAnimatedLength get width native "SVGFEImageElement_width_Getter"; | 2432 AnimatedLength get width native "SVGFEImageElement_width_Getter"; |
| 2556 | 2433 |
| 2557 | 2434 |
| 2558 /** @domName SVGFEImageElement.x */ | 2435 /** @domName SVGFEImageElement.x */ |
| 2559 SVGAnimatedLength get x native "SVGFEImageElement_x_Getter"; | 2436 AnimatedLength get x native "SVGFEImageElement_x_Getter"; |
| 2560 | 2437 |
| 2561 | 2438 |
| 2562 /** @domName SVGFEImageElement.y */ | 2439 /** @domName SVGFEImageElement.y */ |
| 2563 SVGAnimatedLength get y native "SVGFEImageElement_y_Getter"; | 2440 AnimatedLength get y native "SVGFEImageElement_y_Getter"; |
| 2564 | 2441 |
| 2565 | 2442 |
| 2566 /** @domName SVGFEImageElement.xmllang */ | 2443 /** @domName SVGFEImageElement.xmllang */ |
| 2567 String get xmllang native "SVGFEImageElement_xmllang_Getter"; | 2444 String get xmllang native "SVGFEImageElement_xmllang_Getter"; |
| 2568 | 2445 |
| 2569 | 2446 |
| 2570 /** @domName SVGFEImageElement.xmllang */ | 2447 /** @domName SVGFEImageElement.xmllang */ |
| 2571 void set xmllang(String value) native "SVGFEImageElement_xmllang_Setter"; | 2448 void set xmllang(String value) native "SVGFEImageElement_xmllang_Setter"; |
| 2572 | 2449 |
| 2573 | 2450 |
| 2574 /** @domName SVGFEImageElement.xmlspace */ | 2451 /** @domName SVGFEImageElement.xmlspace */ |
| 2575 String get xmlspace native "SVGFEImageElement_xmlspace_Getter"; | 2452 String get xmlspace native "SVGFEImageElement_xmlspace_Getter"; |
| 2576 | 2453 |
| 2577 | 2454 |
| 2578 /** @domName SVGFEImageElement.xmlspace */ | 2455 /** @domName SVGFEImageElement.xmlspace */ |
| 2579 void set xmlspace(String value) native "SVGFEImageElement_xmlspace_Setter"; | 2456 void set xmlspace(String value) native "SVGFEImageElement_xmlspace_Setter"; |
| 2580 | 2457 |
| 2581 | 2458 |
| 2582 /** @domName SVGFEImageElement.className */ | 2459 /** @domName SVGFEImageElement.className */ |
| 2583 SVGAnimatedString get $dom_svgClassName native "SVGFEImageElement_className_Ge
tter"; | 2460 AnimatedString get $dom_svgClassName native "SVGFEImageElement_className_Gette
r"; |
| 2584 | 2461 |
| 2585 | 2462 |
| 2586 /** @domName SVGFEImageElement.style */ | 2463 /** @domName SVGFEImageElement.style */ |
| 2587 CSSStyleDeclaration get style native "SVGFEImageElement_style_Getter"; | 2464 CSSStyleDeclaration get style native "SVGFEImageElement_style_Getter"; |
| 2588 | 2465 |
| 2589 | 2466 |
| 2590 /** @domName SVGFEImageElement.getPresentationAttribute */ | 2467 /** @domName SVGFEImageElement.getPresentationAttribute */ |
| 2591 CSSValue getPresentationAttribute(String name) native "SVGFEImageElement_getPr
esentationAttribute_Callback"; | 2468 CSSValue getPresentationAttribute(String name) native "SVGFEImageElement_getPr
esentationAttribute_Callback"; |
| 2592 | 2469 |
| 2593 | 2470 |
| 2594 /** @domName SVGFEImageElement.href */ | 2471 /** @domName SVGFEImageElement.href */ |
| 2595 SVGAnimatedString get href native "SVGFEImageElement_href_Getter"; | 2472 AnimatedString get href native "SVGFEImageElement_href_Getter"; |
| 2596 | 2473 |
| 2597 } | 2474 } |
| 2598 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2475 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2599 // for details. All rights reserved. Use of this source code is governed by a | 2476 // for details. All rights reserved. Use of this source code is governed by a |
| 2600 // BSD-style license that can be found in the LICENSE file. | 2477 // BSD-style license that can be found in the LICENSE file. |
| 2601 | 2478 |
| 2602 // WARNING: Do not edit - generated code. | 2479 // WARNING: Do not edit - generated code. |
| 2603 | 2480 |
| 2604 | 2481 |
| 2605 /// @domName SVGFEMergeElement | 2482 /// @domName SVGFEMergeElement |
| 2606 class SVGFEMergeElement extends SVGElement implements SVGFilterPrimitiveStandard
Attributes { | 2483 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2607 SVGFEMergeElement.internal(): super.internal(); | 2484 FEMergeElement.internal(): super.internal(); |
| 2608 | 2485 |
| 2609 | 2486 |
| 2610 /** @domName SVGFEMergeElement.height */ | 2487 /** @domName SVGFEMergeElement.height */ |
| 2611 SVGAnimatedLength get height native "SVGFEMergeElement_height_Getter"; | 2488 AnimatedLength get height native "SVGFEMergeElement_height_Getter"; |
| 2612 | 2489 |
| 2613 | 2490 |
| 2614 /** @domName SVGFEMergeElement.result */ | 2491 /** @domName SVGFEMergeElement.result */ |
| 2615 SVGAnimatedString get result native "SVGFEMergeElement_result_Getter"; | 2492 AnimatedString get result native "SVGFEMergeElement_result_Getter"; |
| 2616 | 2493 |
| 2617 | 2494 |
| 2618 /** @domName SVGFEMergeElement.width */ | 2495 /** @domName SVGFEMergeElement.width */ |
| 2619 SVGAnimatedLength get width native "SVGFEMergeElement_width_Getter"; | 2496 AnimatedLength get width native "SVGFEMergeElement_width_Getter"; |
| 2620 | 2497 |
| 2621 | 2498 |
| 2622 /** @domName SVGFEMergeElement.x */ | 2499 /** @domName SVGFEMergeElement.x */ |
| 2623 SVGAnimatedLength get x native "SVGFEMergeElement_x_Getter"; | 2500 AnimatedLength get x native "SVGFEMergeElement_x_Getter"; |
| 2624 | 2501 |
| 2625 | 2502 |
| 2626 /** @domName SVGFEMergeElement.y */ | 2503 /** @domName SVGFEMergeElement.y */ |
| 2627 SVGAnimatedLength get y native "SVGFEMergeElement_y_Getter"; | 2504 AnimatedLength get y native "SVGFEMergeElement_y_Getter"; |
| 2628 | 2505 |
| 2629 | 2506 |
| 2630 /** @domName SVGFEMergeElement.className */ | 2507 /** @domName SVGFEMergeElement.className */ |
| 2631 SVGAnimatedString get $dom_svgClassName native "SVGFEMergeElement_className_Ge
tter"; | 2508 AnimatedString get $dom_svgClassName native "SVGFEMergeElement_className_Gette
r"; |
| 2632 | 2509 |
| 2633 | 2510 |
| 2634 /** @domName SVGFEMergeElement.style */ | 2511 /** @domName SVGFEMergeElement.style */ |
| 2635 CSSStyleDeclaration get style native "SVGFEMergeElement_style_Getter"; | 2512 CSSStyleDeclaration get style native "SVGFEMergeElement_style_Getter"; |
| 2636 | 2513 |
| 2637 | 2514 |
| 2638 /** @domName SVGFEMergeElement.getPresentationAttribute */ | 2515 /** @domName SVGFEMergeElement.getPresentationAttribute */ |
| 2639 CSSValue getPresentationAttribute(String name) native "SVGFEMergeElement_getPr
esentationAttribute_Callback"; | 2516 CSSValue getPresentationAttribute(String name) native "SVGFEMergeElement_getPr
esentationAttribute_Callback"; |
| 2640 | 2517 |
| 2641 } | 2518 } |
| 2642 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2519 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2643 // for details. All rights reserved. Use of this source code is governed by a | 2520 // for details. All rights reserved. Use of this source code is governed by a |
| 2644 // BSD-style license that can be found in the LICENSE file. | 2521 // BSD-style license that can be found in the LICENSE file. |
| 2645 | 2522 |
| 2646 // WARNING: Do not edit - generated code. | 2523 // WARNING: Do not edit - generated code. |
| 2647 | 2524 |
| 2648 | 2525 |
| 2649 /// @domName SVGFEMergeNodeElement | 2526 /// @domName SVGFEMergeNodeElement |
| 2650 class SVGFEMergeNodeElement extends SVGElement { | 2527 class FEMergeNodeElement extends SvgElement { |
| 2651 SVGFEMergeNodeElement.internal(): super.internal(); | 2528 FEMergeNodeElement.internal(): super.internal(); |
| 2652 | 2529 |
| 2653 | 2530 |
| 2654 /** @domName SVGFEMergeNodeElement.in1 */ | 2531 /** @domName SVGFEMergeNodeElement.in1 */ |
| 2655 SVGAnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter"; | 2532 AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter"; |
| 2656 | 2533 |
| 2657 } | 2534 } |
| 2658 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2535 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2659 // for details. All rights reserved. Use of this source code is governed by a | 2536 // for details. All rights reserved. Use of this source code is governed by a |
| 2660 // BSD-style license that can be found in the LICENSE file. | 2537 // BSD-style license that can be found in the LICENSE file. |
| 2661 | 2538 |
| 2662 // WARNING: Do not edit - generated code. | 2539 // WARNING: Do not edit - generated code. |
| 2663 | 2540 |
| 2664 | 2541 |
| 2665 /// @domName SVGFEMorphologyElement | 2542 /// @domName SVGFEMorphologyElement |
| 2666 class SVGFEMorphologyElement extends SVGElement implements SVGFilterPrimitiveSta
ndardAttributes { | 2543 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2667 SVGFEMorphologyElement.internal(): super.internal(); | 2544 FEMorphologyElement.internal(): super.internal(); |
| 2668 | 2545 |
| 2669 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 2546 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 2670 | 2547 |
| 2671 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; | 2548 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 2672 | 2549 |
| 2673 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; | 2550 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 2674 | 2551 |
| 2675 | 2552 |
| 2676 /** @domName SVGFEMorphologyElement.in1 */ | 2553 /** @domName SVGFEMorphologyElement.in1 */ |
| 2677 SVGAnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter"; | 2554 AnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter"; |
| 2678 | 2555 |
| 2679 | 2556 |
| 2680 /** @domName SVGFEMorphologyElement.operator */ | 2557 /** @domName SVGFEMorphologyElement.operator */ |
| 2681 SVGAnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Ge
tter"; | 2558 AnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Gette
r"; |
| 2682 | 2559 |
| 2683 | 2560 |
| 2684 /** @domName SVGFEMorphologyElement.radiusX */ | 2561 /** @domName SVGFEMorphologyElement.radiusX */ |
| 2685 SVGAnimatedNumber get radiusX native "SVGFEMorphologyElement_radiusX_Getter"; | 2562 AnimatedNumber get radiusX native "SVGFEMorphologyElement_radiusX_Getter"; |
| 2686 | 2563 |
| 2687 | 2564 |
| 2688 /** @domName SVGFEMorphologyElement.radiusY */ | 2565 /** @domName SVGFEMorphologyElement.radiusY */ |
| 2689 SVGAnimatedNumber get radiusY native "SVGFEMorphologyElement_radiusY_Getter"; | 2566 AnimatedNumber get radiusY native "SVGFEMorphologyElement_radiusY_Getter"; |
| 2690 | 2567 |
| 2691 | 2568 |
| 2692 /** @domName SVGFEMorphologyElement.setRadius */ | 2569 /** @domName SVGFEMorphologyElement.setRadius */ |
| 2693 void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRad
ius_Callback"; | 2570 void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRad
ius_Callback"; |
| 2694 | 2571 |
| 2695 | 2572 |
| 2696 /** @domName SVGFEMorphologyElement.height */ | 2573 /** @domName SVGFEMorphologyElement.height */ |
| 2697 SVGAnimatedLength get height native "SVGFEMorphologyElement_height_Getter"; | 2574 AnimatedLength get height native "SVGFEMorphologyElement_height_Getter"; |
| 2698 | 2575 |
| 2699 | 2576 |
| 2700 /** @domName SVGFEMorphologyElement.result */ | 2577 /** @domName SVGFEMorphologyElement.result */ |
| 2701 SVGAnimatedString get result native "SVGFEMorphologyElement_result_Getter"; | 2578 AnimatedString get result native "SVGFEMorphologyElement_result_Getter"; |
| 2702 | 2579 |
| 2703 | 2580 |
| 2704 /** @domName SVGFEMorphologyElement.width */ | 2581 /** @domName SVGFEMorphologyElement.width */ |
| 2705 SVGAnimatedLength get width native "SVGFEMorphologyElement_width_Getter"; | 2582 AnimatedLength get width native "SVGFEMorphologyElement_width_Getter"; |
| 2706 | 2583 |
| 2707 | 2584 |
| 2708 /** @domName SVGFEMorphologyElement.x */ | 2585 /** @domName SVGFEMorphologyElement.x */ |
| 2709 SVGAnimatedLength get x native "SVGFEMorphologyElement_x_Getter"; | 2586 AnimatedLength get x native "SVGFEMorphologyElement_x_Getter"; |
| 2710 | 2587 |
| 2711 | 2588 |
| 2712 /** @domName SVGFEMorphologyElement.y */ | 2589 /** @domName SVGFEMorphologyElement.y */ |
| 2713 SVGAnimatedLength get y native "SVGFEMorphologyElement_y_Getter"; | 2590 AnimatedLength get y native "SVGFEMorphologyElement_y_Getter"; |
| 2714 | 2591 |
| 2715 | 2592 |
| 2716 /** @domName SVGFEMorphologyElement.className */ | 2593 /** @domName SVGFEMorphologyElement.className */ |
| 2717 SVGAnimatedString get $dom_svgClassName native "SVGFEMorphologyElement_classNa
me_Getter"; | 2594 AnimatedString get $dom_svgClassName native "SVGFEMorphologyElement_className_
Getter"; |
| 2718 | 2595 |
| 2719 | 2596 |
| 2720 /** @domName SVGFEMorphologyElement.style */ | 2597 /** @domName SVGFEMorphologyElement.style */ |
| 2721 CSSStyleDeclaration get style native "SVGFEMorphologyElement_style_Getter"; | 2598 CSSStyleDeclaration get style native "SVGFEMorphologyElement_style_Getter"; |
| 2722 | 2599 |
| 2723 | 2600 |
| 2724 /** @domName SVGFEMorphologyElement.getPresentationAttribute */ | 2601 /** @domName SVGFEMorphologyElement.getPresentationAttribute */ |
| 2725 CSSValue getPresentationAttribute(String name) native "SVGFEMorphologyElement_
getPresentationAttribute_Callback"; | 2602 CSSValue getPresentationAttribute(String name) native "SVGFEMorphologyElement_
getPresentationAttribute_Callback"; |
| 2726 | 2603 |
| 2727 } | 2604 } |
| 2728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2605 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2729 // for details. All rights reserved. Use of this source code is governed by a | 2606 // for details. All rights reserved. Use of this source code is governed by a |
| 2730 // BSD-style license that can be found in the LICENSE file. | 2607 // BSD-style license that can be found in the LICENSE file. |
| 2731 | 2608 |
| 2732 // WARNING: Do not edit - generated code. | 2609 // WARNING: Do not edit - generated code. |
| 2733 | 2610 |
| 2734 | 2611 |
| 2735 /// @domName SVGFEOffsetElement | 2612 /// @domName SVGFEOffsetElement |
| 2736 class SVGFEOffsetElement extends SVGElement implements SVGFilterPrimitiveStandar
dAttributes { | 2613 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
| 2737 SVGFEOffsetElement.internal(): super.internal(); | 2614 FEOffsetElement.internal(): super.internal(); |
| 2738 | 2615 |
| 2739 | 2616 |
| 2740 /** @domName SVGFEOffsetElement.dx */ | 2617 /** @domName SVGFEOffsetElement.dx */ |
| 2741 SVGAnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter"; | 2618 AnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter"; |
| 2742 | 2619 |
| 2743 | 2620 |
| 2744 /** @domName SVGFEOffsetElement.dy */ | 2621 /** @domName SVGFEOffsetElement.dy */ |
| 2745 SVGAnimatedNumber get dy native "SVGFEOffsetElement_dy_Getter"; | 2622 AnimatedNumber get dy native "SVGFEOffsetElement_dy_Getter"; |
| 2746 | 2623 |
| 2747 | 2624 |
| 2748 /** @domName SVGFEOffsetElement.in1 */ | 2625 /** @domName SVGFEOffsetElement.in1 */ |
| 2749 SVGAnimatedString get in1 native "SVGFEOffsetElement_in1_Getter"; | 2626 AnimatedString get in1 native "SVGFEOffsetElement_in1_Getter"; |
| 2750 | 2627 |
| 2751 | 2628 |
| 2752 /** @domName SVGFEOffsetElement.height */ | 2629 /** @domName SVGFEOffsetElement.height */ |
| 2753 SVGAnimatedLength get height native "SVGFEOffsetElement_height_Getter"; | 2630 AnimatedLength get height native "SVGFEOffsetElement_height_Getter"; |
| 2754 | 2631 |
| 2755 | 2632 |
| 2756 /** @domName SVGFEOffsetElement.result */ | 2633 /** @domName SVGFEOffsetElement.result */ |
| 2757 SVGAnimatedString get result native "SVGFEOffsetElement_result_Getter"; | 2634 AnimatedString get result native "SVGFEOffsetElement_result_Getter"; |
| 2758 | 2635 |
| 2759 | 2636 |
| 2760 /** @domName SVGFEOffsetElement.width */ | 2637 /** @domName SVGFEOffsetElement.width */ |
| 2761 SVGAnimatedLength get width native "SVGFEOffsetElement_width_Getter"; | 2638 AnimatedLength get width native "SVGFEOffsetElement_width_Getter"; |
| 2762 | 2639 |
| 2763 | 2640 |
| 2764 /** @domName SVGFEOffsetElement.x */ | 2641 /** @domName SVGFEOffsetElement.x */ |
| 2765 SVGAnimatedLength get x native "SVGFEOffsetElement_x_Getter"; | 2642 AnimatedLength get x native "SVGFEOffsetElement_x_Getter"; |
| 2766 | 2643 |
| 2767 | 2644 |
| 2768 /** @domName SVGFEOffsetElement.y */ | 2645 /** @domName SVGFEOffsetElement.y */ |
| 2769 SVGAnimatedLength get y native "SVGFEOffsetElement_y_Getter"; | 2646 AnimatedLength get y native "SVGFEOffsetElement_y_Getter"; |
| 2770 | 2647 |
| 2771 | 2648 |
| 2772 /** @domName SVGFEOffsetElement.className */ | 2649 /** @domName SVGFEOffsetElement.className */ |
| 2773 SVGAnimatedString get $dom_svgClassName native "SVGFEOffsetElement_className_G
etter"; | 2650 AnimatedString get $dom_svgClassName native "SVGFEOffsetElement_className_Gett
er"; |
| 2774 | 2651 |
| 2775 | 2652 |
| 2776 /** @domName SVGFEOffsetElement.style */ | 2653 /** @domName SVGFEOffsetElement.style */ |
| 2777 CSSStyleDeclaration get style native "SVGFEOffsetElement_style_Getter"; | 2654 CSSStyleDeclaration get style native "SVGFEOffsetElement_style_Getter"; |
| 2778 | 2655 |
| 2779 | 2656 |
| 2780 /** @domName SVGFEOffsetElement.getPresentationAttribute */ | 2657 /** @domName SVGFEOffsetElement.getPresentationAttribute */ |
| 2781 CSSValue getPresentationAttribute(String name) native "SVGFEOffsetElement_getP
resentationAttribute_Callback"; | 2658 CSSValue getPresentationAttribute(String name) native "SVGFEOffsetElement_getP
resentationAttribute_Callback"; |
| 2782 | 2659 |
| 2783 } | 2660 } |
| 2784 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2661 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2785 // for details. All rights reserved. Use of this source code is governed by a | 2662 // for details. All rights reserved. Use of this source code is governed by a |
| 2786 // BSD-style license that can be found in the LICENSE file. | 2663 // BSD-style license that can be found in the LICENSE file. |
| 2787 | 2664 |
| 2788 // WARNING: Do not edit - generated code. | 2665 // WARNING: Do not edit - generated code. |
| 2789 | 2666 |
| 2790 | 2667 |
| 2791 /// @domName SVGFEPointLightElement | 2668 /// @domName SVGFEPointLightElement |
| 2792 class SVGFEPointLightElement extends SVGElement { | 2669 class FEPointLightElement extends SvgElement { |
| 2793 SVGFEPointLightElement.internal(): super.internal(); | 2670 FEPointLightElement.internal(): super.internal(); |
| 2794 | 2671 |
| 2795 | 2672 |
| 2796 /** @domName SVGFEPointLightElement.x */ | 2673 /** @domName SVGFEPointLightElement.x */ |
| 2797 SVGAnimatedNumber get x native "SVGFEPointLightElement_x_Getter"; | 2674 AnimatedNumber get x native "SVGFEPointLightElement_x_Getter"; |
| 2798 | 2675 |
| 2799 | 2676 |
| 2800 /** @domName SVGFEPointLightElement.y */ | 2677 /** @domName SVGFEPointLightElement.y */ |
| 2801 SVGAnimatedNumber get y native "SVGFEPointLightElement_y_Getter"; | 2678 AnimatedNumber get y native "SVGFEPointLightElement_y_Getter"; |
| 2802 | 2679 |
| 2803 | 2680 |
| 2804 /** @domName SVGFEPointLightElement.z */ | 2681 /** @domName SVGFEPointLightElement.z */ |
| 2805 SVGAnimatedNumber get z native "SVGFEPointLightElement_z_Getter"; | 2682 AnimatedNumber get z native "SVGFEPointLightElement_z_Getter"; |
| 2806 | 2683 |
| 2807 } | 2684 } |
| 2808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2685 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2809 // for details. All rights reserved. Use of this source code is governed by a | 2686 // for details. All rights reserved. Use of this source code is governed by a |
| 2810 // BSD-style license that can be found in the LICENSE file. | 2687 // BSD-style license that can be found in the LICENSE file. |
| 2811 | 2688 |
| 2812 // WARNING: Do not edit - generated code. | 2689 // WARNING: Do not edit - generated code. |
| 2813 | 2690 |
| 2814 | 2691 |
| 2815 /// @domName SVGFESpecularLightingElement | 2692 /// @domName SVGFESpecularLightingElement |
| 2816 class SVGFESpecularLightingElement extends SVGElement implements SVGFilterPrimit
iveStandardAttributes { | 2693 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
| 2817 SVGFESpecularLightingElement.internal(): super.internal(); | 2694 FESpecularLightingElement.internal(): super.internal(); |
| 2818 | 2695 |
| 2819 | 2696 |
| 2820 /** @domName SVGFESpecularLightingElement.in1 */ | 2697 /** @domName SVGFESpecularLightingElement.in1 */ |
| 2821 SVGAnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter"; | 2698 AnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter"; |
| 2822 | 2699 |
| 2823 | 2700 |
| 2824 /** @domName SVGFESpecularLightingElement.specularConstant */ | 2701 /** @domName SVGFESpecularLightingElement.specularConstant */ |
| 2825 SVGAnimatedNumber get specularConstant native "SVGFESpecularLightingElement_sp
ecularConstant_Getter"; | 2702 AnimatedNumber get specularConstant native "SVGFESpecularLightingElement_specu
larConstant_Getter"; |
| 2826 | 2703 |
| 2827 | 2704 |
| 2828 /** @domName SVGFESpecularLightingElement.specularExponent */ | 2705 /** @domName SVGFESpecularLightingElement.specularExponent */ |
| 2829 SVGAnimatedNumber get specularExponent native "SVGFESpecularLightingElement_sp
ecularExponent_Getter"; | 2706 AnimatedNumber get specularExponent native "SVGFESpecularLightingElement_specu
larExponent_Getter"; |
| 2830 | 2707 |
| 2831 | 2708 |
| 2832 /** @domName SVGFESpecularLightingElement.surfaceScale */ | 2709 /** @domName SVGFESpecularLightingElement.surfaceScale */ |
| 2833 SVGAnimatedNumber get surfaceScale native "SVGFESpecularLightingElement_surfac
eScale_Getter"; | 2710 AnimatedNumber get surfaceScale native "SVGFESpecularLightingElement_surfaceSc
ale_Getter"; |
| 2834 | 2711 |
| 2835 | 2712 |
| 2836 /** @domName SVGFESpecularLightingElement.height */ | 2713 /** @domName SVGFESpecularLightingElement.height */ |
| 2837 SVGAnimatedLength get height native "SVGFESpecularLightingElement_height_Gette
r"; | 2714 AnimatedLength get height native "SVGFESpecularLightingElement_height_Getter"; |
| 2838 | 2715 |
| 2839 | 2716 |
| 2840 /** @domName SVGFESpecularLightingElement.result */ | 2717 /** @domName SVGFESpecularLightingElement.result */ |
| 2841 SVGAnimatedString get result native "SVGFESpecularLightingElement_result_Gette
r"; | 2718 AnimatedString get result native "SVGFESpecularLightingElement_result_Getter"; |
| 2842 | 2719 |
| 2843 | 2720 |
| 2844 /** @domName SVGFESpecularLightingElement.width */ | 2721 /** @domName SVGFESpecularLightingElement.width */ |
| 2845 SVGAnimatedLength get width native "SVGFESpecularLightingElement_width_Getter"
; | 2722 AnimatedLength get width native "SVGFESpecularLightingElement_width_Getter"; |
| 2846 | 2723 |
| 2847 | 2724 |
| 2848 /** @domName SVGFESpecularLightingElement.x */ | 2725 /** @domName SVGFESpecularLightingElement.x */ |
| 2849 SVGAnimatedLength get x native "SVGFESpecularLightingElement_x_Getter"; | 2726 AnimatedLength get x native "SVGFESpecularLightingElement_x_Getter"; |
| 2850 | 2727 |
| 2851 | 2728 |
| 2852 /** @domName SVGFESpecularLightingElement.y */ | 2729 /** @domName SVGFESpecularLightingElement.y */ |
| 2853 SVGAnimatedLength get y native "SVGFESpecularLightingElement_y_Getter"; | 2730 AnimatedLength get y native "SVGFESpecularLightingElement_y_Getter"; |
| 2854 | 2731 |
| 2855 | 2732 |
| 2856 /** @domName SVGFESpecularLightingElement.className */ | 2733 /** @domName SVGFESpecularLightingElement.className */ |
| 2857 SVGAnimatedString get $dom_svgClassName native "SVGFESpecularLightingElement_c
lassName_Getter"; | 2734 AnimatedString get $dom_svgClassName native "SVGFESpecularLightingElement_clas
sName_Getter"; |
| 2858 | 2735 |
| 2859 | 2736 |
| 2860 /** @domName SVGFESpecularLightingElement.style */ | 2737 /** @domName SVGFESpecularLightingElement.style */ |
| 2861 CSSStyleDeclaration get style native "SVGFESpecularLightingElement_style_Gette
r"; | 2738 CSSStyleDeclaration get style native "SVGFESpecularLightingElement_style_Gette
r"; |
| 2862 | 2739 |
| 2863 | 2740 |
| 2864 /** @domName SVGFESpecularLightingElement.getPresentationAttribute */ | 2741 /** @domName SVGFESpecularLightingElement.getPresentationAttribute */ |
| 2865 CSSValue getPresentationAttribute(String name) native "SVGFESpecularLightingEl
ement_getPresentationAttribute_Callback"; | 2742 CSSValue getPresentationAttribute(String name) native "SVGFESpecularLightingEl
ement_getPresentationAttribute_Callback"; |
| 2866 | 2743 |
| 2867 } | 2744 } |
| 2868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2869 // for details. All rights reserved. Use of this source code is governed by a | 2746 // for details. All rights reserved. Use of this source code is governed by a |
| 2870 // BSD-style license that can be found in the LICENSE file. | 2747 // BSD-style license that can be found in the LICENSE file. |
| 2871 | 2748 |
| 2872 // WARNING: Do not edit - generated code. | 2749 // WARNING: Do not edit - generated code. |
| 2873 | 2750 |
| 2874 | 2751 |
| 2875 /// @domName SVGFESpotLightElement | 2752 /// @domName SVGFESpotLightElement |
| 2876 class SVGFESpotLightElement extends SVGElement { | 2753 class FESpotLightElement extends SvgElement { |
| 2877 SVGFESpotLightElement.internal(): super.internal(); | 2754 FESpotLightElement.internal(): super.internal(); |
| 2878 | 2755 |
| 2879 | 2756 |
| 2880 /** @domName SVGFESpotLightElement.limitingConeAngle */ | 2757 /** @domName SVGFESpotLightElement.limitingConeAngle */ |
| 2881 SVGAnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limiting
ConeAngle_Getter"; | 2758 AnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limitingCon
eAngle_Getter"; |
| 2882 | 2759 |
| 2883 | 2760 |
| 2884 /** @domName SVGFESpotLightElement.pointsAtX */ | 2761 /** @domName SVGFESpotLightElement.pointsAtX */ |
| 2885 SVGAnimatedNumber get pointsAtX native "SVGFESpotLightElement_pointsAtX_Getter
"; | 2762 AnimatedNumber get pointsAtX native "SVGFESpotLightElement_pointsAtX_Getter"; |
| 2886 | 2763 |
| 2887 | 2764 |
| 2888 /** @domName SVGFESpotLightElement.pointsAtY */ | 2765 /** @domName SVGFESpotLightElement.pointsAtY */ |
| 2889 SVGAnimatedNumber get pointsAtY native "SVGFESpotLightElement_pointsAtY_Getter
"; | 2766 AnimatedNumber get pointsAtY native "SVGFESpotLightElement_pointsAtY_Getter"; |
| 2890 | 2767 |
| 2891 | 2768 |
| 2892 /** @domName SVGFESpotLightElement.pointsAtZ */ | 2769 /** @domName SVGFESpotLightElement.pointsAtZ */ |
| 2893 SVGAnimatedNumber get pointsAtZ native "SVGFESpotLightElement_pointsAtZ_Getter
"; | 2770 AnimatedNumber get pointsAtZ native "SVGFESpotLightElement_pointsAtZ_Getter"; |
| 2894 | 2771 |
| 2895 | 2772 |
| 2896 /** @domName SVGFESpotLightElement.specularExponent */ | 2773 /** @domName SVGFESpotLightElement.specularExponent */ |
| 2897 SVGAnimatedNumber get specularExponent native "SVGFESpotLightElement_specularE
xponent_Getter"; | 2774 AnimatedNumber get specularExponent native "SVGFESpotLightElement_specularExpo
nent_Getter"; |
| 2898 | 2775 |
| 2899 | 2776 |
| 2900 /** @domName SVGFESpotLightElement.x */ | 2777 /** @domName SVGFESpotLightElement.x */ |
| 2901 SVGAnimatedNumber get x native "SVGFESpotLightElement_x_Getter"; | 2778 AnimatedNumber get x native "SVGFESpotLightElement_x_Getter"; |
| 2902 | 2779 |
| 2903 | 2780 |
| 2904 /** @domName SVGFESpotLightElement.y */ | 2781 /** @domName SVGFESpotLightElement.y */ |
| 2905 SVGAnimatedNumber get y native "SVGFESpotLightElement_y_Getter"; | 2782 AnimatedNumber get y native "SVGFESpotLightElement_y_Getter"; |
| 2906 | 2783 |
| 2907 | 2784 |
| 2908 /** @domName SVGFESpotLightElement.z */ | 2785 /** @domName SVGFESpotLightElement.z */ |
| 2909 SVGAnimatedNumber get z native "SVGFESpotLightElement_z_Getter"; | 2786 AnimatedNumber get z native "SVGFESpotLightElement_z_Getter"; |
| 2910 | 2787 |
| 2911 } | 2788 } |
| 2912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2913 // for details. All rights reserved. Use of this source code is governed by a | 2790 // for details. All rights reserved. Use of this source code is governed by a |
| 2914 // BSD-style license that can be found in the LICENSE file. | 2791 // BSD-style license that can be found in the LICENSE file. |
| 2915 | 2792 |
| 2916 // WARNING: Do not edit - generated code. | 2793 // WARNING: Do not edit - generated code. |
| 2917 | 2794 |
| 2918 | 2795 |
| 2919 /// @domName SVGFETileElement | 2796 /// @domName SVGFETileElement |
| 2920 class SVGFETileElement extends SVGElement implements SVGFilterPrimitiveStandardA
ttributes { | 2797 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
| 2921 SVGFETileElement.internal(): super.internal(); | 2798 FETileElement.internal(): super.internal(); |
| 2922 | 2799 |
| 2923 | 2800 |
| 2924 /** @domName SVGFETileElement.in1 */ | 2801 /** @domName SVGFETileElement.in1 */ |
| 2925 SVGAnimatedString get in1 native "SVGFETileElement_in1_Getter"; | 2802 AnimatedString get in1 native "SVGFETileElement_in1_Getter"; |
| 2926 | 2803 |
| 2927 | 2804 |
| 2928 /** @domName SVGFETileElement.height */ | 2805 /** @domName SVGFETileElement.height */ |
| 2929 SVGAnimatedLength get height native "SVGFETileElement_height_Getter"; | 2806 AnimatedLength get height native "SVGFETileElement_height_Getter"; |
| 2930 | 2807 |
| 2931 | 2808 |
| 2932 /** @domName SVGFETileElement.result */ | 2809 /** @domName SVGFETileElement.result */ |
| 2933 SVGAnimatedString get result native "SVGFETileElement_result_Getter"; | 2810 AnimatedString get result native "SVGFETileElement_result_Getter"; |
| 2934 | 2811 |
| 2935 | 2812 |
| 2936 /** @domName SVGFETileElement.width */ | 2813 /** @domName SVGFETileElement.width */ |
| 2937 SVGAnimatedLength get width native "SVGFETileElement_width_Getter"; | 2814 AnimatedLength get width native "SVGFETileElement_width_Getter"; |
| 2938 | 2815 |
| 2939 | 2816 |
| 2940 /** @domName SVGFETileElement.x */ | 2817 /** @domName SVGFETileElement.x */ |
| 2941 SVGAnimatedLength get x native "SVGFETileElement_x_Getter"; | 2818 AnimatedLength get x native "SVGFETileElement_x_Getter"; |
| 2942 | 2819 |
| 2943 | 2820 |
| 2944 /** @domName SVGFETileElement.y */ | 2821 /** @domName SVGFETileElement.y */ |
| 2945 SVGAnimatedLength get y native "SVGFETileElement_y_Getter"; | 2822 AnimatedLength get y native "SVGFETileElement_y_Getter"; |
| 2946 | 2823 |
| 2947 | 2824 |
| 2948 /** @domName SVGFETileElement.className */ | 2825 /** @domName SVGFETileElement.className */ |
| 2949 SVGAnimatedString get $dom_svgClassName native "SVGFETileElement_className_Get
ter"; | 2826 AnimatedString get $dom_svgClassName native "SVGFETileElement_className_Getter
"; |
| 2950 | 2827 |
| 2951 | 2828 |
| 2952 /** @domName SVGFETileElement.style */ | 2829 /** @domName SVGFETileElement.style */ |
| 2953 CSSStyleDeclaration get style native "SVGFETileElement_style_Getter"; | 2830 CSSStyleDeclaration get style native "SVGFETileElement_style_Getter"; |
| 2954 | 2831 |
| 2955 | 2832 |
| 2956 /** @domName SVGFETileElement.getPresentationAttribute */ | 2833 /** @domName SVGFETileElement.getPresentationAttribute */ |
| 2957 CSSValue getPresentationAttribute(String name) native "SVGFETileElement_getPre
sentationAttribute_Callback"; | 2834 CSSValue getPresentationAttribute(String name) native "SVGFETileElement_getPre
sentationAttribute_Callback"; |
| 2958 | 2835 |
| 2959 } | 2836 } |
| 2960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2961 // for details. All rights reserved. Use of this source code is governed by a | 2838 // for details. All rights reserved. Use of this source code is governed by a |
| 2962 // BSD-style license that can be found in the LICENSE file. | 2839 // BSD-style license that can be found in the LICENSE file. |
| 2963 | 2840 |
| 2964 // WARNING: Do not edit - generated code. | 2841 // WARNING: Do not edit - generated code. |
| 2965 | 2842 |
| 2966 | 2843 |
| 2967 /// @domName SVGFETurbulenceElement | 2844 /// @domName SVGFETurbulenceElement |
| 2968 class SVGFETurbulenceElement extends SVGElement implements SVGFilterPrimitiveSta
ndardAttributes { | 2845 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2969 SVGFETurbulenceElement.internal(): super.internal(); | 2846 FETurbulenceElement.internal(): super.internal(); |
| 2970 | 2847 |
| 2971 static const int SVG_STITCHTYPE_NOSTITCH = 2; | 2848 static const int SVG_STITCHTYPE_NOSTITCH = 2; |
| 2972 | 2849 |
| 2973 static const int SVG_STITCHTYPE_STITCH = 1; | 2850 static const int SVG_STITCHTYPE_STITCH = 1; |
| 2974 | 2851 |
| 2975 static const int SVG_STITCHTYPE_UNKNOWN = 0; | 2852 static const int SVG_STITCHTYPE_UNKNOWN = 0; |
| 2976 | 2853 |
| 2977 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; | 2854 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
| 2978 | 2855 |
| 2979 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; | 2856 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 2980 | 2857 |
| 2981 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; | 2858 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 2982 | 2859 |
| 2983 | 2860 |
| 2984 /** @domName SVGFETurbulenceElement.baseFrequencyX */ | 2861 /** @domName SVGFETurbulenceElement.baseFrequencyX */ |
| 2985 SVGAnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFreque
ncyX_Getter"; | 2862 AnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFrequency
X_Getter"; |
| 2986 | 2863 |
| 2987 | 2864 |
| 2988 /** @domName SVGFETurbulenceElement.baseFrequencyY */ | 2865 /** @domName SVGFETurbulenceElement.baseFrequencyY */ |
| 2989 SVGAnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFreque
ncyY_Getter"; | 2866 AnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFrequency
Y_Getter"; |
| 2990 | 2867 |
| 2991 | 2868 |
| 2992 /** @domName SVGFETurbulenceElement.numOctaves */ | 2869 /** @domName SVGFETurbulenceElement.numOctaves */ |
| 2993 SVGAnimatedInteger get numOctaves native "SVGFETurbulenceElement_numOctaves_Ge
tter"; | 2870 AnimatedInteger get numOctaves native "SVGFETurbulenceElement_numOctaves_Gette
r"; |
| 2994 | 2871 |
| 2995 | 2872 |
| 2996 /** @domName SVGFETurbulenceElement.seed */ | 2873 /** @domName SVGFETurbulenceElement.seed */ |
| 2997 SVGAnimatedNumber get seed native "SVGFETurbulenceElement_seed_Getter"; | 2874 AnimatedNumber get seed native "SVGFETurbulenceElement_seed_Getter"; |
| 2998 | 2875 |
| 2999 | 2876 |
| 3000 /** @domName SVGFETurbulenceElement.stitchTiles */ | 2877 /** @domName SVGFETurbulenceElement.stitchTiles */ |
| 3001 SVGAnimatedEnumeration get stitchTiles native "SVGFETurbulenceElement_stitchTi
les_Getter"; | 2878 AnimatedEnumeration get stitchTiles native "SVGFETurbulenceElement_stitchTiles
_Getter"; |
| 3002 | 2879 |
| 3003 | 2880 |
| 3004 /** @domName SVGFETurbulenceElement.type */ | 2881 /** @domName SVGFETurbulenceElement.type */ |
| 3005 SVGAnimatedEnumeration get type native "SVGFETurbulenceElement_type_Getter"; | 2882 AnimatedEnumeration get type native "SVGFETurbulenceElement_type_Getter"; |
| 3006 | 2883 |
| 3007 | 2884 |
| 3008 /** @domName SVGFETurbulenceElement.height */ | 2885 /** @domName SVGFETurbulenceElement.height */ |
| 3009 SVGAnimatedLength get height native "SVGFETurbulenceElement_height_Getter"; | 2886 AnimatedLength get height native "SVGFETurbulenceElement_height_Getter"; |
| 3010 | 2887 |
| 3011 | 2888 |
| 3012 /** @domName SVGFETurbulenceElement.result */ | 2889 /** @domName SVGFETurbulenceElement.result */ |
| 3013 SVGAnimatedString get result native "SVGFETurbulenceElement_result_Getter"; | 2890 AnimatedString get result native "SVGFETurbulenceElement_result_Getter"; |
| 3014 | 2891 |
| 3015 | 2892 |
| 3016 /** @domName SVGFETurbulenceElement.width */ | 2893 /** @domName SVGFETurbulenceElement.width */ |
| 3017 SVGAnimatedLength get width native "SVGFETurbulenceElement_width_Getter"; | 2894 AnimatedLength get width native "SVGFETurbulenceElement_width_Getter"; |
| 3018 | 2895 |
| 3019 | 2896 |
| 3020 /** @domName SVGFETurbulenceElement.x */ | 2897 /** @domName SVGFETurbulenceElement.x */ |
| 3021 SVGAnimatedLength get x native "SVGFETurbulenceElement_x_Getter"; | 2898 AnimatedLength get x native "SVGFETurbulenceElement_x_Getter"; |
| 3022 | 2899 |
| 3023 | 2900 |
| 3024 /** @domName SVGFETurbulenceElement.y */ | 2901 /** @domName SVGFETurbulenceElement.y */ |
| 3025 SVGAnimatedLength get y native "SVGFETurbulenceElement_y_Getter"; | 2902 AnimatedLength get y native "SVGFETurbulenceElement_y_Getter"; |
| 3026 | 2903 |
| 3027 | 2904 |
| 3028 /** @domName SVGFETurbulenceElement.className */ | 2905 /** @domName SVGFETurbulenceElement.className */ |
| 3029 SVGAnimatedString get $dom_svgClassName native "SVGFETurbulenceElement_classNa
me_Getter"; | 2906 AnimatedString get $dom_svgClassName native "SVGFETurbulenceElement_className_
Getter"; |
| 3030 | 2907 |
| 3031 | 2908 |
| 3032 /** @domName SVGFETurbulenceElement.style */ | 2909 /** @domName SVGFETurbulenceElement.style */ |
| 3033 CSSStyleDeclaration get style native "SVGFETurbulenceElement_style_Getter"; | 2910 CSSStyleDeclaration get style native "SVGFETurbulenceElement_style_Getter"; |
| 3034 | 2911 |
| 3035 | 2912 |
| 3036 /** @domName SVGFETurbulenceElement.getPresentationAttribute */ | 2913 /** @domName SVGFETurbulenceElement.getPresentationAttribute */ |
| 3037 CSSValue getPresentationAttribute(String name) native "SVGFETurbulenceElement_
getPresentationAttribute_Callback"; | 2914 CSSValue getPresentationAttribute(String name) native "SVGFETurbulenceElement_
getPresentationAttribute_Callback"; |
| 3038 | 2915 |
| 3039 } | 2916 } |
| 3040 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3041 // for details. All rights reserved. Use of this source code is governed by a | 2918 // for details. All rights reserved. Use of this source code is governed by a |
| 3042 // BSD-style license that can be found in the LICENSE file. | 2919 // BSD-style license that can be found in the LICENSE file. |
| 3043 | 2920 |
| 3044 // WARNING: Do not edit - generated code. | 2921 // WARNING: Do not edit - generated code. |
| 3045 | 2922 |
| 3046 | 2923 |
| 3047 /// @domName SVGFilterElement | 2924 /// @domName SVGFilterElement |
| 3048 class SVGFilterElement extends SVGElement implements SVGURIReference, SVGLangSpa
ce, SVGExternalResourcesRequired, SVGStylable { | 2925 class FilterElement extends SvgElement implements UriReference, ExternalResource
sRequired, Stylable, LangSpace { |
| 3049 | 2926 |
| 3050 factory SVGFilterElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"filter"); | 2927 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); |
| 3051 SVGFilterElement.internal(): super.internal(); | 2928 FilterElement.internal(): super.internal(); |
| 3052 | 2929 |
| 3053 | 2930 |
| 3054 /** @domName SVGFilterElement.filterResX */ | 2931 /** @domName SVGFilterElement.filterResX */ |
| 3055 SVGAnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter"; | 2932 AnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter"; |
| 3056 | 2933 |
| 3057 | 2934 |
| 3058 /** @domName SVGFilterElement.filterResY */ | 2935 /** @domName SVGFilterElement.filterResY */ |
| 3059 SVGAnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter"; | 2936 AnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter"; |
| 3060 | 2937 |
| 3061 | 2938 |
| 3062 /** @domName SVGFilterElement.filterUnits */ | 2939 /** @domName SVGFilterElement.filterUnits */ |
| 3063 SVGAnimatedEnumeration get filterUnits native "SVGFilterElement_filterUnits_Ge
tter"; | 2940 AnimatedEnumeration get filterUnits native "SVGFilterElement_filterUnits_Gette
r"; |
| 3064 | 2941 |
| 3065 | 2942 |
| 3066 /** @domName SVGFilterElement.height */ | 2943 /** @domName SVGFilterElement.height */ |
| 3067 SVGAnimatedLength get height native "SVGFilterElement_height_Getter"; | 2944 AnimatedLength get height native "SVGFilterElement_height_Getter"; |
| 3068 | 2945 |
| 3069 | 2946 |
| 3070 /** @domName SVGFilterElement.primitiveUnits */ | 2947 /** @domName SVGFilterElement.primitiveUnits */ |
| 3071 SVGAnimatedEnumeration get primitiveUnits native "SVGFilterElement_primitiveUn
its_Getter"; | 2948 AnimatedEnumeration get primitiveUnits native "SVGFilterElement_primitiveUnits
_Getter"; |
| 3072 | 2949 |
| 3073 | 2950 |
| 3074 /** @domName SVGFilterElement.width */ | 2951 /** @domName SVGFilterElement.width */ |
| 3075 SVGAnimatedLength get width native "SVGFilterElement_width_Getter"; | 2952 AnimatedLength get width native "SVGFilterElement_width_Getter"; |
| 3076 | 2953 |
| 3077 | 2954 |
| 3078 /** @domName SVGFilterElement.x */ | 2955 /** @domName SVGFilterElement.x */ |
| 3079 SVGAnimatedLength get x native "SVGFilterElement_x_Getter"; | 2956 AnimatedLength get x native "SVGFilterElement_x_Getter"; |
| 3080 | 2957 |
| 3081 | 2958 |
| 3082 /** @domName SVGFilterElement.y */ | 2959 /** @domName SVGFilterElement.y */ |
| 3083 SVGAnimatedLength get y native "SVGFilterElement_y_Getter"; | 2960 AnimatedLength get y native "SVGFilterElement_y_Getter"; |
| 3084 | 2961 |
| 3085 | 2962 |
| 3086 /** @domName SVGFilterElement.setFilterRes */ | 2963 /** @domName SVGFilterElement.setFilterRes */ |
| 3087 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set
FilterRes_Callback"; | 2964 void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_set
FilterRes_Callback"; |
| 3088 | 2965 |
| 3089 | 2966 |
| 3090 /** @domName SVGFilterElement.externalResourcesRequired */ | 2967 /** @domName SVGFilterElement.externalResourcesRequired */ |
| 3091 SVGAnimatedBoolean get externalResourcesRequired native "SVGFilterElement_exte
rnalResourcesRequired_Getter"; | 2968 AnimatedBoolean get externalResourcesRequired native "SVGFilterElement_externa
lResourcesRequired_Getter"; |
| 3092 | 2969 |
| 3093 | 2970 |
| 3094 /** @domName SVGFilterElement.xmllang */ | 2971 /** @domName SVGFilterElement.xmllang */ |
| 3095 String get xmllang native "SVGFilterElement_xmllang_Getter"; | 2972 String get xmllang native "SVGFilterElement_xmllang_Getter"; |
| 3096 | 2973 |
| 3097 | 2974 |
| 3098 /** @domName SVGFilterElement.xmllang */ | 2975 /** @domName SVGFilterElement.xmllang */ |
| 3099 void set xmllang(String value) native "SVGFilterElement_xmllang_Setter"; | 2976 void set xmllang(String value) native "SVGFilterElement_xmllang_Setter"; |
| 3100 | 2977 |
| 3101 | 2978 |
| 3102 /** @domName SVGFilterElement.xmlspace */ | 2979 /** @domName SVGFilterElement.xmlspace */ |
| 3103 String get xmlspace native "SVGFilterElement_xmlspace_Getter"; | 2980 String get xmlspace native "SVGFilterElement_xmlspace_Getter"; |
| 3104 | 2981 |
| 3105 | 2982 |
| 3106 /** @domName SVGFilterElement.xmlspace */ | 2983 /** @domName SVGFilterElement.xmlspace */ |
| 3107 void set xmlspace(String value) native "SVGFilterElement_xmlspace_Setter"; | 2984 void set xmlspace(String value) native "SVGFilterElement_xmlspace_Setter"; |
| 3108 | 2985 |
| 3109 | 2986 |
| 3110 /** @domName SVGFilterElement.className */ | 2987 /** @domName SVGFilterElement.className */ |
| 3111 SVGAnimatedString get $dom_svgClassName native "SVGFilterElement_className_Get
ter"; | 2988 AnimatedString get $dom_svgClassName native "SVGFilterElement_className_Getter
"; |
| 3112 | 2989 |
| 3113 | 2990 |
| 3114 /** @domName SVGFilterElement.style */ | 2991 /** @domName SVGFilterElement.style */ |
| 3115 CSSStyleDeclaration get style native "SVGFilterElement_style_Getter"; | 2992 CSSStyleDeclaration get style native "SVGFilterElement_style_Getter"; |
| 3116 | 2993 |
| 3117 | 2994 |
| 3118 /** @domName SVGFilterElement.getPresentationAttribute */ | 2995 /** @domName SVGFilterElement.getPresentationAttribute */ |
| 3119 CSSValue getPresentationAttribute(String name) native "SVGFilterElement_getPre
sentationAttribute_Callback"; | 2996 CSSValue getPresentationAttribute(String name) native "SVGFilterElement_getPre
sentationAttribute_Callback"; |
| 3120 | 2997 |
| 3121 | 2998 |
| 3122 /** @domName SVGFilterElement.href */ | 2999 /** @domName SVGFilterElement.href */ |
| 3123 SVGAnimatedString get href native "SVGFilterElement_href_Getter"; | 3000 AnimatedString get href native "SVGFilterElement_href_Getter"; |
| 3124 | 3001 |
| 3125 } | 3002 } |
| 3126 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3003 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3127 // for details. All rights reserved. Use of this source code is governed by a | 3004 // for details. All rights reserved. Use of this source code is governed by a |
| 3128 // BSD-style license that can be found in the LICENSE file. | 3005 // BSD-style license that can be found in the LICENSE file. |
| 3129 | 3006 |
| 3130 // WARNING: Do not edit - generated code. | 3007 // WARNING: Do not edit - generated code. |
| 3131 | 3008 |
| 3132 | 3009 |
| 3133 /// @domName SVGFilterPrimitiveStandardAttributes | 3010 /// @domName SVGFilterPrimitiveStandardAttributes |
| 3134 class SVGFilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 impl
ements SVGStylable { | 3011 class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 impleme
nts Stylable { |
| 3135 SVGFilterPrimitiveStandardAttributes.internal(); | 3012 FilterPrimitiveStandardAttributes.internal(); |
| 3136 | 3013 |
| 3137 | 3014 |
| 3138 /** @domName SVGFilterPrimitiveStandardAttributes.height */ | 3015 /** @domName SVGFilterPrimitiveStandardAttributes.height */ |
| 3139 SVGAnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_heig
ht_Getter"; | 3016 AnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_height_
Getter"; |
| 3140 | 3017 |
| 3141 | 3018 |
| 3142 /** @domName SVGFilterPrimitiveStandardAttributes.result */ | 3019 /** @domName SVGFilterPrimitiveStandardAttributes.result */ |
| 3143 SVGAnimatedString get result native "SVGFilterPrimitiveStandardAttributes_resu
lt_Getter"; | 3020 AnimatedString get result native "SVGFilterPrimitiveStandardAttributes_result_
Getter"; |
| 3144 | 3021 |
| 3145 | 3022 |
| 3146 /** @domName SVGFilterPrimitiveStandardAttributes.width */ | 3023 /** @domName SVGFilterPrimitiveStandardAttributes.width */ |
| 3147 SVGAnimatedLength get width native "SVGFilterPrimitiveStandardAttributes_width
_Getter"; | 3024 AnimatedLength get width native "SVGFilterPrimitiveStandardAttributes_width_Ge
tter"; |
| 3148 | 3025 |
| 3149 | 3026 |
| 3150 /** @domName SVGFilterPrimitiveStandardAttributes.x */ | 3027 /** @domName SVGFilterPrimitiveStandardAttributes.x */ |
| 3151 SVGAnimatedLength get x native "SVGFilterPrimitiveStandardAttributes_x_Getter"
; | 3028 AnimatedLength get x native "SVGFilterPrimitiveStandardAttributes_x_Getter"; |
| 3152 | 3029 |
| 3153 | 3030 |
| 3154 /** @domName SVGFilterPrimitiveStandardAttributes.y */ | 3031 /** @domName SVGFilterPrimitiveStandardAttributes.y */ |
| 3155 SVGAnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter"
; | 3032 AnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter"; |
| 3156 | 3033 |
| 3157 | 3034 |
| 3158 /** @domName SVGFilterPrimitiveStandardAttributes.className */ | 3035 /** @domName SVGFilterPrimitiveStandardAttributes.className */ |
| 3159 SVGAnimatedString get $dom_svgClassName native "SVGFilterPrimitiveStandardAttr
ibutes_className_Getter"; | 3036 AnimatedString get $dom_svgClassName native "SVGFilterPrimitiveStandardAttribu
tes_className_Getter"; |
| 3160 | 3037 |
| 3161 | 3038 |
| 3162 /** @domName SVGFilterPrimitiveStandardAttributes.style */ | 3039 /** @domName SVGFilterPrimitiveStandardAttributes.style */ |
| 3163 CSSStyleDeclaration get style native "SVGFilterPrimitiveStandardAttributes_sty
le_Getter"; | 3040 CSSStyleDeclaration get style native "SVGFilterPrimitiveStandardAttributes_sty
le_Getter"; |
| 3164 | 3041 |
| 3165 | 3042 |
| 3166 /** @domName SVGFilterPrimitiveStandardAttributes.getPresentationAttribute */ | 3043 /** @domName SVGFilterPrimitiveStandardAttributes.getPresentationAttribute */ |
| 3167 CSSValue getPresentationAttribute(String name) native "SVGFilterPrimitiveStand
ardAttributes_getPresentationAttribute_Callback"; | 3044 CSSValue getPresentationAttribute(String name) native "SVGFilterPrimitiveStand
ardAttributes_getPresentationAttribute_Callback"; |
| 3168 | 3045 |
| 3169 } | 3046 } |
| 3170 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3047 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3171 // for details. All rights reserved. Use of this source code is governed by a | 3048 // for details. All rights reserved. Use of this source code is governed by a |
| 3172 // BSD-style license that can be found in the LICENSE file. | 3049 // BSD-style license that can be found in the LICENSE file. |
| 3173 | 3050 |
| 3174 // WARNING: Do not edit - generated code. | 3051 // WARNING: Do not edit - generated code. |
| 3175 | 3052 |
| 3176 | 3053 |
| 3177 /// @domName SVGFitToViewBox | 3054 /// @domName SVGFitToViewBox |
| 3178 class SVGFitToViewBox extends NativeFieldWrapperClass1 { | 3055 class FitToViewBox extends NativeFieldWrapperClass1 { |
| 3179 SVGFitToViewBox.internal(); | 3056 FitToViewBox.internal(); |
| 3180 | 3057 |
| 3181 | 3058 |
| 3182 /** @domName SVGFitToViewBox.preserveAspectRatio */ | 3059 /** @domName SVGFitToViewBox.preserveAspectRatio */ |
| 3183 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox
_preserveAspectRatio_Getter"; | 3060 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox_pr
eserveAspectRatio_Getter"; |
| 3184 | 3061 |
| 3185 | 3062 |
| 3186 /** @domName SVGFitToViewBox.viewBox */ | 3063 /** @domName SVGFitToViewBox.viewBox */ |
| 3187 SVGAnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter"; | 3064 AnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter"; |
| 3188 | 3065 |
| 3189 } | 3066 } |
| 3190 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3067 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3191 // for details. All rights reserved. Use of this source code is governed by a | 3068 // for details. All rights reserved. Use of this source code is governed by a |
| 3192 // BSD-style license that can be found in the LICENSE file. | 3069 // BSD-style license that can be found in the LICENSE file. |
| 3193 | 3070 |
| 3194 // WARNING: Do not edit - generated code. | 3071 // WARNING: Do not edit - generated code. |
| 3195 | 3072 |
| 3196 | 3073 |
| 3197 /// @domName SVGFontElement | 3074 /// @domName SVGFontElement |
| 3198 class SVGFontElement extends SVGElement { | 3075 class FontElement extends SvgElement { |
| 3199 | 3076 |
| 3200 factory SVGFontElement() => _SVGElementFactoryProvider.createSVGElement_tag("f
ont"); | 3077 factory FontElement() => _SvgElementFactoryProvider.createSvgElement_tag("font
"); |
| 3201 SVGFontElement.internal(): super.internal(); | 3078 FontElement.internal(): super.internal(); |
| 3202 | 3079 |
| 3203 } | 3080 } |
| 3204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3081 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3205 // for details. All rights reserved. Use of this source code is governed by a | 3082 // for details. All rights reserved. Use of this source code is governed by a |
| 3206 // BSD-style license that can be found in the LICENSE file. | 3083 // BSD-style license that can be found in the LICENSE file. |
| 3207 | 3084 |
| 3208 // WARNING: Do not edit - generated code. | 3085 // WARNING: Do not edit - generated code. |
| 3209 | 3086 |
| 3210 | 3087 |
| 3211 /// @domName SVGFontFaceElement | 3088 /// @domName SVGFontFaceElement |
| 3212 class SVGFontFaceElement extends SVGElement { | 3089 class FontFaceElement extends SvgElement { |
| 3213 | 3090 |
| 3214 factory SVGFontFaceElement() => _SVGElementFactoryProvider.createSVGElement_ta
g("font-face"); | 3091 factory FontFaceElement() => _SvgElementFactoryProvider.createSvgElement_tag("
font-face"); |
| 3215 SVGFontFaceElement.internal(): super.internal(); | 3092 FontFaceElement.internal(): super.internal(); |
| 3216 | 3093 |
| 3217 } | 3094 } |
| 3218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3095 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3219 // for details. All rights reserved. Use of this source code is governed by a | 3096 // for details. All rights reserved. Use of this source code is governed by a |
| 3220 // BSD-style license that can be found in the LICENSE file. | 3097 // BSD-style license that can be found in the LICENSE file. |
| 3221 | 3098 |
| 3222 // WARNING: Do not edit - generated code. | 3099 // WARNING: Do not edit - generated code. |
| 3223 | 3100 |
| 3224 | 3101 |
| 3225 /// @domName SVGFontFaceFormatElement | 3102 /// @domName SVGFontFaceFormatElement |
| 3226 class SVGFontFaceFormatElement extends SVGElement { | 3103 class FontFaceFormatElement extends SvgElement { |
| 3227 | 3104 |
| 3228 factory SVGFontFaceFormatElement() => _SVGElementFactoryProvider.createSVGElem
ent_tag("font-face-format"); | 3105 factory FontFaceFormatElement() => _SvgElementFactoryProvider.createSvgElement
_tag("font-face-format"); |
| 3229 SVGFontFaceFormatElement.internal(): super.internal(); | 3106 FontFaceFormatElement.internal(): super.internal(); |
| 3230 | 3107 |
| 3231 } | 3108 } |
| 3232 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3233 // for details. All rights reserved. Use of this source code is governed by a | 3110 // for details. All rights reserved. Use of this source code is governed by a |
| 3234 // BSD-style license that can be found in the LICENSE file. | 3111 // BSD-style license that can be found in the LICENSE file. |
| 3235 | 3112 |
| 3236 // WARNING: Do not edit - generated code. | 3113 // WARNING: Do not edit - generated code. |
| 3237 | 3114 |
| 3238 | 3115 |
| 3239 /// @domName SVGFontFaceNameElement | 3116 /// @domName SVGFontFaceNameElement |
| 3240 class SVGFontFaceNameElement extends SVGElement { | 3117 class FontFaceNameElement extends SvgElement { |
| 3241 | 3118 |
| 3242 factory SVGFontFaceNameElement() => _SVGElementFactoryProvider.createSVGElemen
t_tag("font-face-name"); | 3119 factory FontFaceNameElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("font-face-name"); |
| 3243 SVGFontFaceNameElement.internal(): super.internal(); | 3120 FontFaceNameElement.internal(): super.internal(); |
| 3244 | 3121 |
| 3245 } | 3122 } |
| 3246 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3123 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3247 // for details. All rights reserved. Use of this source code is governed by a | 3124 // for details. All rights reserved. Use of this source code is governed by a |
| 3248 // BSD-style license that can be found in the LICENSE file. | 3125 // BSD-style license that can be found in the LICENSE file. |
| 3249 | 3126 |
| 3250 // WARNING: Do not edit - generated code. | 3127 // WARNING: Do not edit - generated code. |
| 3251 | 3128 |
| 3252 | 3129 |
| 3253 /// @domName SVGFontFaceSrcElement | 3130 /// @domName SVGFontFaceSrcElement |
| 3254 class SVGFontFaceSrcElement extends SVGElement { | 3131 class FontFaceSrcElement extends SvgElement { |
| 3255 | 3132 |
| 3256 factory SVGFontFaceSrcElement() => _SVGElementFactoryProvider.createSVGElement
_tag("font-face-src"); | 3133 factory FontFaceSrcElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("font-face-src"); |
| 3257 SVGFontFaceSrcElement.internal(): super.internal(); | 3134 FontFaceSrcElement.internal(): super.internal(); |
| 3258 | 3135 |
| 3259 } | 3136 } |
| 3260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3261 // for details. All rights reserved. Use of this source code is governed by a | 3138 // for details. All rights reserved. Use of this source code is governed by a |
| 3262 // BSD-style license that can be found in the LICENSE file. | 3139 // BSD-style license that can be found in the LICENSE file. |
| 3263 | 3140 |
| 3264 // WARNING: Do not edit - generated code. | 3141 // WARNING: Do not edit - generated code. |
| 3265 | 3142 |
| 3266 | 3143 |
| 3267 /// @domName SVGFontFaceUriElement | 3144 /// @domName SVGFontFaceUriElement |
| 3268 class SVGFontFaceUriElement extends SVGElement { | 3145 class FontFaceUriElement extends SvgElement { |
| 3269 | 3146 |
| 3270 factory SVGFontFaceUriElement() => _SVGElementFactoryProvider.createSVGElement
_tag("font-face-uri"); | 3147 factory FontFaceUriElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("font-face-uri"); |
| 3271 SVGFontFaceUriElement.internal(): super.internal(); | 3148 FontFaceUriElement.internal(): super.internal(); |
| 3272 | 3149 |
| 3273 } | 3150 } |
| 3274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3151 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3275 // for details. All rights reserved. Use of this source code is governed by a | 3152 // for details. All rights reserved. Use of this source code is governed by a |
| 3276 // BSD-style license that can be found in the LICENSE file. | 3153 // BSD-style license that can be found in the LICENSE file. |
| 3277 | 3154 |
| 3278 // WARNING: Do not edit - generated code. | 3155 // WARNING: Do not edit - generated code. |
| 3279 | 3156 |
| 3280 | 3157 |
| 3281 /// @domName SVGForeignObjectElement | 3158 /// @domName SVGForeignObjectElement |
| 3282 class SVGForeignObjectElement extends SVGElement implements SVGLangSpace, SVGSty
lable, SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 3159 class ForeignObjectElement extends SvgElement implements Transformable, Tests, S
tylable, ExternalResourcesRequired, LangSpace { |
| 3283 | 3160 |
| 3284 factory SVGForeignObjectElement() => _SVGElementFactoryProvider.createSVGEleme
nt_tag("foreignObject"); | 3161 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); |
| 3285 SVGForeignObjectElement.internal(): super.internal(); | 3162 ForeignObjectElement.internal(): super.internal(); |
| 3286 | 3163 |
| 3287 | 3164 |
| 3288 /** @domName SVGForeignObjectElement.height */ | 3165 /** @domName SVGForeignObjectElement.height */ |
| 3289 SVGAnimatedLength get height native "SVGForeignObjectElement_height_Getter"; | 3166 AnimatedLength get height native "SVGForeignObjectElement_height_Getter"; |
| 3290 | 3167 |
| 3291 | 3168 |
| 3292 /** @domName SVGForeignObjectElement.width */ | 3169 /** @domName SVGForeignObjectElement.width */ |
| 3293 SVGAnimatedLength get width native "SVGForeignObjectElement_width_Getter"; | 3170 AnimatedLength get width native "SVGForeignObjectElement_width_Getter"; |
| 3294 | 3171 |
| 3295 | 3172 |
| 3296 /** @domName SVGForeignObjectElement.x */ | 3173 /** @domName SVGForeignObjectElement.x */ |
| 3297 SVGAnimatedLength get x native "SVGForeignObjectElement_x_Getter"; | 3174 AnimatedLength get x native "SVGForeignObjectElement_x_Getter"; |
| 3298 | 3175 |
| 3299 | 3176 |
| 3300 /** @domName SVGForeignObjectElement.y */ | 3177 /** @domName SVGForeignObjectElement.y */ |
| 3301 SVGAnimatedLength get y native "SVGForeignObjectElement_y_Getter"; | 3178 AnimatedLength get y native "SVGForeignObjectElement_y_Getter"; |
| 3302 | 3179 |
| 3303 | 3180 |
| 3304 /** @domName SVGForeignObjectElement.externalResourcesRequired */ | 3181 /** @domName SVGForeignObjectElement.externalResourcesRequired */ |
| 3305 SVGAnimatedBoolean get externalResourcesRequired native "SVGForeignObjectEleme
nt_externalResourcesRequired_Getter"; | 3182 AnimatedBoolean get externalResourcesRequired native "SVGForeignObjectElement_
externalResourcesRequired_Getter"; |
| 3306 | 3183 |
| 3307 | 3184 |
| 3308 /** @domName SVGForeignObjectElement.xmllang */ | 3185 /** @domName SVGForeignObjectElement.xmllang */ |
| 3309 String get xmllang native "SVGForeignObjectElement_xmllang_Getter"; | 3186 String get xmllang native "SVGForeignObjectElement_xmllang_Getter"; |
| 3310 | 3187 |
| 3311 | 3188 |
| 3312 /** @domName SVGForeignObjectElement.xmllang */ | 3189 /** @domName SVGForeignObjectElement.xmllang */ |
| 3313 void set xmllang(String value) native "SVGForeignObjectElement_xmllang_Setter"
; | 3190 void set xmllang(String value) native "SVGForeignObjectElement_xmllang_Setter"
; |
| 3314 | 3191 |
| 3315 | 3192 |
| 3316 /** @domName SVGForeignObjectElement.xmlspace */ | 3193 /** @domName SVGForeignObjectElement.xmlspace */ |
| 3317 String get xmlspace native "SVGForeignObjectElement_xmlspace_Getter"; | 3194 String get xmlspace native "SVGForeignObjectElement_xmlspace_Getter"; |
| 3318 | 3195 |
| 3319 | 3196 |
| 3320 /** @domName SVGForeignObjectElement.xmlspace */ | 3197 /** @domName SVGForeignObjectElement.xmlspace */ |
| 3321 void set xmlspace(String value) native "SVGForeignObjectElement_xmlspace_Sette
r"; | 3198 void set xmlspace(String value) native "SVGForeignObjectElement_xmlspace_Sette
r"; |
| 3322 | 3199 |
| 3323 | 3200 |
| 3324 /** @domName SVGForeignObjectElement.farthestViewportElement */ | 3201 /** @domName SVGForeignObjectElement.farthestViewportElement */ |
| 3325 SVGElement get farthestViewportElement native "SVGForeignObjectElement_farthes
tViewportElement_Getter"; | 3202 SvgElement get farthestViewportElement native "SVGForeignObjectElement_farthes
tViewportElement_Getter"; |
| 3326 | 3203 |
| 3327 | 3204 |
| 3328 /** @domName SVGForeignObjectElement.nearestViewportElement */ | 3205 /** @domName SVGForeignObjectElement.nearestViewportElement */ |
| 3329 SVGElement get nearestViewportElement native "SVGForeignObjectElement_nearestV
iewportElement_Getter"; | 3206 SvgElement get nearestViewportElement native "SVGForeignObjectElement_nearestV
iewportElement_Getter"; |
| 3330 | 3207 |
| 3331 | 3208 |
| 3332 /** @domName SVGForeignObjectElement.getBBox */ | 3209 /** @domName SVGForeignObjectElement.getBBox */ |
| 3333 SVGRect getBBox() native "SVGForeignObjectElement_getBBox_Callback"; | 3210 Rect getBBox() native "SVGForeignObjectElement_getBBox_Callback"; |
| 3334 | 3211 |
| 3335 | 3212 |
| 3336 /** @domName SVGForeignObjectElement.getCTM */ | 3213 /** @domName SVGForeignObjectElement.getCTM */ |
| 3337 SVGMatrix getCTM() native "SVGForeignObjectElement_getCTM_Callback"; | 3214 Matrix getCTM() native "SVGForeignObjectElement_getCTM_Callback"; |
| 3338 | 3215 |
| 3339 | 3216 |
| 3340 /** @domName SVGForeignObjectElement.getScreenCTM */ | 3217 /** @domName SVGForeignObjectElement.getScreenCTM */ |
| 3341 SVGMatrix getScreenCTM() native "SVGForeignObjectElement_getScreenCTM_Callback
"; | 3218 Matrix getScreenCTM() native "SVGForeignObjectElement_getScreenCTM_Callback"; |
| 3342 | 3219 |
| 3343 | 3220 |
| 3344 /** @domName SVGForeignObjectElement.getTransformToElement */ | 3221 /** @domName SVGForeignObjectElement.getTransformToElement */ |
| 3345 SVGMatrix getTransformToElement(SVGElement element) native "SVGForeignObjectEl
ement_getTransformToElement_Callback"; | 3222 Matrix getTransformToElement(SvgElement element) native "SVGForeignObjectEleme
nt_getTransformToElement_Callback"; |
| 3346 | 3223 |
| 3347 | 3224 |
| 3348 /** @domName SVGForeignObjectElement.className */ | 3225 /** @domName SVGForeignObjectElement.className */ |
| 3349 SVGAnimatedString get $dom_svgClassName native "SVGForeignObjectElement_classN
ame_Getter"; | 3226 AnimatedString get $dom_svgClassName native "SVGForeignObjectElement_className
_Getter"; |
| 3350 | 3227 |
| 3351 | 3228 |
| 3352 /** @domName SVGForeignObjectElement.style */ | 3229 /** @domName SVGForeignObjectElement.style */ |
| 3353 CSSStyleDeclaration get style native "SVGForeignObjectElement_style_Getter"; | 3230 CSSStyleDeclaration get style native "SVGForeignObjectElement_style_Getter"; |
| 3354 | 3231 |
| 3355 | 3232 |
| 3356 /** @domName SVGForeignObjectElement.getPresentationAttribute */ | 3233 /** @domName SVGForeignObjectElement.getPresentationAttribute */ |
| 3357 CSSValue getPresentationAttribute(String name) native "SVGForeignObjectElement
_getPresentationAttribute_Callback"; | 3234 CSSValue getPresentationAttribute(String name) native "SVGForeignObjectElement
_getPresentationAttribute_Callback"; |
| 3358 | 3235 |
| 3359 | 3236 |
| 3360 /** @domName SVGForeignObjectElement.requiredExtensions */ | 3237 /** @domName SVGForeignObjectElement.requiredExtensions */ |
| 3361 SVGStringList get requiredExtensions native "SVGForeignObjectElement_requiredE
xtensions_Getter"; | 3238 StringList get requiredExtensions native "SVGForeignObjectElement_requiredExte
nsions_Getter"; |
| 3362 | 3239 |
| 3363 | 3240 |
| 3364 /** @domName SVGForeignObjectElement.requiredFeatures */ | 3241 /** @domName SVGForeignObjectElement.requiredFeatures */ |
| 3365 SVGStringList get requiredFeatures native "SVGForeignObjectElement_requiredFea
tures_Getter"; | 3242 StringList get requiredFeatures native "SVGForeignObjectElement_requiredFeatur
es_Getter"; |
| 3366 | 3243 |
| 3367 | 3244 |
| 3368 /** @domName SVGForeignObjectElement.systemLanguage */ | 3245 /** @domName SVGForeignObjectElement.systemLanguage */ |
| 3369 SVGStringList get systemLanguage native "SVGForeignObjectElement_systemLanguag
e_Getter"; | 3246 StringList get systemLanguage native "SVGForeignObjectElement_systemLanguage_G
etter"; |
| 3370 | 3247 |
| 3371 | 3248 |
| 3372 /** @domName SVGForeignObjectElement.hasExtension */ | 3249 /** @domName SVGForeignObjectElement.hasExtension */ |
| 3373 bool hasExtension(String extension) native "SVGForeignObjectElement_hasExtensi
on_Callback"; | 3250 bool hasExtension(String extension) native "SVGForeignObjectElement_hasExtensi
on_Callback"; |
| 3374 | 3251 |
| 3375 | 3252 |
| 3376 /** @domName SVGForeignObjectElement.transform */ | 3253 /** @domName SVGForeignObjectElement.transform */ |
| 3377 SVGAnimatedTransformList get transform native "SVGForeignObjectElement_transfo
rm_Getter"; | 3254 AnimatedTransformList get transform native "SVGForeignObjectElement_transform_
Getter"; |
| 3378 | 3255 |
| 3379 } | 3256 } |
| 3380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3257 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3381 // for details. All rights reserved. Use of this source code is governed by a | 3258 // for details. All rights reserved. Use of this source code is governed by a |
| 3382 // BSD-style license that can be found in the LICENSE file. | 3259 // BSD-style license that can be found in the LICENSE file. |
| 3383 | 3260 |
| 3384 // WARNING: Do not edit - generated code. | 3261 // WARNING: Do not edit - generated code. |
| 3385 | 3262 |
| 3386 | 3263 |
| 3387 /// @domName SVGGElement | 3264 /// @domName SVGGElement |
| 3388 class SVGGElement extends SVGElement implements SVGLangSpace, SVGStylable, SVGTe
sts, SVGTransformable, SVGExternalResourcesRequired { | 3265 class GElement extends SvgElement implements Transformable, Tests, Stylable, Ext
ernalResourcesRequired, LangSpace { |
| 3389 | 3266 |
| 3390 factory SVGGElement() => _SVGElementFactoryProvider.createSVGElement_tag("g"); | 3267 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); |
| 3391 SVGGElement.internal(): super.internal(); | 3268 GElement.internal(): super.internal(); |
| 3392 | 3269 |
| 3393 | 3270 |
| 3394 /** @domName SVGGElement.externalResourcesRequired */ | 3271 /** @domName SVGGElement.externalResourcesRequired */ |
| 3395 SVGAnimatedBoolean get externalResourcesRequired native "SVGGElement_externalR
esourcesRequired_Getter"; | 3272 AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalReso
urcesRequired_Getter"; |
| 3396 | 3273 |
| 3397 | 3274 |
| 3398 /** @domName SVGGElement.xmllang */ | 3275 /** @domName SVGGElement.xmllang */ |
| 3399 String get xmllang native "SVGGElement_xmllang_Getter"; | 3276 String get xmllang native "SVGGElement_xmllang_Getter"; |
| 3400 | 3277 |
| 3401 | 3278 |
| 3402 /** @domName SVGGElement.xmllang */ | 3279 /** @domName SVGGElement.xmllang */ |
| 3403 void set xmllang(String value) native "SVGGElement_xmllang_Setter"; | 3280 void set xmllang(String value) native "SVGGElement_xmllang_Setter"; |
| 3404 | 3281 |
| 3405 | 3282 |
| 3406 /** @domName SVGGElement.xmlspace */ | 3283 /** @domName SVGGElement.xmlspace */ |
| 3407 String get xmlspace native "SVGGElement_xmlspace_Getter"; | 3284 String get xmlspace native "SVGGElement_xmlspace_Getter"; |
| 3408 | 3285 |
| 3409 | 3286 |
| 3410 /** @domName SVGGElement.xmlspace */ | 3287 /** @domName SVGGElement.xmlspace */ |
| 3411 void set xmlspace(String value) native "SVGGElement_xmlspace_Setter"; | 3288 void set xmlspace(String value) native "SVGGElement_xmlspace_Setter"; |
| 3412 | 3289 |
| 3413 | 3290 |
| 3414 /** @domName SVGGElement.farthestViewportElement */ | 3291 /** @domName SVGGElement.farthestViewportElement */ |
| 3415 SVGElement get farthestViewportElement native "SVGGElement_farthestViewportEle
ment_Getter"; | 3292 SvgElement get farthestViewportElement native "SVGGElement_farthestViewportEle
ment_Getter"; |
| 3416 | 3293 |
| 3417 | 3294 |
| 3418 /** @domName SVGGElement.nearestViewportElement */ | 3295 /** @domName SVGGElement.nearestViewportElement */ |
| 3419 SVGElement get nearestViewportElement native "SVGGElement_nearestViewportEleme
nt_Getter"; | 3296 SvgElement get nearestViewportElement native "SVGGElement_nearestViewportEleme
nt_Getter"; |
| 3420 | 3297 |
| 3421 | 3298 |
| 3422 /** @domName SVGGElement.getBBox */ | 3299 /** @domName SVGGElement.getBBox */ |
| 3423 SVGRect getBBox() native "SVGGElement_getBBox_Callback"; | 3300 Rect getBBox() native "SVGGElement_getBBox_Callback"; |
| 3424 | 3301 |
| 3425 | 3302 |
| 3426 /** @domName SVGGElement.getCTM */ | 3303 /** @domName SVGGElement.getCTM */ |
| 3427 SVGMatrix getCTM() native "SVGGElement_getCTM_Callback"; | 3304 Matrix getCTM() native "SVGGElement_getCTM_Callback"; |
| 3428 | 3305 |
| 3429 | 3306 |
| 3430 /** @domName SVGGElement.getScreenCTM */ | 3307 /** @domName SVGGElement.getScreenCTM */ |
| 3431 SVGMatrix getScreenCTM() native "SVGGElement_getScreenCTM_Callback"; | 3308 Matrix getScreenCTM() native "SVGGElement_getScreenCTM_Callback"; |
| 3432 | 3309 |
| 3433 | 3310 |
| 3434 /** @domName SVGGElement.getTransformToElement */ | 3311 /** @domName SVGGElement.getTransformToElement */ |
| 3435 SVGMatrix getTransformToElement(SVGElement element) native "SVGGElement_getTra
nsformToElement_Callback"; | 3312 Matrix getTransformToElement(SvgElement element) native "SVGGElement_getTransf
ormToElement_Callback"; |
| 3436 | 3313 |
| 3437 | 3314 |
| 3438 /** @domName SVGGElement.className */ | 3315 /** @domName SVGGElement.className */ |
| 3439 SVGAnimatedString get $dom_svgClassName native "SVGGElement_className_Getter"; | 3316 AnimatedString get $dom_svgClassName native "SVGGElement_className_Getter"; |
| 3440 | 3317 |
| 3441 | 3318 |
| 3442 /** @domName SVGGElement.style */ | 3319 /** @domName SVGGElement.style */ |
| 3443 CSSStyleDeclaration get style native "SVGGElement_style_Getter"; | 3320 CSSStyleDeclaration get style native "SVGGElement_style_Getter"; |
| 3444 | 3321 |
| 3445 | 3322 |
| 3446 /** @domName SVGGElement.getPresentationAttribute */ | 3323 /** @domName SVGGElement.getPresentationAttribute */ |
| 3447 CSSValue getPresentationAttribute(String name) native "SVGGElement_getPresenta
tionAttribute_Callback"; | 3324 CSSValue getPresentationAttribute(String name) native "SVGGElement_getPresenta
tionAttribute_Callback"; |
| 3448 | 3325 |
| 3449 | 3326 |
| 3450 /** @domName SVGGElement.requiredExtensions */ | 3327 /** @domName SVGGElement.requiredExtensions */ |
| 3451 SVGStringList get requiredExtensions native "SVGGElement_requiredExtensions_Ge
tter"; | 3328 StringList get requiredExtensions native "SVGGElement_requiredExtensions_Gette
r"; |
| 3452 | 3329 |
| 3453 | 3330 |
| 3454 /** @domName SVGGElement.requiredFeatures */ | 3331 /** @domName SVGGElement.requiredFeatures */ |
| 3455 SVGStringList get requiredFeatures native "SVGGElement_requiredFeatures_Getter
"; | 3332 StringList get requiredFeatures native "SVGGElement_requiredFeatures_Getter"; |
| 3456 | 3333 |
| 3457 | 3334 |
| 3458 /** @domName SVGGElement.systemLanguage */ | 3335 /** @domName SVGGElement.systemLanguage */ |
| 3459 SVGStringList get systemLanguage native "SVGGElement_systemLanguage_Getter"; | 3336 StringList get systemLanguage native "SVGGElement_systemLanguage_Getter"; |
| 3460 | 3337 |
| 3461 | 3338 |
| 3462 /** @domName SVGGElement.hasExtension */ | 3339 /** @domName SVGGElement.hasExtension */ |
| 3463 bool hasExtension(String extension) native "SVGGElement_hasExtension_Callback"
; | 3340 bool hasExtension(String extension) native "SVGGElement_hasExtension_Callback"
; |
| 3464 | 3341 |
| 3465 | 3342 |
| 3466 /** @domName SVGGElement.transform */ | 3343 /** @domName SVGGElement.transform */ |
| 3467 SVGAnimatedTransformList get transform native "SVGGElement_transform_Getter"; | 3344 AnimatedTransformList get transform native "SVGGElement_transform_Getter"; |
| 3468 | 3345 |
| 3469 } | 3346 } |
| 3470 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3347 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3471 // for details. All rights reserved. Use of this source code is governed by a | 3348 // for details. All rights reserved. Use of this source code is governed by a |
| 3472 // BSD-style license that can be found in the LICENSE file. | 3349 // BSD-style license that can be found in the LICENSE file. |
| 3473 | 3350 |
| 3474 // WARNING: Do not edit - generated code. | 3351 // WARNING: Do not edit - generated code. |
| 3475 | 3352 |
| 3476 | 3353 |
| 3477 /// @domName SVGGlyphElement | 3354 /// @domName SVGGlyphElement |
| 3478 class SVGGlyphElement extends SVGElement { | 3355 class GlyphElement extends SvgElement { |
| 3479 | 3356 |
| 3480 factory SVGGlyphElement() => _SVGElementFactoryProvider.createSVGElement_tag("
glyph"); | 3357 factory GlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("gly
ph"); |
| 3481 SVGGlyphElement.internal(): super.internal(); | 3358 GlyphElement.internal(): super.internal(); |
| 3482 | 3359 |
| 3483 } | 3360 } |
| 3484 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3485 // for details. All rights reserved. Use of this source code is governed by a | 3362 // for details. All rights reserved. Use of this source code is governed by a |
| 3486 // BSD-style license that can be found in the LICENSE file. | 3363 // BSD-style license that can be found in the LICENSE file. |
| 3487 | 3364 |
| 3488 // WARNING: Do not edit - generated code. | 3365 // WARNING: Do not edit - generated code. |
| 3489 | 3366 |
| 3490 | 3367 |
| 3491 /// @domName SVGGlyphRefElement | 3368 /// @domName SVGGlyphRefElement |
| 3492 class SVGGlyphRefElement extends SVGElement implements SVGURIReference, SVGStyla
ble { | 3369 class GlyphRefElement extends SvgElement implements UriReference, Stylable { |
| 3493 SVGGlyphRefElement.internal(): super.internal(); | 3370 GlyphRefElement.internal(): super.internal(); |
| 3494 | 3371 |
| 3495 | 3372 |
| 3496 /** @domName SVGGlyphRefElement.dx */ | 3373 /** @domName SVGGlyphRefElement.dx */ |
| 3497 num get dx native "SVGGlyphRefElement_dx_Getter"; | 3374 num get dx native "SVGGlyphRefElement_dx_Getter"; |
| 3498 | 3375 |
| 3499 | 3376 |
| 3500 /** @domName SVGGlyphRefElement.dx */ | 3377 /** @domName SVGGlyphRefElement.dx */ |
| 3501 void set dx(num value) native "SVGGlyphRefElement_dx_Setter"; | 3378 void set dx(num value) native "SVGGlyphRefElement_dx_Setter"; |
| 3502 | 3379 |
| 3503 | 3380 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3535 | 3412 |
| 3536 /** @domName SVGGlyphRefElement.y */ | 3413 /** @domName SVGGlyphRefElement.y */ |
| 3537 num get y native "SVGGlyphRefElement_y_Getter"; | 3414 num get y native "SVGGlyphRefElement_y_Getter"; |
| 3538 | 3415 |
| 3539 | 3416 |
| 3540 /** @domName SVGGlyphRefElement.y */ | 3417 /** @domName SVGGlyphRefElement.y */ |
| 3541 void set y(num value) native "SVGGlyphRefElement_y_Setter"; | 3418 void set y(num value) native "SVGGlyphRefElement_y_Setter"; |
| 3542 | 3419 |
| 3543 | 3420 |
| 3544 /** @domName SVGGlyphRefElement.className */ | 3421 /** @domName SVGGlyphRefElement.className */ |
| 3545 SVGAnimatedString get $dom_svgClassName native "SVGGlyphRefElement_className_G
etter"; | 3422 AnimatedString get $dom_svgClassName native "SVGGlyphRefElement_className_Gett
er"; |
| 3546 | 3423 |
| 3547 | 3424 |
| 3548 /** @domName SVGGlyphRefElement.style */ | 3425 /** @domName SVGGlyphRefElement.style */ |
| 3549 CSSStyleDeclaration get style native "SVGGlyphRefElement_style_Getter"; | 3426 CSSStyleDeclaration get style native "SVGGlyphRefElement_style_Getter"; |
| 3550 | 3427 |
| 3551 | 3428 |
| 3552 /** @domName SVGGlyphRefElement.getPresentationAttribute */ | 3429 /** @domName SVGGlyphRefElement.getPresentationAttribute */ |
| 3553 CSSValue getPresentationAttribute(String name) native "SVGGlyphRefElement_getP
resentationAttribute_Callback"; | 3430 CSSValue getPresentationAttribute(String name) native "SVGGlyphRefElement_getP
resentationAttribute_Callback"; |
| 3554 | 3431 |
| 3555 | 3432 |
| 3556 /** @domName SVGGlyphRefElement.href */ | 3433 /** @domName SVGGlyphRefElement.href */ |
| 3557 SVGAnimatedString get href native "SVGGlyphRefElement_href_Getter"; | 3434 AnimatedString get href native "SVGGlyphRefElement_href_Getter"; |
| 3558 | 3435 |
| 3559 } | 3436 } |
| 3560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3437 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3561 // for details. All rights reserved. Use of this source code is governed by a | 3438 // for details. All rights reserved. Use of this source code is governed by a |
| 3562 // BSD-style license that can be found in the LICENSE file. | 3439 // BSD-style license that can be found in the LICENSE file. |
| 3563 | 3440 |
| 3564 // WARNING: Do not edit - generated code. | 3441 // WARNING: Do not edit - generated code. |
| 3565 | 3442 |
| 3566 | 3443 |
| 3567 /// @domName SVGGradientElement | 3444 /// @domName SVGGradientElement |
| 3568 class SVGGradientElement extends SVGElement implements SVGURIReference, SVGExter
nalResourcesRequired, SVGStylable { | 3445 class GradientElement extends SvgElement implements UriReference, ExternalResour
cesRequired, Stylable { |
| 3569 SVGGradientElement.internal(): super.internal(); | 3446 GradientElement.internal(): super.internal(); |
| 3570 | 3447 |
| 3571 static const int SVG_SPREADMETHOD_PAD = 1; | 3448 static const int SVG_SPREADMETHOD_PAD = 1; |
| 3572 | 3449 |
| 3573 static const int SVG_SPREADMETHOD_REFLECT = 2; | 3450 static const int SVG_SPREADMETHOD_REFLECT = 2; |
| 3574 | 3451 |
| 3575 static const int SVG_SPREADMETHOD_REPEAT = 3; | 3452 static const int SVG_SPREADMETHOD_REPEAT = 3; |
| 3576 | 3453 |
| 3577 static const int SVG_SPREADMETHOD_UNKNOWN = 0; | 3454 static const int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 3578 | 3455 |
| 3579 | 3456 |
| 3580 /** @domName SVGGradientElement.gradientTransform */ | 3457 /** @domName SVGGradientElement.gradientTransform */ |
| 3581 SVGAnimatedTransformList get gradientTransform native "SVGGradientElement_grad
ientTransform_Getter"; | 3458 AnimatedTransformList get gradientTransform native "SVGGradientElement_gradien
tTransform_Getter"; |
| 3582 | 3459 |
| 3583 | 3460 |
| 3584 /** @domName SVGGradientElement.gradientUnits */ | 3461 /** @domName SVGGradientElement.gradientUnits */ |
| 3585 SVGAnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUn
its_Getter"; | 3462 AnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUnits
_Getter"; |
| 3586 | 3463 |
| 3587 | 3464 |
| 3588 /** @domName SVGGradientElement.spreadMethod */ | 3465 /** @domName SVGGradientElement.spreadMethod */ |
| 3589 SVGAnimatedEnumeration get spreadMethod native "SVGGradientElement_spreadMetho
d_Getter"; | 3466 AnimatedEnumeration get spreadMethod native "SVGGradientElement_spreadMethod_G
etter"; |
| 3590 | 3467 |
| 3591 | 3468 |
| 3592 /** @domName SVGGradientElement.externalResourcesRequired */ | 3469 /** @domName SVGGradientElement.externalResourcesRequired */ |
| 3593 SVGAnimatedBoolean get externalResourcesRequired native "SVGGradientElement_ex
ternalResourcesRequired_Getter"; | 3470 AnimatedBoolean get externalResourcesRequired native "SVGGradientElement_exter
nalResourcesRequired_Getter"; |
| 3594 | 3471 |
| 3595 | 3472 |
| 3596 /** @domName SVGGradientElement.className */ | 3473 /** @domName SVGGradientElement.className */ |
| 3597 SVGAnimatedString get $dom_svgClassName native "SVGGradientElement_className_G
etter"; | 3474 AnimatedString get $dom_svgClassName native "SVGGradientElement_className_Gett
er"; |
| 3598 | 3475 |
| 3599 | 3476 |
| 3600 /** @domName SVGGradientElement.style */ | 3477 /** @domName SVGGradientElement.style */ |
| 3601 CSSStyleDeclaration get style native "SVGGradientElement_style_Getter"; | 3478 CSSStyleDeclaration get style native "SVGGradientElement_style_Getter"; |
| 3602 | 3479 |
| 3603 | 3480 |
| 3604 /** @domName SVGGradientElement.getPresentationAttribute */ | 3481 /** @domName SVGGradientElement.getPresentationAttribute */ |
| 3605 CSSValue getPresentationAttribute(String name) native "SVGGradientElement_getP
resentationAttribute_Callback"; | 3482 CSSValue getPresentationAttribute(String name) native "SVGGradientElement_getP
resentationAttribute_Callback"; |
| 3606 | 3483 |
| 3607 | 3484 |
| 3608 /** @domName SVGGradientElement.href */ | 3485 /** @domName SVGGradientElement.href */ |
| 3609 SVGAnimatedString get href native "SVGGradientElement_href_Getter"; | 3486 AnimatedString get href native "SVGGradientElement_href_Getter"; |
| 3610 | 3487 |
| 3611 } | 3488 } |
| 3612 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3489 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3613 // for details. All rights reserved. Use of this source code is governed by a | 3490 // for details. All rights reserved. Use of this source code is governed by a |
| 3614 // BSD-style license that can be found in the LICENSE file. | 3491 // BSD-style license that can be found in the LICENSE file. |
| 3615 | 3492 |
| 3616 // WARNING: Do not edit - generated code. | 3493 // WARNING: Do not edit - generated code. |
| 3617 | 3494 |
| 3618 | 3495 |
| 3619 /// @domName SVGHKernElement | 3496 /// @domName SVGHKernElement |
| 3620 class SVGHKernElement extends SVGElement { | 3497 class HKernElement extends SvgElement { |
| 3621 | 3498 |
| 3622 factory SVGHKernElement() => _SVGElementFactoryProvider.createSVGElement_tag("
hkern"); | 3499 factory HKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("hke
rn"); |
| 3623 SVGHKernElement.internal(): super.internal(); | 3500 HKernElement.internal(): super.internal(); |
| 3624 | 3501 |
| 3625 } | 3502 } |
| 3626 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3627 // for details. All rights reserved. Use of this source code is governed by a | 3504 // for details. All rights reserved. Use of this source code is governed by a |
| 3628 // BSD-style license that can be found in the LICENSE file. | 3505 // BSD-style license that can be found in the LICENSE file. |
| 3629 | 3506 |
| 3630 // WARNING: Do not edit - generated code. | 3507 // WARNING: Do not edit - generated code. |
| 3631 | 3508 |
| 3632 | 3509 |
| 3633 /// @domName SVGImageElement | 3510 /// @domName SVGImageElement |
| 3634 class SVGImageElement extends SVGElement implements SVGLangSpace, SVGTests, SVGS
tylable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { | 3511 class ImageElement extends SvgElement implements Transformable, Tests, UriRefere
nce, Stylable, ExternalResourcesRequired, LangSpace { |
| 3635 | 3512 |
| 3636 factory SVGImageElement() => _SVGElementFactoryProvider.createSVGElement_tag("
image"); | 3513 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); |
| 3637 SVGImageElement.internal(): super.internal(); | 3514 ImageElement.internal(): super.internal(); |
| 3638 | 3515 |
| 3639 | 3516 |
| 3640 /** @domName SVGImageElement.height */ | 3517 /** @domName SVGImageElement.height */ |
| 3641 SVGAnimatedLength get height native "SVGImageElement_height_Getter"; | 3518 AnimatedLength get height native "SVGImageElement_height_Getter"; |
| 3642 | 3519 |
| 3643 | 3520 |
| 3644 /** @domName SVGImageElement.preserveAspectRatio */ | 3521 /** @domName SVGImageElement.preserveAspectRatio */ |
| 3645 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement
_preserveAspectRatio_Getter"; | 3522 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement_pr
eserveAspectRatio_Getter"; |
| 3646 | 3523 |
| 3647 | 3524 |
| 3648 /** @domName SVGImageElement.width */ | 3525 /** @domName SVGImageElement.width */ |
| 3649 SVGAnimatedLength get width native "SVGImageElement_width_Getter"; | 3526 AnimatedLength get width native "SVGImageElement_width_Getter"; |
| 3650 | 3527 |
| 3651 | 3528 |
| 3652 /** @domName SVGImageElement.x */ | 3529 /** @domName SVGImageElement.x */ |
| 3653 SVGAnimatedLength get x native "SVGImageElement_x_Getter"; | 3530 AnimatedLength get x native "SVGImageElement_x_Getter"; |
| 3654 | 3531 |
| 3655 | 3532 |
| 3656 /** @domName SVGImageElement.y */ | 3533 /** @domName SVGImageElement.y */ |
| 3657 SVGAnimatedLength get y native "SVGImageElement_y_Getter"; | 3534 AnimatedLength get y native "SVGImageElement_y_Getter"; |
| 3658 | 3535 |
| 3659 | 3536 |
| 3660 /** @domName SVGImageElement.externalResourcesRequired */ | 3537 /** @domName SVGImageElement.externalResourcesRequired */ |
| 3661 SVGAnimatedBoolean get externalResourcesRequired native "SVGImageElement_exter
nalResourcesRequired_Getter"; | 3538 AnimatedBoolean get externalResourcesRequired native "SVGImageElement_external
ResourcesRequired_Getter"; |
| 3662 | 3539 |
| 3663 | 3540 |
| 3664 /** @domName SVGImageElement.xmllang */ | 3541 /** @domName SVGImageElement.xmllang */ |
| 3665 String get xmllang native "SVGImageElement_xmllang_Getter"; | 3542 String get xmllang native "SVGImageElement_xmllang_Getter"; |
| 3666 | 3543 |
| 3667 | 3544 |
| 3668 /** @domName SVGImageElement.xmllang */ | 3545 /** @domName SVGImageElement.xmllang */ |
| 3669 void set xmllang(String value) native "SVGImageElement_xmllang_Setter"; | 3546 void set xmllang(String value) native "SVGImageElement_xmllang_Setter"; |
| 3670 | 3547 |
| 3671 | 3548 |
| 3672 /** @domName SVGImageElement.xmlspace */ | 3549 /** @domName SVGImageElement.xmlspace */ |
| 3673 String get xmlspace native "SVGImageElement_xmlspace_Getter"; | 3550 String get xmlspace native "SVGImageElement_xmlspace_Getter"; |
| 3674 | 3551 |
| 3675 | 3552 |
| 3676 /** @domName SVGImageElement.xmlspace */ | 3553 /** @domName SVGImageElement.xmlspace */ |
| 3677 void set xmlspace(String value) native "SVGImageElement_xmlspace_Setter"; | 3554 void set xmlspace(String value) native "SVGImageElement_xmlspace_Setter"; |
| 3678 | 3555 |
| 3679 | 3556 |
| 3680 /** @domName SVGImageElement.farthestViewportElement */ | 3557 /** @domName SVGImageElement.farthestViewportElement */ |
| 3681 SVGElement get farthestViewportElement native "SVGImageElement_farthestViewpor
tElement_Getter"; | 3558 SvgElement get farthestViewportElement native "SVGImageElement_farthestViewpor
tElement_Getter"; |
| 3682 | 3559 |
| 3683 | 3560 |
| 3684 /** @domName SVGImageElement.nearestViewportElement */ | 3561 /** @domName SVGImageElement.nearestViewportElement */ |
| 3685 SVGElement get nearestViewportElement native "SVGImageElement_nearestViewportE
lement_Getter"; | 3562 SvgElement get nearestViewportElement native "SVGImageElement_nearestViewportE
lement_Getter"; |
| 3686 | 3563 |
| 3687 | 3564 |
| 3688 /** @domName SVGImageElement.getBBox */ | 3565 /** @domName SVGImageElement.getBBox */ |
| 3689 SVGRect getBBox() native "SVGImageElement_getBBox_Callback"; | 3566 Rect getBBox() native "SVGImageElement_getBBox_Callback"; |
| 3690 | 3567 |
| 3691 | 3568 |
| 3692 /** @domName SVGImageElement.getCTM */ | 3569 /** @domName SVGImageElement.getCTM */ |
| 3693 SVGMatrix getCTM() native "SVGImageElement_getCTM_Callback"; | 3570 Matrix getCTM() native "SVGImageElement_getCTM_Callback"; |
| 3694 | 3571 |
| 3695 | 3572 |
| 3696 /** @domName SVGImageElement.getScreenCTM */ | 3573 /** @domName SVGImageElement.getScreenCTM */ |
| 3697 SVGMatrix getScreenCTM() native "SVGImageElement_getScreenCTM_Callback"; | 3574 Matrix getScreenCTM() native "SVGImageElement_getScreenCTM_Callback"; |
| 3698 | 3575 |
| 3699 | 3576 |
| 3700 /** @domName SVGImageElement.getTransformToElement */ | 3577 /** @domName SVGImageElement.getTransformToElement */ |
| 3701 SVGMatrix getTransformToElement(SVGElement element) native "SVGImageElement_ge
tTransformToElement_Callback"; | 3578 Matrix getTransformToElement(SvgElement element) native "SVGImageElement_getTr
ansformToElement_Callback"; |
| 3702 | 3579 |
| 3703 | 3580 |
| 3704 /** @domName SVGImageElement.className */ | 3581 /** @domName SVGImageElement.className */ |
| 3705 SVGAnimatedString get $dom_svgClassName native "SVGImageElement_className_Gett
er"; | 3582 AnimatedString get $dom_svgClassName native "SVGImageElement_className_Getter"
; |
| 3706 | 3583 |
| 3707 | 3584 |
| 3708 /** @domName SVGImageElement.style */ | 3585 /** @domName SVGImageElement.style */ |
| 3709 CSSStyleDeclaration get style native "SVGImageElement_style_Getter"; | 3586 CSSStyleDeclaration get style native "SVGImageElement_style_Getter"; |
| 3710 | 3587 |
| 3711 | 3588 |
| 3712 /** @domName SVGImageElement.getPresentationAttribute */ | 3589 /** @domName SVGImageElement.getPresentationAttribute */ |
| 3713 CSSValue getPresentationAttribute(String name) native "SVGImageElement_getPres
entationAttribute_Callback"; | 3590 CSSValue getPresentationAttribute(String name) native "SVGImageElement_getPres
entationAttribute_Callback"; |
| 3714 | 3591 |
| 3715 | 3592 |
| 3716 /** @domName SVGImageElement.requiredExtensions */ | 3593 /** @domName SVGImageElement.requiredExtensions */ |
| 3717 SVGStringList get requiredExtensions native "SVGImageElement_requiredExtension
s_Getter"; | 3594 StringList get requiredExtensions native "SVGImageElement_requiredExtensions_G
etter"; |
| 3718 | 3595 |
| 3719 | 3596 |
| 3720 /** @domName SVGImageElement.requiredFeatures */ | 3597 /** @domName SVGImageElement.requiredFeatures */ |
| 3721 SVGStringList get requiredFeatures native "SVGImageElement_requiredFeatures_Ge
tter"; | 3598 StringList get requiredFeatures native "SVGImageElement_requiredFeatures_Gette
r"; |
| 3722 | 3599 |
| 3723 | 3600 |
| 3724 /** @domName SVGImageElement.systemLanguage */ | 3601 /** @domName SVGImageElement.systemLanguage */ |
| 3725 SVGStringList get systemLanguage native "SVGImageElement_systemLanguage_Getter
"; | 3602 StringList get systemLanguage native "SVGImageElement_systemLanguage_Getter"; |
| 3726 | 3603 |
| 3727 | 3604 |
| 3728 /** @domName SVGImageElement.hasExtension */ | 3605 /** @domName SVGImageElement.hasExtension */ |
| 3729 bool hasExtension(String extension) native "SVGImageElement_hasExtension_Callb
ack"; | 3606 bool hasExtension(String extension) native "SVGImageElement_hasExtension_Callb
ack"; |
| 3730 | 3607 |
| 3731 | 3608 |
| 3732 /** @domName SVGImageElement.transform */ | 3609 /** @domName SVGImageElement.transform */ |
| 3733 SVGAnimatedTransformList get transform native "SVGImageElement_transform_Gette
r"; | 3610 AnimatedTransformList get transform native "SVGImageElement_transform_Getter"; |
| 3734 | 3611 |
| 3735 | 3612 |
| 3736 /** @domName SVGImageElement.href */ | 3613 /** @domName SVGImageElement.href */ |
| 3737 SVGAnimatedString get href native "SVGImageElement_href_Getter"; | 3614 AnimatedString get href native "SVGImageElement_href_Getter"; |
| 3738 | 3615 |
| 3739 } | 3616 } |
| 3740 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3617 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3741 // for details. All rights reserved. Use of this source code is governed by a | 3618 // for details. All rights reserved. Use of this source code is governed by a |
| 3742 // BSD-style license that can be found in the LICENSE file. | 3619 // BSD-style license that can be found in the LICENSE file. |
| 3743 | 3620 |
| 3744 // WARNING: Do not edit - generated code. | 3621 // WARNING: Do not edit - generated code. |
| 3745 | 3622 |
| 3746 | 3623 |
| 3747 /// @domName SVGLangSpace | 3624 /// @domName SVGLangSpace |
| 3748 class SVGLangSpace extends NativeFieldWrapperClass1 { | 3625 class LangSpace extends NativeFieldWrapperClass1 { |
| 3749 SVGLangSpace.internal(); | 3626 LangSpace.internal(); |
| 3750 | 3627 |
| 3751 | 3628 |
| 3752 /** @domName SVGLangSpace.xmllang */ | 3629 /** @domName SVGLangSpace.xmllang */ |
| 3753 String get xmllang native "SVGLangSpace_xmllang_Getter"; | 3630 String get xmllang native "SVGLangSpace_xmllang_Getter"; |
| 3754 | 3631 |
| 3755 | 3632 |
| 3756 /** @domName SVGLangSpace.xmllang */ | 3633 /** @domName SVGLangSpace.xmllang */ |
| 3757 void set xmllang(String value) native "SVGLangSpace_xmllang_Setter"; | 3634 void set xmllang(String value) native "SVGLangSpace_xmllang_Setter"; |
| 3758 | 3635 |
| 3759 | 3636 |
| 3760 /** @domName SVGLangSpace.xmlspace */ | 3637 /** @domName SVGLangSpace.xmlspace */ |
| 3761 String get xmlspace native "SVGLangSpace_xmlspace_Getter"; | 3638 String get xmlspace native "SVGLangSpace_xmlspace_Getter"; |
| 3762 | 3639 |
| 3763 | 3640 |
| 3764 /** @domName SVGLangSpace.xmlspace */ | 3641 /** @domName SVGLangSpace.xmlspace */ |
| 3765 void set xmlspace(String value) native "SVGLangSpace_xmlspace_Setter"; | 3642 void set xmlspace(String value) native "SVGLangSpace_xmlspace_Setter"; |
| 3766 | 3643 |
| 3767 } | 3644 } |
| 3768 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3645 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3769 // for details. All rights reserved. Use of this source code is governed by a | 3646 // for details. All rights reserved. Use of this source code is governed by a |
| 3770 // BSD-style license that can be found in the LICENSE file. | 3647 // BSD-style license that can be found in the LICENSE file. |
| 3771 | 3648 |
| 3772 // WARNING: Do not edit - generated code. | 3649 // WARNING: Do not edit - generated code. |
| 3773 | 3650 |
| 3774 | 3651 |
| 3775 /// @domName SVGLength | 3652 /// @domName SVGLength |
| 3776 class SVGLength extends NativeFieldWrapperClass1 { | 3653 class Length extends NativeFieldWrapperClass1 { |
| 3777 SVGLength.internal(); | 3654 Length.internal(); |
| 3778 | 3655 |
| 3779 static const int SVG_LENGTHTYPE_CM = 6; | 3656 static const int SVG_LENGTHTYPE_CM = 6; |
| 3780 | 3657 |
| 3781 static const int SVG_LENGTHTYPE_EMS = 3; | 3658 static const int SVG_LENGTHTYPE_EMS = 3; |
| 3782 | 3659 |
| 3783 static const int SVG_LENGTHTYPE_EXS = 4; | 3660 static const int SVG_LENGTHTYPE_EXS = 4; |
| 3784 | 3661 |
| 3785 static const int SVG_LENGTHTYPE_IN = 8; | 3662 static const int SVG_LENGTHTYPE_IN = 8; |
| 3786 | 3663 |
| 3787 static const int SVG_LENGTHTYPE_MM = 7; | 3664 static const int SVG_LENGTHTYPE_MM = 7; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3836 | 3713 |
| 3837 } | 3714 } |
| 3838 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3839 // for details. All rights reserved. Use of this source code is governed by a | 3716 // for details. All rights reserved. Use of this source code is governed by a |
| 3840 // BSD-style license that can be found in the LICENSE file. | 3717 // BSD-style license that can be found in the LICENSE file. |
| 3841 | 3718 |
| 3842 // WARNING: Do not edit - generated code. | 3719 // WARNING: Do not edit - generated code. |
| 3843 | 3720 |
| 3844 | 3721 |
| 3845 /// @domName SVGLengthList | 3722 /// @domName SVGLengthList |
| 3846 class SVGLengthList extends NativeFieldWrapperClass1 implements List<SVGLength>
{ | 3723 class LengthList extends NativeFieldWrapperClass1 implements List<Length> { |
| 3847 SVGLengthList.internal(); | 3724 LengthList.internal(); |
| 3848 | 3725 |
| 3849 | 3726 |
| 3850 /** @domName SVGLengthList.numberOfItems */ | 3727 /** @domName SVGLengthList.numberOfItems */ |
| 3851 int get numberOfItems native "SVGLengthList_numberOfItems_Getter"; | 3728 int get numberOfItems native "SVGLengthList_numberOfItems_Getter"; |
| 3852 | 3729 |
| 3853 SVGLength operator[](int index) native "SVGLengthList_item_Callback"; | 3730 Length operator[](int index) native "SVGLengthList_item_Callback"; |
| 3854 | 3731 |
| 3855 void operator[]=(int index, SVGLength value) { | 3732 void operator[]=(int index, Length value) { |
| 3856 throw new UnsupportedError("Cannot assign element of immutable List."); | 3733 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 3857 } | 3734 } |
| 3858 // -- start List<SVGLength> mixins. | 3735 // -- start List<Length> mixins. |
| 3859 // SVGLength is the element type. | 3736 // Length is the element type. |
| 3860 | 3737 |
| 3861 // From Iterable<SVGLength>: | 3738 // From Iterable<Length>: |
| 3862 | 3739 |
| 3863 Iterator<SVGLength> iterator() { | 3740 Iterator<Length> iterator() { |
| 3864 // Note: NodeLists are not fixed size. And most probably length shouldn't | 3741 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 3865 // be cached in both iterator _and_ forEach method. For now caching it | 3742 // be cached in both iterator _and_ forEach method. For now caching it |
| 3866 // for consistency. | 3743 // for consistency. |
| 3867 return new FixedSizeListIterator<SVGLength>(this); | 3744 return new FixedSizeListIterator<Length>(this); |
| 3868 } | 3745 } |
| 3869 | 3746 |
| 3870 // From Collection<SVGLength>: | 3747 // From Collection<Length>: |
| 3871 | 3748 |
| 3872 void add(SVGLength value) { | 3749 void add(Length value) { |
| 3873 throw new UnsupportedError("Cannot add to immutable List."); | 3750 throw new UnsupportedError("Cannot add to immutable List."); |
| 3874 } | 3751 } |
| 3875 | 3752 |
| 3876 void addLast(SVGLength value) { | 3753 void addLast(Length value) { |
| 3877 throw new UnsupportedError("Cannot add to immutable List."); | 3754 throw new UnsupportedError("Cannot add to immutable List."); |
| 3878 } | 3755 } |
| 3879 | 3756 |
| 3880 void addAll(Collection<SVGLength> collection) { | 3757 void addAll(Collection<Length> collection) { |
| 3881 throw new UnsupportedError("Cannot add to immutable List."); | 3758 throw new UnsupportedError("Cannot add to immutable List."); |
| 3882 } | 3759 } |
| 3883 | 3760 |
| 3884 bool contains(SVGLength element) => _Collections.contains(this, element); | 3761 bool contains(Length element) => _Collections.contains(this, element); |
| 3885 | 3762 |
| 3886 void forEach(void f(SVGLength element)) => _Collections.forEach(this, f); | 3763 void forEach(void f(Length element)) => _Collections.forEach(this, f); |
| 3887 | 3764 |
| 3888 Collection map(f(SVGLength element)) => _Collections.map(this, [], f); | 3765 Collection map(f(Length element)) => _Collections.map(this, [], f); |
| 3889 | 3766 |
| 3890 Collection<SVGLength> filter(bool f(SVGLength element)) => | 3767 Collection<Length> filter(bool f(Length element)) => |
| 3891 _Collections.filter(this, <SVGLength>[], f); | 3768 _Collections.filter(this, <Length>[], f); |
| 3892 | 3769 |
| 3893 bool every(bool f(SVGLength element)) => _Collections.every(this, f); | 3770 bool every(bool f(Length element)) => _Collections.every(this, f); |
| 3894 | 3771 |
| 3895 bool some(bool f(SVGLength element)) => _Collections.some(this, f); | 3772 bool some(bool f(Length element)) => _Collections.some(this, f); |
| 3896 | 3773 |
| 3897 bool get isEmpty => this.length == 0; | 3774 bool get isEmpty => this.length == 0; |
| 3898 | 3775 |
| 3899 // From List<SVGLength>: | 3776 // From List<Length>: |
| 3900 | 3777 |
| 3901 void sort([Comparator<SVGLength> compare = Comparable.compare]) { | 3778 void sort([Comparator<Length> compare = Comparable.compare]) { |
| 3902 throw new UnsupportedError("Cannot sort immutable List."); | 3779 throw new UnsupportedError("Cannot sort immutable List."); |
| 3903 } | 3780 } |
| 3904 | 3781 |
| 3905 int indexOf(SVGLength element, [int start = 0]) => | 3782 int indexOf(Length element, [int start = 0]) => |
| 3906 _Lists.indexOf(this, element, start, this.length); | 3783 _Lists.indexOf(this, element, start, this.length); |
| 3907 | 3784 |
| 3908 int lastIndexOf(SVGLength element, [int start]) { | 3785 int lastIndexOf(Length element, [int start]) { |
| 3909 if (start == null) start = length - 1; | 3786 if (start == null) start = length - 1; |
| 3910 return _Lists.lastIndexOf(this, element, start); | 3787 return _Lists.lastIndexOf(this, element, start); |
| 3911 } | 3788 } |
| 3912 | 3789 |
| 3913 SVGLength get first => this[0]; | 3790 Length get first => this[0]; |
| 3914 | 3791 |
| 3915 SVGLength get last => this[length - 1]; | 3792 Length get last => this[length - 1]; |
| 3916 | 3793 |
| 3917 SVGLength removeLast() { | 3794 Length removeLast() { |
| 3918 throw new UnsupportedError("Cannot removeLast on immutable List."); | 3795 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 3919 } | 3796 } |
| 3920 | 3797 |
| 3921 void setRange(int start, int rangeLength, List<SVGLength> from, [int startFrom
]) { | 3798 void setRange(int start, int rangeLength, List<Length> from, [int startFrom])
{ |
| 3922 throw new UnsupportedError("Cannot setRange on immutable List."); | 3799 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 3923 } | 3800 } |
| 3924 | 3801 |
| 3925 void removeRange(int start, int rangeLength) { | 3802 void removeRange(int start, int rangeLength) { |
| 3926 throw new UnsupportedError("Cannot removeRange on immutable List."); | 3803 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 3927 } | 3804 } |
| 3928 | 3805 |
| 3929 void insertRange(int start, int rangeLength, [SVGLength initialValue]) { | 3806 void insertRange(int start, int rangeLength, [Length initialValue]) { |
| 3930 throw new UnsupportedError("Cannot insertRange on immutable List."); | 3807 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 3931 } | 3808 } |
| 3932 | 3809 |
| 3933 List<SVGLength> getRange(int start, int rangeLength) => | 3810 List<Length> getRange(int start, int rangeLength) => |
| 3934 _Lists.getRange(this, start, rangeLength, <SVGLength>[]); | 3811 _Lists.getRange(this, start, rangeLength, <Length>[]); |
| 3935 | 3812 |
| 3936 // -- end List<SVGLength> mixins. | 3813 // -- end List<Length> mixins. |
| 3937 | 3814 |
| 3938 | 3815 |
| 3939 /** @domName SVGLengthList.appendItem */ | 3816 /** @domName SVGLengthList.appendItem */ |
| 3940 SVGLength appendItem(SVGLength item) native "SVGLengthList_appendItem_Callback
"; | 3817 Length appendItem(Length item) native "SVGLengthList_appendItem_Callback"; |
| 3941 | 3818 |
| 3942 | 3819 |
| 3943 /** @domName SVGLengthList.clear */ | 3820 /** @domName SVGLengthList.clear */ |
| 3944 void clear() native "SVGLengthList_clear_Callback"; | 3821 void clear() native "SVGLengthList_clear_Callback"; |
| 3945 | 3822 |
| 3946 | 3823 |
| 3947 /** @domName SVGLengthList.getItem */ | 3824 /** @domName SVGLengthList.getItem */ |
| 3948 SVGLength getItem(int index) native "SVGLengthList_getItem_Callback"; | 3825 Length getItem(int index) native "SVGLengthList_getItem_Callback"; |
| 3949 | 3826 |
| 3950 | 3827 |
| 3951 /** @domName SVGLengthList.initialize */ | 3828 /** @domName SVGLengthList.initialize */ |
| 3952 SVGLength initialize(SVGLength item) native "SVGLengthList_initialize_Callback
"; | 3829 Length initialize(Length item) native "SVGLengthList_initialize_Callback"; |
| 3953 | 3830 |
| 3954 | 3831 |
| 3955 /** @domName SVGLengthList.insertItemBefore */ | 3832 /** @domName SVGLengthList.insertItemBefore */ |
| 3956 SVGLength insertItemBefore(SVGLength item, int index) native "SVGLengthList_in
sertItemBefore_Callback"; | 3833 Length insertItemBefore(Length item, int index) native "SVGLengthList_insertIt
emBefore_Callback"; |
| 3957 | 3834 |
| 3958 | 3835 |
| 3959 /** @domName SVGLengthList.removeItem */ | 3836 /** @domName SVGLengthList.removeItem */ |
| 3960 SVGLength removeItem(int index) native "SVGLengthList_removeItem_Callback"; | 3837 Length removeItem(int index) native "SVGLengthList_removeItem_Callback"; |
| 3961 | 3838 |
| 3962 | 3839 |
| 3963 /** @domName SVGLengthList.replaceItem */ | 3840 /** @domName SVGLengthList.replaceItem */ |
| 3964 SVGLength replaceItem(SVGLength item, int index) native "SVGLengthList_replace
Item_Callback"; | 3841 Length replaceItem(Length item, int index) native "SVGLengthList_replaceItem_C
allback"; |
| 3965 | 3842 |
| 3966 } | 3843 } |
| 3967 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3844 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3968 // for details. All rights reserved. Use of this source code is governed by a | 3845 // for details. All rights reserved. Use of this source code is governed by a |
| 3969 // BSD-style license that can be found in the LICENSE file. | 3846 // BSD-style license that can be found in the LICENSE file. |
| 3970 | 3847 |
| 3971 // WARNING: Do not edit - generated code. | 3848 // WARNING: Do not edit - generated code. |
| 3972 | 3849 |
| 3973 | 3850 |
| 3974 /// @domName SVGLineElement | 3851 /// @domName SVGLineElement |
| 3975 class SVGLineElement extends SVGElement implements SVGLangSpace, SVGStylable, SV
GTests, SVGTransformable, SVGExternalResourcesRequired { | 3852 class LineElement extends SvgElement implements Transformable, Tests, Stylable,
ExternalResourcesRequired, LangSpace { |
| 3976 | 3853 |
| 3977 factory SVGLineElement() => _SVGElementFactoryProvider.createSVGElement_tag("l
ine"); | 3854 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); |
| 3978 SVGLineElement.internal(): super.internal(); | 3855 LineElement.internal(): super.internal(); |
| 3979 | 3856 |
| 3980 | 3857 |
| 3981 /** @domName SVGLineElement.x1 */ | 3858 /** @domName SVGLineElement.x1 */ |
| 3982 SVGAnimatedLength get x1 native "SVGLineElement_x1_Getter"; | 3859 AnimatedLength get x1 native "SVGLineElement_x1_Getter"; |
| 3983 | 3860 |
| 3984 | 3861 |
| 3985 /** @domName SVGLineElement.x2 */ | 3862 /** @domName SVGLineElement.x2 */ |
| 3986 SVGAnimatedLength get x2 native "SVGLineElement_x2_Getter"; | 3863 AnimatedLength get x2 native "SVGLineElement_x2_Getter"; |
| 3987 | 3864 |
| 3988 | 3865 |
| 3989 /** @domName SVGLineElement.y1 */ | 3866 /** @domName SVGLineElement.y1 */ |
| 3990 SVGAnimatedLength get y1 native "SVGLineElement_y1_Getter"; | 3867 AnimatedLength get y1 native "SVGLineElement_y1_Getter"; |
| 3991 | 3868 |
| 3992 | 3869 |
| 3993 /** @domName SVGLineElement.y2 */ | 3870 /** @domName SVGLineElement.y2 */ |
| 3994 SVGAnimatedLength get y2 native "SVGLineElement_y2_Getter"; | 3871 AnimatedLength get y2 native "SVGLineElement_y2_Getter"; |
| 3995 | 3872 |
| 3996 | 3873 |
| 3997 /** @domName SVGLineElement.externalResourcesRequired */ | 3874 /** @domName SVGLineElement.externalResourcesRequired */ |
| 3998 SVGAnimatedBoolean get externalResourcesRequired native "SVGLineElement_extern
alResourcesRequired_Getter"; | 3875 AnimatedBoolean get externalResourcesRequired native "SVGLineElement_externalR
esourcesRequired_Getter"; |
| 3999 | 3876 |
| 4000 | 3877 |
| 4001 /** @domName SVGLineElement.xmllang */ | 3878 /** @domName SVGLineElement.xmllang */ |
| 4002 String get xmllang native "SVGLineElement_xmllang_Getter"; | 3879 String get xmllang native "SVGLineElement_xmllang_Getter"; |
| 4003 | 3880 |
| 4004 | 3881 |
| 4005 /** @domName SVGLineElement.xmllang */ | 3882 /** @domName SVGLineElement.xmllang */ |
| 4006 void set xmllang(String value) native "SVGLineElement_xmllang_Setter"; | 3883 void set xmllang(String value) native "SVGLineElement_xmllang_Setter"; |
| 4007 | 3884 |
| 4008 | 3885 |
| 4009 /** @domName SVGLineElement.xmlspace */ | 3886 /** @domName SVGLineElement.xmlspace */ |
| 4010 String get xmlspace native "SVGLineElement_xmlspace_Getter"; | 3887 String get xmlspace native "SVGLineElement_xmlspace_Getter"; |
| 4011 | 3888 |
| 4012 | 3889 |
| 4013 /** @domName SVGLineElement.xmlspace */ | 3890 /** @domName SVGLineElement.xmlspace */ |
| 4014 void set xmlspace(String value) native "SVGLineElement_xmlspace_Setter"; | 3891 void set xmlspace(String value) native "SVGLineElement_xmlspace_Setter"; |
| 4015 | 3892 |
| 4016 | 3893 |
| 4017 /** @domName SVGLineElement.farthestViewportElement */ | 3894 /** @domName SVGLineElement.farthestViewportElement */ |
| 4018 SVGElement get farthestViewportElement native "SVGLineElement_farthestViewport
Element_Getter"; | 3895 SvgElement get farthestViewportElement native "SVGLineElement_farthestViewport
Element_Getter"; |
| 4019 | 3896 |
| 4020 | 3897 |
| 4021 /** @domName SVGLineElement.nearestViewportElement */ | 3898 /** @domName SVGLineElement.nearestViewportElement */ |
| 4022 SVGElement get nearestViewportElement native "SVGLineElement_nearestViewportEl
ement_Getter"; | 3899 SvgElement get nearestViewportElement native "SVGLineElement_nearestViewportEl
ement_Getter"; |
| 4023 | 3900 |
| 4024 | 3901 |
| 4025 /** @domName SVGLineElement.getBBox */ | 3902 /** @domName SVGLineElement.getBBox */ |
| 4026 SVGRect getBBox() native "SVGLineElement_getBBox_Callback"; | 3903 Rect getBBox() native "SVGLineElement_getBBox_Callback"; |
| 4027 | 3904 |
| 4028 | 3905 |
| 4029 /** @domName SVGLineElement.getCTM */ | 3906 /** @domName SVGLineElement.getCTM */ |
| 4030 SVGMatrix getCTM() native "SVGLineElement_getCTM_Callback"; | 3907 Matrix getCTM() native "SVGLineElement_getCTM_Callback"; |
| 4031 | 3908 |
| 4032 | 3909 |
| 4033 /** @domName SVGLineElement.getScreenCTM */ | 3910 /** @domName SVGLineElement.getScreenCTM */ |
| 4034 SVGMatrix getScreenCTM() native "SVGLineElement_getScreenCTM_Callback"; | 3911 Matrix getScreenCTM() native "SVGLineElement_getScreenCTM_Callback"; |
| 4035 | 3912 |
| 4036 | 3913 |
| 4037 /** @domName SVGLineElement.getTransformToElement */ | 3914 /** @domName SVGLineElement.getTransformToElement */ |
| 4038 SVGMatrix getTransformToElement(SVGElement element) native "SVGLineElement_get
TransformToElement_Callback"; | 3915 Matrix getTransformToElement(SvgElement element) native "SVGLineElement_getTra
nsformToElement_Callback"; |
| 4039 | 3916 |
| 4040 | 3917 |
| 4041 /** @domName SVGLineElement.className */ | 3918 /** @domName SVGLineElement.className */ |
| 4042 SVGAnimatedString get $dom_svgClassName native "SVGLineElement_className_Gette
r"; | 3919 AnimatedString get $dom_svgClassName native "SVGLineElement_className_Getter"; |
| 4043 | 3920 |
| 4044 | 3921 |
| 4045 /** @domName SVGLineElement.style */ | 3922 /** @domName SVGLineElement.style */ |
| 4046 CSSStyleDeclaration get style native "SVGLineElement_style_Getter"; | 3923 CSSStyleDeclaration get style native "SVGLineElement_style_Getter"; |
| 4047 | 3924 |
| 4048 | 3925 |
| 4049 /** @domName SVGLineElement.getPresentationAttribute */ | 3926 /** @domName SVGLineElement.getPresentationAttribute */ |
| 4050 CSSValue getPresentationAttribute(String name) native "SVGLineElement_getPrese
ntationAttribute_Callback"; | 3927 CSSValue getPresentationAttribute(String name) native "SVGLineElement_getPrese
ntationAttribute_Callback"; |
| 4051 | 3928 |
| 4052 | 3929 |
| 4053 /** @domName SVGLineElement.requiredExtensions */ | 3930 /** @domName SVGLineElement.requiredExtensions */ |
| 4054 SVGStringList get requiredExtensions native "SVGLineElement_requiredExtensions
_Getter"; | 3931 StringList get requiredExtensions native "SVGLineElement_requiredExtensions_Ge
tter"; |
| 4055 | 3932 |
| 4056 | 3933 |
| 4057 /** @domName SVGLineElement.requiredFeatures */ | 3934 /** @domName SVGLineElement.requiredFeatures */ |
| 4058 SVGStringList get requiredFeatures native "SVGLineElement_requiredFeatures_Get
ter"; | 3935 StringList get requiredFeatures native "SVGLineElement_requiredFeatures_Getter
"; |
| 4059 | 3936 |
| 4060 | 3937 |
| 4061 /** @domName SVGLineElement.systemLanguage */ | 3938 /** @domName SVGLineElement.systemLanguage */ |
| 4062 SVGStringList get systemLanguage native "SVGLineElement_systemLanguage_Getter"
; | 3939 StringList get systemLanguage native "SVGLineElement_systemLanguage_Getter"; |
| 4063 | 3940 |
| 4064 | 3941 |
| 4065 /** @domName SVGLineElement.hasExtension */ | 3942 /** @domName SVGLineElement.hasExtension */ |
| 4066 bool hasExtension(String extension) native "SVGLineElement_hasExtension_Callba
ck"; | 3943 bool hasExtension(String extension) native "SVGLineElement_hasExtension_Callba
ck"; |
| 4067 | 3944 |
| 4068 | 3945 |
| 4069 /** @domName SVGLineElement.transform */ | 3946 /** @domName SVGLineElement.transform */ |
| 4070 SVGAnimatedTransformList get transform native "SVGLineElement_transform_Getter
"; | 3947 AnimatedTransformList get transform native "SVGLineElement_transform_Getter"; |
| 4071 | 3948 |
| 4072 } | 3949 } |
| 4073 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3950 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4074 // for details. All rights reserved. Use of this source code is governed by a | 3951 // for details. All rights reserved. Use of this source code is governed by a |
| 4075 // BSD-style license that can be found in the LICENSE file. | 3952 // BSD-style license that can be found in the LICENSE file. |
| 4076 | 3953 |
| 4077 // WARNING: Do not edit - generated code. | 3954 // WARNING: Do not edit - generated code. |
| 4078 | 3955 |
| 4079 | 3956 |
| 4080 /// @domName SVGLinearGradientElement | 3957 /// @domName SVGLinearGradientElement |
| 4081 class SVGLinearGradientElement extends SVGGradientElement { | 3958 class LinearGradientElement extends GradientElement { |
| 4082 | 3959 |
| 4083 factory SVGLinearGradientElement() => _SVGElementFactoryProvider.createSVGElem
ent_tag("linearGradient"); | 3960 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); |
| 4084 SVGLinearGradientElement.internal(): super.internal(); | 3961 LinearGradientElement.internal(): super.internal(); |
| 4085 | 3962 |
| 4086 | 3963 |
| 4087 /** @domName SVGLinearGradientElement.x1 */ | 3964 /** @domName SVGLinearGradientElement.x1 */ |
| 4088 SVGAnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; | 3965 AnimatedLength get x1 native "SVGLinearGradientElement_x1_Getter"; |
| 4089 | 3966 |
| 4090 | 3967 |
| 4091 /** @domName SVGLinearGradientElement.x2 */ | 3968 /** @domName SVGLinearGradientElement.x2 */ |
| 4092 SVGAnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter"; | 3969 AnimatedLength get x2 native "SVGLinearGradientElement_x2_Getter"; |
| 4093 | 3970 |
| 4094 | 3971 |
| 4095 /** @domName SVGLinearGradientElement.y1 */ | 3972 /** @domName SVGLinearGradientElement.y1 */ |
| 4096 SVGAnimatedLength get y1 native "SVGLinearGradientElement_y1_Getter"; | 3973 AnimatedLength get y1 native "SVGLinearGradientElement_y1_Getter"; |
| 4097 | 3974 |
| 4098 | 3975 |
| 4099 /** @domName SVGLinearGradientElement.y2 */ | 3976 /** @domName SVGLinearGradientElement.y2 */ |
| 4100 SVGAnimatedLength get y2 native "SVGLinearGradientElement_y2_Getter"; | 3977 AnimatedLength get y2 native "SVGLinearGradientElement_y2_Getter"; |
| 4101 | 3978 |
| 4102 } | 3979 } |
| 4103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4104 // for details. All rights reserved. Use of this source code is governed by a | 3981 // for details. All rights reserved. Use of this source code is governed by a |
| 4105 // BSD-style license that can be found in the LICENSE file. | 3982 // BSD-style license that can be found in the LICENSE file. |
| 4106 | 3983 |
| 4107 // WARNING: Do not edit - generated code. | 3984 // WARNING: Do not edit - generated code. |
| 4108 | 3985 |
| 4109 | 3986 |
| 4110 /// @domName SVGLocatable | 3987 /// @domName SVGLocatable |
| 4111 class SVGLocatable extends NativeFieldWrapperClass1 { | 3988 class Locatable extends NativeFieldWrapperClass1 { |
| 4112 SVGLocatable.internal(); | 3989 Locatable.internal(); |
| 4113 | 3990 |
| 4114 | 3991 |
| 4115 /** @domName SVGLocatable.farthestViewportElement */ | 3992 /** @domName SVGLocatable.farthestViewportElement */ |
| 4116 SVGElement get farthestViewportElement native "SVGLocatable_farthestViewportEl
ement_Getter"; | 3993 SvgElement get farthestViewportElement native "SVGLocatable_farthestViewportEl
ement_Getter"; |
| 4117 | 3994 |
| 4118 | 3995 |
| 4119 /** @domName SVGLocatable.nearestViewportElement */ | 3996 /** @domName SVGLocatable.nearestViewportElement */ |
| 4120 SVGElement get nearestViewportElement native "SVGLocatable_nearestViewportElem
ent_Getter"; | 3997 SvgElement get nearestViewportElement native "SVGLocatable_nearestViewportElem
ent_Getter"; |
| 4121 | 3998 |
| 4122 | 3999 |
| 4123 /** @domName SVGLocatable.getBBox */ | 4000 /** @domName SVGLocatable.getBBox */ |
| 4124 SVGRect getBBox() native "SVGLocatable_getBBox_Callback"; | 4001 Rect getBBox() native "SVGLocatable_getBBox_Callback"; |
| 4125 | 4002 |
| 4126 | 4003 |
| 4127 /** @domName SVGLocatable.getCTM */ | 4004 /** @domName SVGLocatable.getCTM */ |
| 4128 SVGMatrix getCTM() native "SVGLocatable_getCTM_Callback"; | 4005 Matrix getCTM() native "SVGLocatable_getCTM_Callback"; |
| 4129 | 4006 |
| 4130 | 4007 |
| 4131 /** @domName SVGLocatable.getScreenCTM */ | 4008 /** @domName SVGLocatable.getScreenCTM */ |
| 4132 SVGMatrix getScreenCTM() native "SVGLocatable_getScreenCTM_Callback"; | 4009 Matrix getScreenCTM() native "SVGLocatable_getScreenCTM_Callback"; |
| 4133 | 4010 |
| 4134 | 4011 |
| 4135 /** @domName SVGLocatable.getTransformToElement */ | 4012 /** @domName SVGLocatable.getTransformToElement */ |
| 4136 SVGMatrix getTransformToElement(SVGElement element) native "SVGLocatable_getTr
ansformToElement_Callback"; | 4013 Matrix getTransformToElement(SvgElement element) native "SVGLocatable_getTrans
formToElement_Callback"; |
| 4137 | 4014 |
| 4138 } | 4015 } |
| 4139 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4140 // for details. All rights reserved. Use of this source code is governed by a | 4017 // for details. All rights reserved. Use of this source code is governed by a |
| 4141 // BSD-style license that can be found in the LICENSE file. | 4018 // BSD-style license that can be found in the LICENSE file. |
| 4142 | 4019 |
| 4143 // WARNING: Do not edit - generated code. | 4020 // WARNING: Do not edit - generated code. |
| 4144 | 4021 |
| 4145 | 4022 |
| 4146 /// @domName SVGMPathElement | 4023 /// @domName SVGMPathElement |
| 4147 class SVGMPathElement extends SVGElement implements SVGURIReference, SVGExternal
ResourcesRequired { | 4024 class MPathElement extends SvgElement implements UriReference, ExternalResources
Required { |
| 4148 | 4025 |
| 4149 factory SVGMPathElement() => _SVGElementFactoryProvider.createSVGElement_tag("
mpath"); | 4026 factory MPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("mpa
th"); |
| 4150 SVGMPathElement.internal(): super.internal(); | 4027 MPathElement.internal(): super.internal(); |
| 4151 | 4028 |
| 4152 | 4029 |
| 4153 /** @domName SVGMPathElement.externalResourcesRequired */ | 4030 /** @domName SVGMPathElement.externalResourcesRequired */ |
| 4154 SVGAnimatedBoolean get externalResourcesRequired native "SVGMPathElement_exter
nalResourcesRequired_Getter"; | 4031 AnimatedBoolean get externalResourcesRequired native "SVGMPathElement_external
ResourcesRequired_Getter"; |
| 4155 | 4032 |
| 4156 | 4033 |
| 4157 /** @domName SVGMPathElement.href */ | 4034 /** @domName SVGMPathElement.href */ |
| 4158 SVGAnimatedString get href native "SVGMPathElement_href_Getter"; | 4035 AnimatedString get href native "SVGMPathElement_href_Getter"; |
| 4159 | 4036 |
| 4160 } | 4037 } |
| 4161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4038 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4162 // for details. All rights reserved. Use of this source code is governed by a | 4039 // for details. All rights reserved. Use of this source code is governed by a |
| 4163 // BSD-style license that can be found in the LICENSE file. | 4040 // BSD-style license that can be found in the LICENSE file. |
| 4164 | 4041 |
| 4165 // WARNING: Do not edit - generated code. | 4042 // WARNING: Do not edit - generated code. |
| 4166 | 4043 |
| 4167 | 4044 |
| 4168 /// @domName SVGMarkerElement | 4045 /// @domName SVGMarkerElement |
| 4169 class SVGMarkerElement extends SVGElement implements SVGLangSpace, SVGFitToViewB
ox, SVGExternalResourcesRequired, SVGStylable { | 4046 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource
sRequired, Stylable, LangSpace { |
| 4170 | 4047 |
| 4171 factory SVGMarkerElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"marker"); | 4048 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); |
| 4172 SVGMarkerElement.internal(): super.internal(); | 4049 MarkerElement.internal(): super.internal(); |
| 4173 | 4050 |
| 4174 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; | 4051 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 4175 | 4052 |
| 4176 static const int SVG_MARKERUNITS_UNKNOWN = 0; | 4053 static const int SVG_MARKERUNITS_UNKNOWN = 0; |
| 4177 | 4054 |
| 4178 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; | 4055 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 4179 | 4056 |
| 4180 static const int SVG_MARKER_ORIENT_ANGLE = 2; | 4057 static const int SVG_MARKER_ORIENT_ANGLE = 2; |
| 4181 | 4058 |
| 4182 static const int SVG_MARKER_ORIENT_AUTO = 1; | 4059 static const int SVG_MARKER_ORIENT_AUTO = 1; |
| 4183 | 4060 |
| 4184 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; | 4061 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 4185 | 4062 |
| 4186 | 4063 |
| 4187 /** @domName SVGMarkerElement.markerHeight */ | 4064 /** @domName SVGMarkerElement.markerHeight */ |
| 4188 SVGAnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Gette
r"; | 4065 AnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Getter"; |
| 4189 | 4066 |
| 4190 | 4067 |
| 4191 /** @domName SVGMarkerElement.markerUnits */ | 4068 /** @domName SVGMarkerElement.markerUnits */ |
| 4192 SVGAnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Ge
tter"; | 4069 AnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Gette
r"; |
| 4193 | 4070 |
| 4194 | 4071 |
| 4195 /** @domName SVGMarkerElement.markerWidth */ | 4072 /** @domName SVGMarkerElement.markerWidth */ |
| 4196 SVGAnimatedLength get markerWidth native "SVGMarkerElement_markerWidth_Getter"
; | 4073 AnimatedLength get markerWidth native "SVGMarkerElement_markerWidth_Getter"; |
| 4197 | 4074 |
| 4198 | 4075 |
| 4199 /** @domName SVGMarkerElement.orientAngle */ | 4076 /** @domName SVGMarkerElement.orientAngle */ |
| 4200 SVGAnimatedAngle get orientAngle native "SVGMarkerElement_orientAngle_Getter"; | 4077 AnimatedAngle get orientAngle native "SVGMarkerElement_orientAngle_Getter"; |
| 4201 | 4078 |
| 4202 | 4079 |
| 4203 /** @domName SVGMarkerElement.orientType */ | 4080 /** @domName SVGMarkerElement.orientType */ |
| 4204 SVGAnimatedEnumeration get orientType native "SVGMarkerElement_orientType_Gett
er"; | 4081 AnimatedEnumeration get orientType native "SVGMarkerElement_orientType_Getter"
; |
| 4205 | 4082 |
| 4206 | 4083 |
| 4207 /** @domName SVGMarkerElement.refX */ | 4084 /** @domName SVGMarkerElement.refX */ |
| 4208 SVGAnimatedLength get refX native "SVGMarkerElement_refX_Getter"; | 4085 AnimatedLength get refX native "SVGMarkerElement_refX_Getter"; |
| 4209 | 4086 |
| 4210 | 4087 |
| 4211 /** @domName SVGMarkerElement.refY */ | 4088 /** @domName SVGMarkerElement.refY */ |
| 4212 SVGAnimatedLength get refY native "SVGMarkerElement_refY_Getter"; | 4089 AnimatedLength get refY native "SVGMarkerElement_refY_Getter"; |
| 4213 | 4090 |
| 4214 | 4091 |
| 4215 /** @domName SVGMarkerElement.setOrientToAngle */ | 4092 /** @domName SVGMarkerElement.setOrientToAngle */ |
| 4216 void setOrientToAngle(SVGAngle angle) native "SVGMarkerElement_setOrientToAngl
e_Callback"; | 4093 void setOrientToAngle(Angle angle) native "SVGMarkerElement_setOrientToAngle_C
allback"; |
| 4217 | 4094 |
| 4218 | 4095 |
| 4219 /** @domName SVGMarkerElement.setOrientToAuto */ | 4096 /** @domName SVGMarkerElement.setOrientToAuto */ |
| 4220 void setOrientToAuto() native "SVGMarkerElement_setOrientToAuto_Callback"; | 4097 void setOrientToAuto() native "SVGMarkerElement_setOrientToAuto_Callback"; |
| 4221 | 4098 |
| 4222 | 4099 |
| 4223 /** @domName SVGMarkerElement.externalResourcesRequired */ | 4100 /** @domName SVGMarkerElement.externalResourcesRequired */ |
| 4224 SVGAnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_exte
rnalResourcesRequired_Getter"; | 4101 AnimatedBoolean get externalResourcesRequired native "SVGMarkerElement_externa
lResourcesRequired_Getter"; |
| 4225 | 4102 |
| 4226 | 4103 |
| 4227 /** @domName SVGMarkerElement.preserveAspectRatio */ | 4104 /** @domName SVGMarkerElement.preserveAspectRatio */ |
| 4228 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElemen
t_preserveAspectRatio_Getter"; | 4105 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGMarkerElement_p
reserveAspectRatio_Getter"; |
| 4229 | 4106 |
| 4230 | 4107 |
| 4231 /** @domName SVGMarkerElement.viewBox */ | 4108 /** @domName SVGMarkerElement.viewBox */ |
| 4232 SVGAnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter"; | 4109 AnimatedRect get viewBox native "SVGMarkerElement_viewBox_Getter"; |
| 4233 | 4110 |
| 4234 | 4111 |
| 4235 /** @domName SVGMarkerElement.xmllang */ | 4112 /** @domName SVGMarkerElement.xmllang */ |
| 4236 String get xmllang native "SVGMarkerElement_xmllang_Getter"; | 4113 String get xmllang native "SVGMarkerElement_xmllang_Getter"; |
| 4237 | 4114 |
| 4238 | 4115 |
| 4239 /** @domName SVGMarkerElement.xmllang */ | 4116 /** @domName SVGMarkerElement.xmllang */ |
| 4240 void set xmllang(String value) native "SVGMarkerElement_xmllang_Setter"; | 4117 void set xmllang(String value) native "SVGMarkerElement_xmllang_Setter"; |
| 4241 | 4118 |
| 4242 | 4119 |
| 4243 /** @domName SVGMarkerElement.xmlspace */ | 4120 /** @domName SVGMarkerElement.xmlspace */ |
| 4244 String get xmlspace native "SVGMarkerElement_xmlspace_Getter"; | 4121 String get xmlspace native "SVGMarkerElement_xmlspace_Getter"; |
| 4245 | 4122 |
| 4246 | 4123 |
| 4247 /** @domName SVGMarkerElement.xmlspace */ | 4124 /** @domName SVGMarkerElement.xmlspace */ |
| 4248 void set xmlspace(String value) native "SVGMarkerElement_xmlspace_Setter"; | 4125 void set xmlspace(String value) native "SVGMarkerElement_xmlspace_Setter"; |
| 4249 | 4126 |
| 4250 | 4127 |
| 4251 /** @domName SVGMarkerElement.className */ | 4128 /** @domName SVGMarkerElement.className */ |
| 4252 SVGAnimatedString get $dom_svgClassName native "SVGMarkerElement_className_Get
ter"; | 4129 AnimatedString get $dom_svgClassName native "SVGMarkerElement_className_Getter
"; |
| 4253 | 4130 |
| 4254 | 4131 |
| 4255 /** @domName SVGMarkerElement.style */ | 4132 /** @domName SVGMarkerElement.style */ |
| 4256 CSSStyleDeclaration get style native "SVGMarkerElement_style_Getter"; | 4133 CSSStyleDeclaration get style native "SVGMarkerElement_style_Getter"; |
| 4257 | 4134 |
| 4258 | 4135 |
| 4259 /** @domName SVGMarkerElement.getPresentationAttribute */ | 4136 /** @domName SVGMarkerElement.getPresentationAttribute */ |
| 4260 CSSValue getPresentationAttribute(String name) native "SVGMarkerElement_getPre
sentationAttribute_Callback"; | 4137 CSSValue getPresentationAttribute(String name) native "SVGMarkerElement_getPre
sentationAttribute_Callback"; |
| 4261 | 4138 |
| 4262 } | 4139 } |
| 4263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4140 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4264 // for details. All rights reserved. Use of this source code is governed by a | 4141 // for details. All rights reserved. Use of this source code is governed by a |
| 4265 // BSD-style license that can be found in the LICENSE file. | 4142 // BSD-style license that can be found in the LICENSE file. |
| 4266 | 4143 |
| 4267 // WARNING: Do not edit - generated code. | 4144 // WARNING: Do not edit - generated code. |
| 4268 | 4145 |
| 4269 | 4146 |
| 4270 /// @domName SVGMaskElement | 4147 /// @domName SVGMaskElement |
| 4271 class SVGMaskElement extends SVGElement implements SVGLangSpace, SVGStylable, SV
GTests, SVGExternalResourcesRequired { | 4148 class MaskElement extends SvgElement implements Tests, Stylable, ExternalResourc
esRequired, LangSpace { |
| 4272 | 4149 |
| 4273 factory SVGMaskElement() => _SVGElementFactoryProvider.createSVGElement_tag("m
ask"); | 4150 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); |
| 4274 SVGMaskElement.internal(): super.internal(); | 4151 MaskElement.internal(): super.internal(); |
| 4275 | 4152 |
| 4276 | 4153 |
| 4277 /** @domName SVGMaskElement.height */ | 4154 /** @domName SVGMaskElement.height */ |
| 4278 SVGAnimatedLength get height native "SVGMaskElement_height_Getter"; | 4155 AnimatedLength get height native "SVGMaskElement_height_Getter"; |
| 4279 | 4156 |
| 4280 | 4157 |
| 4281 /** @domName SVGMaskElement.maskContentUnits */ | 4158 /** @domName SVGMaskElement.maskContentUnits */ |
| 4282 SVGAnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContent
Units_Getter"; | 4159 AnimatedEnumeration get maskContentUnits native "SVGMaskElement_maskContentUni
ts_Getter"; |
| 4283 | 4160 |
| 4284 | 4161 |
| 4285 /** @domName SVGMaskElement.maskUnits */ | 4162 /** @domName SVGMaskElement.maskUnits */ |
| 4286 SVGAnimatedEnumeration get maskUnits native "SVGMaskElement_maskUnits_Getter"; | 4163 AnimatedEnumeration get maskUnits native "SVGMaskElement_maskUnits_Getter"; |
| 4287 | 4164 |
| 4288 | 4165 |
| 4289 /** @domName SVGMaskElement.width */ | 4166 /** @domName SVGMaskElement.width */ |
| 4290 SVGAnimatedLength get width native "SVGMaskElement_width_Getter"; | 4167 AnimatedLength get width native "SVGMaskElement_width_Getter"; |
| 4291 | 4168 |
| 4292 | 4169 |
| 4293 /** @domName SVGMaskElement.x */ | 4170 /** @domName SVGMaskElement.x */ |
| 4294 SVGAnimatedLength get x native "SVGMaskElement_x_Getter"; | 4171 AnimatedLength get x native "SVGMaskElement_x_Getter"; |
| 4295 | 4172 |
| 4296 | 4173 |
| 4297 /** @domName SVGMaskElement.y */ | 4174 /** @domName SVGMaskElement.y */ |
| 4298 SVGAnimatedLength get y native "SVGMaskElement_y_Getter"; | 4175 AnimatedLength get y native "SVGMaskElement_y_Getter"; |
| 4299 | 4176 |
| 4300 | 4177 |
| 4301 /** @domName SVGMaskElement.externalResourcesRequired */ | 4178 /** @domName SVGMaskElement.externalResourcesRequired */ |
| 4302 SVGAnimatedBoolean get externalResourcesRequired native "SVGMaskElement_extern
alResourcesRequired_Getter"; | 4179 AnimatedBoolean get externalResourcesRequired native "SVGMaskElement_externalR
esourcesRequired_Getter"; |
| 4303 | 4180 |
| 4304 | 4181 |
| 4305 /** @domName SVGMaskElement.xmllang */ | 4182 /** @domName SVGMaskElement.xmllang */ |
| 4306 String get xmllang native "SVGMaskElement_xmllang_Getter"; | 4183 String get xmllang native "SVGMaskElement_xmllang_Getter"; |
| 4307 | 4184 |
| 4308 | 4185 |
| 4309 /** @domName SVGMaskElement.xmllang */ | 4186 /** @domName SVGMaskElement.xmllang */ |
| 4310 void set xmllang(String value) native "SVGMaskElement_xmllang_Setter"; | 4187 void set xmllang(String value) native "SVGMaskElement_xmllang_Setter"; |
| 4311 | 4188 |
| 4312 | 4189 |
| 4313 /** @domName SVGMaskElement.xmlspace */ | 4190 /** @domName SVGMaskElement.xmlspace */ |
| 4314 String get xmlspace native "SVGMaskElement_xmlspace_Getter"; | 4191 String get xmlspace native "SVGMaskElement_xmlspace_Getter"; |
| 4315 | 4192 |
| 4316 | 4193 |
| 4317 /** @domName SVGMaskElement.xmlspace */ | 4194 /** @domName SVGMaskElement.xmlspace */ |
| 4318 void set xmlspace(String value) native "SVGMaskElement_xmlspace_Setter"; | 4195 void set xmlspace(String value) native "SVGMaskElement_xmlspace_Setter"; |
| 4319 | 4196 |
| 4320 | 4197 |
| 4321 /** @domName SVGMaskElement.className */ | 4198 /** @domName SVGMaskElement.className */ |
| 4322 SVGAnimatedString get $dom_svgClassName native "SVGMaskElement_className_Gette
r"; | 4199 AnimatedString get $dom_svgClassName native "SVGMaskElement_className_Getter"; |
| 4323 | 4200 |
| 4324 | 4201 |
| 4325 /** @domName SVGMaskElement.style */ | 4202 /** @domName SVGMaskElement.style */ |
| 4326 CSSStyleDeclaration get style native "SVGMaskElement_style_Getter"; | 4203 CSSStyleDeclaration get style native "SVGMaskElement_style_Getter"; |
| 4327 | 4204 |
| 4328 | 4205 |
| 4329 /** @domName SVGMaskElement.getPresentationAttribute */ | 4206 /** @domName SVGMaskElement.getPresentationAttribute */ |
| 4330 CSSValue getPresentationAttribute(String name) native "SVGMaskElement_getPrese
ntationAttribute_Callback"; | 4207 CSSValue getPresentationAttribute(String name) native "SVGMaskElement_getPrese
ntationAttribute_Callback"; |
| 4331 | 4208 |
| 4332 | 4209 |
| 4333 /** @domName SVGMaskElement.requiredExtensions */ | 4210 /** @domName SVGMaskElement.requiredExtensions */ |
| 4334 SVGStringList get requiredExtensions native "SVGMaskElement_requiredExtensions
_Getter"; | 4211 StringList get requiredExtensions native "SVGMaskElement_requiredExtensions_Ge
tter"; |
| 4335 | 4212 |
| 4336 | 4213 |
| 4337 /** @domName SVGMaskElement.requiredFeatures */ | 4214 /** @domName SVGMaskElement.requiredFeatures */ |
| 4338 SVGStringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Get
ter"; | 4215 StringList get requiredFeatures native "SVGMaskElement_requiredFeatures_Getter
"; |
| 4339 | 4216 |
| 4340 | 4217 |
| 4341 /** @domName SVGMaskElement.systemLanguage */ | 4218 /** @domName SVGMaskElement.systemLanguage */ |
| 4342 SVGStringList get systemLanguage native "SVGMaskElement_systemLanguage_Getter"
; | 4219 StringList get systemLanguage native "SVGMaskElement_systemLanguage_Getter"; |
| 4343 | 4220 |
| 4344 | 4221 |
| 4345 /** @domName SVGMaskElement.hasExtension */ | 4222 /** @domName SVGMaskElement.hasExtension */ |
| 4346 bool hasExtension(String extension) native "SVGMaskElement_hasExtension_Callba
ck"; | 4223 bool hasExtension(String extension) native "SVGMaskElement_hasExtension_Callba
ck"; |
| 4347 | 4224 |
| 4348 } | 4225 } |
| 4349 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4226 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4350 // for details. All rights reserved. Use of this source code is governed by a | 4227 // for details. All rights reserved. Use of this source code is governed by a |
| 4351 // BSD-style license that can be found in the LICENSE file. | 4228 // BSD-style license that can be found in the LICENSE file. |
| 4352 | 4229 |
| 4353 // WARNING: Do not edit - generated code. | 4230 // WARNING: Do not edit - generated code. |
| 4354 | 4231 |
| 4355 | 4232 |
| 4356 /// @domName SVGMatrix | 4233 /// @domName SVGMatrix |
| 4357 class SVGMatrix extends NativeFieldWrapperClass1 { | 4234 class Matrix extends NativeFieldWrapperClass1 { |
| 4358 SVGMatrix.internal(); | 4235 Matrix.internal(); |
| 4359 | 4236 |
| 4360 | 4237 |
| 4361 /** @domName SVGMatrix.a */ | 4238 /** @domName SVGMatrix.a */ |
| 4362 num get a native "SVGMatrix_a_Getter"; | 4239 num get a native "SVGMatrix_a_Getter"; |
| 4363 | 4240 |
| 4364 | 4241 |
| 4365 /** @domName SVGMatrix.a */ | 4242 /** @domName SVGMatrix.a */ |
| 4366 void set a(num value) native "SVGMatrix_a_Setter"; | 4243 void set a(num value) native "SVGMatrix_a_Setter"; |
| 4367 | 4244 |
| 4368 | 4245 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4400 | 4277 |
| 4401 /** @domName SVGMatrix.f */ | 4278 /** @domName SVGMatrix.f */ |
| 4402 num get f native "SVGMatrix_f_Getter"; | 4279 num get f native "SVGMatrix_f_Getter"; |
| 4403 | 4280 |
| 4404 | 4281 |
| 4405 /** @domName SVGMatrix.f */ | 4282 /** @domName SVGMatrix.f */ |
| 4406 void set f(num value) native "SVGMatrix_f_Setter"; | 4283 void set f(num value) native "SVGMatrix_f_Setter"; |
| 4407 | 4284 |
| 4408 | 4285 |
| 4409 /** @domName SVGMatrix.flipX */ | 4286 /** @domName SVGMatrix.flipX */ |
| 4410 SVGMatrix flipX() native "SVGMatrix_flipX_Callback"; | 4287 Matrix flipX() native "SVGMatrix_flipX_Callback"; |
| 4411 | 4288 |
| 4412 | 4289 |
| 4413 /** @domName SVGMatrix.flipY */ | 4290 /** @domName SVGMatrix.flipY */ |
| 4414 SVGMatrix flipY() native "SVGMatrix_flipY_Callback"; | 4291 Matrix flipY() native "SVGMatrix_flipY_Callback"; |
| 4415 | 4292 |
| 4416 | 4293 |
| 4417 /** @domName SVGMatrix.inverse */ | 4294 /** @domName SVGMatrix.inverse */ |
| 4418 SVGMatrix inverse() native "SVGMatrix_inverse_Callback"; | 4295 Matrix inverse() native "SVGMatrix_inverse_Callback"; |
| 4419 | 4296 |
| 4420 | 4297 |
| 4421 /** @domName SVGMatrix.multiply */ | 4298 /** @domName SVGMatrix.multiply */ |
| 4422 SVGMatrix multiply(SVGMatrix secondMatrix) native "SVGMatrix_multiply_Callback
"; | 4299 Matrix multiply(Matrix secondMatrix) native "SVGMatrix_multiply_Callback"; |
| 4423 | 4300 |
| 4424 | 4301 |
| 4425 /** @domName SVGMatrix.rotate */ | 4302 /** @domName SVGMatrix.rotate */ |
| 4426 SVGMatrix rotate(num angle) native "SVGMatrix_rotate_Callback"; | 4303 Matrix rotate(num angle) native "SVGMatrix_rotate_Callback"; |
| 4427 | 4304 |
| 4428 | 4305 |
| 4429 /** @domName SVGMatrix.rotateFromVector */ | 4306 /** @domName SVGMatrix.rotateFromVector */ |
| 4430 SVGMatrix rotateFromVector(num x, num y) native "SVGMatrix_rotateFromVector_Ca
llback"; | 4307 Matrix rotateFromVector(num x, num y) native "SVGMatrix_rotateFromVector_Callb
ack"; |
| 4431 | 4308 |
| 4432 | 4309 |
| 4433 /** @domName SVGMatrix.scale */ | 4310 /** @domName SVGMatrix.scale */ |
| 4434 SVGMatrix scale(num scaleFactor) native "SVGMatrix_scale_Callback"; | 4311 Matrix scale(num scaleFactor) native "SVGMatrix_scale_Callback"; |
| 4435 | 4312 |
| 4436 | 4313 |
| 4437 /** @domName SVGMatrix.scaleNonUniform */ | 4314 /** @domName SVGMatrix.scaleNonUniform */ |
| 4438 SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native "SVGMatri
x_scaleNonUniform_Callback"; | 4315 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native "SVGMatrix_s
caleNonUniform_Callback"; |
| 4439 | 4316 |
| 4440 | 4317 |
| 4441 /** @domName SVGMatrix.skewX */ | 4318 /** @domName SVGMatrix.skewX */ |
| 4442 SVGMatrix skewX(num angle) native "SVGMatrix_skewX_Callback"; | 4319 Matrix skewX(num angle) native "SVGMatrix_skewX_Callback"; |
| 4443 | 4320 |
| 4444 | 4321 |
| 4445 /** @domName SVGMatrix.skewY */ | 4322 /** @domName SVGMatrix.skewY */ |
| 4446 SVGMatrix skewY(num angle) native "SVGMatrix_skewY_Callback"; | 4323 Matrix skewY(num angle) native "SVGMatrix_skewY_Callback"; |
| 4447 | 4324 |
| 4448 | 4325 |
| 4449 /** @domName SVGMatrix.translate */ | 4326 /** @domName SVGMatrix.translate */ |
| 4450 SVGMatrix translate(num x, num y) native "SVGMatrix_translate_Callback"; | 4327 Matrix translate(num x, num y) native "SVGMatrix_translate_Callback"; |
| 4451 | 4328 |
| 4452 } | 4329 } |
| 4453 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4330 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4454 // for details. All rights reserved. Use of this source code is governed by a | 4331 // for details. All rights reserved. Use of this source code is governed by a |
| 4455 // BSD-style license that can be found in the LICENSE file. | 4332 // BSD-style license that can be found in the LICENSE file. |
| 4456 | 4333 |
| 4457 // WARNING: Do not edit - generated code. | 4334 // WARNING: Do not edit - generated code. |
| 4458 | 4335 |
| 4459 | 4336 |
| 4460 /// @domName SVGMetadataElement | 4337 /// @domName SVGMetadataElement |
| 4461 class SVGMetadataElement extends SVGElement { | 4338 class MetadataElement extends SvgElement { |
| 4462 SVGMetadataElement.internal(): super.internal(); | 4339 MetadataElement.internal(): super.internal(); |
| 4463 | 4340 |
| 4464 } | 4341 } |
| 4465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4342 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4466 // for details. All rights reserved. Use of this source code is governed by a | 4343 // for details. All rights reserved. Use of this source code is governed by a |
| 4467 // BSD-style license that can be found in the LICENSE file. | 4344 // BSD-style license that can be found in the LICENSE file. |
| 4468 | 4345 |
| 4469 // WARNING: Do not edit - generated code. | 4346 // WARNING: Do not edit - generated code. |
| 4470 | 4347 |
| 4471 | 4348 |
| 4472 /// @domName SVGMissingGlyphElement | 4349 /// @domName SVGMissingGlyphElement |
| 4473 class SVGMissingGlyphElement extends SVGElement { | 4350 class MissingGlyphElement extends SvgElement { |
| 4474 SVGMissingGlyphElement.internal(): super.internal(); | 4351 MissingGlyphElement.internal(): super.internal(); |
| 4475 | 4352 |
| 4476 } | 4353 } |
| 4477 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4478 // for details. All rights reserved. Use of this source code is governed by a | 4355 // for details. All rights reserved. Use of this source code is governed by a |
| 4479 // BSD-style license that can be found in the LICENSE file. | 4356 // BSD-style license that can be found in the LICENSE file. |
| 4480 | 4357 |
| 4481 // WARNING: Do not edit - generated code. | 4358 // WARNING: Do not edit - generated code. |
| 4482 | 4359 |
| 4483 | 4360 |
| 4484 /// @domName SVGNumber | 4361 /// @domName SVGNumber |
| 4485 class SVGNumber extends NativeFieldWrapperClass1 { | 4362 class Number extends NativeFieldWrapperClass1 { |
| 4486 SVGNumber.internal(); | 4363 Number.internal(); |
| 4487 | 4364 |
| 4488 | 4365 |
| 4489 /** @domName SVGNumber.value */ | 4366 /** @domName SVGNumber.value */ |
| 4490 num get value native "SVGNumber_value_Getter"; | 4367 num get value native "SVGNumber_value_Getter"; |
| 4491 | 4368 |
| 4492 | 4369 |
| 4493 /** @domName SVGNumber.value */ | 4370 /** @domName SVGNumber.value */ |
| 4494 void set value(num value) native "SVGNumber_value_Setter"; | 4371 void set value(num value) native "SVGNumber_value_Setter"; |
| 4495 | 4372 |
| 4496 } | 4373 } |
| 4497 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4374 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4498 // for details. All rights reserved. Use of this source code is governed by a | 4375 // for details. All rights reserved. Use of this source code is governed by a |
| 4499 // BSD-style license that can be found in the LICENSE file. | 4376 // BSD-style license that can be found in the LICENSE file. |
| 4500 | 4377 |
| 4501 // WARNING: Do not edit - generated code. | 4378 // WARNING: Do not edit - generated code. |
| 4502 | 4379 |
| 4503 | 4380 |
| 4504 /// @domName SVGNumberList | 4381 /// @domName SVGNumberList |
| 4505 class SVGNumberList extends NativeFieldWrapperClass1 implements List<SVGNumber>
{ | 4382 class NumberList extends NativeFieldWrapperClass1 implements List<Number> { |
| 4506 SVGNumberList.internal(); | 4383 NumberList.internal(); |
| 4507 | 4384 |
| 4508 | 4385 |
| 4509 /** @domName SVGNumberList.numberOfItems */ | 4386 /** @domName SVGNumberList.numberOfItems */ |
| 4510 int get numberOfItems native "SVGNumberList_numberOfItems_Getter"; | 4387 int get numberOfItems native "SVGNumberList_numberOfItems_Getter"; |
| 4511 | 4388 |
| 4512 SVGNumber operator[](int index) native "SVGNumberList_item_Callback"; | 4389 Number operator[](int index) native "SVGNumberList_item_Callback"; |
| 4513 | 4390 |
| 4514 void operator[]=(int index, SVGNumber value) { | 4391 void operator[]=(int index, Number value) { |
| 4515 throw new UnsupportedError("Cannot assign element of immutable List."); | 4392 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 4516 } | 4393 } |
| 4517 // -- start List<SVGNumber> mixins. | 4394 // -- start List<Number> mixins. |
| 4518 // SVGNumber is the element type. | 4395 // Number is the element type. |
| 4519 | 4396 |
| 4520 // From Iterable<SVGNumber>: | 4397 // From Iterable<Number>: |
| 4521 | 4398 |
| 4522 Iterator<SVGNumber> iterator() { | 4399 Iterator<Number> iterator() { |
| 4523 // Note: NodeLists are not fixed size. And most probably length shouldn't | 4400 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 4524 // be cached in both iterator _and_ forEach method. For now caching it | 4401 // be cached in both iterator _and_ forEach method. For now caching it |
| 4525 // for consistency. | 4402 // for consistency. |
| 4526 return new FixedSizeListIterator<SVGNumber>(this); | 4403 return new FixedSizeListIterator<Number>(this); |
| 4527 } | 4404 } |
| 4528 | 4405 |
| 4529 // From Collection<SVGNumber>: | 4406 // From Collection<Number>: |
| 4530 | 4407 |
| 4531 void add(SVGNumber value) { | 4408 void add(Number value) { |
| 4532 throw new UnsupportedError("Cannot add to immutable List."); | 4409 throw new UnsupportedError("Cannot add to immutable List."); |
| 4533 } | 4410 } |
| 4534 | 4411 |
| 4535 void addLast(SVGNumber value) { | 4412 void addLast(Number value) { |
| 4536 throw new UnsupportedError("Cannot add to immutable List."); | 4413 throw new UnsupportedError("Cannot add to immutable List."); |
| 4537 } | 4414 } |
| 4538 | 4415 |
| 4539 void addAll(Collection<SVGNumber> collection) { | 4416 void addAll(Collection<Number> collection) { |
| 4540 throw new UnsupportedError("Cannot add to immutable List."); | 4417 throw new UnsupportedError("Cannot add to immutable List."); |
| 4541 } | 4418 } |
| 4542 | 4419 |
| 4543 bool contains(SVGNumber element) => _Collections.contains(this, element); | 4420 bool contains(Number element) => _Collections.contains(this, element); |
| 4544 | 4421 |
| 4545 void forEach(void f(SVGNumber element)) => _Collections.forEach(this, f); | 4422 void forEach(void f(Number element)) => _Collections.forEach(this, f); |
| 4546 | 4423 |
| 4547 Collection map(f(SVGNumber element)) => _Collections.map(this, [], f); | 4424 Collection map(f(Number element)) => _Collections.map(this, [], f); |
| 4548 | 4425 |
| 4549 Collection<SVGNumber> filter(bool f(SVGNumber element)) => | 4426 Collection<Number> filter(bool f(Number element)) => |
| 4550 _Collections.filter(this, <SVGNumber>[], f); | 4427 _Collections.filter(this, <Number>[], f); |
| 4551 | 4428 |
| 4552 bool every(bool f(SVGNumber element)) => _Collections.every(this, f); | 4429 bool every(bool f(Number element)) => _Collections.every(this, f); |
| 4553 | 4430 |
| 4554 bool some(bool f(SVGNumber element)) => _Collections.some(this, f); | 4431 bool some(bool f(Number element)) => _Collections.some(this, f); |
| 4555 | 4432 |
| 4556 bool get isEmpty => this.length == 0; | 4433 bool get isEmpty => this.length == 0; |
| 4557 | 4434 |
| 4558 // From List<SVGNumber>: | 4435 // From List<Number>: |
| 4559 | 4436 |
| 4560 void sort([Comparator<SVGNumber> compare = Comparable.compare]) { | 4437 void sort([Comparator<Number> compare = Comparable.compare]) { |
| 4561 throw new UnsupportedError("Cannot sort immutable List."); | 4438 throw new UnsupportedError("Cannot sort immutable List."); |
| 4562 } | 4439 } |
| 4563 | 4440 |
| 4564 int indexOf(SVGNumber element, [int start = 0]) => | 4441 int indexOf(Number element, [int start = 0]) => |
| 4565 _Lists.indexOf(this, element, start, this.length); | 4442 _Lists.indexOf(this, element, start, this.length); |
| 4566 | 4443 |
| 4567 int lastIndexOf(SVGNumber element, [int start]) { | 4444 int lastIndexOf(Number element, [int start]) { |
| 4568 if (start == null) start = length - 1; | 4445 if (start == null) start = length - 1; |
| 4569 return _Lists.lastIndexOf(this, element, start); | 4446 return _Lists.lastIndexOf(this, element, start); |
| 4570 } | 4447 } |
| 4571 | 4448 |
| 4572 SVGNumber get first => this[0]; | 4449 Number get first => this[0]; |
| 4573 | 4450 |
| 4574 SVGNumber get last => this[length - 1]; | 4451 Number get last => this[length - 1]; |
| 4575 | 4452 |
| 4576 SVGNumber removeLast() { | 4453 Number removeLast() { |
| 4577 throw new UnsupportedError("Cannot removeLast on immutable List."); | 4454 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 4578 } | 4455 } |
| 4579 | 4456 |
| 4580 void setRange(int start, int rangeLength, List<SVGNumber> from, [int startFrom
]) { | 4457 void setRange(int start, int rangeLength, List<Number> from, [int startFrom])
{ |
| 4581 throw new UnsupportedError("Cannot setRange on immutable List."); | 4458 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 4582 } | 4459 } |
| 4583 | 4460 |
| 4584 void removeRange(int start, int rangeLength) { | 4461 void removeRange(int start, int rangeLength) { |
| 4585 throw new UnsupportedError("Cannot removeRange on immutable List."); | 4462 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 4586 } | 4463 } |
| 4587 | 4464 |
| 4588 void insertRange(int start, int rangeLength, [SVGNumber initialValue]) { | 4465 void insertRange(int start, int rangeLength, [Number initialValue]) { |
| 4589 throw new UnsupportedError("Cannot insertRange on immutable List."); | 4466 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 4590 } | 4467 } |
| 4591 | 4468 |
| 4592 List<SVGNumber> getRange(int start, int rangeLength) => | 4469 List<Number> getRange(int start, int rangeLength) => |
| 4593 _Lists.getRange(this, start, rangeLength, <SVGNumber>[]); | 4470 _Lists.getRange(this, start, rangeLength, <Number>[]); |
| 4594 | 4471 |
| 4595 // -- end List<SVGNumber> mixins. | 4472 // -- end List<Number> mixins. |
| 4596 | 4473 |
| 4597 | 4474 |
| 4598 /** @domName SVGNumberList.appendItem */ | 4475 /** @domName SVGNumberList.appendItem */ |
| 4599 SVGNumber appendItem(SVGNumber item) native "SVGNumberList_appendItem_Callback
"; | 4476 Number appendItem(Number item) native "SVGNumberList_appendItem_Callback"; |
| 4600 | 4477 |
| 4601 | 4478 |
| 4602 /** @domName SVGNumberList.clear */ | 4479 /** @domName SVGNumberList.clear */ |
| 4603 void clear() native "SVGNumberList_clear_Callback"; | 4480 void clear() native "SVGNumberList_clear_Callback"; |
| 4604 | 4481 |
| 4605 | 4482 |
| 4606 /** @domName SVGNumberList.getItem */ | 4483 /** @domName SVGNumberList.getItem */ |
| 4607 SVGNumber getItem(int index) native "SVGNumberList_getItem_Callback"; | 4484 Number getItem(int index) native "SVGNumberList_getItem_Callback"; |
| 4608 | 4485 |
| 4609 | 4486 |
| 4610 /** @domName SVGNumberList.initialize */ | 4487 /** @domName SVGNumberList.initialize */ |
| 4611 SVGNumber initialize(SVGNumber item) native "SVGNumberList_initialize_Callback
"; | 4488 Number initialize(Number item) native "SVGNumberList_initialize_Callback"; |
| 4612 | 4489 |
| 4613 | 4490 |
| 4614 /** @domName SVGNumberList.insertItemBefore */ | 4491 /** @domName SVGNumberList.insertItemBefore */ |
| 4615 SVGNumber insertItemBefore(SVGNumber item, int index) native "SVGNumberList_in
sertItemBefore_Callback"; | 4492 Number insertItemBefore(Number item, int index) native "SVGNumberList_insertIt
emBefore_Callback"; |
| 4616 | 4493 |
| 4617 | 4494 |
| 4618 /** @domName SVGNumberList.removeItem */ | 4495 /** @domName SVGNumberList.removeItem */ |
| 4619 SVGNumber removeItem(int index) native "SVGNumberList_removeItem_Callback"; | 4496 Number removeItem(int index) native "SVGNumberList_removeItem_Callback"; |
| 4620 | 4497 |
| 4621 | 4498 |
| 4622 /** @domName SVGNumberList.replaceItem */ | 4499 /** @domName SVGNumberList.replaceItem */ |
| 4623 SVGNumber replaceItem(SVGNumber item, int index) native "SVGNumberList_replace
Item_Callback"; | 4500 Number replaceItem(Number item, int index) native "SVGNumberList_replaceItem_C
allback"; |
| 4624 | 4501 |
| 4625 } | 4502 } |
| 4626 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4503 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4627 // for details. All rights reserved. Use of this source code is governed by a | 4504 // for details. All rights reserved. Use of this source code is governed by a |
| 4628 // BSD-style license that can be found in the LICENSE file. | 4505 // BSD-style license that can be found in the LICENSE file. |
| 4629 | 4506 |
| 4630 // WARNING: Do not edit - generated code. | 4507 // WARNING: Do not edit - generated code. |
| 4631 | 4508 |
| 4632 | 4509 |
| 4633 /// @domName SVGPaint | 4510 /// @domName SVGPaint |
| 4634 class SVGPaint extends SVGColor { | 4511 class Paint extends Color { |
| 4635 SVGPaint.internal(): super.internal(); | 4512 Paint.internal(): super.internal(); |
| 4636 | 4513 |
| 4637 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102; | 4514 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102; |
| 4638 | 4515 |
| 4639 static const int SVG_PAINTTYPE_NONE = 101; | 4516 static const int SVG_PAINTTYPE_NONE = 101; |
| 4640 | 4517 |
| 4641 static const int SVG_PAINTTYPE_RGBCOLOR = 1; | 4518 static const int SVG_PAINTTYPE_RGBCOLOR = 1; |
| 4642 | 4519 |
| 4643 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; | 4520 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 4644 | 4521 |
| 4645 static const int SVG_PAINTTYPE_UNKNOWN = 0; | 4522 static const int SVG_PAINTTYPE_UNKNOWN = 0; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 4672 | 4549 |
| 4673 } | 4550 } |
| 4674 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4675 // for details. All rights reserved. Use of this source code is governed by a | 4552 // for details. All rights reserved. Use of this source code is governed by a |
| 4676 // BSD-style license that can be found in the LICENSE file. | 4553 // BSD-style license that can be found in the LICENSE file. |
| 4677 | 4554 |
| 4678 // WARNING: Do not edit - generated code. | 4555 // WARNING: Do not edit - generated code. |
| 4679 | 4556 |
| 4680 | 4557 |
| 4681 /// @domName SVGPathElement | 4558 /// @domName SVGPathElement |
| 4682 class SVGPathElement extends SVGElement implements SVGLangSpace, SVGStylable, SV
GTests, SVGTransformable, SVGExternalResourcesRequired { | 4559 class PathElement extends SvgElement implements Transformable, Tests, Stylable,
ExternalResourcesRequired, LangSpace { |
| 4683 | 4560 |
| 4684 factory SVGPathElement() => _SVGElementFactoryProvider.createSVGElement_tag("p
ath"); | 4561 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); |
| 4685 SVGPathElement.internal(): super.internal(); | 4562 PathElement.internal(): super.internal(); |
| 4686 | 4563 |
| 4687 | 4564 |
| 4688 /** @domName SVGPathElement.animatedNormalizedPathSegList */ | 4565 /** @domName SVGPathElement.animatedNormalizedPathSegList */ |
| 4689 SVGPathSegList get animatedNormalizedPathSegList native "SVGPathElement_animat
edNormalizedPathSegList_Getter"; | 4566 PathSegList get animatedNormalizedPathSegList native "SVGPathElement_animatedN
ormalizedPathSegList_Getter"; |
| 4690 | 4567 |
| 4691 | 4568 |
| 4692 /** @domName SVGPathElement.animatedPathSegList */ | 4569 /** @domName SVGPathElement.animatedPathSegList */ |
| 4693 SVGPathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegL
ist_Getter"; | 4570 PathSegList get animatedPathSegList native "SVGPathElement_animatedPathSegList
_Getter"; |
| 4694 | 4571 |
| 4695 | 4572 |
| 4696 /** @domName SVGPathElement.normalizedPathSegList */ | 4573 /** @domName SVGPathElement.normalizedPathSegList */ |
| 4697 SVGPathSegList get normalizedPathSegList native "SVGPathElement_normalizedPath
SegList_Getter"; | 4574 PathSegList get normalizedPathSegList native "SVGPathElement_normalizedPathSeg
List_Getter"; |
| 4698 | 4575 |
| 4699 | 4576 |
| 4700 /** @domName SVGPathElement.pathLength */ | 4577 /** @domName SVGPathElement.pathLength */ |
| 4701 SVGAnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter"; | 4578 AnimatedNumber get pathLength native "SVGPathElement_pathLength_Getter"; |
| 4702 | 4579 |
| 4703 | 4580 |
| 4704 /** @domName SVGPathElement.pathSegList */ | 4581 /** @domName SVGPathElement.pathSegList */ |
| 4705 SVGPathSegList get pathSegList native "SVGPathElement_pathSegList_Getter"; | 4582 PathSegList get pathSegList native "SVGPathElement_pathSegList_Getter"; |
| 4706 | 4583 |
| 4707 | 4584 |
| 4708 /** @domName SVGPathElement.createSVGPathSegArcAbs */ | 4585 /** @domName SVGPathElement.createSVGPathSegArcAbs */ |
| 4709 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArc
Abs_Callback"; | 4586 PathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcAbs
_Callback"; |
| 4710 | 4587 |
| 4711 | 4588 |
| 4712 /** @domName SVGPathElement.createSVGPathSegArcRel */ | 4589 /** @domName SVGPathElement.createSVGPathSegArcRel */ |
| 4713 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArc
Rel_Callback"; | 4590 PathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) native "SVGPathElement_createSVGPathSegArcRel
_Callback"; |
| 4714 | 4591 |
| 4715 | 4592 |
| 4716 /** @domName SVGPathElement.createSVGPathSegClosePath */ | 4593 /** @domName SVGPathElement.createSVGPathSegClosePath */ |
| 4717 SVGPathSegClosePath createSVGPathSegClosePath() native "SVGPathElement_createS
VGPathSegClosePath_Callback"; | 4594 PathSegClosePath createSVGPathSegClosePath() native "SVGPathElement_createSVGP
athSegClosePath_Callback"; |
| 4718 | 4595 |
| 4719 | 4596 |
| 4720 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */ | 4597 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicAbs */ |
| 4721 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1
, num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs
_Callback"; | 4598 PathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicAbs_Ca
llback"; |
| 4722 | 4599 |
| 4723 | 4600 |
| 4724 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */ | 4601 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicRel */ |
| 4725 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1
, num y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel
_Callback"; | 4602 PathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicRel_Ca
llback"; |
| 4726 | 4603 |
| 4727 | 4604 |
| 4728 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */ | 4605 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs */ |
| 4729 SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, n
um y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothA
bs_Callback"; | 4606 PathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_
Callback"; |
| 4730 | 4607 |
| 4731 | 4608 |
| 4732 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */ | 4609 /** @domName SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel */ |
| 4733 SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, n
um y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothR
el_Callback"; | 4610 PathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) native "SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_
Callback"; |
| 4734 | 4611 |
| 4735 | 4612 |
| 4736 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */ | 4613 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticAbs */ |
| 4737 SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y
, num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Cal
lback"; | 4614 PathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callba
ck"; |
| 4738 | 4615 |
| 4739 | 4616 |
| 4740 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */ | 4617 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticRel */ |
| 4741 SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y
, num x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Cal
lback"; | 4618 PathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) native "SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callba
ck"; |
| 4742 | 4619 |
| 4743 | 4620 |
| 4744 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */ | 4621 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs */ |
| 4745 SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(
num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_C
allback"; | 4622 PathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs(num
x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Call
back"; |
| 4746 | 4623 |
| 4747 | 4624 |
| 4748 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */ | 4625 /** @domName SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel */ |
| 4749 SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(
num x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_C
allback"; | 4626 PathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel(num
x, num y) native "SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Call
back"; |
| 4750 | 4627 |
| 4751 | 4628 |
| 4752 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */ | 4629 /** @domName SVGPathElement.createSVGPathSegLinetoAbs */ |
| 4753 SVGPathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native "SVGPathEle
ment_createSVGPathSegLinetoAbs_Callback"; | 4630 PathSegLinetoAbs createSVGPathSegLinetoAbs(num x, num y) native "SVGPathElemen
t_createSVGPathSegLinetoAbs_Callback"; |
| 4754 | 4631 |
| 4755 | 4632 |
| 4756 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */ | 4633 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalAbs */ |
| 4757 SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) nativ
e "SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback"; | 4634 PathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs(num x) native "
SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback"; |
| 4758 | 4635 |
| 4759 | 4636 |
| 4760 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */ | 4637 /** @domName SVGPathElement.createSVGPathSegLinetoHorizontalRel */ |
| 4761 SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) nativ
e "SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback"; | 4638 PathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel(num x) native "
SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback"; |
| 4762 | 4639 |
| 4763 | 4640 |
| 4764 /** @domName SVGPathElement.createSVGPathSegLinetoRel */ | 4641 /** @domName SVGPathElement.createSVGPathSegLinetoRel */ |
| 4765 SVGPathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native "SVGPathEle
ment_createSVGPathSegLinetoRel_Callback"; | 4642 PathSegLinetoRel createSVGPathSegLinetoRel(num x, num y) native "SVGPathElemen
t_createSVGPathSegLinetoRel_Callback"; |
| 4766 | 4643 |
| 4767 | 4644 |
| 4768 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */ | 4645 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalAbs */ |
| 4769 SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native "S
VGPathElement_createSVGPathSegLinetoVerticalAbs_Callback"; | 4646 PathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs(num y) native "SVGP
athElement_createSVGPathSegLinetoVerticalAbs_Callback"; |
| 4770 | 4647 |
| 4771 | 4648 |
| 4772 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */ | 4649 /** @domName SVGPathElement.createSVGPathSegLinetoVerticalRel */ |
| 4773 SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native "S
VGPathElement_createSVGPathSegLinetoVerticalRel_Callback"; | 4650 PathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel(num y) native "SVGP
athElement_createSVGPathSegLinetoVerticalRel_Callback"; |
| 4774 | 4651 |
| 4775 | 4652 |
| 4776 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */ | 4653 /** @domName SVGPathElement.createSVGPathSegMovetoAbs */ |
| 4777 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native "SVGPathEle
ment_createSVGPathSegMovetoAbs_Callback"; | 4654 PathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y) native "SVGPathElemen
t_createSVGPathSegMovetoAbs_Callback"; |
| 4778 | 4655 |
| 4779 | 4656 |
| 4780 /** @domName SVGPathElement.createSVGPathSegMovetoRel */ | 4657 /** @domName SVGPathElement.createSVGPathSegMovetoRel */ |
| 4781 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native "SVGPathEle
ment_createSVGPathSegMovetoRel_Callback"; | 4658 PathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native "SVGPathElemen
t_createSVGPathSegMovetoRel_Callback"; |
| 4782 | 4659 |
| 4783 | 4660 |
| 4784 /** @domName SVGPathElement.getPathSegAtLength */ | 4661 /** @domName SVGPathElement.getPathSegAtLength */ |
| 4785 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength
_Callback"; | 4662 int getPathSegAtLength(num distance) native "SVGPathElement_getPathSegAtLength
_Callback"; |
| 4786 | 4663 |
| 4787 | 4664 |
| 4788 /** @domName SVGPathElement.getPointAtLength */ | 4665 /** @domName SVGPathElement.getPointAtLength */ |
| 4789 SVGPoint getPointAtLength(num distance) native "SVGPathElement_getPointAtLengt
h_Callback"; | 4666 Point getPointAtLength(num distance) native "SVGPathElement_getPointAtLength_C
allback"; |
| 4790 | 4667 |
| 4791 | 4668 |
| 4792 /** @domName SVGPathElement.getTotalLength */ | 4669 /** @domName SVGPathElement.getTotalLength */ |
| 4793 num getTotalLength() native "SVGPathElement_getTotalLength_Callback"; | 4670 num getTotalLength() native "SVGPathElement_getTotalLength_Callback"; |
| 4794 | 4671 |
| 4795 | 4672 |
| 4796 /** @domName SVGPathElement.externalResourcesRequired */ | 4673 /** @domName SVGPathElement.externalResourcesRequired */ |
| 4797 SVGAnimatedBoolean get externalResourcesRequired native "SVGPathElement_extern
alResourcesRequired_Getter"; | 4674 AnimatedBoolean get externalResourcesRequired native "SVGPathElement_externalR
esourcesRequired_Getter"; |
| 4798 | 4675 |
| 4799 | 4676 |
| 4800 /** @domName SVGPathElement.xmllang */ | 4677 /** @domName SVGPathElement.xmllang */ |
| 4801 String get xmllang native "SVGPathElement_xmllang_Getter"; | 4678 String get xmllang native "SVGPathElement_xmllang_Getter"; |
| 4802 | 4679 |
| 4803 | 4680 |
| 4804 /** @domName SVGPathElement.xmllang */ | 4681 /** @domName SVGPathElement.xmllang */ |
| 4805 void set xmllang(String value) native "SVGPathElement_xmllang_Setter"; | 4682 void set xmllang(String value) native "SVGPathElement_xmllang_Setter"; |
| 4806 | 4683 |
| 4807 | 4684 |
| 4808 /** @domName SVGPathElement.xmlspace */ | 4685 /** @domName SVGPathElement.xmlspace */ |
| 4809 String get xmlspace native "SVGPathElement_xmlspace_Getter"; | 4686 String get xmlspace native "SVGPathElement_xmlspace_Getter"; |
| 4810 | 4687 |
| 4811 | 4688 |
| 4812 /** @domName SVGPathElement.xmlspace */ | 4689 /** @domName SVGPathElement.xmlspace */ |
| 4813 void set xmlspace(String value) native "SVGPathElement_xmlspace_Setter"; | 4690 void set xmlspace(String value) native "SVGPathElement_xmlspace_Setter"; |
| 4814 | 4691 |
| 4815 | 4692 |
| 4816 /** @domName SVGPathElement.farthestViewportElement */ | 4693 /** @domName SVGPathElement.farthestViewportElement */ |
| 4817 SVGElement get farthestViewportElement native "SVGPathElement_farthestViewport
Element_Getter"; | 4694 SvgElement get farthestViewportElement native "SVGPathElement_farthestViewport
Element_Getter"; |
| 4818 | 4695 |
| 4819 | 4696 |
| 4820 /** @domName SVGPathElement.nearestViewportElement */ | 4697 /** @domName SVGPathElement.nearestViewportElement */ |
| 4821 SVGElement get nearestViewportElement native "SVGPathElement_nearestViewportEl
ement_Getter"; | 4698 SvgElement get nearestViewportElement native "SVGPathElement_nearestViewportEl
ement_Getter"; |
| 4822 | 4699 |
| 4823 | 4700 |
| 4824 /** @domName SVGPathElement.getBBox */ | 4701 /** @domName SVGPathElement.getBBox */ |
| 4825 SVGRect getBBox() native "SVGPathElement_getBBox_Callback"; | 4702 Rect getBBox() native "SVGPathElement_getBBox_Callback"; |
| 4826 | 4703 |
| 4827 | 4704 |
| 4828 /** @domName SVGPathElement.getCTM */ | 4705 /** @domName SVGPathElement.getCTM */ |
| 4829 SVGMatrix getCTM() native "SVGPathElement_getCTM_Callback"; | 4706 Matrix getCTM() native "SVGPathElement_getCTM_Callback"; |
| 4830 | 4707 |
| 4831 | 4708 |
| 4832 /** @domName SVGPathElement.getScreenCTM */ | 4709 /** @domName SVGPathElement.getScreenCTM */ |
| 4833 SVGMatrix getScreenCTM() native "SVGPathElement_getScreenCTM_Callback"; | 4710 Matrix getScreenCTM() native "SVGPathElement_getScreenCTM_Callback"; |
| 4834 | 4711 |
| 4835 | 4712 |
| 4836 /** @domName SVGPathElement.getTransformToElement */ | 4713 /** @domName SVGPathElement.getTransformToElement */ |
| 4837 SVGMatrix getTransformToElement(SVGElement element) native "SVGPathElement_get
TransformToElement_Callback"; | 4714 Matrix getTransformToElement(SvgElement element) native "SVGPathElement_getTra
nsformToElement_Callback"; |
| 4838 | 4715 |
| 4839 | 4716 |
| 4840 /** @domName SVGPathElement.className */ | 4717 /** @domName SVGPathElement.className */ |
| 4841 SVGAnimatedString get $dom_svgClassName native "SVGPathElement_className_Gette
r"; | 4718 AnimatedString get $dom_svgClassName native "SVGPathElement_className_Getter"; |
| 4842 | 4719 |
| 4843 | 4720 |
| 4844 /** @domName SVGPathElement.style */ | 4721 /** @domName SVGPathElement.style */ |
| 4845 CSSStyleDeclaration get style native "SVGPathElement_style_Getter"; | 4722 CSSStyleDeclaration get style native "SVGPathElement_style_Getter"; |
| 4846 | 4723 |
| 4847 | 4724 |
| 4848 /** @domName SVGPathElement.getPresentationAttribute */ | 4725 /** @domName SVGPathElement.getPresentationAttribute */ |
| 4849 CSSValue getPresentationAttribute(String name) native "SVGPathElement_getPrese
ntationAttribute_Callback"; | 4726 CSSValue getPresentationAttribute(String name) native "SVGPathElement_getPrese
ntationAttribute_Callback"; |
| 4850 | 4727 |
| 4851 | 4728 |
| 4852 /** @domName SVGPathElement.requiredExtensions */ | 4729 /** @domName SVGPathElement.requiredExtensions */ |
| 4853 SVGStringList get requiredExtensions native "SVGPathElement_requiredExtensions
_Getter"; | 4730 StringList get requiredExtensions native "SVGPathElement_requiredExtensions_Ge
tter"; |
| 4854 | 4731 |
| 4855 | 4732 |
| 4856 /** @domName SVGPathElement.requiredFeatures */ | 4733 /** @domName SVGPathElement.requiredFeatures */ |
| 4857 SVGStringList get requiredFeatures native "SVGPathElement_requiredFeatures_Get
ter"; | 4734 StringList get requiredFeatures native "SVGPathElement_requiredFeatures_Getter
"; |
| 4858 | 4735 |
| 4859 | 4736 |
| 4860 /** @domName SVGPathElement.systemLanguage */ | 4737 /** @domName SVGPathElement.systemLanguage */ |
| 4861 SVGStringList get systemLanguage native "SVGPathElement_systemLanguage_Getter"
; | 4738 StringList get systemLanguage native "SVGPathElement_systemLanguage_Getter"; |
| 4862 | 4739 |
| 4863 | 4740 |
| 4864 /** @domName SVGPathElement.hasExtension */ | 4741 /** @domName SVGPathElement.hasExtension */ |
| 4865 bool hasExtension(String extension) native "SVGPathElement_hasExtension_Callba
ck"; | 4742 bool hasExtension(String extension) native "SVGPathElement_hasExtension_Callba
ck"; |
| 4866 | 4743 |
| 4867 | 4744 |
| 4868 /** @domName SVGPathElement.transform */ | 4745 /** @domName SVGPathElement.transform */ |
| 4869 SVGAnimatedTransformList get transform native "SVGPathElement_transform_Getter
"; | 4746 AnimatedTransformList get transform native "SVGPathElement_transform_Getter"; |
| 4870 | 4747 |
| 4871 } | 4748 } |
| 4872 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4749 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4873 // for details. All rights reserved. Use of this source code is governed by a | 4750 // for details. All rights reserved. Use of this source code is governed by a |
| 4874 // BSD-style license that can be found in the LICENSE file. | 4751 // BSD-style license that can be found in the LICENSE file. |
| 4875 | 4752 |
| 4876 // WARNING: Do not edit - generated code. | 4753 // WARNING: Do not edit - generated code. |
| 4877 | 4754 |
| 4878 | 4755 |
| 4879 /// @domName SVGPathSeg | 4756 /// @domName SVGPathSeg |
| 4880 class SVGPathSeg extends NativeFieldWrapperClass1 { | 4757 class PathSeg extends NativeFieldWrapperClass1 { |
| 4881 SVGPathSeg.internal(); | 4758 PathSeg.internal(); |
| 4882 | 4759 |
| 4883 static const int PATHSEG_ARC_ABS = 10; | 4760 static const int PATHSEG_ARC_ABS = 10; |
| 4884 | 4761 |
| 4885 static const int PATHSEG_ARC_REL = 11; | 4762 static const int PATHSEG_ARC_REL = 11; |
| 4886 | 4763 |
| 4887 static const int PATHSEG_CLOSEPATH = 1; | 4764 static const int PATHSEG_CLOSEPATH = 1; |
| 4888 | 4765 |
| 4889 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; | 4766 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; |
| 4890 | 4767 |
| 4891 static const int PATHSEG_CURVETO_CUBIC_REL = 7; | 4768 static const int PATHSEG_CURVETO_CUBIC_REL = 7; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4930 | 4807 |
| 4931 } | 4808 } |
| 4932 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4809 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4933 // for details. All rights reserved. Use of this source code is governed by a | 4810 // for details. All rights reserved. Use of this source code is governed by a |
| 4934 // BSD-style license that can be found in the LICENSE file. | 4811 // BSD-style license that can be found in the LICENSE file. |
| 4935 | 4812 |
| 4936 // WARNING: Do not edit - generated code. | 4813 // WARNING: Do not edit - generated code. |
| 4937 | 4814 |
| 4938 | 4815 |
| 4939 /// @domName SVGPathSegArcAbs | 4816 /// @domName SVGPathSegArcAbs |
| 4940 class SVGPathSegArcAbs extends SVGPathSeg { | 4817 class PathSegArcAbs extends PathSeg { |
| 4941 SVGPathSegArcAbs.internal(): super.internal(); | 4818 PathSegArcAbs.internal(): super.internal(); |
| 4942 | 4819 |
| 4943 | 4820 |
| 4944 /** @domName SVGPathSegArcAbs.angle */ | 4821 /** @domName SVGPathSegArcAbs.angle */ |
| 4945 num get angle native "SVGPathSegArcAbs_angle_Getter"; | 4822 num get angle native "SVGPathSegArcAbs_angle_Getter"; |
| 4946 | 4823 |
| 4947 | 4824 |
| 4948 /** @domName SVGPathSegArcAbs.angle */ | 4825 /** @domName SVGPathSegArcAbs.angle */ |
| 4949 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter"; | 4826 void set angle(num value) native "SVGPathSegArcAbs_angle_Setter"; |
| 4950 | 4827 |
| 4951 | 4828 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4998 | 4875 |
| 4999 } | 4876 } |
| 5000 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5001 // for details. All rights reserved. Use of this source code is governed by a | 4878 // for details. All rights reserved. Use of this source code is governed by a |
| 5002 // BSD-style license that can be found in the LICENSE file. | 4879 // BSD-style license that can be found in the LICENSE file. |
| 5003 | 4880 |
| 5004 // WARNING: Do not edit - generated code. | 4881 // WARNING: Do not edit - generated code. |
| 5005 | 4882 |
| 5006 | 4883 |
| 5007 /// @domName SVGPathSegArcRel | 4884 /// @domName SVGPathSegArcRel |
| 5008 class SVGPathSegArcRel extends SVGPathSeg { | 4885 class PathSegArcRel extends PathSeg { |
| 5009 SVGPathSegArcRel.internal(): super.internal(); | 4886 PathSegArcRel.internal(): super.internal(); |
| 5010 | 4887 |
| 5011 | 4888 |
| 5012 /** @domName SVGPathSegArcRel.angle */ | 4889 /** @domName SVGPathSegArcRel.angle */ |
| 5013 num get angle native "SVGPathSegArcRel_angle_Getter"; | 4890 num get angle native "SVGPathSegArcRel_angle_Getter"; |
| 5014 | 4891 |
| 5015 | 4892 |
| 5016 /** @domName SVGPathSegArcRel.angle */ | 4893 /** @domName SVGPathSegArcRel.angle */ |
| 5017 void set angle(num value) native "SVGPathSegArcRel_angle_Setter"; | 4894 void set angle(num value) native "SVGPathSegArcRel_angle_Setter"; |
| 5018 | 4895 |
| 5019 | 4896 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5066 | 4943 |
| 5067 } | 4944 } |
| 5068 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5069 // for details. All rights reserved. Use of this source code is governed by a | 4946 // for details. All rights reserved. Use of this source code is governed by a |
| 5070 // BSD-style license that can be found in the LICENSE file. | 4947 // BSD-style license that can be found in the LICENSE file. |
| 5071 | 4948 |
| 5072 // WARNING: Do not edit - generated code. | 4949 // WARNING: Do not edit - generated code. |
| 5073 | 4950 |
| 5074 | 4951 |
| 5075 /// @domName SVGPathSegClosePath | 4952 /// @domName SVGPathSegClosePath |
| 5076 class SVGPathSegClosePath extends SVGPathSeg { | 4953 class PathSegClosePath extends PathSeg { |
| 5077 SVGPathSegClosePath.internal(): super.internal(); | 4954 PathSegClosePath.internal(): super.internal(); |
| 5078 | 4955 |
| 5079 } | 4956 } |
| 5080 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4957 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5081 // for details. All rights reserved. Use of this source code is governed by a | 4958 // for details. All rights reserved. Use of this source code is governed by a |
| 5082 // BSD-style license that can be found in the LICENSE file. | 4959 // BSD-style license that can be found in the LICENSE file. |
| 5083 | 4960 |
| 5084 // WARNING: Do not edit - generated code. | 4961 // WARNING: Do not edit - generated code. |
| 5085 | 4962 |
| 5086 | 4963 |
| 5087 /// @domName SVGPathSegCurvetoCubicAbs | 4964 /// @domName SVGPathSegCurvetoCubicAbs |
| 5088 class SVGPathSegCurvetoCubicAbs extends SVGPathSeg { | 4965 class PathSegCurvetoCubicAbs extends PathSeg { |
| 5089 SVGPathSegCurvetoCubicAbs.internal(): super.internal(); | 4966 PathSegCurvetoCubicAbs.internal(): super.internal(); |
| 5090 | 4967 |
| 5091 | 4968 |
| 5092 /** @domName SVGPathSegCurvetoCubicAbs.x */ | 4969 /** @domName SVGPathSegCurvetoCubicAbs.x */ |
| 5093 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter"; | 4970 num get x native "SVGPathSegCurvetoCubicAbs_x_Getter"; |
| 5094 | 4971 |
| 5095 | 4972 |
| 5096 /** @domName SVGPathSegCurvetoCubicAbs.x */ | 4973 /** @domName SVGPathSegCurvetoCubicAbs.x */ |
| 5097 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter"; | 4974 void set x(num value) native "SVGPathSegCurvetoCubicAbs_x_Setter"; |
| 5098 | 4975 |
| 5099 | 4976 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5138 | 5015 |
| 5139 } | 5016 } |
| 5140 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5017 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5141 // for details. All rights reserved. Use of this source code is governed by a | 5018 // for details. All rights reserved. Use of this source code is governed by a |
| 5142 // BSD-style license that can be found in the LICENSE file. | 5019 // BSD-style license that can be found in the LICENSE file. |
| 5143 | 5020 |
| 5144 // WARNING: Do not edit - generated code. | 5021 // WARNING: Do not edit - generated code. |
| 5145 | 5022 |
| 5146 | 5023 |
| 5147 /// @domName SVGPathSegCurvetoCubicRel | 5024 /// @domName SVGPathSegCurvetoCubicRel |
| 5148 class SVGPathSegCurvetoCubicRel extends SVGPathSeg { | 5025 class PathSegCurvetoCubicRel extends PathSeg { |
| 5149 SVGPathSegCurvetoCubicRel.internal(): super.internal(); | 5026 PathSegCurvetoCubicRel.internal(): super.internal(); |
| 5150 | 5027 |
| 5151 | 5028 |
| 5152 /** @domName SVGPathSegCurvetoCubicRel.x */ | 5029 /** @domName SVGPathSegCurvetoCubicRel.x */ |
| 5153 num get x native "SVGPathSegCurvetoCubicRel_x_Getter"; | 5030 num get x native "SVGPathSegCurvetoCubicRel_x_Getter"; |
| 5154 | 5031 |
| 5155 | 5032 |
| 5156 /** @domName SVGPathSegCurvetoCubicRel.x */ | 5033 /** @domName SVGPathSegCurvetoCubicRel.x */ |
| 5157 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter"; | 5034 void set x(num value) native "SVGPathSegCurvetoCubicRel_x_Setter"; |
| 5158 | 5035 |
| 5159 | 5036 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5198 | 5075 |
| 5199 } | 5076 } |
| 5200 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5077 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5201 // for details. All rights reserved. Use of this source code is governed by a | 5078 // for details. All rights reserved. Use of this source code is governed by a |
| 5202 // BSD-style license that can be found in the LICENSE file. | 5079 // BSD-style license that can be found in the LICENSE file. |
| 5203 | 5080 |
| 5204 // WARNING: Do not edit - generated code. | 5081 // WARNING: Do not edit - generated code. |
| 5205 | 5082 |
| 5206 | 5083 |
| 5207 /// @domName SVGPathSegCurvetoCubicSmoothAbs | 5084 /// @domName SVGPathSegCurvetoCubicSmoothAbs |
| 5208 class SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg { | 5085 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
| 5209 SVGPathSegCurvetoCubicSmoothAbs.internal(): super.internal(); | 5086 PathSegCurvetoCubicSmoothAbs.internal(): super.internal(); |
| 5210 | 5087 |
| 5211 | 5088 |
| 5212 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ | 5089 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ |
| 5213 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter"; | 5090 num get x native "SVGPathSegCurvetoCubicSmoothAbs_x_Getter"; |
| 5214 | 5091 |
| 5215 | 5092 |
| 5216 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ | 5093 /** @domName SVGPathSegCurvetoCubicSmoothAbs.x */ |
| 5217 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter"; | 5094 void set x(num value) native "SVGPathSegCurvetoCubicSmoothAbs_x_Setter"; |
| 5218 | 5095 |
| 5219 | 5096 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5242 | 5119 |
| 5243 } | 5120 } |
| 5244 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5121 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5245 // for details. All rights reserved. Use of this source code is governed by a | 5122 // for details. All rights reserved. Use of this source code is governed by a |
| 5246 // BSD-style license that can be found in the LICENSE file. | 5123 // BSD-style license that can be found in the LICENSE file. |
| 5247 | 5124 |
| 5248 // WARNING: Do not edit - generated code. | 5125 // WARNING: Do not edit - generated code. |
| 5249 | 5126 |
| 5250 | 5127 |
| 5251 /// @domName SVGPathSegCurvetoCubicSmoothRel | 5128 /// @domName SVGPathSegCurvetoCubicSmoothRel |
| 5252 class SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg { | 5129 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
| 5253 SVGPathSegCurvetoCubicSmoothRel.internal(): super.internal(); | 5130 PathSegCurvetoCubicSmoothRel.internal(): super.internal(); |
| 5254 | 5131 |
| 5255 | 5132 |
| 5256 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ | 5133 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ |
| 5257 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter"; | 5134 num get x native "SVGPathSegCurvetoCubicSmoothRel_x_Getter"; |
| 5258 | 5135 |
| 5259 | 5136 |
| 5260 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ | 5137 /** @domName SVGPathSegCurvetoCubicSmoothRel.x */ |
| 5261 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter"; | 5138 void set x(num value) native "SVGPathSegCurvetoCubicSmoothRel_x_Setter"; |
| 5262 | 5139 |
| 5263 | 5140 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5286 | 5163 |
| 5287 } | 5164 } |
| 5288 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5289 // for details. All rights reserved. Use of this source code is governed by a | 5166 // for details. All rights reserved. Use of this source code is governed by a |
| 5290 // BSD-style license that can be found in the LICENSE file. | 5167 // BSD-style license that can be found in the LICENSE file. |
| 5291 | 5168 |
| 5292 // WARNING: Do not edit - generated code. | 5169 // WARNING: Do not edit - generated code. |
| 5293 | 5170 |
| 5294 | 5171 |
| 5295 /// @domName SVGPathSegCurvetoQuadraticAbs | 5172 /// @domName SVGPathSegCurvetoQuadraticAbs |
| 5296 class SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg { | 5173 class PathSegCurvetoQuadraticAbs extends PathSeg { |
| 5297 SVGPathSegCurvetoQuadraticAbs.internal(): super.internal(); | 5174 PathSegCurvetoQuadraticAbs.internal(): super.internal(); |
| 5298 | 5175 |
| 5299 | 5176 |
| 5300 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ | 5177 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ |
| 5301 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter"; | 5178 num get x native "SVGPathSegCurvetoQuadraticAbs_x_Getter"; |
| 5302 | 5179 |
| 5303 | 5180 |
| 5304 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ | 5181 /** @domName SVGPathSegCurvetoQuadraticAbs.x */ |
| 5305 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter"; | 5182 void set x(num value) native "SVGPathSegCurvetoQuadraticAbs_x_Setter"; |
| 5306 | 5183 |
| 5307 | 5184 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5330 | 5207 |
| 5331 } | 5208 } |
| 5332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5209 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5333 // for details. All rights reserved. Use of this source code is governed by a | 5210 // for details. All rights reserved. Use of this source code is governed by a |
| 5334 // BSD-style license that can be found in the LICENSE file. | 5211 // BSD-style license that can be found in the LICENSE file. |
| 5335 | 5212 |
| 5336 // WARNING: Do not edit - generated code. | 5213 // WARNING: Do not edit - generated code. |
| 5337 | 5214 |
| 5338 | 5215 |
| 5339 /// @domName SVGPathSegCurvetoQuadraticRel | 5216 /// @domName SVGPathSegCurvetoQuadraticRel |
| 5340 class SVGPathSegCurvetoQuadraticRel extends SVGPathSeg { | 5217 class PathSegCurvetoQuadraticRel extends PathSeg { |
| 5341 SVGPathSegCurvetoQuadraticRel.internal(): super.internal(); | 5218 PathSegCurvetoQuadraticRel.internal(): super.internal(); |
| 5342 | 5219 |
| 5343 | 5220 |
| 5344 /** @domName SVGPathSegCurvetoQuadraticRel.x */ | 5221 /** @domName SVGPathSegCurvetoQuadraticRel.x */ |
| 5345 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter"; | 5222 num get x native "SVGPathSegCurvetoQuadraticRel_x_Getter"; |
| 5346 | 5223 |
| 5347 | 5224 |
| 5348 /** @domName SVGPathSegCurvetoQuadraticRel.x */ | 5225 /** @domName SVGPathSegCurvetoQuadraticRel.x */ |
| 5349 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter"; | 5226 void set x(num value) native "SVGPathSegCurvetoQuadraticRel_x_Setter"; |
| 5350 | 5227 |
| 5351 | 5228 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 5374 | 5251 |
| 5375 } | 5252 } |
| 5376 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5377 // for details. All rights reserved. Use of this source code is governed by a | 5254 // for details. All rights reserved. Use of this source code is governed by a |
| 5378 // BSD-style license that can be found in the LICENSE file. | 5255 // BSD-style license that can be found in the LICENSE file. |
| 5379 | 5256 |
| 5380 // WARNING: Do not edit - generated code. | 5257 // WARNING: Do not edit - generated code. |
| 5381 | 5258 |
| 5382 | 5259 |
| 5383 /// @domName SVGPathSegCurvetoQuadraticSmoothAbs | 5260 /// @domName SVGPathSegCurvetoQuadraticSmoothAbs |
| 5384 class SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg { | 5261 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
| 5385 SVGPathSegCurvetoQuadraticSmoothAbs.internal(): super.internal(); | 5262 PathSegCurvetoQuadraticSmoothAbs.internal(): super.internal(); |
| 5386 | 5263 |
| 5387 | 5264 |
| 5388 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ | 5265 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ |
| 5389 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter"; | 5266 num get x native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter"; |
| 5390 | 5267 |
| 5391 | 5268 |
| 5392 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ | 5269 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.x */ |
| 5393 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter"; | 5270 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter"; |
| 5394 | 5271 |
| 5395 | 5272 |
| 5396 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ | 5273 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ |
| 5397 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter"; | 5274 num get y native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter"; |
| 5398 | 5275 |
| 5399 | 5276 |
| 5400 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ | 5277 /** @domName SVGPathSegCurvetoQuadraticSmoothAbs.y */ |
| 5401 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter"; | 5278 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter"; |
| 5402 | 5279 |
| 5403 } | 5280 } |
| 5404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5281 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5405 // for details. All rights reserved. Use of this source code is governed by a | 5282 // for details. All rights reserved. Use of this source code is governed by a |
| 5406 // BSD-style license that can be found in the LICENSE file. | 5283 // BSD-style license that can be found in the LICENSE file. |
| 5407 | 5284 |
| 5408 // WARNING: Do not edit - generated code. | 5285 // WARNING: Do not edit - generated code. |
| 5409 | 5286 |
| 5410 | 5287 |
| 5411 /// @domName SVGPathSegCurvetoQuadraticSmoothRel | 5288 /// @domName SVGPathSegCurvetoQuadraticSmoothRel |
| 5412 class SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg { | 5289 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
| 5413 SVGPathSegCurvetoQuadraticSmoothRel.internal(): super.internal(); | 5290 PathSegCurvetoQuadraticSmoothRel.internal(): super.internal(); |
| 5414 | 5291 |
| 5415 | 5292 |
| 5416 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ | 5293 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ |
| 5417 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter"; | 5294 num get x native "SVGPathSegCurvetoQuadraticSmoothRel_x_Getter"; |
| 5418 | 5295 |
| 5419 | 5296 |
| 5420 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ | 5297 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.x */ |
| 5421 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter"; | 5298 void set x(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_x_Setter"; |
| 5422 | 5299 |
| 5423 | 5300 |
| 5424 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ | 5301 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ |
| 5425 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter"; | 5302 num get y native "SVGPathSegCurvetoQuadraticSmoothRel_y_Getter"; |
| 5426 | 5303 |
| 5427 | 5304 |
| 5428 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ | 5305 /** @domName SVGPathSegCurvetoQuadraticSmoothRel.y */ |
| 5429 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter"; | 5306 void set y(num value) native "SVGPathSegCurvetoQuadraticSmoothRel_y_Setter"; |
| 5430 | 5307 |
| 5431 } | 5308 } |
| 5432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5309 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5433 // for details. All rights reserved. Use of this source code is governed by a | 5310 // for details. All rights reserved. Use of this source code is governed by a |
| 5434 // BSD-style license that can be found in the LICENSE file. | 5311 // BSD-style license that can be found in the LICENSE file. |
| 5435 | 5312 |
| 5436 // WARNING: Do not edit - generated code. | 5313 // WARNING: Do not edit - generated code. |
| 5437 | 5314 |
| 5438 | 5315 |
| 5439 /// @domName SVGPathSegLinetoAbs | 5316 /// @domName SVGPathSegLinetoAbs |
| 5440 class SVGPathSegLinetoAbs extends SVGPathSeg { | 5317 class PathSegLinetoAbs extends PathSeg { |
| 5441 SVGPathSegLinetoAbs.internal(): super.internal(); | 5318 PathSegLinetoAbs.internal(): super.internal(); |
| 5442 | 5319 |
| 5443 | 5320 |
| 5444 /** @domName SVGPathSegLinetoAbs.x */ | 5321 /** @domName SVGPathSegLinetoAbs.x */ |
| 5445 num get x native "SVGPathSegLinetoAbs_x_Getter"; | 5322 num get x native "SVGPathSegLinetoAbs_x_Getter"; |
| 5446 | 5323 |
| 5447 | 5324 |
| 5448 /** @domName SVGPathSegLinetoAbs.x */ | 5325 /** @domName SVGPathSegLinetoAbs.x */ |
| 5449 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter"; | 5326 void set x(num value) native "SVGPathSegLinetoAbs_x_Setter"; |
| 5450 | 5327 |
| 5451 | 5328 |
| 5452 /** @domName SVGPathSegLinetoAbs.y */ | 5329 /** @domName SVGPathSegLinetoAbs.y */ |
| 5453 num get y native "SVGPathSegLinetoAbs_y_Getter"; | 5330 num get y native "SVGPathSegLinetoAbs_y_Getter"; |
| 5454 | 5331 |
| 5455 | 5332 |
| 5456 /** @domName SVGPathSegLinetoAbs.y */ | 5333 /** @domName SVGPathSegLinetoAbs.y */ |
| 5457 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter"; | 5334 void set y(num value) native "SVGPathSegLinetoAbs_y_Setter"; |
| 5458 | 5335 |
| 5459 } | 5336 } |
| 5460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5461 // for details. All rights reserved. Use of this source code is governed by a | 5338 // for details. All rights reserved. Use of this source code is governed by a |
| 5462 // BSD-style license that can be found in the LICENSE file. | 5339 // BSD-style license that can be found in the LICENSE file. |
| 5463 | 5340 |
| 5464 // WARNING: Do not edit - generated code. | 5341 // WARNING: Do not edit - generated code. |
| 5465 | 5342 |
| 5466 | 5343 |
| 5467 /// @domName SVGPathSegLinetoHorizontalAbs | 5344 /// @domName SVGPathSegLinetoHorizontalAbs |
| 5468 class SVGPathSegLinetoHorizontalAbs extends SVGPathSeg { | 5345 class PathSegLinetoHorizontalAbs extends PathSeg { |
| 5469 SVGPathSegLinetoHorizontalAbs.internal(): super.internal(); | 5346 PathSegLinetoHorizontalAbs.internal(): super.internal(); |
| 5470 | 5347 |
| 5471 | 5348 |
| 5472 /** @domName SVGPathSegLinetoHorizontalAbs.x */ | 5349 /** @domName SVGPathSegLinetoHorizontalAbs.x */ |
| 5473 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter"; | 5350 num get x native "SVGPathSegLinetoHorizontalAbs_x_Getter"; |
| 5474 | 5351 |
| 5475 | 5352 |
| 5476 /** @domName SVGPathSegLinetoHorizontalAbs.x */ | 5353 /** @domName SVGPathSegLinetoHorizontalAbs.x */ |
| 5477 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter"; | 5354 void set x(num value) native "SVGPathSegLinetoHorizontalAbs_x_Setter"; |
| 5478 | 5355 |
| 5479 } | 5356 } |
| 5480 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5357 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5481 // for details. All rights reserved. Use of this source code is governed by a | 5358 // for details. All rights reserved. Use of this source code is governed by a |
| 5482 // BSD-style license that can be found in the LICENSE file. | 5359 // BSD-style license that can be found in the LICENSE file. |
| 5483 | 5360 |
| 5484 // WARNING: Do not edit - generated code. | 5361 // WARNING: Do not edit - generated code. |
| 5485 | 5362 |
| 5486 | 5363 |
| 5487 /// @domName SVGPathSegLinetoHorizontalRel | 5364 /// @domName SVGPathSegLinetoHorizontalRel |
| 5488 class SVGPathSegLinetoHorizontalRel extends SVGPathSeg { | 5365 class PathSegLinetoHorizontalRel extends PathSeg { |
| 5489 SVGPathSegLinetoHorizontalRel.internal(): super.internal(); | 5366 PathSegLinetoHorizontalRel.internal(): super.internal(); |
| 5490 | 5367 |
| 5491 | 5368 |
| 5492 /** @domName SVGPathSegLinetoHorizontalRel.x */ | 5369 /** @domName SVGPathSegLinetoHorizontalRel.x */ |
| 5493 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter"; | 5370 num get x native "SVGPathSegLinetoHorizontalRel_x_Getter"; |
| 5494 | 5371 |
| 5495 | 5372 |
| 5496 /** @domName SVGPathSegLinetoHorizontalRel.x */ | 5373 /** @domName SVGPathSegLinetoHorizontalRel.x */ |
| 5497 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter"; | 5374 void set x(num value) native "SVGPathSegLinetoHorizontalRel_x_Setter"; |
| 5498 | 5375 |
| 5499 } | 5376 } |
| 5500 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5377 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5501 // for details. All rights reserved. Use of this source code is governed by a | 5378 // for details. All rights reserved. Use of this source code is governed by a |
| 5502 // BSD-style license that can be found in the LICENSE file. | 5379 // BSD-style license that can be found in the LICENSE file. |
| 5503 | 5380 |
| 5504 // WARNING: Do not edit - generated code. | 5381 // WARNING: Do not edit - generated code. |
| 5505 | 5382 |
| 5506 | 5383 |
| 5507 /// @domName SVGPathSegLinetoRel | 5384 /// @domName SVGPathSegLinetoRel |
| 5508 class SVGPathSegLinetoRel extends SVGPathSeg { | 5385 class PathSegLinetoRel extends PathSeg { |
| 5509 SVGPathSegLinetoRel.internal(): super.internal(); | 5386 PathSegLinetoRel.internal(): super.internal(); |
| 5510 | 5387 |
| 5511 | 5388 |
| 5512 /** @domName SVGPathSegLinetoRel.x */ | 5389 /** @domName SVGPathSegLinetoRel.x */ |
| 5513 num get x native "SVGPathSegLinetoRel_x_Getter"; | 5390 num get x native "SVGPathSegLinetoRel_x_Getter"; |
| 5514 | 5391 |
| 5515 | 5392 |
| 5516 /** @domName SVGPathSegLinetoRel.x */ | 5393 /** @domName SVGPathSegLinetoRel.x */ |
| 5517 void set x(num value) native "SVGPathSegLinetoRel_x_Setter"; | 5394 void set x(num value) native "SVGPathSegLinetoRel_x_Setter"; |
| 5518 | 5395 |
| 5519 | 5396 |
| 5520 /** @domName SVGPathSegLinetoRel.y */ | 5397 /** @domName SVGPathSegLinetoRel.y */ |
| 5521 num get y native "SVGPathSegLinetoRel_y_Getter"; | 5398 num get y native "SVGPathSegLinetoRel_y_Getter"; |
| 5522 | 5399 |
| 5523 | 5400 |
| 5524 /** @domName SVGPathSegLinetoRel.y */ | 5401 /** @domName SVGPathSegLinetoRel.y */ |
| 5525 void set y(num value) native "SVGPathSegLinetoRel_y_Setter"; | 5402 void set y(num value) native "SVGPathSegLinetoRel_y_Setter"; |
| 5526 | 5403 |
| 5527 } | 5404 } |
| 5528 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5405 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5529 // for details. All rights reserved. Use of this source code is governed by a | 5406 // for details. All rights reserved. Use of this source code is governed by a |
| 5530 // BSD-style license that can be found in the LICENSE file. | 5407 // BSD-style license that can be found in the LICENSE file. |
| 5531 | 5408 |
| 5532 // WARNING: Do not edit - generated code. | 5409 // WARNING: Do not edit - generated code. |
| 5533 | 5410 |
| 5534 | 5411 |
| 5535 /// @domName SVGPathSegLinetoVerticalAbs | 5412 /// @domName SVGPathSegLinetoVerticalAbs |
| 5536 class SVGPathSegLinetoVerticalAbs extends SVGPathSeg { | 5413 class PathSegLinetoVerticalAbs extends PathSeg { |
| 5537 SVGPathSegLinetoVerticalAbs.internal(): super.internal(); | 5414 PathSegLinetoVerticalAbs.internal(): super.internal(); |
| 5538 | 5415 |
| 5539 | 5416 |
| 5540 /** @domName SVGPathSegLinetoVerticalAbs.y */ | 5417 /** @domName SVGPathSegLinetoVerticalAbs.y */ |
| 5541 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter"; | 5418 num get y native "SVGPathSegLinetoVerticalAbs_y_Getter"; |
| 5542 | 5419 |
| 5543 | 5420 |
| 5544 /** @domName SVGPathSegLinetoVerticalAbs.y */ | 5421 /** @domName SVGPathSegLinetoVerticalAbs.y */ |
| 5545 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter"; | 5422 void set y(num value) native "SVGPathSegLinetoVerticalAbs_y_Setter"; |
| 5546 | 5423 |
| 5547 } | 5424 } |
| 5548 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5549 // for details. All rights reserved. Use of this source code is governed by a | 5426 // for details. All rights reserved. Use of this source code is governed by a |
| 5550 // BSD-style license that can be found in the LICENSE file. | 5427 // BSD-style license that can be found in the LICENSE file. |
| 5551 | 5428 |
| 5552 // WARNING: Do not edit - generated code. | 5429 // WARNING: Do not edit - generated code. |
| 5553 | 5430 |
| 5554 | 5431 |
| 5555 /// @domName SVGPathSegLinetoVerticalRel | 5432 /// @domName SVGPathSegLinetoVerticalRel |
| 5556 class SVGPathSegLinetoVerticalRel extends SVGPathSeg { | 5433 class PathSegLinetoVerticalRel extends PathSeg { |
| 5557 SVGPathSegLinetoVerticalRel.internal(): super.internal(); | 5434 PathSegLinetoVerticalRel.internal(): super.internal(); |
| 5558 | 5435 |
| 5559 | 5436 |
| 5560 /** @domName SVGPathSegLinetoVerticalRel.y */ | 5437 /** @domName SVGPathSegLinetoVerticalRel.y */ |
| 5561 num get y native "SVGPathSegLinetoVerticalRel_y_Getter"; | 5438 num get y native "SVGPathSegLinetoVerticalRel_y_Getter"; |
| 5562 | 5439 |
| 5563 | 5440 |
| 5564 /** @domName SVGPathSegLinetoVerticalRel.y */ | 5441 /** @domName SVGPathSegLinetoVerticalRel.y */ |
| 5565 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter"; | 5442 void set y(num value) native "SVGPathSegLinetoVerticalRel_y_Setter"; |
| 5566 | 5443 |
| 5567 } | 5444 } |
| 5568 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5569 // for details. All rights reserved. Use of this source code is governed by a | 5446 // for details. All rights reserved. Use of this source code is governed by a |
| 5570 // BSD-style license that can be found in the LICENSE file. | 5447 // BSD-style license that can be found in the LICENSE file. |
| 5571 | 5448 |
| 5572 // WARNING: Do not edit - generated code. | 5449 // WARNING: Do not edit - generated code. |
| 5573 | 5450 |
| 5574 | 5451 |
| 5575 /// @domName SVGPathSegList | 5452 /// @domName SVGPathSegList |
| 5576 class SVGPathSegList extends NativeFieldWrapperClass1 implements List<SVGPathSeg
> { | 5453 class PathSegList extends NativeFieldWrapperClass1 implements List<PathSeg> { |
| 5577 SVGPathSegList.internal(); | 5454 PathSegList.internal(); |
| 5578 | 5455 |
| 5579 | 5456 |
| 5580 /** @domName SVGPathSegList.numberOfItems */ | 5457 /** @domName SVGPathSegList.numberOfItems */ |
| 5581 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter"; | 5458 int get numberOfItems native "SVGPathSegList_numberOfItems_Getter"; |
| 5582 | 5459 |
| 5583 SVGPathSeg operator[](int index) native "SVGPathSegList_item_Callback"; | 5460 PathSeg operator[](int index) native "SVGPathSegList_item_Callback"; |
| 5584 | 5461 |
| 5585 void operator[]=(int index, SVGPathSeg value) { | 5462 void operator[]=(int index, PathSeg value) { |
| 5586 throw new UnsupportedError("Cannot assign element of immutable List."); | 5463 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 5587 } | 5464 } |
| 5588 // -- start List<SVGPathSeg> mixins. | 5465 // -- start List<PathSeg> mixins. |
| 5589 // SVGPathSeg is the element type. | 5466 // PathSeg is the element type. |
| 5590 | 5467 |
| 5591 // From Iterable<SVGPathSeg>: | 5468 // From Iterable<PathSeg>: |
| 5592 | 5469 |
| 5593 Iterator<SVGPathSeg> iterator() { | 5470 Iterator<PathSeg> iterator() { |
| 5594 // Note: NodeLists are not fixed size. And most probably length shouldn't | 5471 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 5595 // be cached in both iterator _and_ forEach method. For now caching it | 5472 // be cached in both iterator _and_ forEach method. For now caching it |
| 5596 // for consistency. | 5473 // for consistency. |
| 5597 return new FixedSizeListIterator<SVGPathSeg>(this); | 5474 return new FixedSizeListIterator<PathSeg>(this); |
| 5598 } | 5475 } |
| 5599 | 5476 |
| 5600 // From Collection<SVGPathSeg>: | 5477 // From Collection<PathSeg>: |
| 5601 | 5478 |
| 5602 void add(SVGPathSeg value) { | 5479 void add(PathSeg value) { |
| 5603 throw new UnsupportedError("Cannot add to immutable List."); | 5480 throw new UnsupportedError("Cannot add to immutable List."); |
| 5604 } | 5481 } |
| 5605 | 5482 |
| 5606 void addLast(SVGPathSeg value) { | 5483 void addLast(PathSeg value) { |
| 5607 throw new UnsupportedError("Cannot add to immutable List."); | 5484 throw new UnsupportedError("Cannot add to immutable List."); |
| 5608 } | 5485 } |
| 5609 | 5486 |
| 5610 void addAll(Collection<SVGPathSeg> collection) { | 5487 void addAll(Collection<PathSeg> collection) { |
| 5611 throw new UnsupportedError("Cannot add to immutable List."); | 5488 throw new UnsupportedError("Cannot add to immutable List."); |
| 5612 } | 5489 } |
| 5613 | 5490 |
| 5614 bool contains(SVGPathSeg element) => _Collections.contains(this, element); | 5491 bool contains(PathSeg element) => _Collections.contains(this, element); |
| 5615 | 5492 |
| 5616 void forEach(void f(SVGPathSeg element)) => _Collections.forEach(this, f); | 5493 void forEach(void f(PathSeg element)) => _Collections.forEach(this, f); |
| 5617 | 5494 |
| 5618 Collection map(f(SVGPathSeg element)) => _Collections.map(this, [], f); | 5495 Collection map(f(PathSeg element)) => _Collections.map(this, [], f); |
| 5619 | 5496 |
| 5620 Collection<SVGPathSeg> filter(bool f(SVGPathSeg element)) => | 5497 Collection<PathSeg> filter(bool f(PathSeg element)) => |
| 5621 _Collections.filter(this, <SVGPathSeg>[], f); | 5498 _Collections.filter(this, <PathSeg>[], f); |
| 5622 | 5499 |
| 5623 bool every(bool f(SVGPathSeg element)) => _Collections.every(this, f); | 5500 bool every(bool f(PathSeg element)) => _Collections.every(this, f); |
| 5624 | 5501 |
| 5625 bool some(bool f(SVGPathSeg element)) => _Collections.some(this, f); | 5502 bool some(bool f(PathSeg element)) => _Collections.some(this, f); |
| 5626 | 5503 |
| 5627 bool get isEmpty => this.length == 0; | 5504 bool get isEmpty => this.length == 0; |
| 5628 | 5505 |
| 5629 // From List<SVGPathSeg>: | 5506 // From List<PathSeg>: |
| 5630 | 5507 |
| 5631 void sort([Comparator<SVGPathSeg> compare = Comparable.compare]) { | 5508 void sort([Comparator<PathSeg> compare = Comparable.compare]) { |
| 5632 throw new UnsupportedError("Cannot sort immutable List."); | 5509 throw new UnsupportedError("Cannot sort immutable List."); |
| 5633 } | 5510 } |
| 5634 | 5511 |
| 5635 int indexOf(SVGPathSeg element, [int start = 0]) => | 5512 int indexOf(PathSeg element, [int start = 0]) => |
| 5636 _Lists.indexOf(this, element, start, this.length); | 5513 _Lists.indexOf(this, element, start, this.length); |
| 5637 | 5514 |
| 5638 int lastIndexOf(SVGPathSeg element, [int start]) { | 5515 int lastIndexOf(PathSeg element, [int start]) { |
| 5639 if (start == null) start = length - 1; | 5516 if (start == null) start = length - 1; |
| 5640 return _Lists.lastIndexOf(this, element, start); | 5517 return _Lists.lastIndexOf(this, element, start); |
| 5641 } | 5518 } |
| 5642 | 5519 |
| 5643 SVGPathSeg get first => this[0]; | 5520 PathSeg get first => this[0]; |
| 5644 | 5521 |
| 5645 SVGPathSeg get last => this[length - 1]; | 5522 PathSeg get last => this[length - 1]; |
| 5646 | 5523 |
| 5647 SVGPathSeg removeLast() { | 5524 PathSeg removeLast() { |
| 5648 throw new UnsupportedError("Cannot removeLast on immutable List."); | 5525 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 5649 } | 5526 } |
| 5650 | 5527 |
| 5651 void setRange(int start, int rangeLength, List<SVGPathSeg> from, [int startFro
m]) { | 5528 void setRange(int start, int rangeLength, List<PathSeg> from, [int startFrom])
{ |
| 5652 throw new UnsupportedError("Cannot setRange on immutable List."); | 5529 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 5653 } | 5530 } |
| 5654 | 5531 |
| 5655 void removeRange(int start, int rangeLength) { | 5532 void removeRange(int start, int rangeLength) { |
| 5656 throw new UnsupportedError("Cannot removeRange on immutable List."); | 5533 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 5657 } | 5534 } |
| 5658 | 5535 |
| 5659 void insertRange(int start, int rangeLength, [SVGPathSeg initialValue]) { | 5536 void insertRange(int start, int rangeLength, [PathSeg initialValue]) { |
| 5660 throw new UnsupportedError("Cannot insertRange on immutable List."); | 5537 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 5661 } | 5538 } |
| 5662 | 5539 |
| 5663 List<SVGPathSeg> getRange(int start, int rangeLength) => | 5540 List<PathSeg> getRange(int start, int rangeLength) => |
| 5664 _Lists.getRange(this, start, rangeLength, <SVGPathSeg>[]); | 5541 _Lists.getRange(this, start, rangeLength, <PathSeg>[]); |
| 5665 | 5542 |
| 5666 // -- end List<SVGPathSeg> mixins. | 5543 // -- end List<PathSeg> mixins. |
| 5667 | 5544 |
| 5668 | 5545 |
| 5669 /** @domName SVGPathSegList.appendItem */ | 5546 /** @domName SVGPathSegList.appendItem */ |
| 5670 SVGPathSeg appendItem(SVGPathSeg newItem) native "SVGPathSegList_appendItem_Ca
llback"; | 5547 PathSeg appendItem(PathSeg newItem) native "SVGPathSegList_appendItem_Callback
"; |
| 5671 | 5548 |
| 5672 | 5549 |
| 5673 /** @domName SVGPathSegList.clear */ | 5550 /** @domName SVGPathSegList.clear */ |
| 5674 void clear() native "SVGPathSegList_clear_Callback"; | 5551 void clear() native "SVGPathSegList_clear_Callback"; |
| 5675 | 5552 |
| 5676 | 5553 |
| 5677 /** @domName SVGPathSegList.getItem */ | 5554 /** @domName SVGPathSegList.getItem */ |
| 5678 SVGPathSeg getItem(int index) native "SVGPathSegList_getItem_Callback"; | 5555 PathSeg getItem(int index) native "SVGPathSegList_getItem_Callback"; |
| 5679 | 5556 |
| 5680 | 5557 |
| 5681 /** @domName SVGPathSegList.initialize */ | 5558 /** @domName SVGPathSegList.initialize */ |
| 5682 SVGPathSeg initialize(SVGPathSeg newItem) native "SVGPathSegList_initialize_Ca
llback"; | 5559 PathSeg initialize(PathSeg newItem) native "SVGPathSegList_initialize_Callback
"; |
| 5683 | 5560 |
| 5684 | 5561 |
| 5685 /** @domName SVGPathSegList.insertItemBefore */ | 5562 /** @domName SVGPathSegList.insertItemBefore */ |
| 5686 SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native "SVGPathSegL
ist_insertItemBefore_Callback"; | 5563 PathSeg insertItemBefore(PathSeg newItem, int index) native "SVGPathSegList_in
sertItemBefore_Callback"; |
| 5687 | 5564 |
| 5688 | 5565 |
| 5689 /** @domName SVGPathSegList.removeItem */ | 5566 /** @domName SVGPathSegList.removeItem */ |
| 5690 SVGPathSeg removeItem(int index) native "SVGPathSegList_removeItem_Callback"; | 5567 PathSeg removeItem(int index) native "SVGPathSegList_removeItem_Callback"; |
| 5691 | 5568 |
| 5692 | 5569 |
| 5693 /** @domName SVGPathSegList.replaceItem */ | 5570 /** @domName SVGPathSegList.replaceItem */ |
| 5694 SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native "SVGPathSegList_r
eplaceItem_Callback"; | 5571 PathSeg replaceItem(PathSeg newItem, int index) native "SVGPathSegList_replace
Item_Callback"; |
| 5695 | 5572 |
| 5696 } | 5573 } |
| 5697 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5574 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5698 // for details. All rights reserved. Use of this source code is governed by a | 5575 // for details. All rights reserved. Use of this source code is governed by a |
| 5699 // BSD-style license that can be found in the LICENSE file. | 5576 // BSD-style license that can be found in the LICENSE file. |
| 5700 | 5577 |
| 5701 // WARNING: Do not edit - generated code. | 5578 // WARNING: Do not edit - generated code. |
| 5702 | 5579 |
| 5703 | 5580 |
| 5704 /// @domName SVGPathSegMovetoAbs | 5581 /// @domName SVGPathSegMovetoAbs |
| 5705 class SVGPathSegMovetoAbs extends SVGPathSeg { | 5582 class PathSegMovetoAbs extends PathSeg { |
| 5706 SVGPathSegMovetoAbs.internal(): super.internal(); | 5583 PathSegMovetoAbs.internal(): super.internal(); |
| 5707 | 5584 |
| 5708 | 5585 |
| 5709 /** @domName SVGPathSegMovetoAbs.x */ | 5586 /** @domName SVGPathSegMovetoAbs.x */ |
| 5710 num get x native "SVGPathSegMovetoAbs_x_Getter"; | 5587 num get x native "SVGPathSegMovetoAbs_x_Getter"; |
| 5711 | 5588 |
| 5712 | 5589 |
| 5713 /** @domName SVGPathSegMovetoAbs.x */ | 5590 /** @domName SVGPathSegMovetoAbs.x */ |
| 5714 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter"; | 5591 void set x(num value) native "SVGPathSegMovetoAbs_x_Setter"; |
| 5715 | 5592 |
| 5716 | 5593 |
| 5717 /** @domName SVGPathSegMovetoAbs.y */ | 5594 /** @domName SVGPathSegMovetoAbs.y */ |
| 5718 num get y native "SVGPathSegMovetoAbs_y_Getter"; | 5595 num get y native "SVGPathSegMovetoAbs_y_Getter"; |
| 5719 | 5596 |
| 5720 | 5597 |
| 5721 /** @domName SVGPathSegMovetoAbs.y */ | 5598 /** @domName SVGPathSegMovetoAbs.y */ |
| 5722 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter"; | 5599 void set y(num value) native "SVGPathSegMovetoAbs_y_Setter"; |
| 5723 | 5600 |
| 5724 } | 5601 } |
| 5725 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5602 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5726 // for details. All rights reserved. Use of this source code is governed by a | 5603 // for details. All rights reserved. Use of this source code is governed by a |
| 5727 // BSD-style license that can be found in the LICENSE file. | 5604 // BSD-style license that can be found in the LICENSE file. |
| 5728 | 5605 |
| 5729 // WARNING: Do not edit - generated code. | 5606 // WARNING: Do not edit - generated code. |
| 5730 | 5607 |
| 5731 | 5608 |
| 5732 /// @domName SVGPathSegMovetoRel | 5609 /// @domName SVGPathSegMovetoRel |
| 5733 class SVGPathSegMovetoRel extends SVGPathSeg { | 5610 class PathSegMovetoRel extends PathSeg { |
| 5734 SVGPathSegMovetoRel.internal(): super.internal(); | 5611 PathSegMovetoRel.internal(): super.internal(); |
| 5735 | 5612 |
| 5736 | 5613 |
| 5737 /** @domName SVGPathSegMovetoRel.x */ | 5614 /** @domName SVGPathSegMovetoRel.x */ |
| 5738 num get x native "SVGPathSegMovetoRel_x_Getter"; | 5615 num get x native "SVGPathSegMovetoRel_x_Getter"; |
| 5739 | 5616 |
| 5740 | 5617 |
| 5741 /** @domName SVGPathSegMovetoRel.x */ | 5618 /** @domName SVGPathSegMovetoRel.x */ |
| 5742 void set x(num value) native "SVGPathSegMovetoRel_x_Setter"; | 5619 void set x(num value) native "SVGPathSegMovetoRel_x_Setter"; |
| 5743 | 5620 |
| 5744 | 5621 |
| 5745 /** @domName SVGPathSegMovetoRel.y */ | 5622 /** @domName SVGPathSegMovetoRel.y */ |
| 5746 num get y native "SVGPathSegMovetoRel_y_Getter"; | 5623 num get y native "SVGPathSegMovetoRel_y_Getter"; |
| 5747 | 5624 |
| 5748 | 5625 |
| 5749 /** @domName SVGPathSegMovetoRel.y */ | 5626 /** @domName SVGPathSegMovetoRel.y */ |
| 5750 void set y(num value) native "SVGPathSegMovetoRel_y_Setter"; | 5627 void set y(num value) native "SVGPathSegMovetoRel_y_Setter"; |
| 5751 | 5628 |
| 5752 } | 5629 } |
| 5753 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5630 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5754 // for details. All rights reserved. Use of this source code is governed by a | 5631 // for details. All rights reserved. Use of this source code is governed by a |
| 5755 // BSD-style license that can be found in the LICENSE file. | 5632 // BSD-style license that can be found in the LICENSE file. |
| 5756 | 5633 |
| 5757 // WARNING: Do not edit - generated code. | 5634 // WARNING: Do not edit - generated code. |
| 5758 | 5635 |
| 5759 | 5636 |
| 5760 /// @domName SVGPatternElement | 5637 /// @domName SVGPatternElement |
| 5761 class SVGPatternElement extends SVGElement implements SVGLangSpace, SVGTests, SV
GStylable, SVGURIReference, SVGFitToViewBox, SVGExternalResourcesRequired { | 5638 class PatternElement extends SvgElement implements FitToViewBox, Tests, UriRefer
ence, Stylable, ExternalResourcesRequired, LangSpace { |
| 5762 | 5639 |
| 5763 factory SVGPatternElement() => _SVGElementFactoryProvider.createSVGElement_tag
("pattern"); | 5640 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); |
| 5764 SVGPatternElement.internal(): super.internal(); | 5641 PatternElement.internal(): super.internal(); |
| 5765 | 5642 |
| 5766 | 5643 |
| 5767 /** @domName SVGPatternElement.height */ | 5644 /** @domName SVGPatternElement.height */ |
| 5768 SVGAnimatedLength get height native "SVGPatternElement_height_Getter"; | 5645 AnimatedLength get height native "SVGPatternElement_height_Getter"; |
| 5769 | 5646 |
| 5770 | 5647 |
| 5771 /** @domName SVGPatternElement.patternContentUnits */ | 5648 /** @domName SVGPatternElement.patternContentUnits */ |
| 5772 SVGAnimatedEnumeration get patternContentUnits native "SVGPatternElement_patte
rnContentUnits_Getter"; | 5649 AnimatedEnumeration get patternContentUnits native "SVGPatternElement_patternC
ontentUnits_Getter"; |
| 5773 | 5650 |
| 5774 | 5651 |
| 5775 /** @domName SVGPatternElement.patternTransform */ | 5652 /** @domName SVGPatternElement.patternTransform */ |
| 5776 SVGAnimatedTransformList get patternTransform native "SVGPatternElement_patter
nTransform_Getter"; | 5653 AnimatedTransformList get patternTransform native "SVGPatternElement_patternTr
ansform_Getter"; |
| 5777 | 5654 |
| 5778 | 5655 |
| 5779 /** @domName SVGPatternElement.patternUnits */ | 5656 /** @domName SVGPatternElement.patternUnits */ |
| 5780 SVGAnimatedEnumeration get patternUnits native "SVGPatternElement_patternUnits
_Getter"; | 5657 AnimatedEnumeration get patternUnits native "SVGPatternElement_patternUnits_Ge
tter"; |
| 5781 | 5658 |
| 5782 | 5659 |
| 5783 /** @domName SVGPatternElement.width */ | 5660 /** @domName SVGPatternElement.width */ |
| 5784 SVGAnimatedLength get width native "SVGPatternElement_width_Getter"; | 5661 AnimatedLength get width native "SVGPatternElement_width_Getter"; |
| 5785 | 5662 |
| 5786 | 5663 |
| 5787 /** @domName SVGPatternElement.x */ | 5664 /** @domName SVGPatternElement.x */ |
| 5788 SVGAnimatedLength get x native "SVGPatternElement_x_Getter"; | 5665 AnimatedLength get x native "SVGPatternElement_x_Getter"; |
| 5789 | 5666 |
| 5790 | 5667 |
| 5791 /** @domName SVGPatternElement.y */ | 5668 /** @domName SVGPatternElement.y */ |
| 5792 SVGAnimatedLength get y native "SVGPatternElement_y_Getter"; | 5669 AnimatedLength get y native "SVGPatternElement_y_Getter"; |
| 5793 | 5670 |
| 5794 | 5671 |
| 5795 /** @domName SVGPatternElement.externalResourcesRequired */ | 5672 /** @domName SVGPatternElement.externalResourcesRequired */ |
| 5796 SVGAnimatedBoolean get externalResourcesRequired native "SVGPatternElement_ext
ernalResourcesRequired_Getter"; | 5673 AnimatedBoolean get externalResourcesRequired native "SVGPatternElement_extern
alResourcesRequired_Getter"; |
| 5797 | 5674 |
| 5798 | 5675 |
| 5799 /** @domName SVGPatternElement.preserveAspectRatio */ | 5676 /** @domName SVGPatternElement.preserveAspectRatio */ |
| 5800 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternEleme
nt_preserveAspectRatio_Getter"; | 5677 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGPatternElement_
preserveAspectRatio_Getter"; |
| 5801 | 5678 |
| 5802 | 5679 |
| 5803 /** @domName SVGPatternElement.viewBox */ | 5680 /** @domName SVGPatternElement.viewBox */ |
| 5804 SVGAnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter"; | 5681 AnimatedRect get viewBox native "SVGPatternElement_viewBox_Getter"; |
| 5805 | 5682 |
| 5806 | 5683 |
| 5807 /** @domName SVGPatternElement.xmllang */ | 5684 /** @domName SVGPatternElement.xmllang */ |
| 5808 String get xmllang native "SVGPatternElement_xmllang_Getter"; | 5685 String get xmllang native "SVGPatternElement_xmllang_Getter"; |
| 5809 | 5686 |
| 5810 | 5687 |
| 5811 /** @domName SVGPatternElement.xmllang */ | 5688 /** @domName SVGPatternElement.xmllang */ |
| 5812 void set xmllang(String value) native "SVGPatternElement_xmllang_Setter"; | 5689 void set xmllang(String value) native "SVGPatternElement_xmllang_Setter"; |
| 5813 | 5690 |
| 5814 | 5691 |
| 5815 /** @domName SVGPatternElement.xmlspace */ | 5692 /** @domName SVGPatternElement.xmlspace */ |
| 5816 String get xmlspace native "SVGPatternElement_xmlspace_Getter"; | 5693 String get xmlspace native "SVGPatternElement_xmlspace_Getter"; |
| 5817 | 5694 |
| 5818 | 5695 |
| 5819 /** @domName SVGPatternElement.xmlspace */ | 5696 /** @domName SVGPatternElement.xmlspace */ |
| 5820 void set xmlspace(String value) native "SVGPatternElement_xmlspace_Setter"; | 5697 void set xmlspace(String value) native "SVGPatternElement_xmlspace_Setter"; |
| 5821 | 5698 |
| 5822 | 5699 |
| 5823 /** @domName SVGPatternElement.className */ | 5700 /** @domName SVGPatternElement.className */ |
| 5824 SVGAnimatedString get $dom_svgClassName native "SVGPatternElement_className_Ge
tter"; | 5701 AnimatedString get $dom_svgClassName native "SVGPatternElement_className_Gette
r"; |
| 5825 | 5702 |
| 5826 | 5703 |
| 5827 /** @domName SVGPatternElement.style */ | 5704 /** @domName SVGPatternElement.style */ |
| 5828 CSSStyleDeclaration get style native "SVGPatternElement_style_Getter"; | 5705 CSSStyleDeclaration get style native "SVGPatternElement_style_Getter"; |
| 5829 | 5706 |
| 5830 | 5707 |
| 5831 /** @domName SVGPatternElement.getPresentationAttribute */ | 5708 /** @domName SVGPatternElement.getPresentationAttribute */ |
| 5832 CSSValue getPresentationAttribute(String name) native "SVGPatternElement_getPr
esentationAttribute_Callback"; | 5709 CSSValue getPresentationAttribute(String name) native "SVGPatternElement_getPr
esentationAttribute_Callback"; |
| 5833 | 5710 |
| 5834 | 5711 |
| 5835 /** @domName SVGPatternElement.requiredExtensions */ | 5712 /** @domName SVGPatternElement.requiredExtensions */ |
| 5836 SVGStringList get requiredExtensions native "SVGPatternElement_requiredExtensi
ons_Getter"; | 5713 StringList get requiredExtensions native "SVGPatternElement_requiredExtensions
_Getter"; |
| 5837 | 5714 |
| 5838 | 5715 |
| 5839 /** @domName SVGPatternElement.requiredFeatures */ | 5716 /** @domName SVGPatternElement.requiredFeatures */ |
| 5840 SVGStringList get requiredFeatures native "SVGPatternElement_requiredFeatures_
Getter"; | 5717 StringList get requiredFeatures native "SVGPatternElement_requiredFeatures_Get
ter"; |
| 5841 | 5718 |
| 5842 | 5719 |
| 5843 /** @domName SVGPatternElement.systemLanguage */ | 5720 /** @domName SVGPatternElement.systemLanguage */ |
| 5844 SVGStringList get systemLanguage native "SVGPatternElement_systemLanguage_Gett
er"; | 5721 StringList get systemLanguage native "SVGPatternElement_systemLanguage_Getter"
; |
| 5845 | 5722 |
| 5846 | 5723 |
| 5847 /** @domName SVGPatternElement.hasExtension */ | 5724 /** @domName SVGPatternElement.hasExtension */ |
| 5848 bool hasExtension(String extension) native "SVGPatternElement_hasExtension_Cal
lback"; | 5725 bool hasExtension(String extension) native "SVGPatternElement_hasExtension_Cal
lback"; |
| 5849 | 5726 |
| 5850 | 5727 |
| 5851 /** @domName SVGPatternElement.href */ | 5728 /** @domName SVGPatternElement.href */ |
| 5852 SVGAnimatedString get href native "SVGPatternElement_href_Getter"; | 5729 AnimatedString get href native "SVGPatternElement_href_Getter"; |
| 5853 | 5730 |
| 5854 } | 5731 } |
| 5855 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5732 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5856 // for details. All rights reserved. Use of this source code is governed by a | 5733 // for details. All rights reserved. Use of this source code is governed by a |
| 5857 // BSD-style license that can be found in the LICENSE file. | 5734 // BSD-style license that can be found in the LICENSE file. |
| 5858 | 5735 |
| 5859 // WARNING: Do not edit - generated code. | 5736 // WARNING: Do not edit - generated code. |
| 5860 | 5737 |
| 5861 | 5738 |
| 5862 /// @domName SVGPoint | 5739 class Point extends NativeFieldWrapperClass1 { |
| 5863 class SVGPoint extends NativeFieldWrapperClass1 { | 5740 factory Point(num x, num y) => _PointFactoryProvider.createPoint(x, y); |
| 5864 SVGPoint.internal(); | 5741 Point.internal(); |
| 5865 | 5742 |
| 5866 | 5743 |
| 5867 /** @domName SVGPoint.x */ | 5744 /** @domName SVGPoint.x */ |
| 5868 num get x native "SVGPoint_x_Getter"; | 5745 num get x native "SVGPoint_x_Getter"; |
| 5869 | 5746 |
| 5870 | 5747 |
| 5871 /** @domName SVGPoint.x */ | 5748 /** @domName SVGPoint.x */ |
| 5872 void set x(num value) native "SVGPoint_x_Setter"; | 5749 void set x(num value) native "SVGPoint_x_Setter"; |
| 5873 | 5750 |
| 5874 | 5751 |
| 5875 /** @domName SVGPoint.y */ | 5752 /** @domName SVGPoint.y */ |
| 5876 num get y native "SVGPoint_y_Getter"; | 5753 num get y native "SVGPoint_y_Getter"; |
| 5877 | 5754 |
| 5878 | 5755 |
| 5879 /** @domName SVGPoint.y */ | 5756 /** @domName SVGPoint.y */ |
| 5880 void set y(num value) native "SVGPoint_y_Setter"; | 5757 void set y(num value) native "SVGPoint_y_Setter"; |
| 5881 | 5758 |
| 5882 | 5759 |
| 5883 /** @domName SVGPoint.matrixTransform */ | 5760 /** @domName SVGPoint.matrixTransform */ |
| 5884 SVGPoint matrixTransform(SVGMatrix matrix) native "SVGPoint_matrixTransform_Ca
llback"; | 5761 Point matrixTransform(Matrix matrix) native "SVGPoint_matrixTransform_Callback
"; |
| 5885 | 5762 |
| 5886 } | 5763 } |
| 5887 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5764 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5888 // for details. All rights reserved. Use of this source code is governed by a | 5765 // for details. All rights reserved. Use of this source code is governed by a |
| 5889 // BSD-style license that can be found in the LICENSE file. | 5766 // BSD-style license that can be found in the LICENSE file. |
| 5890 | 5767 |
| 5891 // WARNING: Do not edit - generated code. | 5768 // WARNING: Do not edit - generated code. |
| 5892 | 5769 |
| 5893 | 5770 |
| 5894 /// @domName SVGPointList | 5771 /// @domName SVGPointList |
| 5895 class SVGPointList extends NativeFieldWrapperClass1 { | 5772 class PointList extends NativeFieldWrapperClass1 { |
| 5896 SVGPointList.internal(); | 5773 PointList.internal(); |
| 5897 | 5774 |
| 5898 | 5775 |
| 5899 /** @domName SVGPointList.numberOfItems */ | 5776 /** @domName SVGPointList.numberOfItems */ |
| 5900 int get numberOfItems native "SVGPointList_numberOfItems_Getter"; | 5777 int get numberOfItems native "SVGPointList_numberOfItems_Getter"; |
| 5901 | 5778 |
| 5902 | 5779 |
| 5903 /** @domName SVGPointList.appendItem */ | 5780 /** @domName SVGPointList.appendItem */ |
| 5904 SVGPoint appendItem(SVGPoint item) native "SVGPointList_appendItem_Callback"; | 5781 Point appendItem(Point item) native "SVGPointList_appendItem_Callback"; |
| 5905 | 5782 |
| 5906 | 5783 |
| 5907 /** @domName SVGPointList.clear */ | 5784 /** @domName SVGPointList.clear */ |
| 5908 void clear() native "SVGPointList_clear_Callback"; | 5785 void clear() native "SVGPointList_clear_Callback"; |
| 5909 | 5786 |
| 5910 | 5787 |
| 5911 /** @domName SVGPointList.getItem */ | 5788 /** @domName SVGPointList.getItem */ |
| 5912 SVGPoint getItem(int index) native "SVGPointList_getItem_Callback"; | 5789 Point getItem(int index) native "SVGPointList_getItem_Callback"; |
| 5913 | 5790 |
| 5914 | 5791 |
| 5915 /** @domName SVGPointList.initialize */ | 5792 /** @domName SVGPointList.initialize */ |
| 5916 SVGPoint initialize(SVGPoint item) native "SVGPointList_initialize_Callback"; | 5793 Point initialize(Point item) native "SVGPointList_initialize_Callback"; |
| 5917 | 5794 |
| 5918 | 5795 |
| 5919 /** @domName SVGPointList.insertItemBefore */ | 5796 /** @domName SVGPointList.insertItemBefore */ |
| 5920 SVGPoint insertItemBefore(SVGPoint item, int index) native "SVGPointList_inser
tItemBefore_Callback"; | 5797 Point insertItemBefore(Point item, int index) native "SVGPointList_insertItemB
efore_Callback"; |
| 5921 | 5798 |
| 5922 | 5799 |
| 5923 /** @domName SVGPointList.removeItem */ | 5800 /** @domName SVGPointList.removeItem */ |
| 5924 SVGPoint removeItem(int index) native "SVGPointList_removeItem_Callback"; | 5801 Point removeItem(int index) native "SVGPointList_removeItem_Callback"; |
| 5925 | 5802 |
| 5926 | 5803 |
| 5927 /** @domName SVGPointList.replaceItem */ | 5804 /** @domName SVGPointList.replaceItem */ |
| 5928 SVGPoint replaceItem(SVGPoint item, int index) native "SVGPointList_replaceIte
m_Callback"; | 5805 Point replaceItem(Point item, int index) native "SVGPointList_replaceItem_Call
back"; |
| 5929 | 5806 |
| 5930 } | 5807 } |
| 5931 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5932 // for details. All rights reserved. Use of this source code is governed by a | 5809 // for details. All rights reserved. Use of this source code is governed by a |
| 5933 // BSD-style license that can be found in the LICENSE file. | 5810 // BSD-style license that can be found in the LICENSE file. |
| 5934 | 5811 |
| 5935 // WARNING: Do not edit - generated code. | 5812 // WARNING: Do not edit - generated code. |
| 5936 | 5813 |
| 5937 | 5814 |
| 5938 /// @domName SVGPolygonElement | 5815 /// @domName SVGPolygonElement |
| 5939 class SVGPolygonElement extends SVGElement implements SVGLangSpace, SVGStylable,
SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 5816 class PolygonElement extends SvgElement implements Transformable, Tests, Stylabl
e, ExternalResourcesRequired, LangSpace { |
| 5940 | 5817 |
| 5941 factory SVGPolygonElement() => _SVGElementFactoryProvider.createSVGElement_tag
("polygon"); | 5818 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); |
| 5942 SVGPolygonElement.internal(): super.internal(); | 5819 PolygonElement.internal(): super.internal(); |
| 5943 | 5820 |
| 5944 | 5821 |
| 5945 /** @domName SVGPolygonElement.animatedPoints */ | 5822 /** @domName SVGPolygonElement.animatedPoints */ |
| 5946 SVGPointList get animatedPoints native "SVGPolygonElement_animatedPoints_Gette
r"; | 5823 PointList get animatedPoints native "SVGPolygonElement_animatedPoints_Getter"; |
| 5947 | 5824 |
| 5948 | 5825 |
| 5949 /** @domName SVGPolygonElement.points */ | 5826 /** @domName SVGPolygonElement.points */ |
| 5950 SVGPointList get points native "SVGPolygonElement_points_Getter"; | 5827 PointList get points native "SVGPolygonElement_points_Getter"; |
| 5951 | 5828 |
| 5952 | 5829 |
| 5953 /** @domName SVGPolygonElement.externalResourcesRequired */ | 5830 /** @domName SVGPolygonElement.externalResourcesRequired */ |
| 5954 SVGAnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_ext
ernalResourcesRequired_Getter"; | 5831 AnimatedBoolean get externalResourcesRequired native "SVGPolygonElement_extern
alResourcesRequired_Getter"; |
| 5955 | 5832 |
| 5956 | 5833 |
| 5957 /** @domName SVGPolygonElement.xmllang */ | 5834 /** @domName SVGPolygonElement.xmllang */ |
| 5958 String get xmllang native "SVGPolygonElement_xmllang_Getter"; | 5835 String get xmllang native "SVGPolygonElement_xmllang_Getter"; |
| 5959 | 5836 |
| 5960 | 5837 |
| 5961 /** @domName SVGPolygonElement.xmllang */ | 5838 /** @domName SVGPolygonElement.xmllang */ |
| 5962 void set xmllang(String value) native "SVGPolygonElement_xmllang_Setter"; | 5839 void set xmllang(String value) native "SVGPolygonElement_xmllang_Setter"; |
| 5963 | 5840 |
| 5964 | 5841 |
| 5965 /** @domName SVGPolygonElement.xmlspace */ | 5842 /** @domName SVGPolygonElement.xmlspace */ |
| 5966 String get xmlspace native "SVGPolygonElement_xmlspace_Getter"; | 5843 String get xmlspace native "SVGPolygonElement_xmlspace_Getter"; |
| 5967 | 5844 |
| 5968 | 5845 |
| 5969 /** @domName SVGPolygonElement.xmlspace */ | 5846 /** @domName SVGPolygonElement.xmlspace */ |
| 5970 void set xmlspace(String value) native "SVGPolygonElement_xmlspace_Setter"; | 5847 void set xmlspace(String value) native "SVGPolygonElement_xmlspace_Setter"; |
| 5971 | 5848 |
| 5972 | 5849 |
| 5973 /** @domName SVGPolygonElement.farthestViewportElement */ | 5850 /** @domName SVGPolygonElement.farthestViewportElement */ |
| 5974 SVGElement get farthestViewportElement native "SVGPolygonElement_farthestViewp
ortElement_Getter"; | 5851 SvgElement get farthestViewportElement native "SVGPolygonElement_farthestViewp
ortElement_Getter"; |
| 5975 | 5852 |
| 5976 | 5853 |
| 5977 /** @domName SVGPolygonElement.nearestViewportElement */ | 5854 /** @domName SVGPolygonElement.nearestViewportElement */ |
| 5978 SVGElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor
tElement_Getter"; | 5855 SvgElement get nearestViewportElement native "SVGPolygonElement_nearestViewpor
tElement_Getter"; |
| 5979 | 5856 |
| 5980 | 5857 |
| 5981 /** @domName SVGPolygonElement.getBBox */ | 5858 /** @domName SVGPolygonElement.getBBox */ |
| 5982 SVGRect getBBox() native "SVGPolygonElement_getBBox_Callback"; | 5859 Rect getBBox() native "SVGPolygonElement_getBBox_Callback"; |
| 5983 | 5860 |
| 5984 | 5861 |
| 5985 /** @domName SVGPolygonElement.getCTM */ | 5862 /** @domName SVGPolygonElement.getCTM */ |
| 5986 SVGMatrix getCTM() native "SVGPolygonElement_getCTM_Callback"; | 5863 Matrix getCTM() native "SVGPolygonElement_getCTM_Callback"; |
| 5987 | 5864 |
| 5988 | 5865 |
| 5989 /** @domName SVGPolygonElement.getScreenCTM */ | 5866 /** @domName SVGPolygonElement.getScreenCTM */ |
| 5990 SVGMatrix getScreenCTM() native "SVGPolygonElement_getScreenCTM_Callback"; | 5867 Matrix getScreenCTM() native "SVGPolygonElement_getScreenCTM_Callback"; |
| 5991 | 5868 |
| 5992 | 5869 |
| 5993 /** @domName SVGPolygonElement.getTransformToElement */ | 5870 /** @domName SVGPolygonElement.getTransformToElement */ |
| 5994 SVGMatrix getTransformToElement(SVGElement element) native "SVGPolygonElement_
getTransformToElement_Callback"; | 5871 Matrix getTransformToElement(SvgElement element) native "SVGPolygonElement_get
TransformToElement_Callback"; |
| 5995 | 5872 |
| 5996 | 5873 |
| 5997 /** @domName SVGPolygonElement.className */ | 5874 /** @domName SVGPolygonElement.className */ |
| 5998 SVGAnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Ge
tter"; | 5875 AnimatedString get $dom_svgClassName native "SVGPolygonElement_className_Gette
r"; |
| 5999 | 5876 |
| 6000 | 5877 |
| 6001 /** @domName SVGPolygonElement.style */ | 5878 /** @domName SVGPolygonElement.style */ |
| 6002 CSSStyleDeclaration get style native "SVGPolygonElement_style_Getter"; | 5879 CSSStyleDeclaration get style native "SVGPolygonElement_style_Getter"; |
| 6003 | 5880 |
| 6004 | 5881 |
| 6005 /** @domName SVGPolygonElement.getPresentationAttribute */ | 5882 /** @domName SVGPolygonElement.getPresentationAttribute */ |
| 6006 CSSValue getPresentationAttribute(String name) native "SVGPolygonElement_getPr
esentationAttribute_Callback"; | 5883 CSSValue getPresentationAttribute(String name) native "SVGPolygonElement_getPr
esentationAttribute_Callback"; |
| 6007 | 5884 |
| 6008 | 5885 |
| 6009 /** @domName SVGPolygonElement.requiredExtensions */ | 5886 /** @domName SVGPolygonElement.requiredExtensions */ |
| 6010 SVGStringList get requiredExtensions native "SVGPolygonElement_requiredExtensi
ons_Getter"; | 5887 StringList get requiredExtensions native "SVGPolygonElement_requiredExtensions
_Getter"; |
| 6011 | 5888 |
| 6012 | 5889 |
| 6013 /** @domName SVGPolygonElement.requiredFeatures */ | 5890 /** @domName SVGPolygonElement.requiredFeatures */ |
| 6014 SVGStringList get requiredFeatures native "SVGPolygonElement_requiredFeatures_
Getter"; | 5891 StringList get requiredFeatures native "SVGPolygonElement_requiredFeatures_Get
ter"; |
| 6015 | 5892 |
| 6016 | 5893 |
| 6017 /** @domName SVGPolygonElement.systemLanguage */ | 5894 /** @domName SVGPolygonElement.systemLanguage */ |
| 6018 SVGStringList get systemLanguage native "SVGPolygonElement_systemLanguage_Gett
er"; | 5895 StringList get systemLanguage native "SVGPolygonElement_systemLanguage_Getter"
; |
| 6019 | 5896 |
| 6020 | 5897 |
| 6021 /** @domName SVGPolygonElement.hasExtension */ | 5898 /** @domName SVGPolygonElement.hasExtension */ |
| 6022 bool hasExtension(String extension) native "SVGPolygonElement_hasExtension_Cal
lback"; | 5899 bool hasExtension(String extension) native "SVGPolygonElement_hasExtension_Cal
lback"; |
| 6023 | 5900 |
| 6024 | 5901 |
| 6025 /** @domName SVGPolygonElement.transform */ | 5902 /** @domName SVGPolygonElement.transform */ |
| 6026 SVGAnimatedTransformList get transform native "SVGPolygonElement_transform_Get
ter"; | 5903 AnimatedTransformList get transform native "SVGPolygonElement_transform_Getter
"; |
| 6027 | 5904 |
| 6028 } | 5905 } |
| 6029 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6030 // for details. All rights reserved. Use of this source code is governed by a | 5907 // for details. All rights reserved. Use of this source code is governed by a |
| 6031 // BSD-style license that can be found in the LICENSE file. | 5908 // BSD-style license that can be found in the LICENSE file. |
| 6032 | 5909 |
| 6033 // WARNING: Do not edit - generated code. | 5910 // WARNING: Do not edit - generated code. |
| 6034 | 5911 |
| 6035 | 5912 |
| 6036 /// @domName SVGPolylineElement | 5913 /// @domName SVGPolylineElement |
| 6037 class SVGPolylineElement extends SVGElement implements SVGLangSpace, SVGStylable
, SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 5914 class PolylineElement extends SvgElement implements Transformable, Tests, Stylab
le, ExternalResourcesRequired, LangSpace { |
| 6038 | 5915 |
| 6039 factory SVGPolylineElement() => _SVGElementFactoryProvider.createSVGElement_ta
g("polyline"); | 5916 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); |
| 6040 SVGPolylineElement.internal(): super.internal(); | 5917 PolylineElement.internal(): super.internal(); |
| 6041 | 5918 |
| 6042 | 5919 |
| 6043 /** @domName SVGPolylineElement.animatedPoints */ | 5920 /** @domName SVGPolylineElement.animatedPoints */ |
| 6044 SVGPointList get animatedPoints native "SVGPolylineElement_animatedPoints_Gett
er"; | 5921 PointList get animatedPoints native "SVGPolylineElement_animatedPoints_Getter"
; |
| 6045 | 5922 |
| 6046 | 5923 |
| 6047 /** @domName SVGPolylineElement.points */ | 5924 /** @domName SVGPolylineElement.points */ |
| 6048 SVGPointList get points native "SVGPolylineElement_points_Getter"; | 5925 PointList get points native "SVGPolylineElement_points_Getter"; |
| 6049 | 5926 |
| 6050 | 5927 |
| 6051 /** @domName SVGPolylineElement.externalResourcesRequired */ | 5928 /** @domName SVGPolylineElement.externalResourcesRequired */ |
| 6052 SVGAnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_ex
ternalResourcesRequired_Getter"; | 5929 AnimatedBoolean get externalResourcesRequired native "SVGPolylineElement_exter
nalResourcesRequired_Getter"; |
| 6053 | 5930 |
| 6054 | 5931 |
| 6055 /** @domName SVGPolylineElement.xmllang */ | 5932 /** @domName SVGPolylineElement.xmllang */ |
| 6056 String get xmllang native "SVGPolylineElement_xmllang_Getter"; | 5933 String get xmllang native "SVGPolylineElement_xmllang_Getter"; |
| 6057 | 5934 |
| 6058 | 5935 |
| 6059 /** @domName SVGPolylineElement.xmllang */ | 5936 /** @domName SVGPolylineElement.xmllang */ |
| 6060 void set xmllang(String value) native "SVGPolylineElement_xmllang_Setter"; | 5937 void set xmllang(String value) native "SVGPolylineElement_xmllang_Setter"; |
| 6061 | 5938 |
| 6062 | 5939 |
| 6063 /** @domName SVGPolylineElement.xmlspace */ | 5940 /** @domName SVGPolylineElement.xmlspace */ |
| 6064 String get xmlspace native "SVGPolylineElement_xmlspace_Getter"; | 5941 String get xmlspace native "SVGPolylineElement_xmlspace_Getter"; |
| 6065 | 5942 |
| 6066 | 5943 |
| 6067 /** @domName SVGPolylineElement.xmlspace */ | 5944 /** @domName SVGPolylineElement.xmlspace */ |
| 6068 void set xmlspace(String value) native "SVGPolylineElement_xmlspace_Setter"; | 5945 void set xmlspace(String value) native "SVGPolylineElement_xmlspace_Setter"; |
| 6069 | 5946 |
| 6070 | 5947 |
| 6071 /** @domName SVGPolylineElement.farthestViewportElement */ | 5948 /** @domName SVGPolylineElement.farthestViewportElement */ |
| 6072 SVGElement get farthestViewportElement native "SVGPolylineElement_farthestView
portElement_Getter"; | 5949 SvgElement get farthestViewportElement native "SVGPolylineElement_farthestView
portElement_Getter"; |
| 6073 | 5950 |
| 6074 | 5951 |
| 6075 /** @domName SVGPolylineElement.nearestViewportElement */ | 5952 /** @domName SVGPolylineElement.nearestViewportElement */ |
| 6076 SVGElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo
rtElement_Getter"; | 5953 SvgElement get nearestViewportElement native "SVGPolylineElement_nearestViewpo
rtElement_Getter"; |
| 6077 | 5954 |
| 6078 | 5955 |
| 6079 /** @domName SVGPolylineElement.getBBox */ | 5956 /** @domName SVGPolylineElement.getBBox */ |
| 6080 SVGRect getBBox() native "SVGPolylineElement_getBBox_Callback"; | 5957 Rect getBBox() native "SVGPolylineElement_getBBox_Callback"; |
| 6081 | 5958 |
| 6082 | 5959 |
| 6083 /** @domName SVGPolylineElement.getCTM */ | 5960 /** @domName SVGPolylineElement.getCTM */ |
| 6084 SVGMatrix getCTM() native "SVGPolylineElement_getCTM_Callback"; | 5961 Matrix getCTM() native "SVGPolylineElement_getCTM_Callback"; |
| 6085 | 5962 |
| 6086 | 5963 |
| 6087 /** @domName SVGPolylineElement.getScreenCTM */ | 5964 /** @domName SVGPolylineElement.getScreenCTM */ |
| 6088 SVGMatrix getScreenCTM() native "SVGPolylineElement_getScreenCTM_Callback"; | 5965 Matrix getScreenCTM() native "SVGPolylineElement_getScreenCTM_Callback"; |
| 6089 | 5966 |
| 6090 | 5967 |
| 6091 /** @domName SVGPolylineElement.getTransformToElement */ | 5968 /** @domName SVGPolylineElement.getTransformToElement */ |
| 6092 SVGMatrix getTransformToElement(SVGElement element) native "SVGPolylineElement
_getTransformToElement_Callback"; | 5969 Matrix getTransformToElement(SvgElement element) native "SVGPolylineElement_ge
tTransformToElement_Callback"; |
| 6093 | 5970 |
| 6094 | 5971 |
| 6095 /** @domName SVGPolylineElement.className */ | 5972 /** @domName SVGPolylineElement.className */ |
| 6096 SVGAnimatedString get $dom_svgClassName native "SVGPolylineElement_className_G
etter"; | 5973 AnimatedString get $dom_svgClassName native "SVGPolylineElement_className_Gett
er"; |
| 6097 | 5974 |
| 6098 | 5975 |
| 6099 /** @domName SVGPolylineElement.style */ | 5976 /** @domName SVGPolylineElement.style */ |
| 6100 CSSStyleDeclaration get style native "SVGPolylineElement_style_Getter"; | 5977 CSSStyleDeclaration get style native "SVGPolylineElement_style_Getter"; |
| 6101 | 5978 |
| 6102 | 5979 |
| 6103 /** @domName SVGPolylineElement.getPresentationAttribute */ | 5980 /** @domName SVGPolylineElement.getPresentationAttribute */ |
| 6104 CSSValue getPresentationAttribute(String name) native "SVGPolylineElement_getP
resentationAttribute_Callback"; | 5981 CSSValue getPresentationAttribute(String name) native "SVGPolylineElement_getP
resentationAttribute_Callback"; |
| 6105 | 5982 |
| 6106 | 5983 |
| 6107 /** @domName SVGPolylineElement.requiredExtensions */ | 5984 /** @domName SVGPolylineElement.requiredExtensions */ |
| 6108 SVGStringList get requiredExtensions native "SVGPolylineElement_requiredExtens
ions_Getter"; | 5985 StringList get requiredExtensions native "SVGPolylineElement_requiredExtension
s_Getter"; |
| 6109 | 5986 |
| 6110 | 5987 |
| 6111 /** @domName SVGPolylineElement.requiredFeatures */ | 5988 /** @domName SVGPolylineElement.requiredFeatures */ |
| 6112 SVGStringList get requiredFeatures native "SVGPolylineElement_requiredFeatures
_Getter"; | 5989 StringList get requiredFeatures native "SVGPolylineElement_requiredFeatures_Ge
tter"; |
| 6113 | 5990 |
| 6114 | 5991 |
| 6115 /** @domName SVGPolylineElement.systemLanguage */ | 5992 /** @domName SVGPolylineElement.systemLanguage */ |
| 6116 SVGStringList get systemLanguage native "SVGPolylineElement_systemLanguage_Get
ter"; | 5993 StringList get systemLanguage native "SVGPolylineElement_systemLanguage_Getter
"; |
| 6117 | 5994 |
| 6118 | 5995 |
| 6119 /** @domName SVGPolylineElement.hasExtension */ | 5996 /** @domName SVGPolylineElement.hasExtension */ |
| 6120 bool hasExtension(String extension) native "SVGPolylineElement_hasExtension_Ca
llback"; | 5997 bool hasExtension(String extension) native "SVGPolylineElement_hasExtension_Ca
llback"; |
| 6121 | 5998 |
| 6122 | 5999 |
| 6123 /** @domName SVGPolylineElement.transform */ | 6000 /** @domName SVGPolylineElement.transform */ |
| 6124 SVGAnimatedTransformList get transform native "SVGPolylineElement_transform_Ge
tter"; | 6001 AnimatedTransformList get transform native "SVGPolylineElement_transform_Gette
r"; |
| 6125 | 6002 |
| 6126 } | 6003 } |
| 6127 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6004 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6128 // for details. All rights reserved. Use of this source code is governed by a | 6005 // for details. All rights reserved. Use of this source code is governed by a |
| 6129 // BSD-style license that can be found in the LICENSE file. | 6006 // BSD-style license that can be found in the LICENSE file. |
| 6130 | 6007 |
| 6131 // WARNING: Do not edit - generated code. | 6008 // WARNING: Do not edit - generated code. |
| 6132 | 6009 |
| 6133 | 6010 |
| 6134 /// @domName SVGPreserveAspectRatio | 6011 /// @domName SVGPreserveAspectRatio |
| 6135 class SVGPreserveAspectRatio extends NativeFieldWrapperClass1 { | 6012 class PreserveAspectRatio extends NativeFieldWrapperClass1 { |
| 6136 SVGPreserveAspectRatio.internal(); | 6013 PreserveAspectRatio.internal(); |
| 6137 | 6014 |
| 6138 static const int SVG_MEETORSLICE_MEET = 1; | 6015 static const int SVG_MEETORSLICE_MEET = 1; |
| 6139 | 6016 |
| 6140 static const int SVG_MEETORSLICE_SLICE = 2; | 6017 static const int SVG_MEETORSLICE_SLICE = 2; |
| 6141 | 6018 |
| 6142 static const int SVG_MEETORSLICE_UNKNOWN = 0; | 6019 static const int SVG_MEETORSLICE_UNKNOWN = 0; |
| 6143 | 6020 |
| 6144 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; | 6021 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; |
| 6145 | 6022 |
| 6146 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; | 6023 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6181 | 6058 |
| 6182 } | 6059 } |
| 6183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6060 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6184 // for details. All rights reserved. Use of this source code is governed by a | 6061 // for details. All rights reserved. Use of this source code is governed by a |
| 6185 // BSD-style license that can be found in the LICENSE file. | 6062 // BSD-style license that can be found in the LICENSE file. |
| 6186 | 6063 |
| 6187 // WARNING: Do not edit - generated code. | 6064 // WARNING: Do not edit - generated code. |
| 6188 | 6065 |
| 6189 | 6066 |
| 6190 /// @domName SVGRadialGradientElement | 6067 /// @domName SVGRadialGradientElement |
| 6191 class SVGRadialGradientElement extends SVGGradientElement { | 6068 class RadialGradientElement extends GradientElement { |
| 6192 | 6069 |
| 6193 factory SVGRadialGradientElement() => _SVGElementFactoryProvider.createSVGElem
ent_tag("radialGradient"); | 6070 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); |
| 6194 SVGRadialGradientElement.internal(): super.internal(); | 6071 RadialGradientElement.internal(): super.internal(); |
| 6195 | 6072 |
| 6196 | 6073 |
| 6197 /** @domName SVGRadialGradientElement.cx */ | 6074 /** @domName SVGRadialGradientElement.cx */ |
| 6198 SVGAnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; | 6075 AnimatedLength get cx native "SVGRadialGradientElement_cx_Getter"; |
| 6199 | 6076 |
| 6200 | 6077 |
| 6201 /** @domName SVGRadialGradientElement.cy */ | 6078 /** @domName SVGRadialGradientElement.cy */ |
| 6202 SVGAnimatedLength get cy native "SVGRadialGradientElement_cy_Getter"; | 6079 AnimatedLength get cy native "SVGRadialGradientElement_cy_Getter"; |
| 6203 | 6080 |
| 6204 | 6081 |
| 6205 /** @domName SVGRadialGradientElement.fr */ | 6082 /** @domName SVGRadialGradientElement.fr */ |
| 6206 SVGAnimatedLength get fr native "SVGRadialGradientElement_fr_Getter"; | 6083 AnimatedLength get fr native "SVGRadialGradientElement_fr_Getter"; |
| 6207 | 6084 |
| 6208 | 6085 |
| 6209 /** @domName SVGRadialGradientElement.fx */ | 6086 /** @domName SVGRadialGradientElement.fx */ |
| 6210 SVGAnimatedLength get fx native "SVGRadialGradientElement_fx_Getter"; | 6087 AnimatedLength get fx native "SVGRadialGradientElement_fx_Getter"; |
| 6211 | 6088 |
| 6212 | 6089 |
| 6213 /** @domName SVGRadialGradientElement.fy */ | 6090 /** @domName SVGRadialGradientElement.fy */ |
| 6214 SVGAnimatedLength get fy native "SVGRadialGradientElement_fy_Getter"; | 6091 AnimatedLength get fy native "SVGRadialGradientElement_fy_Getter"; |
| 6215 | 6092 |
| 6216 | 6093 |
| 6217 /** @domName SVGRadialGradientElement.r */ | 6094 /** @domName SVGRadialGradientElement.r */ |
| 6218 SVGAnimatedLength get r native "SVGRadialGradientElement_r_Getter"; | 6095 AnimatedLength get r native "SVGRadialGradientElement_r_Getter"; |
| 6219 | 6096 |
| 6220 } | 6097 } |
| 6221 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6098 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6222 // for details. All rights reserved. Use of this source code is governed by a | 6099 // for details. All rights reserved. Use of this source code is governed by a |
| 6223 // BSD-style license that can be found in the LICENSE file. | 6100 // BSD-style license that can be found in the LICENSE file. |
| 6224 | 6101 |
| 6225 // WARNING: Do not edit - generated code. | 6102 // WARNING: Do not edit - generated code. |
| 6226 | 6103 |
| 6227 | 6104 |
| 6228 /// @domName SVGRect | 6105 /// @domName SVGRect |
| 6229 class SVGRect extends NativeFieldWrapperClass1 { | 6106 class Rect extends NativeFieldWrapperClass1 { |
| 6230 SVGRect.internal(); | 6107 Rect.internal(); |
| 6231 | 6108 |
| 6232 | 6109 |
| 6233 /** @domName SVGRect.height */ | 6110 /** @domName SVGRect.height */ |
| 6234 num get height native "SVGRect_height_Getter"; | 6111 num get height native "SVGRect_height_Getter"; |
| 6235 | 6112 |
| 6236 | 6113 |
| 6237 /** @domName SVGRect.height */ | 6114 /** @domName SVGRect.height */ |
| 6238 void set height(num value) native "SVGRect_height_Setter"; | 6115 void set height(num value) native "SVGRect_height_Setter"; |
| 6239 | 6116 |
| 6240 | 6117 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6263 | 6140 |
| 6264 } | 6141 } |
| 6265 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6266 // for details. All rights reserved. Use of this source code is governed by a | 6143 // for details. All rights reserved. Use of this source code is governed by a |
| 6267 // BSD-style license that can be found in the LICENSE file. | 6144 // BSD-style license that can be found in the LICENSE file. |
| 6268 | 6145 |
| 6269 // WARNING: Do not edit - generated code. | 6146 // WARNING: Do not edit - generated code. |
| 6270 | 6147 |
| 6271 | 6148 |
| 6272 /// @domName SVGRectElement | 6149 /// @domName SVGRectElement |
| 6273 class SVGRectElement extends SVGElement implements SVGLangSpace, SVGStylable, SV
GTests, SVGTransformable, SVGExternalResourcesRequired { | 6150 class RectElement extends SvgElement implements Transformable, Tests, Stylable,
ExternalResourcesRequired, LangSpace { |
| 6274 | 6151 |
| 6275 factory SVGRectElement() => _SVGElementFactoryProvider.createSVGElement_tag("r
ect"); | 6152 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); |
| 6276 SVGRectElement.internal(): super.internal(); | 6153 RectElement.internal(): super.internal(); |
| 6277 | 6154 |
| 6278 | 6155 |
| 6279 /** @domName SVGRectElement.height */ | 6156 /** @domName SVGRectElement.height */ |
| 6280 SVGAnimatedLength get height native "SVGRectElement_height_Getter"; | 6157 AnimatedLength get height native "SVGRectElement_height_Getter"; |
| 6281 | 6158 |
| 6282 | 6159 |
| 6283 /** @domName SVGRectElement.rx */ | 6160 /** @domName SVGRectElement.rx */ |
| 6284 SVGAnimatedLength get rx native "SVGRectElement_rx_Getter"; | 6161 AnimatedLength get rx native "SVGRectElement_rx_Getter"; |
| 6285 | 6162 |
| 6286 | 6163 |
| 6287 /** @domName SVGRectElement.ry */ | 6164 /** @domName SVGRectElement.ry */ |
| 6288 SVGAnimatedLength get ry native "SVGRectElement_ry_Getter"; | 6165 AnimatedLength get ry native "SVGRectElement_ry_Getter"; |
| 6289 | 6166 |
| 6290 | 6167 |
| 6291 /** @domName SVGRectElement.width */ | 6168 /** @domName SVGRectElement.width */ |
| 6292 SVGAnimatedLength get width native "SVGRectElement_width_Getter"; | 6169 AnimatedLength get width native "SVGRectElement_width_Getter"; |
| 6293 | 6170 |
| 6294 | 6171 |
| 6295 /** @domName SVGRectElement.x */ | 6172 /** @domName SVGRectElement.x */ |
| 6296 SVGAnimatedLength get x native "SVGRectElement_x_Getter"; | 6173 AnimatedLength get x native "SVGRectElement_x_Getter"; |
| 6297 | 6174 |
| 6298 | 6175 |
| 6299 /** @domName SVGRectElement.y */ | 6176 /** @domName SVGRectElement.y */ |
| 6300 SVGAnimatedLength get y native "SVGRectElement_y_Getter"; | 6177 AnimatedLength get y native "SVGRectElement_y_Getter"; |
| 6301 | 6178 |
| 6302 | 6179 |
| 6303 /** @domName SVGRectElement.externalResourcesRequired */ | 6180 /** @domName SVGRectElement.externalResourcesRequired */ |
| 6304 SVGAnimatedBoolean get externalResourcesRequired native "SVGRectElement_extern
alResourcesRequired_Getter"; | 6181 AnimatedBoolean get externalResourcesRequired native "SVGRectElement_externalR
esourcesRequired_Getter"; |
| 6305 | 6182 |
| 6306 | 6183 |
| 6307 /** @domName SVGRectElement.xmllang */ | 6184 /** @domName SVGRectElement.xmllang */ |
| 6308 String get xmllang native "SVGRectElement_xmllang_Getter"; | 6185 String get xmllang native "SVGRectElement_xmllang_Getter"; |
| 6309 | 6186 |
| 6310 | 6187 |
| 6311 /** @domName SVGRectElement.xmllang */ | 6188 /** @domName SVGRectElement.xmllang */ |
| 6312 void set xmllang(String value) native "SVGRectElement_xmllang_Setter"; | 6189 void set xmllang(String value) native "SVGRectElement_xmllang_Setter"; |
| 6313 | 6190 |
| 6314 | 6191 |
| 6315 /** @domName SVGRectElement.xmlspace */ | 6192 /** @domName SVGRectElement.xmlspace */ |
| 6316 String get xmlspace native "SVGRectElement_xmlspace_Getter"; | 6193 String get xmlspace native "SVGRectElement_xmlspace_Getter"; |
| 6317 | 6194 |
| 6318 | 6195 |
| 6319 /** @domName SVGRectElement.xmlspace */ | 6196 /** @domName SVGRectElement.xmlspace */ |
| 6320 void set xmlspace(String value) native "SVGRectElement_xmlspace_Setter"; | 6197 void set xmlspace(String value) native "SVGRectElement_xmlspace_Setter"; |
| 6321 | 6198 |
| 6322 | 6199 |
| 6323 /** @domName SVGRectElement.farthestViewportElement */ | 6200 /** @domName SVGRectElement.farthestViewportElement */ |
| 6324 SVGElement get farthestViewportElement native "SVGRectElement_farthestViewport
Element_Getter"; | 6201 SvgElement get farthestViewportElement native "SVGRectElement_farthestViewport
Element_Getter"; |
| 6325 | 6202 |
| 6326 | 6203 |
| 6327 /** @domName SVGRectElement.nearestViewportElement */ | 6204 /** @domName SVGRectElement.nearestViewportElement */ |
| 6328 SVGElement get nearestViewportElement native "SVGRectElement_nearestViewportEl
ement_Getter"; | 6205 SvgElement get nearestViewportElement native "SVGRectElement_nearestViewportEl
ement_Getter"; |
| 6329 | 6206 |
| 6330 | 6207 |
| 6331 /** @domName SVGRectElement.getBBox */ | 6208 /** @domName SVGRectElement.getBBox */ |
| 6332 SVGRect getBBox() native "SVGRectElement_getBBox_Callback"; | 6209 Rect getBBox() native "SVGRectElement_getBBox_Callback"; |
| 6333 | 6210 |
| 6334 | 6211 |
| 6335 /** @domName SVGRectElement.getCTM */ | 6212 /** @domName SVGRectElement.getCTM */ |
| 6336 SVGMatrix getCTM() native "SVGRectElement_getCTM_Callback"; | 6213 Matrix getCTM() native "SVGRectElement_getCTM_Callback"; |
| 6337 | 6214 |
| 6338 | 6215 |
| 6339 /** @domName SVGRectElement.getScreenCTM */ | 6216 /** @domName SVGRectElement.getScreenCTM */ |
| 6340 SVGMatrix getScreenCTM() native "SVGRectElement_getScreenCTM_Callback"; | 6217 Matrix getScreenCTM() native "SVGRectElement_getScreenCTM_Callback"; |
| 6341 | 6218 |
| 6342 | 6219 |
| 6343 /** @domName SVGRectElement.getTransformToElement */ | 6220 /** @domName SVGRectElement.getTransformToElement */ |
| 6344 SVGMatrix getTransformToElement(SVGElement element) native "SVGRectElement_get
TransformToElement_Callback"; | 6221 Matrix getTransformToElement(SvgElement element) native "SVGRectElement_getTra
nsformToElement_Callback"; |
| 6345 | 6222 |
| 6346 | 6223 |
| 6347 /** @domName SVGRectElement.className */ | 6224 /** @domName SVGRectElement.className */ |
| 6348 SVGAnimatedString get $dom_svgClassName native "SVGRectElement_className_Gette
r"; | 6225 AnimatedString get $dom_svgClassName native "SVGRectElement_className_Getter"; |
| 6349 | 6226 |
| 6350 | 6227 |
| 6351 /** @domName SVGRectElement.style */ | 6228 /** @domName SVGRectElement.style */ |
| 6352 CSSStyleDeclaration get style native "SVGRectElement_style_Getter"; | 6229 CSSStyleDeclaration get style native "SVGRectElement_style_Getter"; |
| 6353 | 6230 |
| 6354 | 6231 |
| 6355 /** @domName SVGRectElement.getPresentationAttribute */ | 6232 /** @domName SVGRectElement.getPresentationAttribute */ |
| 6356 CSSValue getPresentationAttribute(String name) native "SVGRectElement_getPrese
ntationAttribute_Callback"; | 6233 CSSValue getPresentationAttribute(String name) native "SVGRectElement_getPrese
ntationAttribute_Callback"; |
| 6357 | 6234 |
| 6358 | 6235 |
| 6359 /** @domName SVGRectElement.requiredExtensions */ | 6236 /** @domName SVGRectElement.requiredExtensions */ |
| 6360 SVGStringList get requiredExtensions native "SVGRectElement_requiredExtensions
_Getter"; | 6237 StringList get requiredExtensions native "SVGRectElement_requiredExtensions_Ge
tter"; |
| 6361 | 6238 |
| 6362 | 6239 |
| 6363 /** @domName SVGRectElement.requiredFeatures */ | 6240 /** @domName SVGRectElement.requiredFeatures */ |
| 6364 SVGStringList get requiredFeatures native "SVGRectElement_requiredFeatures_Get
ter"; | 6241 StringList get requiredFeatures native "SVGRectElement_requiredFeatures_Getter
"; |
| 6365 | 6242 |
| 6366 | 6243 |
| 6367 /** @domName SVGRectElement.systemLanguage */ | 6244 /** @domName SVGRectElement.systemLanguage */ |
| 6368 SVGStringList get systemLanguage native "SVGRectElement_systemLanguage_Getter"
; | 6245 StringList get systemLanguage native "SVGRectElement_systemLanguage_Getter"; |
| 6369 | 6246 |
| 6370 | 6247 |
| 6371 /** @domName SVGRectElement.hasExtension */ | 6248 /** @domName SVGRectElement.hasExtension */ |
| 6372 bool hasExtension(String extension) native "SVGRectElement_hasExtension_Callba
ck"; | 6249 bool hasExtension(String extension) native "SVGRectElement_hasExtension_Callba
ck"; |
| 6373 | 6250 |
| 6374 | 6251 |
| 6375 /** @domName SVGRectElement.transform */ | 6252 /** @domName SVGRectElement.transform */ |
| 6376 SVGAnimatedTransformList get transform native "SVGRectElement_transform_Getter
"; | 6253 AnimatedTransformList get transform native "SVGRectElement_transform_Getter"; |
| 6377 | 6254 |
| 6378 } | 6255 } |
| 6379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6256 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6380 // for details. All rights reserved. Use of this source code is governed by a | 6257 // for details. All rights reserved. Use of this source code is governed by a |
| 6381 // BSD-style license that can be found in the LICENSE file. | 6258 // BSD-style license that can be found in the LICENSE file. |
| 6382 | 6259 |
| 6383 // WARNING: Do not edit - generated code. | 6260 // WARNING: Do not edit - generated code. |
| 6384 | 6261 |
| 6385 | 6262 |
| 6386 /// @domName SVGRenderingIntent | 6263 /// @domName SVGRenderingIntent |
| 6387 class SVGRenderingIntent extends NativeFieldWrapperClass1 { | 6264 class RenderingIntent extends NativeFieldWrapperClass1 { |
| 6388 SVGRenderingIntent.internal(); | 6265 RenderingIntent.internal(); |
| 6389 | 6266 |
| 6390 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 6267 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 6391 | 6268 |
| 6392 static const int RENDERING_INTENT_AUTO = 1; | 6269 static const int RENDERING_INTENT_AUTO = 1; |
| 6393 | 6270 |
| 6394 static const int RENDERING_INTENT_PERCEPTUAL = 2; | 6271 static const int RENDERING_INTENT_PERCEPTUAL = 2; |
| 6395 | 6272 |
| 6396 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; | 6273 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; |
| 6397 | 6274 |
| 6398 static const int RENDERING_INTENT_SATURATION = 4; | 6275 static const int RENDERING_INTENT_SATURATION = 4; |
| 6399 | 6276 |
| 6400 static const int RENDERING_INTENT_UNKNOWN = 0; | 6277 static const int RENDERING_INTENT_UNKNOWN = 0; |
| 6401 | 6278 |
| 6402 } | 6279 } |
| 6403 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6280 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6404 // for details. All rights reserved. Use of this source code is governed by a | 6281 // for details. All rights reserved. Use of this source code is governed by a |
| 6405 // BSD-style license that can be found in the LICENSE file. | 6282 // BSD-style license that can be found in the LICENSE file. |
| 6406 | 6283 |
| 6407 | |
| 6408 class SVGSVGElement extends SVGElement implements SVGZoomAndPan, SVGLocatable, S
VGLangSpace, SVGTests, SVGStylable, SVGFitToViewBox, SVGExternalResourcesRequire
d { | |
| 6409 factory SVGSVGElement() => _SVGSVGElementFactoryProvider.createSVGSVGElement()
; | |
| 6410 | |
| 6411 SVGSVGElement.internal(): super.internal(); | |
| 6412 | |
| 6413 | |
| 6414 /** @domName SVGSVGElement.contentScriptType */ | |
| 6415 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter"; | |
| 6416 | |
| 6417 | |
| 6418 /** @domName SVGSVGElement.contentScriptType */ | |
| 6419 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy
pe_Setter"; | |
| 6420 | |
| 6421 | |
| 6422 /** @domName SVGSVGElement.contentStyleType */ | |
| 6423 String get contentStyleType native "SVGSVGElement_contentStyleType_Getter"; | |
| 6424 | |
| 6425 | |
| 6426 /** @domName SVGSVGElement.contentStyleType */ | |
| 6427 void set contentStyleType(String value) native "SVGSVGElement_contentStyleType
_Setter"; | |
| 6428 | |
| 6429 | |
| 6430 /** @domName SVGSVGElement.currentScale */ | |
| 6431 num get currentScale native "SVGSVGElement_currentScale_Getter"; | |
| 6432 | |
| 6433 | |
| 6434 /** @domName SVGSVGElement.currentScale */ | |
| 6435 void set currentScale(num value) native "SVGSVGElement_currentScale_Setter"; | |
| 6436 | |
| 6437 | |
| 6438 /** @domName SVGSVGElement.currentTranslate */ | |
| 6439 SVGPoint get currentTranslate native "SVGSVGElement_currentTranslate_Getter"; | |
| 6440 | |
| 6441 | |
| 6442 /** @domName SVGSVGElement.currentView */ | |
| 6443 SVGViewSpec get currentView native "SVGSVGElement_currentView_Getter"; | |
| 6444 | |
| 6445 | |
| 6446 /** @domName SVGSVGElement.height */ | |
| 6447 SVGAnimatedLength get height native "SVGSVGElement_height_Getter"; | |
| 6448 | |
| 6449 | |
| 6450 /** @domName SVGSVGElement.pixelUnitToMillimeterX */ | |
| 6451 num get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Ge
tter"; | |
| 6452 | |
| 6453 | |
| 6454 /** @domName SVGSVGElement.pixelUnitToMillimeterY */ | |
| 6455 num get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Ge
tter"; | |
| 6456 | |
| 6457 | |
| 6458 /** @domName SVGSVGElement.screenPixelToMillimeterX */ | |
| 6459 num get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeter
X_Getter"; | |
| 6460 | |
| 6461 | |
| 6462 /** @domName SVGSVGElement.screenPixelToMillimeterY */ | |
| 6463 num get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeter
Y_Getter"; | |
| 6464 | |
| 6465 | |
| 6466 /** @domName SVGSVGElement.useCurrentView */ | |
| 6467 bool get useCurrentView native "SVGSVGElement_useCurrentView_Getter"; | |
| 6468 | |
| 6469 | |
| 6470 /** @domName SVGSVGElement.viewport */ | |
| 6471 SVGRect get viewport native "SVGSVGElement_viewport_Getter"; | |
| 6472 | |
| 6473 | |
| 6474 /** @domName SVGSVGElement.width */ | |
| 6475 SVGAnimatedLength get width native "SVGSVGElement_width_Getter"; | |
| 6476 | |
| 6477 | |
| 6478 /** @domName SVGSVGElement.x */ | |
| 6479 SVGAnimatedLength get x native "SVGSVGElement_x_Getter"; | |
| 6480 | |
| 6481 | |
| 6482 /** @domName SVGSVGElement.y */ | |
| 6483 SVGAnimatedLength get y native "SVGSVGElement_y_Getter"; | |
| 6484 | |
| 6485 | |
| 6486 /** @domName SVGSVGElement.animationsPaused */ | |
| 6487 bool animationsPaused() native "SVGSVGElement_animationsPaused_Callback"; | |
| 6488 | |
| 6489 | |
| 6490 /** @domName SVGSVGElement.checkEnclosure */ | |
| 6491 bool checkEnclosure(SVGElement element, SVGRect rect) native "SVGSVGElement_ch
eckEnclosure_Callback"; | |
| 6492 | |
| 6493 | |
| 6494 /** @domName SVGSVGElement.checkIntersection */ | |
| 6495 bool checkIntersection(SVGElement element, SVGRect rect) native "SVGSVGElement
_checkIntersection_Callback"; | |
| 6496 | |
| 6497 | |
| 6498 /** @domName SVGSVGElement.createSVGAngle */ | |
| 6499 SVGAngle createSVGAngle() native "SVGSVGElement_createSVGAngle_Callback"; | |
| 6500 | |
| 6501 | |
| 6502 /** @domName SVGSVGElement.createSVGLength */ | |
| 6503 SVGLength createSVGLength() native "SVGSVGElement_createSVGLength_Callback"; | |
| 6504 | |
| 6505 | |
| 6506 /** @domName SVGSVGElement.createSVGMatrix */ | |
| 6507 SVGMatrix createSVGMatrix() native "SVGSVGElement_createSVGMatrix_Callback"; | |
| 6508 | |
| 6509 | |
| 6510 /** @domName SVGSVGElement.createSVGNumber */ | |
| 6511 SVGNumber createSVGNumber() native "SVGSVGElement_createSVGNumber_Callback"; | |
| 6512 | |
| 6513 | |
| 6514 /** @domName SVGSVGElement.createSVGPoint */ | |
| 6515 SVGPoint createSVGPoint() native "SVGSVGElement_createSVGPoint_Callback"; | |
| 6516 | |
| 6517 | |
| 6518 /** @domName SVGSVGElement.createSVGRect */ | |
| 6519 SVGRect createSVGRect() native "SVGSVGElement_createSVGRect_Callback"; | |
| 6520 | |
| 6521 | |
| 6522 /** @domName SVGSVGElement.createSVGTransform */ | |
| 6523 SVGTransform createSVGTransform() native "SVGSVGElement_createSVGTransform_Cal
lback"; | |
| 6524 | |
| 6525 | |
| 6526 /** @domName SVGSVGElement.createSVGTransformFromMatrix */ | |
| 6527 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native "SVGSVGElem
ent_createSVGTransformFromMatrix_Callback"; | |
| 6528 | |
| 6529 | |
| 6530 /** @domName SVGSVGElement.deselectAll */ | |
| 6531 void deselectAll() native "SVGSVGElement_deselectAll_Callback"; | |
| 6532 | |
| 6533 | |
| 6534 /** @domName SVGSVGElement.forceRedraw */ | |
| 6535 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback"; | |
| 6536 | |
| 6537 | |
| 6538 /** @domName SVGSVGElement.getCurrentTime */ | |
| 6539 num getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback"; | |
| 6540 | |
| 6541 | |
| 6542 /** @domName SVGSVGElement.getElementById */ | |
| 6543 Element getElementById(String elementId) native "SVGSVGElement_getElementById_
Callback"; | |
| 6544 | |
| 6545 | |
| 6546 /** @domName SVGSVGElement.getEnclosureList */ | |
| 6547 List<Node> getEnclosureList(SVGRect rect, SVGElement referenceElement) native
"SVGSVGElement_getEnclosureList_Callback"; | |
| 6548 | |
| 6549 | |
| 6550 /** @domName SVGSVGElement.getIntersectionList */ | |
| 6551 List<Node> getIntersectionList(SVGRect rect, SVGElement referenceElement) nati
ve "SVGSVGElement_getIntersectionList_Callback"; | |
| 6552 | |
| 6553 | |
| 6554 /** @domName SVGSVGElement.pauseAnimations */ | |
| 6555 void pauseAnimations() native "SVGSVGElement_pauseAnimations_Callback"; | |
| 6556 | |
| 6557 | |
| 6558 /** @domName SVGSVGElement.setCurrentTime */ | |
| 6559 void setCurrentTime(num seconds) native "SVGSVGElement_setCurrentTime_Callback
"; | |
| 6560 | |
| 6561 | |
| 6562 /** @domName SVGSVGElement.suspendRedraw */ | |
| 6563 int suspendRedraw(int maxWaitMilliseconds) native "SVGSVGElement_suspendRedraw
_Callback"; | |
| 6564 | |
| 6565 | |
| 6566 /** @domName SVGSVGElement.unpauseAnimations */ | |
| 6567 void unpauseAnimations() native "SVGSVGElement_unpauseAnimations_Callback"; | |
| 6568 | |
| 6569 | |
| 6570 /** @domName SVGSVGElement.unsuspendRedraw */ | |
| 6571 void unsuspendRedraw(int suspendHandleId) native "SVGSVGElement_unsuspendRedra
w_Callback"; | |
| 6572 | |
| 6573 | |
| 6574 /** @domName SVGSVGElement.unsuspendRedrawAll */ | |
| 6575 void unsuspendRedrawAll() native "SVGSVGElement_unsuspendRedrawAll_Callback"; | |
| 6576 | |
| 6577 | |
| 6578 /** @domName SVGSVGElement.externalResourcesRequired */ | |
| 6579 SVGAnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externa
lResourcesRequired_Getter"; | |
| 6580 | |
| 6581 | |
| 6582 /** @domName SVGSVGElement.preserveAspectRatio */ | |
| 6583 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_p
reserveAspectRatio_Getter"; | |
| 6584 | |
| 6585 | |
| 6586 /** @domName SVGSVGElement.viewBox */ | |
| 6587 SVGAnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter"; | |
| 6588 | |
| 6589 | |
| 6590 /** @domName SVGSVGElement.xmllang */ | |
| 6591 String get xmllang native "SVGSVGElement_xmllang_Getter"; | |
| 6592 | |
| 6593 | |
| 6594 /** @domName SVGSVGElement.xmllang */ | |
| 6595 void set xmllang(String value) native "SVGSVGElement_xmllang_Setter"; | |
| 6596 | |
| 6597 | |
| 6598 /** @domName SVGSVGElement.xmlspace */ | |
| 6599 String get xmlspace native "SVGSVGElement_xmlspace_Getter"; | |
| 6600 | |
| 6601 | |
| 6602 /** @domName SVGSVGElement.xmlspace */ | |
| 6603 void set xmlspace(String value) native "SVGSVGElement_xmlspace_Setter"; | |
| 6604 | |
| 6605 | |
| 6606 /** @domName SVGSVGElement.farthestViewportElement */ | |
| 6607 SVGElement get farthestViewportElement native "SVGSVGElement_farthestViewportE
lement_Getter"; | |
| 6608 | |
| 6609 | |
| 6610 /** @domName SVGSVGElement.nearestViewportElement */ | |
| 6611 SVGElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle
ment_Getter"; | |
| 6612 | |
| 6613 | |
| 6614 /** @domName SVGSVGElement.getBBox */ | |
| 6615 SVGRect getBBox() native "SVGSVGElement_getBBox_Callback"; | |
| 6616 | |
| 6617 | |
| 6618 /** @domName SVGSVGElement.getCTM */ | |
| 6619 SVGMatrix getCTM() native "SVGSVGElement_getCTM_Callback"; | |
| 6620 | |
| 6621 | |
| 6622 /** @domName SVGSVGElement.getScreenCTM */ | |
| 6623 SVGMatrix getScreenCTM() native "SVGSVGElement_getScreenCTM_Callback"; | |
| 6624 | |
| 6625 | |
| 6626 /** @domName SVGSVGElement.getTransformToElement */ | |
| 6627 SVGMatrix getTransformToElement(SVGElement element) native "SVGSVGElement_getT
ransformToElement_Callback"; | |
| 6628 | |
| 6629 | |
| 6630 /** @domName SVGSVGElement.className */ | |
| 6631 SVGAnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter
"; | |
| 6632 | |
| 6633 | |
| 6634 /** @domName SVGSVGElement.style */ | |
| 6635 CSSStyleDeclaration get style native "SVGSVGElement_style_Getter"; | |
| 6636 | |
| 6637 | |
| 6638 /** @domName SVGSVGElement.getPresentationAttribute */ | |
| 6639 CSSValue getPresentationAttribute(String name) native "SVGSVGElement_getPresen
tationAttribute_Callback"; | |
| 6640 | |
| 6641 | |
| 6642 /** @domName SVGSVGElement.requiredExtensions */ | |
| 6643 SVGStringList get requiredExtensions native "SVGSVGElement_requiredExtensions_
Getter"; | |
| 6644 | |
| 6645 | |
| 6646 /** @domName SVGSVGElement.requiredFeatures */ | |
| 6647 SVGStringList get requiredFeatures native "SVGSVGElement_requiredFeatures_Gett
er"; | |
| 6648 | |
| 6649 | |
| 6650 /** @domName SVGSVGElement.systemLanguage */ | |
| 6651 SVGStringList get systemLanguage native "SVGSVGElement_systemLanguage_Getter"; | |
| 6652 | |
| 6653 | |
| 6654 /** @domName SVGSVGElement.hasExtension */ | |
| 6655 bool hasExtension(String extension) native "SVGSVGElement_hasExtension_Callbac
k"; | |
| 6656 | |
| 6657 | |
| 6658 /** @domName SVGSVGElement.zoomAndPan */ | |
| 6659 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter"; | |
| 6660 | |
| 6661 | |
| 6662 /** @domName SVGSVGElement.zoomAndPan */ | |
| 6663 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter"; | |
| 6664 | |
| 6665 } | |
| 6666 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 6667 // for details. All rights reserved. Use of this source code is governed by a | |
| 6668 // BSD-style license that can be found in the LICENSE file. | |
| 6669 | |
| 6670 // WARNING: Do not edit - generated code. | 6284 // WARNING: Do not edit - generated code. |
| 6671 | 6285 |
| 6672 | 6286 |
| 6673 /// @domName SVGScriptElement | 6287 /// @domName SVGScriptElement |
| 6674 class SVGScriptElement extends SVGElement implements SVGURIReference, SVGExterna
lResourcesRequired { | 6288 class ScriptElement extends SvgElement implements UriReference, ExternalResource
sRequired { |
| 6675 | 6289 |
| 6676 factory SVGScriptElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"script"); | 6290 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); |
| 6677 SVGScriptElement.internal(): super.internal(); | 6291 ScriptElement.internal(): super.internal(); |
| 6678 | 6292 |
| 6679 | 6293 |
| 6680 /** @domName SVGScriptElement.type */ | 6294 /** @domName SVGScriptElement.type */ |
| 6681 String get type native "SVGScriptElement_type_Getter"; | 6295 String get type native "SVGScriptElement_type_Getter"; |
| 6682 | 6296 |
| 6683 | 6297 |
| 6684 /** @domName SVGScriptElement.type */ | 6298 /** @domName SVGScriptElement.type */ |
| 6685 void set type(String value) native "SVGScriptElement_type_Setter"; | 6299 void set type(String value) native "SVGScriptElement_type_Setter"; |
| 6686 | 6300 |
| 6687 | 6301 |
| 6688 /** @domName SVGScriptElement.externalResourcesRequired */ | 6302 /** @domName SVGScriptElement.externalResourcesRequired */ |
| 6689 SVGAnimatedBoolean get externalResourcesRequired native "SVGScriptElement_exte
rnalResourcesRequired_Getter"; | 6303 AnimatedBoolean get externalResourcesRequired native "SVGScriptElement_externa
lResourcesRequired_Getter"; |
| 6690 | 6304 |
| 6691 | 6305 |
| 6692 /** @domName SVGScriptElement.href */ | 6306 /** @domName SVGScriptElement.href */ |
| 6693 SVGAnimatedString get href native "SVGScriptElement_href_Getter"; | 6307 AnimatedString get href native "SVGScriptElement_href_Getter"; |
| 6694 | 6308 |
| 6695 } | 6309 } |
| 6696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6697 // for details. All rights reserved. Use of this source code is governed by a | 6311 // for details. All rights reserved. Use of this source code is governed by a |
| 6698 // BSD-style license that can be found in the LICENSE file. | 6312 // BSD-style license that can be found in the LICENSE file. |
| 6699 | 6313 |
| 6700 // WARNING: Do not edit - generated code. | 6314 // WARNING: Do not edit - generated code. |
| 6701 | 6315 |
| 6702 | 6316 |
| 6703 /// @domName SVGSetElement | 6317 /// @domName SVGSetElement |
| 6704 class SVGSetElement extends SVGAnimationElement { | 6318 class SetElement extends AnimationElement { |
| 6705 | 6319 |
| 6706 factory SVGSetElement() => _SVGElementFactoryProvider.createSVGElement_tag("se
t"); | 6320 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; |
| 6707 SVGSetElement.internal(): super.internal(); | 6321 SetElement.internal(): super.internal(); |
| 6708 | 6322 |
| 6709 } | 6323 } |
| 6710 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6324 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6711 // for details. All rights reserved. Use of this source code is governed by a | 6325 // for details. All rights reserved. Use of this source code is governed by a |
| 6712 // BSD-style license that can be found in the LICENSE file. | 6326 // BSD-style license that can be found in the LICENSE file. |
| 6713 | 6327 |
| 6714 // WARNING: Do not edit - generated code. | 6328 // WARNING: Do not edit - generated code. |
| 6715 | 6329 |
| 6716 | 6330 |
| 6717 /// @domName SVGStopElement | 6331 /// @domName SVGStopElement |
| 6718 class SVGStopElement extends SVGElement implements SVGStylable { | 6332 class StopElement extends SvgElement implements Stylable { |
| 6719 | 6333 |
| 6720 factory SVGStopElement() => _SVGElementFactoryProvider.createSVGElement_tag("s
top"); | 6334 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); |
| 6721 SVGStopElement.internal(): super.internal(); | 6335 StopElement.internal(): super.internal(); |
| 6722 | 6336 |
| 6723 | 6337 |
| 6724 /** @domName SVGStopElement.offset */ | 6338 /** @domName SVGStopElement.offset */ |
| 6725 SVGAnimatedNumber get offset native "SVGStopElement_offset_Getter"; | 6339 AnimatedNumber get offset native "SVGStopElement_offset_Getter"; |
| 6726 | 6340 |
| 6727 | 6341 |
| 6728 /** @domName SVGStopElement.className */ | 6342 /** @domName SVGStopElement.className */ |
| 6729 SVGAnimatedString get $dom_svgClassName native "SVGStopElement_className_Gette
r"; | 6343 AnimatedString get $dom_svgClassName native "SVGStopElement_className_Getter"; |
| 6730 | 6344 |
| 6731 | 6345 |
| 6732 /** @domName SVGStopElement.style */ | 6346 /** @domName SVGStopElement.style */ |
| 6733 CSSStyleDeclaration get style native "SVGStopElement_style_Getter"; | 6347 CSSStyleDeclaration get style native "SVGStopElement_style_Getter"; |
| 6734 | 6348 |
| 6735 | 6349 |
| 6736 /** @domName SVGStopElement.getPresentationAttribute */ | 6350 /** @domName SVGStopElement.getPresentationAttribute */ |
| 6737 CSSValue getPresentationAttribute(String name) native "SVGStopElement_getPrese
ntationAttribute_Callback"; | 6351 CSSValue getPresentationAttribute(String name) native "SVGStopElement_getPrese
ntationAttribute_Callback"; |
| 6738 | 6352 |
| 6739 } | 6353 } |
| 6740 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6741 // for details. All rights reserved. Use of this source code is governed by a | 6355 // for details. All rights reserved. Use of this source code is governed by a |
| 6742 // BSD-style license that can be found in the LICENSE file. | 6356 // BSD-style license that can be found in the LICENSE file. |
| 6743 | 6357 |
| 6744 // WARNING: Do not edit - generated code. | 6358 // WARNING: Do not edit - generated code. |
| 6745 | 6359 |
| 6746 | 6360 |
| 6747 /// @domName SVGStringList | 6361 /// @domName SVGStringList |
| 6748 class SVGStringList extends NativeFieldWrapperClass1 implements List<String> { | 6362 class StringList extends NativeFieldWrapperClass1 implements List<String> { |
| 6749 SVGStringList.internal(); | 6363 StringList.internal(); |
| 6750 | 6364 |
| 6751 | 6365 |
| 6752 /** @domName SVGStringList.numberOfItems */ | 6366 /** @domName SVGStringList.numberOfItems */ |
| 6753 int get numberOfItems native "SVGStringList_numberOfItems_Getter"; | 6367 int get numberOfItems native "SVGStringList_numberOfItems_Getter"; |
| 6754 | 6368 |
| 6755 String operator[](int index) native "SVGStringList_item_Callback"; | 6369 String operator[](int index) native "SVGStringList_item_Callback"; |
| 6756 | 6370 |
| 6757 void operator[]=(int index, String value) { | 6371 void operator[]=(int index, String value) { |
| 6758 throw new UnsupportedError("Cannot assign element of immutable List."); | 6372 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 6759 } | 6373 } |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6867 | 6481 |
| 6868 } | 6482 } |
| 6869 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6870 // for details. All rights reserved. Use of this source code is governed by a | 6484 // for details. All rights reserved. Use of this source code is governed by a |
| 6871 // BSD-style license that can be found in the LICENSE file. | 6485 // BSD-style license that can be found in the LICENSE file. |
| 6872 | 6486 |
| 6873 // WARNING: Do not edit - generated code. | 6487 // WARNING: Do not edit - generated code. |
| 6874 | 6488 |
| 6875 | 6489 |
| 6876 /// @domName SVGStylable | 6490 /// @domName SVGStylable |
| 6877 class SVGStylable extends NativeFieldWrapperClass1 { | 6491 class Stylable extends NativeFieldWrapperClass1 { |
| 6878 SVGStylable.internal(); | 6492 Stylable.internal(); |
| 6879 | 6493 |
| 6880 | 6494 |
| 6881 /** @domName SVGStylable.className */ | 6495 /** @domName SVGStylable.className */ |
| 6882 SVGAnimatedString get $dom_svgClassName native "SVGStylable_className_Getter"; | 6496 AnimatedString get $dom_svgClassName native "SVGStylable_className_Getter"; |
| 6883 | 6497 |
| 6884 | 6498 |
| 6885 /** @domName SVGStylable.style */ | 6499 /** @domName SVGStylable.style */ |
| 6886 CSSStyleDeclaration get style native "SVGStylable_style_Getter"; | 6500 CSSStyleDeclaration get style native "SVGStylable_style_Getter"; |
| 6887 | 6501 |
| 6888 | 6502 |
| 6889 /** @domName SVGStylable.getPresentationAttribute */ | 6503 /** @domName SVGStylable.getPresentationAttribute */ |
| 6890 CSSValue getPresentationAttribute(String name) native "SVGStylable_getPresenta
tionAttribute_Callback"; | 6504 CSSValue getPresentationAttribute(String name) native "SVGStylable_getPresenta
tionAttribute_Callback"; |
| 6891 | 6505 |
| 6892 } | 6506 } |
| 6893 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6507 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6894 // for details. All rights reserved. Use of this source code is governed by a | 6508 // for details. All rights reserved. Use of this source code is governed by a |
| 6895 // BSD-style license that can be found in the LICENSE file. | 6509 // BSD-style license that can be found in the LICENSE file. |
| 6896 | 6510 |
| 6897 // WARNING: Do not edit - generated code. | 6511 // WARNING: Do not edit - generated code. |
| 6898 | 6512 |
| 6899 | 6513 |
| 6900 /// @domName SVGStyleElement | 6514 /// @domName SVGStyleElement |
| 6901 class SVGStyleElement extends SVGElement implements SVGLangSpace { | 6515 class StyleElement extends SvgElement implements LangSpace { |
| 6902 | 6516 |
| 6903 factory SVGStyleElement() => _SVGElementFactoryProvider.createSVGElement_tag("
style"); | 6517 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); |
| 6904 SVGStyleElement.internal(): super.internal(); | 6518 StyleElement.internal(): super.internal(); |
| 6905 | 6519 |
| 6906 | 6520 |
| 6907 /** @domName SVGStyleElement.disabled */ | 6521 /** @domName SVGStyleElement.disabled */ |
| 6908 bool get disabled native "SVGStyleElement_disabled_Getter"; | 6522 bool get disabled native "SVGStyleElement_disabled_Getter"; |
| 6909 | 6523 |
| 6910 | 6524 |
| 6911 /** @domName SVGStyleElement.disabled */ | 6525 /** @domName SVGStyleElement.disabled */ |
| 6912 void set disabled(bool value) native "SVGStyleElement_disabled_Setter"; | 6526 void set disabled(bool value) native "SVGStyleElement_disabled_Setter"; |
| 6913 | 6527 |
| 6914 | 6528 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6946 | 6560 |
| 6947 /** @domName SVGStyleElement.xmlspace */ | 6561 /** @domName SVGStyleElement.xmlspace */ |
| 6948 String get xmlspace native "SVGStyleElement_xmlspace_Getter"; | 6562 String get xmlspace native "SVGStyleElement_xmlspace_Getter"; |
| 6949 | 6563 |
| 6950 | 6564 |
| 6951 /** @domName SVGStyleElement.xmlspace */ | 6565 /** @domName SVGStyleElement.xmlspace */ |
| 6952 void set xmlspace(String value) native "SVGStyleElement_xmlspace_Setter"; | 6566 void set xmlspace(String value) native "SVGStyleElement_xmlspace_Setter"; |
| 6953 | 6567 |
| 6954 } | 6568 } |
| 6955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6569 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6570 // for details. All rights reserved. Use of this source code is governed by a |
| 6571 // BSD-style license that can be found in the LICENSE file. |
| 6572 |
| 6573 // WARNING: Do not edit - generated code. |
| 6574 |
| 6575 |
| 6576 /// @domName SVGDocument |
| 6577 class SvgDocument extends Document { |
| 6578 SvgDocument.internal(): super.internal(); |
| 6579 |
| 6580 |
| 6581 /** @domName SVGDocument.rootElement */ |
| 6582 SvgSvgElement get rootElement native "SVGDocument_rootElement_Getter"; |
| 6583 |
| 6584 |
| 6585 /** @domName SVGDocument.createEvent */ |
| 6586 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb
ack"; |
| 6587 |
| 6588 } |
| 6589 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 6590 // 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. |
| 6592 |
| 6593 |
| 6594 class _AttributeClassSet extends CssClassSet { |
| 6595 final Element _element; |
| 6596 |
| 6597 _AttributeClassSet(this._element); |
| 6598 |
| 6599 Set<String> readClasses() { |
| 6600 var classname = _element.attributes['class']; |
| 6601 |
| 6602 Set<String> s = new Set<String>(); |
| 6603 if (classname == null) { |
| 6604 return s; |
| 6605 } |
| 6606 for (String name in classname.split(' ')) { |
| 6607 String trimmed = name.trim(); |
| 6608 if (!trimmed.isEmpty) { |
| 6609 s.add(trimmed); |
| 6610 } |
| 6611 } |
| 6612 return s; |
| 6613 } |
| 6614 |
| 6615 void writeClasses(Set s) { |
| 6616 List list = new List.from(s); |
| 6617 _element.attributes['class'] = Strings.join(list, ' '); |
| 6618 } |
| 6619 } |
| 6620 |
| 6621 class SvgElement extends Element { |
| 6622 factory SvgElement.tag(String tag) => |
| 6623 _SvgElementFactoryProvider.createSvgElement_tag(tag); |
| 6624 factory SvgElement.svg(String svg) => |
| 6625 _SvgElementFactoryProvider.createSvgElement_svg(svg); |
| 6626 |
| 6627 _AttributeClassSet _cssClassSet; |
| 6628 CssClassSet get classes { |
| 6629 if (_cssClassSet == null) { |
| 6630 _cssClassSet = new _AttributeClassSet(this); |
| 6631 } |
| 6632 return _cssClassSet; |
| 6633 } |
| 6634 |
| 6635 List<Element> get elements => new FilteredElementList(this); |
| 6636 |
| 6637 void set elements(Collection<Element> value) { |
| 6638 final elements = this.elements; |
| 6639 elements.clear(); |
| 6640 elements.addAll(value); |
| 6641 } |
| 6642 |
| 6643 String get outerHTML { |
| 6644 final container = new Element.tag("div"); |
| 6645 final SvgElement cloned = this.clone(true); |
| 6646 container.elements.add(cloned); |
| 6647 return container.innerHTML; |
| 6648 } |
| 6649 |
| 6650 String get innerHTML { |
| 6651 final container = new Element.tag("div"); |
| 6652 final SvgElement cloned = this.clone(true); |
| 6653 container.elements.addAll(cloned.elements); |
| 6654 return container.innerHTML; |
| 6655 } |
| 6656 |
| 6657 void set innerHTML(String svg) { |
| 6658 final container = new Element.tag("div"); |
| 6659 // Wrap the SVG string in <svg> so that SvgElements are created, rather than |
| 6660 // HTMLElements. |
| 6661 container.innerHTML = '<svg version="1.1">$svg</svg>'; |
| 6662 this.elements = container.elements[0].elements; |
| 6663 } |
| 6664 |
| 6665 SvgElement.internal(): super.internal(); |
| 6666 |
| 6667 |
| 6668 /** @domName SVGElement.id */ |
| 6669 String get id native "SVGElement_id_Getter"; |
| 6670 |
| 6671 |
| 6672 /** @domName SVGElement.id */ |
| 6673 void set id(String value) native "SVGElement_id_Setter"; |
| 6674 |
| 6675 |
| 6676 /** @domName SVGElement.ownerSVGElement */ |
| 6677 SvgSvgElement get ownerSVGElement native "SVGElement_ownerSVGElement_Getter"; |
| 6678 |
| 6679 |
| 6680 /** @domName SVGElement.viewportElement */ |
| 6681 SvgElement get viewportElement native "SVGElement_viewportElement_Getter"; |
| 6682 |
| 6683 |
| 6684 /** @domName SVGElement.xmlbase */ |
| 6685 String get xmlbase native "SVGElement_xmlbase_Getter"; |
| 6686 |
| 6687 |
| 6688 /** @domName SVGElement.xmlbase */ |
| 6689 void set xmlbase(String value) native "SVGElement_xmlbase_Setter"; |
| 6690 |
| 6691 } |
| 6692 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6693 // for details. All rights reserved. Use of this source code is governed by a |
| 6694 // BSD-style license that can be found in the LICENSE file. |
| 6695 |
| 6696 |
| 6697 class SvgSvgElement extends SvgElement implements FitToViewBox, Tests, Stylable,
Locatable, ExternalResourcesRequired, ZoomAndPan, LangSpace { |
| 6698 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement()
; |
| 6699 |
| 6700 SvgSvgElement.internal(): super.internal(); |
| 6701 |
| 6702 |
| 6703 /** @domName SVGSVGElement.contentScriptType */ |
| 6704 String get contentScriptType native "SVGSVGElement_contentScriptType_Getter"; |
| 6705 |
| 6706 |
| 6707 /** @domName SVGSVGElement.contentScriptType */ |
| 6708 void set contentScriptType(String value) native "SVGSVGElement_contentScriptTy
pe_Setter"; |
| 6709 |
| 6710 |
| 6711 /** @domName SVGSVGElement.contentStyleType */ |
| 6712 String get contentStyleType native "SVGSVGElement_contentStyleType_Getter"; |
| 6713 |
| 6714 |
| 6715 /** @domName SVGSVGElement.contentStyleType */ |
| 6716 void set contentStyleType(String value) native "SVGSVGElement_contentStyleType
_Setter"; |
| 6717 |
| 6718 |
| 6719 /** @domName SVGSVGElement.currentScale */ |
| 6720 num get currentScale native "SVGSVGElement_currentScale_Getter"; |
| 6721 |
| 6722 |
| 6723 /** @domName SVGSVGElement.currentScale */ |
| 6724 void set currentScale(num value) native "SVGSVGElement_currentScale_Setter"; |
| 6725 |
| 6726 |
| 6727 /** @domName SVGSVGElement.currentTranslate */ |
| 6728 Point get currentTranslate native "SVGSVGElement_currentTranslate_Getter"; |
| 6729 |
| 6730 |
| 6731 /** @domName SVGSVGElement.currentView */ |
| 6732 ViewSpec get currentView native "SVGSVGElement_currentView_Getter"; |
| 6733 |
| 6734 |
| 6735 /** @domName SVGSVGElement.height */ |
| 6736 AnimatedLength get height native "SVGSVGElement_height_Getter"; |
| 6737 |
| 6738 |
| 6739 /** @domName SVGSVGElement.pixelUnitToMillimeterX */ |
| 6740 num get pixelUnitToMillimeterX native "SVGSVGElement_pixelUnitToMillimeterX_Ge
tter"; |
| 6741 |
| 6742 |
| 6743 /** @domName SVGSVGElement.pixelUnitToMillimeterY */ |
| 6744 num get pixelUnitToMillimeterY native "SVGSVGElement_pixelUnitToMillimeterY_Ge
tter"; |
| 6745 |
| 6746 |
| 6747 /** @domName SVGSVGElement.screenPixelToMillimeterX */ |
| 6748 num get screenPixelToMillimeterX native "SVGSVGElement_screenPixelToMillimeter
X_Getter"; |
| 6749 |
| 6750 |
| 6751 /** @domName SVGSVGElement.screenPixelToMillimeterY */ |
| 6752 num get screenPixelToMillimeterY native "SVGSVGElement_screenPixelToMillimeter
Y_Getter"; |
| 6753 |
| 6754 |
| 6755 /** @domName SVGSVGElement.useCurrentView */ |
| 6756 bool get useCurrentView native "SVGSVGElement_useCurrentView_Getter"; |
| 6757 |
| 6758 |
| 6759 /** @domName SVGSVGElement.viewport */ |
| 6760 Rect get viewport native "SVGSVGElement_viewport_Getter"; |
| 6761 |
| 6762 |
| 6763 /** @domName SVGSVGElement.width */ |
| 6764 AnimatedLength get width native "SVGSVGElement_width_Getter"; |
| 6765 |
| 6766 |
| 6767 /** @domName SVGSVGElement.x */ |
| 6768 AnimatedLength get x native "SVGSVGElement_x_Getter"; |
| 6769 |
| 6770 |
| 6771 /** @domName SVGSVGElement.y */ |
| 6772 AnimatedLength get y native "SVGSVGElement_y_Getter"; |
| 6773 |
| 6774 |
| 6775 /** @domName SVGSVGElement.animationsPaused */ |
| 6776 bool animationsPaused() native "SVGSVGElement_animationsPaused_Callback"; |
| 6777 |
| 6778 |
| 6779 /** @domName SVGSVGElement.checkEnclosure */ |
| 6780 bool checkEnclosure(SvgElement element, Rect rect) native "SVGSVGElement_check
Enclosure_Callback"; |
| 6781 |
| 6782 |
| 6783 /** @domName SVGSVGElement.checkIntersection */ |
| 6784 bool checkIntersection(SvgElement element, Rect rect) native "SVGSVGElement_ch
eckIntersection_Callback"; |
| 6785 |
| 6786 |
| 6787 /** @domName SVGSVGElement.createSVGAngle */ |
| 6788 Angle createSVGAngle() native "SVGSVGElement_createSVGAngle_Callback"; |
| 6789 |
| 6790 |
| 6791 /** @domName SVGSVGElement.createSVGLength */ |
| 6792 Length createSVGLength() native "SVGSVGElement_createSVGLength_Callback"; |
| 6793 |
| 6794 |
| 6795 /** @domName SVGSVGElement.createSVGMatrix */ |
| 6796 Matrix createSVGMatrix() native "SVGSVGElement_createSVGMatrix_Callback"; |
| 6797 |
| 6798 |
| 6799 /** @domName SVGSVGElement.createSVGNumber */ |
| 6800 Number createSVGNumber() native "SVGSVGElement_createSVGNumber_Callback"; |
| 6801 |
| 6802 |
| 6803 /** @domName SVGSVGElement.createSVGPoint */ |
| 6804 Point createSVGPoint() native "SVGSVGElement_createSVGPoint_Callback"; |
| 6805 |
| 6806 |
| 6807 /** @domName SVGSVGElement.createSVGRect */ |
| 6808 Rect createSVGRect() native "SVGSVGElement_createSVGRect_Callback"; |
| 6809 |
| 6810 |
| 6811 /** @domName SVGSVGElement.createSVGTransform */ |
| 6812 Transform createSVGTransform() native "SVGSVGElement_createSVGTransform_Callba
ck"; |
| 6813 |
| 6814 |
| 6815 /** @domName SVGSVGElement.createSVGTransformFromMatrix */ |
| 6816 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGSVGElement_cr
eateSVGTransformFromMatrix_Callback"; |
| 6817 |
| 6818 |
| 6819 /** @domName SVGSVGElement.deselectAll */ |
| 6820 void deselectAll() native "SVGSVGElement_deselectAll_Callback"; |
| 6821 |
| 6822 |
| 6823 /** @domName SVGSVGElement.forceRedraw */ |
| 6824 void forceRedraw() native "SVGSVGElement_forceRedraw_Callback"; |
| 6825 |
| 6826 |
| 6827 /** @domName SVGSVGElement.getCurrentTime */ |
| 6828 num getCurrentTime() native "SVGSVGElement_getCurrentTime_Callback"; |
| 6829 |
| 6830 |
| 6831 /** @domName SVGSVGElement.getElementById */ |
| 6832 Element getElementById(String elementId) native "SVGSVGElement_getElementById_
Callback"; |
| 6833 |
| 6834 |
| 6835 /** @domName SVGSVGElement.getEnclosureList */ |
| 6836 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) native "SV
GSVGElement_getEnclosureList_Callback"; |
| 6837 |
| 6838 |
| 6839 /** @domName SVGSVGElement.getIntersectionList */ |
| 6840 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) native
"SVGSVGElement_getIntersectionList_Callback"; |
| 6841 |
| 6842 |
| 6843 /** @domName SVGSVGElement.pauseAnimations */ |
| 6844 void pauseAnimations() native "SVGSVGElement_pauseAnimations_Callback"; |
| 6845 |
| 6846 |
| 6847 /** @domName SVGSVGElement.setCurrentTime */ |
| 6848 void setCurrentTime(num seconds) native "SVGSVGElement_setCurrentTime_Callback
"; |
| 6849 |
| 6850 |
| 6851 /** @domName SVGSVGElement.suspendRedraw */ |
| 6852 int suspendRedraw(int maxWaitMilliseconds) native "SVGSVGElement_suspendRedraw
_Callback"; |
| 6853 |
| 6854 |
| 6855 /** @domName SVGSVGElement.unpauseAnimations */ |
| 6856 void unpauseAnimations() native "SVGSVGElement_unpauseAnimations_Callback"; |
| 6857 |
| 6858 |
| 6859 /** @domName SVGSVGElement.unsuspendRedraw */ |
| 6860 void unsuspendRedraw(int suspendHandleId) native "SVGSVGElement_unsuspendRedra
w_Callback"; |
| 6861 |
| 6862 |
| 6863 /** @domName SVGSVGElement.unsuspendRedrawAll */ |
| 6864 void unsuspendRedrawAll() native "SVGSVGElement_unsuspendRedrawAll_Callback"; |
| 6865 |
| 6866 |
| 6867 /** @domName SVGSVGElement.externalResourcesRequired */ |
| 6868 AnimatedBoolean get externalResourcesRequired native "SVGSVGElement_externalRe
sourcesRequired_Getter"; |
| 6869 |
| 6870 |
| 6871 /** @domName SVGSVGElement.preserveAspectRatio */ |
| 6872 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSVGElement_pres
erveAspectRatio_Getter"; |
| 6873 |
| 6874 |
| 6875 /** @domName SVGSVGElement.viewBox */ |
| 6876 AnimatedRect get viewBox native "SVGSVGElement_viewBox_Getter"; |
| 6877 |
| 6878 |
| 6879 /** @domName SVGSVGElement.xmllang */ |
| 6880 String get xmllang native "SVGSVGElement_xmllang_Getter"; |
| 6881 |
| 6882 |
| 6883 /** @domName SVGSVGElement.xmllang */ |
| 6884 void set xmllang(String value) native "SVGSVGElement_xmllang_Setter"; |
| 6885 |
| 6886 |
| 6887 /** @domName SVGSVGElement.xmlspace */ |
| 6888 String get xmlspace native "SVGSVGElement_xmlspace_Getter"; |
| 6889 |
| 6890 |
| 6891 /** @domName SVGSVGElement.xmlspace */ |
| 6892 void set xmlspace(String value) native "SVGSVGElement_xmlspace_Setter"; |
| 6893 |
| 6894 |
| 6895 /** @domName SVGSVGElement.farthestViewportElement */ |
| 6896 SvgElement get farthestViewportElement native "SVGSVGElement_farthestViewportE
lement_Getter"; |
| 6897 |
| 6898 |
| 6899 /** @domName SVGSVGElement.nearestViewportElement */ |
| 6900 SvgElement get nearestViewportElement native "SVGSVGElement_nearestViewportEle
ment_Getter"; |
| 6901 |
| 6902 |
| 6903 /** @domName SVGSVGElement.getBBox */ |
| 6904 Rect getBBox() native "SVGSVGElement_getBBox_Callback"; |
| 6905 |
| 6906 |
| 6907 /** @domName SVGSVGElement.getCTM */ |
| 6908 Matrix getCTM() native "SVGSVGElement_getCTM_Callback"; |
| 6909 |
| 6910 |
| 6911 /** @domName SVGSVGElement.getScreenCTM */ |
| 6912 Matrix getScreenCTM() native "SVGSVGElement_getScreenCTM_Callback"; |
| 6913 |
| 6914 |
| 6915 /** @domName SVGSVGElement.getTransformToElement */ |
| 6916 Matrix getTransformToElement(SvgElement element) native "SVGSVGElement_getTran
sformToElement_Callback"; |
| 6917 |
| 6918 |
| 6919 /** @domName SVGSVGElement.className */ |
| 6920 AnimatedString get $dom_svgClassName native "SVGSVGElement_className_Getter"; |
| 6921 |
| 6922 |
| 6923 /** @domName SVGSVGElement.style */ |
| 6924 CSSStyleDeclaration get style native "SVGSVGElement_style_Getter"; |
| 6925 |
| 6926 |
| 6927 /** @domName SVGSVGElement.getPresentationAttribute */ |
| 6928 CSSValue getPresentationAttribute(String name) native "SVGSVGElement_getPresen
tationAttribute_Callback"; |
| 6929 |
| 6930 |
| 6931 /** @domName SVGSVGElement.requiredExtensions */ |
| 6932 StringList get requiredExtensions native "SVGSVGElement_requiredExtensions_Get
ter"; |
| 6933 |
| 6934 |
| 6935 /** @domName SVGSVGElement.requiredFeatures */ |
| 6936 StringList get requiredFeatures native "SVGSVGElement_requiredFeatures_Getter"
; |
| 6937 |
| 6938 |
| 6939 /** @domName SVGSVGElement.systemLanguage */ |
| 6940 StringList get systemLanguage native "SVGSVGElement_systemLanguage_Getter"; |
| 6941 |
| 6942 |
| 6943 /** @domName SVGSVGElement.hasExtension */ |
| 6944 bool hasExtension(String extension) native "SVGSVGElement_hasExtension_Callbac
k"; |
| 6945 |
| 6946 |
| 6947 /** @domName SVGSVGElement.zoomAndPan */ |
| 6948 int get zoomAndPan native "SVGSVGElement_zoomAndPan_Getter"; |
| 6949 |
| 6950 |
| 6951 /** @domName SVGSVGElement.zoomAndPan */ |
| 6952 void set zoomAndPan(int value) native "SVGSVGElement_zoomAndPan_Setter"; |
| 6953 |
| 6954 } |
| 6955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6956 // for details. All rights reserved. Use of this source code is governed by a | 6956 // for details. All rights reserved. Use of this source code is governed by a |
| 6957 // BSD-style license that can be found in the LICENSE file. | 6957 // BSD-style license that can be found in the LICENSE file. |
| 6958 | 6958 |
| 6959 // WARNING: Do not edit - generated code. | 6959 // WARNING: Do not edit - generated code. |
| 6960 | 6960 |
| 6961 | 6961 |
| 6962 /// @domName SVGSwitchElement | 6962 /// @domName SVGSwitchElement |
| 6963 class SVGSwitchElement extends SVGElement implements SVGLangSpace, SVGStylable,
SVGTests, SVGTransformable, SVGExternalResourcesRequired { | 6963 class SwitchElement extends SvgElement implements Transformable, Tests, Stylable
, ExternalResourcesRequired, LangSpace { |
| 6964 | 6964 |
| 6965 factory SVGSwitchElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"switch"); | 6965 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); |
| 6966 SVGSwitchElement.internal(): super.internal(); | 6966 SwitchElement.internal(): super.internal(); |
| 6967 | 6967 |
| 6968 | 6968 |
| 6969 /** @domName SVGSwitchElement.externalResourcesRequired */ | 6969 /** @domName SVGSwitchElement.externalResourcesRequired */ |
| 6970 SVGAnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_exte
rnalResourcesRequired_Getter"; | 6970 AnimatedBoolean get externalResourcesRequired native "SVGSwitchElement_externa
lResourcesRequired_Getter"; |
| 6971 | 6971 |
| 6972 | 6972 |
| 6973 /** @domName SVGSwitchElement.xmllang */ | 6973 /** @domName SVGSwitchElement.xmllang */ |
| 6974 String get xmllang native "SVGSwitchElement_xmllang_Getter"; | 6974 String get xmllang native "SVGSwitchElement_xmllang_Getter"; |
| 6975 | 6975 |
| 6976 | 6976 |
| 6977 /** @domName SVGSwitchElement.xmllang */ | 6977 /** @domName SVGSwitchElement.xmllang */ |
| 6978 void set xmllang(String value) native "SVGSwitchElement_xmllang_Setter"; | 6978 void set xmllang(String value) native "SVGSwitchElement_xmllang_Setter"; |
| 6979 | 6979 |
| 6980 | 6980 |
| 6981 /** @domName SVGSwitchElement.xmlspace */ | 6981 /** @domName SVGSwitchElement.xmlspace */ |
| 6982 String get xmlspace native "SVGSwitchElement_xmlspace_Getter"; | 6982 String get xmlspace native "SVGSwitchElement_xmlspace_Getter"; |
| 6983 | 6983 |
| 6984 | 6984 |
| 6985 /** @domName SVGSwitchElement.xmlspace */ | 6985 /** @domName SVGSwitchElement.xmlspace */ |
| 6986 void set xmlspace(String value) native "SVGSwitchElement_xmlspace_Setter"; | 6986 void set xmlspace(String value) native "SVGSwitchElement_xmlspace_Setter"; |
| 6987 | 6987 |
| 6988 | 6988 |
| 6989 /** @domName SVGSwitchElement.farthestViewportElement */ | 6989 /** @domName SVGSwitchElement.farthestViewportElement */ |
| 6990 SVGElement get farthestViewportElement native "SVGSwitchElement_farthestViewpo
rtElement_Getter"; | 6990 SvgElement get farthestViewportElement native "SVGSwitchElement_farthestViewpo
rtElement_Getter"; |
| 6991 | 6991 |
| 6992 | 6992 |
| 6993 /** @domName SVGSwitchElement.nearestViewportElement */ | 6993 /** @domName SVGSwitchElement.nearestViewportElement */ |
| 6994 SVGElement get nearestViewportElement native "SVGSwitchElement_nearestViewport
Element_Getter"; | 6994 SvgElement get nearestViewportElement native "SVGSwitchElement_nearestViewport
Element_Getter"; |
| 6995 | 6995 |
| 6996 | 6996 |
| 6997 /** @domName SVGSwitchElement.getBBox */ | 6997 /** @domName SVGSwitchElement.getBBox */ |
| 6998 SVGRect getBBox() native "SVGSwitchElement_getBBox_Callback"; | 6998 Rect getBBox() native "SVGSwitchElement_getBBox_Callback"; |
| 6999 | 6999 |
| 7000 | 7000 |
| 7001 /** @domName SVGSwitchElement.getCTM */ | 7001 /** @domName SVGSwitchElement.getCTM */ |
| 7002 SVGMatrix getCTM() native "SVGSwitchElement_getCTM_Callback"; | 7002 Matrix getCTM() native "SVGSwitchElement_getCTM_Callback"; |
| 7003 | 7003 |
| 7004 | 7004 |
| 7005 /** @domName SVGSwitchElement.getScreenCTM */ | 7005 /** @domName SVGSwitchElement.getScreenCTM */ |
| 7006 SVGMatrix getScreenCTM() native "SVGSwitchElement_getScreenCTM_Callback"; | 7006 Matrix getScreenCTM() native "SVGSwitchElement_getScreenCTM_Callback"; |
| 7007 | 7007 |
| 7008 | 7008 |
| 7009 /** @domName SVGSwitchElement.getTransformToElement */ | 7009 /** @domName SVGSwitchElement.getTransformToElement */ |
| 7010 SVGMatrix getTransformToElement(SVGElement element) native "SVGSwitchElement_g
etTransformToElement_Callback"; | 7010 Matrix getTransformToElement(SvgElement element) native "SVGSwitchElement_getT
ransformToElement_Callback"; |
| 7011 | 7011 |
| 7012 | 7012 |
| 7013 /** @domName SVGSwitchElement.className */ | 7013 /** @domName SVGSwitchElement.className */ |
| 7014 SVGAnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Get
ter"; | 7014 AnimatedString get $dom_svgClassName native "SVGSwitchElement_className_Getter
"; |
| 7015 | 7015 |
| 7016 | 7016 |
| 7017 /** @domName SVGSwitchElement.style */ | 7017 /** @domName SVGSwitchElement.style */ |
| 7018 CSSStyleDeclaration get style native "SVGSwitchElement_style_Getter"; | 7018 CSSStyleDeclaration get style native "SVGSwitchElement_style_Getter"; |
| 7019 | 7019 |
| 7020 | 7020 |
| 7021 /** @domName SVGSwitchElement.getPresentationAttribute */ | 7021 /** @domName SVGSwitchElement.getPresentationAttribute */ |
| 7022 CSSValue getPresentationAttribute(String name) native "SVGSwitchElement_getPre
sentationAttribute_Callback"; | 7022 CSSValue getPresentationAttribute(String name) native "SVGSwitchElement_getPre
sentationAttribute_Callback"; |
| 7023 | 7023 |
| 7024 | 7024 |
| 7025 /** @domName SVGSwitchElement.requiredExtensions */ | 7025 /** @domName SVGSwitchElement.requiredExtensions */ |
| 7026 SVGStringList get requiredExtensions native "SVGSwitchElement_requiredExtensio
ns_Getter"; | 7026 StringList get requiredExtensions native "SVGSwitchElement_requiredExtensions_
Getter"; |
| 7027 | 7027 |
| 7028 | 7028 |
| 7029 /** @domName SVGSwitchElement.requiredFeatures */ | 7029 /** @domName SVGSwitchElement.requiredFeatures */ |
| 7030 SVGStringList get requiredFeatures native "SVGSwitchElement_requiredFeatures_G
etter"; | 7030 StringList get requiredFeatures native "SVGSwitchElement_requiredFeatures_Gett
er"; |
| 7031 | 7031 |
| 7032 | 7032 |
| 7033 /** @domName SVGSwitchElement.systemLanguage */ | 7033 /** @domName SVGSwitchElement.systemLanguage */ |
| 7034 SVGStringList get systemLanguage native "SVGSwitchElement_systemLanguage_Gette
r"; | 7034 StringList get systemLanguage native "SVGSwitchElement_systemLanguage_Getter"; |
| 7035 | 7035 |
| 7036 | 7036 |
| 7037 /** @domName SVGSwitchElement.hasExtension */ | 7037 /** @domName SVGSwitchElement.hasExtension */ |
| 7038 bool hasExtension(String extension) native "SVGSwitchElement_hasExtension_Call
back"; | 7038 bool hasExtension(String extension) native "SVGSwitchElement_hasExtension_Call
back"; |
| 7039 | 7039 |
| 7040 | 7040 |
| 7041 /** @domName SVGSwitchElement.transform */ | 7041 /** @domName SVGSwitchElement.transform */ |
| 7042 SVGAnimatedTransformList get transform native "SVGSwitchElement_transform_Gett
er"; | 7042 AnimatedTransformList get transform native "SVGSwitchElement_transform_Getter"
; |
| 7043 | 7043 |
| 7044 } | 7044 } |
| 7045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7045 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7046 // for details. All rights reserved. Use of this source code is governed by a | 7046 // for details. All rights reserved. Use of this source code is governed by a |
| 7047 // BSD-style license that can be found in the LICENSE file. | 7047 // BSD-style license that can be found in the LICENSE file. |
| 7048 | 7048 |
| 7049 // WARNING: Do not edit - generated code. | 7049 // WARNING: Do not edit - generated code. |
| 7050 | 7050 |
| 7051 | 7051 |
| 7052 /// @domName SVGSymbolElement | 7052 /// @domName SVGSymbolElement |
| 7053 class SVGSymbolElement extends SVGElement implements SVGLangSpace, SVGFitToViewB
ox, SVGExternalResourcesRequired, SVGStylable { | 7053 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource
sRequired, Stylable, LangSpace { |
| 7054 | 7054 |
| 7055 factory SVGSymbolElement() => _SVGElementFactoryProvider.createSVGElement_tag(
"symbol"); | 7055 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); |
| 7056 SVGSymbolElement.internal(): super.internal(); | 7056 SymbolElement.internal(): super.internal(); |
| 7057 | 7057 |
| 7058 | 7058 |
| 7059 /** @domName SVGSymbolElement.externalResourcesRequired */ | 7059 /** @domName SVGSymbolElement.externalResourcesRequired */ |
| 7060 SVGAnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_exte
rnalResourcesRequired_Getter"; | 7060 AnimatedBoolean get externalResourcesRequired native "SVGSymbolElement_externa
lResourcesRequired_Getter"; |
| 7061 | 7061 |
| 7062 | 7062 |
| 7063 /** @domName SVGSymbolElement.preserveAspectRatio */ | 7063 /** @domName SVGSymbolElement.preserveAspectRatio */ |
| 7064 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElemen
t_preserveAspectRatio_Getter"; | 7064 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGSymbolElement_p
reserveAspectRatio_Getter"; |
| 7065 | 7065 |
| 7066 | 7066 |
| 7067 /** @domName SVGSymbolElement.viewBox */ | 7067 /** @domName SVGSymbolElement.viewBox */ |
| 7068 SVGAnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter"; | 7068 AnimatedRect get viewBox native "SVGSymbolElement_viewBox_Getter"; |
| 7069 | 7069 |
| 7070 | 7070 |
| 7071 /** @domName SVGSymbolElement.xmllang */ | 7071 /** @domName SVGSymbolElement.xmllang */ |
| 7072 String get xmllang native "SVGSymbolElement_xmllang_Getter"; | 7072 String get xmllang native "SVGSymbolElement_xmllang_Getter"; |
| 7073 | 7073 |
| 7074 | 7074 |
| 7075 /** @domName SVGSymbolElement.xmllang */ | 7075 /** @domName SVGSymbolElement.xmllang */ |
| 7076 void set xmllang(String value) native "SVGSymbolElement_xmllang_Setter"; | 7076 void set xmllang(String value) native "SVGSymbolElement_xmllang_Setter"; |
| 7077 | 7077 |
| 7078 | 7078 |
| 7079 /** @domName SVGSymbolElement.xmlspace */ | 7079 /** @domName SVGSymbolElement.xmlspace */ |
| 7080 String get xmlspace native "SVGSymbolElement_xmlspace_Getter"; | 7080 String get xmlspace native "SVGSymbolElement_xmlspace_Getter"; |
| 7081 | 7081 |
| 7082 | 7082 |
| 7083 /** @domName SVGSymbolElement.xmlspace */ | 7083 /** @domName SVGSymbolElement.xmlspace */ |
| 7084 void set xmlspace(String value) native "SVGSymbolElement_xmlspace_Setter"; | 7084 void set xmlspace(String value) native "SVGSymbolElement_xmlspace_Setter"; |
| 7085 | 7085 |
| 7086 | 7086 |
| 7087 /** @domName SVGSymbolElement.className */ | 7087 /** @domName SVGSymbolElement.className */ |
| 7088 SVGAnimatedString get $dom_svgClassName native "SVGSymbolElement_className_Get
ter"; | 7088 AnimatedString get $dom_svgClassName native "SVGSymbolElement_className_Getter
"; |
| 7089 | 7089 |
| 7090 | 7090 |
| 7091 /** @domName SVGSymbolElement.style */ | 7091 /** @domName SVGSymbolElement.style */ |
| 7092 CSSStyleDeclaration get style native "SVGSymbolElement_style_Getter"; | 7092 CSSStyleDeclaration get style native "SVGSymbolElement_style_Getter"; |
| 7093 | 7093 |
| 7094 | 7094 |
| 7095 /** @domName SVGSymbolElement.getPresentationAttribute */ | 7095 /** @domName SVGSymbolElement.getPresentationAttribute */ |
| 7096 CSSValue getPresentationAttribute(String name) native "SVGSymbolElement_getPre
sentationAttribute_Callback"; | 7096 CSSValue getPresentationAttribute(String name) native "SVGSymbolElement_getPre
sentationAttribute_Callback"; |
| 7097 | 7097 |
| 7098 } | 7098 } |
| 7099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7100 // for details. All rights reserved. Use of this source code is governed by a | 7100 // for details. All rights reserved. Use of this source code is governed by a |
| 7101 // BSD-style license that can be found in the LICENSE file. | 7101 // BSD-style license that can be found in the LICENSE file. |
| 7102 | 7102 |
| 7103 // WARNING: Do not edit - generated code. | 7103 // WARNING: Do not edit - generated code. |
| 7104 | 7104 |
| 7105 | 7105 |
| 7106 /// @domName SVGTRefElement | 7106 /// @domName SVGTRefElement |
| 7107 class SVGTRefElement extends SVGTextPositioningElement implements SVGURIReferenc
e { | 7107 class TRefElement extends TextPositioningElement implements UriReference { |
| 7108 | 7108 |
| 7109 factory SVGTRefElement() => _SVGElementFactoryProvider.createSVGElement_tag("t
ref"); | 7109 factory TRefElement() => _SvgElementFactoryProvider.createSvgElement_tag("tref
"); |
| 7110 SVGTRefElement.internal(): super.internal(); | 7110 TRefElement.internal(): super.internal(); |
| 7111 | 7111 |
| 7112 | 7112 |
| 7113 /** @domName SVGTRefElement.href */ | 7113 /** @domName SVGTRefElement.href */ |
| 7114 SVGAnimatedString get href native "SVGTRefElement_href_Getter"; | 7114 AnimatedString get href native "SVGTRefElement_href_Getter"; |
| 7115 | 7115 |
| 7116 } | 7116 } |
| 7117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7117 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7118 // for details. All rights reserved. Use of this source code is governed by a | 7118 // for details. All rights reserved. Use of this source code is governed by a |
| 7119 // BSD-style license that can be found in the LICENSE file. | 7119 // BSD-style license that can be found in the LICENSE file. |
| 7120 | 7120 |
| 7121 // WARNING: Do not edit - generated code. | 7121 // WARNING: Do not edit - generated code. |
| 7122 | 7122 |
| 7123 | 7123 |
| 7124 /// @domName SVGTSpanElement | 7124 /// @domName SVGTSpanElement |
| 7125 class SVGTSpanElement extends SVGTextPositioningElement { | 7125 class TSpanElement extends TextPositioningElement { |
| 7126 | 7126 |
| 7127 factory SVGTSpanElement() => _SVGElementFactoryProvider.createSVGElement_tag("
tspan"); | 7127 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); |
| 7128 SVGTSpanElement.internal(): super.internal(); | 7128 TSpanElement.internal(): super.internal(); |
| 7129 | 7129 |
| 7130 } | 7130 } |
| 7131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7132 // for details. All rights reserved. Use of this source code is governed by a | 7132 // for details. All rights reserved. Use of this source code is governed by a |
| 7133 // BSD-style license that can be found in the LICENSE file. | 7133 // BSD-style license that can be found in the LICENSE file. |
| 7134 | 7134 |
| 7135 // WARNING: Do not edit - generated code. | 7135 // WARNING: Do not edit - generated code. |
| 7136 | 7136 |
| 7137 | 7137 |
| 7138 /// @domName SVGTests | 7138 /// @domName SVGTests |
| 7139 class SVGTests extends NativeFieldWrapperClass1 { | 7139 class Tests extends NativeFieldWrapperClass1 { |
| 7140 SVGTests.internal(); | 7140 Tests.internal(); |
| 7141 | 7141 |
| 7142 | 7142 |
| 7143 /** @domName SVGTests.requiredExtensions */ | 7143 /** @domName SVGTests.requiredExtensions */ |
| 7144 SVGStringList get requiredExtensions native "SVGTests_requiredExtensions_Gette
r"; | 7144 StringList get requiredExtensions native "SVGTests_requiredExtensions_Getter"; |
| 7145 | 7145 |
| 7146 | 7146 |
| 7147 /** @domName SVGTests.requiredFeatures */ | 7147 /** @domName SVGTests.requiredFeatures */ |
| 7148 SVGStringList get requiredFeatures native "SVGTests_requiredFeatures_Getter"; | 7148 StringList get requiredFeatures native "SVGTests_requiredFeatures_Getter"; |
| 7149 | 7149 |
| 7150 | 7150 |
| 7151 /** @domName SVGTests.systemLanguage */ | 7151 /** @domName SVGTests.systemLanguage */ |
| 7152 SVGStringList get systemLanguage native "SVGTests_systemLanguage_Getter"; | 7152 StringList get systemLanguage native "SVGTests_systemLanguage_Getter"; |
| 7153 | 7153 |
| 7154 | 7154 |
| 7155 /** @domName SVGTests.hasExtension */ | 7155 /** @domName SVGTests.hasExtension */ |
| 7156 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback"; | 7156 bool hasExtension(String extension) native "SVGTests_hasExtension_Callback"; |
| 7157 | 7157 |
| 7158 } | 7158 } |
| 7159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7160 // for details. All rights reserved. Use of this source code is governed by a | 7160 // for details. All rights reserved. Use of this source code is governed by a |
| 7161 // BSD-style license that can be found in the LICENSE file. | 7161 // BSD-style license that can be found in the LICENSE file. |
| 7162 | 7162 |
| 7163 // WARNING: Do not edit - generated code. | 7163 // WARNING: Do not edit - generated code. |
| 7164 | 7164 |
| 7165 | 7165 |
| 7166 /// @domName SVGTextContentElement | 7166 /// @domName SVGTextContentElement |
| 7167 class SVGTextContentElement extends SVGElement implements SVGLangSpace, SVGStyla
ble, SVGTests, SVGExternalResourcesRequired { | 7167 class TextContentElement extends SvgElement implements Tests, Stylable, External
ResourcesRequired, LangSpace { |
| 7168 SVGTextContentElement.internal(): super.internal(); | 7168 TextContentElement.internal(): super.internal(); |
| 7169 | 7169 |
| 7170 static const int LENGTHADJUST_SPACING = 1; | 7170 static const int LENGTHADJUST_SPACING = 1; |
| 7171 | 7171 |
| 7172 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 7172 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 7173 | 7173 |
| 7174 static const int LENGTHADJUST_UNKNOWN = 0; | 7174 static const int LENGTHADJUST_UNKNOWN = 0; |
| 7175 | 7175 |
| 7176 | 7176 |
| 7177 /** @domName SVGTextContentElement.lengthAdjust */ | 7177 /** @domName SVGTextContentElement.lengthAdjust */ |
| 7178 SVGAnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAd
just_Getter"; | 7178 AnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAdjus
t_Getter"; |
| 7179 | 7179 |
| 7180 | 7180 |
| 7181 /** @domName SVGTextContentElement.textLength */ | 7181 /** @domName SVGTextContentElement.textLength */ |
| 7182 SVGAnimatedLength get textLength native "SVGTextContentElement_textLength_Gett
er"; | 7182 AnimatedLength get textLength native "SVGTextContentElement_textLength_Getter"
; |
| 7183 | 7183 |
| 7184 | 7184 |
| 7185 /** @domName SVGTextContentElement.getCharNumAtPosition */ | 7185 /** @domName SVGTextContentElement.getCharNumAtPosition */ |
| 7186 int getCharNumAtPosition(SVGPoint point) native "SVGTextContentElement_getChar
NumAtPosition_Callback"; | 7186 int getCharNumAtPosition(Point point) native "SVGTextContentElement_getCharNum
AtPosition_Callback"; |
| 7187 | 7187 |
| 7188 | 7188 |
| 7189 /** @domName SVGTextContentElement.getComputedTextLength */ | 7189 /** @domName SVGTextContentElement.getComputedTextLength */ |
| 7190 num getComputedTextLength() native "SVGTextContentElement_getComputedTextLengt
h_Callback"; | 7190 num getComputedTextLength() native "SVGTextContentElement_getComputedTextLengt
h_Callback"; |
| 7191 | 7191 |
| 7192 | 7192 |
| 7193 /** @domName SVGTextContentElement.getEndPositionOfChar */ | 7193 /** @domName SVGTextContentElement.getEndPositionOfChar */ |
| 7194 SVGPoint getEndPositionOfChar(int offset) native "SVGTextContentElement_getEnd
PositionOfChar_Callback"; | 7194 Point getEndPositionOfChar(int offset) native "SVGTextContentElement_getEndPos
itionOfChar_Callback"; |
| 7195 | 7195 |
| 7196 | 7196 |
| 7197 /** @domName SVGTextContentElement.getExtentOfChar */ | 7197 /** @domName SVGTextContentElement.getExtentOfChar */ |
| 7198 SVGRect getExtentOfChar(int offset) native "SVGTextContentElement_getExtentOfC
har_Callback"; | 7198 Rect getExtentOfChar(int offset) native "SVGTextContentElement_getExtentOfChar
_Callback"; |
| 7199 | 7199 |
| 7200 | 7200 |
| 7201 /** @domName SVGTextContentElement.getNumberOfChars */ | 7201 /** @domName SVGTextContentElement.getNumberOfChars */ |
| 7202 int getNumberOfChars() native "SVGTextContentElement_getNumberOfChars_Callback
"; | 7202 int getNumberOfChars() native "SVGTextContentElement_getNumberOfChars_Callback
"; |
| 7203 | 7203 |
| 7204 | 7204 |
| 7205 /** @domName SVGTextContentElement.getRotationOfChar */ | 7205 /** @domName SVGTextContentElement.getRotationOfChar */ |
| 7206 num getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfC
har_Callback"; | 7206 num getRotationOfChar(int offset) native "SVGTextContentElement_getRotationOfC
har_Callback"; |
| 7207 | 7207 |
| 7208 | 7208 |
| 7209 /** @domName SVGTextContentElement.getStartPositionOfChar */ | 7209 /** @domName SVGTextContentElement.getStartPositionOfChar */ |
| 7210 SVGPoint getStartPositionOfChar(int offset) native "SVGTextContentElement_getS
tartPositionOfChar_Callback"; | 7210 Point getStartPositionOfChar(int offset) native "SVGTextContentElement_getStar
tPositionOfChar_Callback"; |
| 7211 | 7211 |
| 7212 | 7212 |
| 7213 /** @domName SVGTextContentElement.getSubStringLength */ | 7213 /** @domName SVGTextContentElement.getSubStringLength */ |
| 7214 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g
etSubStringLength_Callback"; | 7214 num getSubStringLength(int offset, int length) native "SVGTextContentElement_g
etSubStringLength_Callback"; |
| 7215 | 7215 |
| 7216 | 7216 |
| 7217 /** @domName SVGTextContentElement.selectSubString */ | 7217 /** @domName SVGTextContentElement.selectSubString */ |
| 7218 void selectSubString(int offset, int length) native "SVGTextContentElement_sel
ectSubString_Callback"; | 7218 void selectSubString(int offset, int length) native "SVGTextContentElement_sel
ectSubString_Callback"; |
| 7219 | 7219 |
| 7220 | 7220 |
| 7221 /** @domName SVGTextContentElement.externalResourcesRequired */ | 7221 /** @domName SVGTextContentElement.externalResourcesRequired */ |
| 7222 SVGAnimatedBoolean get externalResourcesRequired native "SVGTextContentElement
_externalResourcesRequired_Getter"; | 7222 AnimatedBoolean get externalResourcesRequired native "SVGTextContentElement_ex
ternalResourcesRequired_Getter"; |
| 7223 | 7223 |
| 7224 | 7224 |
| 7225 /** @domName SVGTextContentElement.xmllang */ | 7225 /** @domName SVGTextContentElement.xmllang */ |
| 7226 String get xmllang native "SVGTextContentElement_xmllang_Getter"; | 7226 String get xmllang native "SVGTextContentElement_xmllang_Getter"; |
| 7227 | 7227 |
| 7228 | 7228 |
| 7229 /** @domName SVGTextContentElement.xmllang */ | 7229 /** @domName SVGTextContentElement.xmllang */ |
| 7230 void set xmllang(String value) native "SVGTextContentElement_xmllang_Setter"; | 7230 void set xmllang(String value) native "SVGTextContentElement_xmllang_Setter"; |
| 7231 | 7231 |
| 7232 | 7232 |
| 7233 /** @domName SVGTextContentElement.xmlspace */ | 7233 /** @domName SVGTextContentElement.xmlspace */ |
| 7234 String get xmlspace native "SVGTextContentElement_xmlspace_Getter"; | 7234 String get xmlspace native "SVGTextContentElement_xmlspace_Getter"; |
| 7235 | 7235 |
| 7236 | 7236 |
| 7237 /** @domName SVGTextContentElement.xmlspace */ | 7237 /** @domName SVGTextContentElement.xmlspace */ |
| 7238 void set xmlspace(String value) native "SVGTextContentElement_xmlspace_Setter"
; | 7238 void set xmlspace(String value) native "SVGTextContentElement_xmlspace_Setter"
; |
| 7239 | 7239 |
| 7240 | 7240 |
| 7241 /** @domName SVGTextContentElement.className */ | 7241 /** @domName SVGTextContentElement.className */ |
| 7242 SVGAnimatedString get $dom_svgClassName native "SVGTextContentElement_classNam
e_Getter"; | 7242 AnimatedString get $dom_svgClassName native "SVGTextContentElement_className_G
etter"; |
| 7243 | 7243 |
| 7244 | 7244 |
| 7245 /** @domName SVGTextContentElement.style */ | 7245 /** @domName SVGTextContentElement.style */ |
| 7246 CSSStyleDeclaration get style native "SVGTextContentElement_style_Getter"; | 7246 CSSStyleDeclaration get style native "SVGTextContentElement_style_Getter"; |
| 7247 | 7247 |
| 7248 | 7248 |
| 7249 /** @domName SVGTextContentElement.getPresentationAttribute */ | 7249 /** @domName SVGTextContentElement.getPresentationAttribute */ |
| 7250 CSSValue getPresentationAttribute(String name) native "SVGTextContentElement_g
etPresentationAttribute_Callback"; | 7250 CSSValue getPresentationAttribute(String name) native "SVGTextContentElement_g
etPresentationAttribute_Callback"; |
| 7251 | 7251 |
| 7252 | 7252 |
| 7253 /** @domName SVGTextContentElement.requiredExtensions */ | 7253 /** @domName SVGTextContentElement.requiredExtensions */ |
| 7254 SVGStringList get requiredExtensions native "SVGTextContentElement_requiredExt
ensions_Getter"; | 7254 StringList get requiredExtensions native "SVGTextContentElement_requiredExtens
ions_Getter"; |
| 7255 | 7255 |
| 7256 | 7256 |
| 7257 /** @domName SVGTextContentElement.requiredFeatures */ | 7257 /** @domName SVGTextContentElement.requiredFeatures */ |
| 7258 SVGStringList get requiredFeatures native "SVGTextContentElement_requiredFeatu
res_Getter"; | 7258 StringList get requiredFeatures native "SVGTextContentElement_requiredFeatures
_Getter"; |
| 7259 | 7259 |
| 7260 | 7260 |
| 7261 /** @domName SVGTextContentElement.systemLanguage */ | 7261 /** @domName SVGTextContentElement.systemLanguage */ |
| 7262 SVGStringList get systemLanguage native "SVGTextContentElement_systemLanguage_
Getter"; | 7262 StringList get systemLanguage native "SVGTextContentElement_systemLanguage_Get
ter"; |
| 7263 | 7263 |
| 7264 | 7264 |
| 7265 /** @domName SVGTextContentElement.hasExtension */ | 7265 /** @domName SVGTextContentElement.hasExtension */ |
| 7266 bool hasExtension(String extension) native "SVGTextContentElement_hasExtension
_Callback"; | 7266 bool hasExtension(String extension) native "SVGTextContentElement_hasExtension
_Callback"; |
| 7267 | 7267 |
| 7268 } | 7268 } |
| 7269 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7269 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7270 // for details. All rights reserved. Use of this source code is governed by a | 7270 // for details. All rights reserved. Use of this source code is governed by a |
| 7271 // BSD-style license that can be found in the LICENSE file. | 7271 // BSD-style license that can be found in the LICENSE file. |
| 7272 | 7272 |
| 7273 // WARNING: Do not edit - generated code. | 7273 // WARNING: Do not edit - generated code. |
| 7274 | 7274 |
| 7275 | 7275 |
| 7276 /// @domName SVGTextElement | 7276 /// @domName SVGTextElement |
| 7277 class SVGTextElement extends SVGTextPositioningElement implements SVGTransformab
le { | 7277 class TextElement extends TextPositioningElement implements Transformable { |
| 7278 | 7278 |
| 7279 factory SVGTextElement() => _SVGElementFactoryProvider.createSVGElement_tag("t
ext"); | 7279 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); |
| 7280 SVGTextElement.internal(): super.internal(); | 7280 TextElement.internal(): super.internal(); |
| 7281 | 7281 |
| 7282 | 7282 |
| 7283 /** @domName SVGTextElement.farthestViewportElement */ | 7283 /** @domName SVGTextElement.farthestViewportElement */ |
| 7284 SVGElement get farthestViewportElement native "SVGTextElement_farthestViewport
Element_Getter"; | 7284 SvgElement get farthestViewportElement native "SVGTextElement_farthestViewport
Element_Getter"; |
| 7285 | 7285 |
| 7286 | 7286 |
| 7287 /** @domName SVGTextElement.nearestViewportElement */ | 7287 /** @domName SVGTextElement.nearestViewportElement */ |
| 7288 SVGElement get nearestViewportElement native "SVGTextElement_nearestViewportEl
ement_Getter"; | 7288 SvgElement get nearestViewportElement native "SVGTextElement_nearestViewportEl
ement_Getter"; |
| 7289 | 7289 |
| 7290 | 7290 |
| 7291 /** @domName SVGTextElement.getBBox */ | 7291 /** @domName SVGTextElement.getBBox */ |
| 7292 SVGRect getBBox() native "SVGTextElement_getBBox_Callback"; | 7292 Rect getBBox() native "SVGTextElement_getBBox_Callback"; |
| 7293 | 7293 |
| 7294 | 7294 |
| 7295 /** @domName SVGTextElement.getCTM */ | 7295 /** @domName SVGTextElement.getCTM */ |
| 7296 SVGMatrix getCTM() native "SVGTextElement_getCTM_Callback"; | 7296 Matrix getCTM() native "SVGTextElement_getCTM_Callback"; |
| 7297 | 7297 |
| 7298 | 7298 |
| 7299 /** @domName SVGTextElement.getScreenCTM */ | 7299 /** @domName SVGTextElement.getScreenCTM */ |
| 7300 SVGMatrix getScreenCTM() native "SVGTextElement_getScreenCTM_Callback"; | 7300 Matrix getScreenCTM() native "SVGTextElement_getScreenCTM_Callback"; |
| 7301 | 7301 |
| 7302 | 7302 |
| 7303 /** @domName SVGTextElement.getTransformToElement */ | 7303 /** @domName SVGTextElement.getTransformToElement */ |
| 7304 SVGMatrix getTransformToElement(SVGElement element) native "SVGTextElement_get
TransformToElement_Callback"; | 7304 Matrix getTransformToElement(SvgElement element) native "SVGTextElement_getTra
nsformToElement_Callback"; |
| 7305 | 7305 |
| 7306 | 7306 |
| 7307 /** @domName SVGTextElement.transform */ | 7307 /** @domName SVGTextElement.transform */ |
| 7308 SVGAnimatedTransformList get transform native "SVGTextElement_transform_Getter
"; | 7308 AnimatedTransformList get transform native "SVGTextElement_transform_Getter"; |
| 7309 | 7309 |
| 7310 } | 7310 } |
| 7311 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7311 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7312 // for details. All rights reserved. Use of this source code is governed by a | 7312 // for details. All rights reserved. Use of this source code is governed by a |
| 7313 // BSD-style license that can be found in the LICENSE file. | 7313 // BSD-style license that can be found in the LICENSE file. |
| 7314 | 7314 |
| 7315 // WARNING: Do not edit - generated code. | 7315 // WARNING: Do not edit - generated code. |
| 7316 | 7316 |
| 7317 | 7317 |
| 7318 /// @domName SVGTextPathElement | 7318 /// @domName SVGTextPathElement |
| 7319 class SVGTextPathElement extends SVGTextContentElement implements SVGURIReferenc
e { | 7319 class TextPathElement extends TextContentElement implements UriReference { |
| 7320 SVGTextPathElement.internal(): super.internal(); | 7320 TextPathElement.internal(): super.internal(); |
| 7321 | 7321 |
| 7322 static const int TEXTPATH_METHODTYPE_ALIGN = 1; | 7322 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| 7323 | 7323 |
| 7324 static const int TEXTPATH_METHODTYPE_STRETCH = 2; | 7324 static const int TEXTPATH_METHODTYPE_STRETCH = 2; |
| 7325 | 7325 |
| 7326 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; | 7326 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; |
| 7327 | 7327 |
| 7328 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; | 7328 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; |
| 7329 | 7329 |
| 7330 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; | 7330 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 7331 | 7331 |
| 7332 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; | 7332 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 7333 | 7333 |
| 7334 | 7334 |
| 7335 /** @domName SVGTextPathElement.method */ | 7335 /** @domName SVGTextPathElement.method */ |
| 7336 SVGAnimatedEnumeration get method native "SVGTextPathElement_method_Getter"; | 7336 AnimatedEnumeration get method native "SVGTextPathElement_method_Getter"; |
| 7337 | 7337 |
| 7338 | 7338 |
| 7339 /** @domName SVGTextPathElement.spacing */ | 7339 /** @domName SVGTextPathElement.spacing */ |
| 7340 SVGAnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter"; | 7340 AnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter"; |
| 7341 | 7341 |
| 7342 | 7342 |
| 7343 /** @domName SVGTextPathElement.startOffset */ | 7343 /** @domName SVGTextPathElement.startOffset */ |
| 7344 SVGAnimatedLength get startOffset native "SVGTextPathElement_startOffset_Gette
r"; | 7344 AnimatedLength get startOffset native "SVGTextPathElement_startOffset_Getter"; |
| 7345 | 7345 |
| 7346 | 7346 |
| 7347 /** @domName SVGTextPathElement.href */ | 7347 /** @domName SVGTextPathElement.href */ |
| 7348 SVGAnimatedString get href native "SVGTextPathElement_href_Getter"; | 7348 AnimatedString get href native "SVGTextPathElement_href_Getter"; |
| 7349 | 7349 |
| 7350 } | 7350 } |
| 7351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7352 // for details. All rights reserved. Use of this source code is governed by a | 7352 // for details. All rights reserved. Use of this source code is governed by a |
| 7353 // BSD-style license that can be found in the LICENSE file. | 7353 // BSD-style license that can be found in the LICENSE file. |
| 7354 | 7354 |
| 7355 // WARNING: Do not edit - generated code. | 7355 // WARNING: Do not edit - generated code. |
| 7356 | 7356 |
| 7357 | 7357 |
| 7358 /// @domName SVGTextPositioningElement | 7358 /// @domName SVGTextPositioningElement |
| 7359 class SVGTextPositioningElement extends SVGTextContentElement { | 7359 class TextPositioningElement extends TextContentElement { |
| 7360 SVGTextPositioningElement.internal(): super.internal(); | 7360 TextPositioningElement.internal(): super.internal(); |
| 7361 | 7361 |
| 7362 | 7362 |
| 7363 /** @domName SVGTextPositioningElement.dx */ | 7363 /** @domName SVGTextPositioningElement.dx */ |
| 7364 SVGAnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter"; | 7364 AnimatedLengthList get dx native "SVGTextPositioningElement_dx_Getter"; |
| 7365 | 7365 |
| 7366 | 7366 |
| 7367 /** @domName SVGTextPositioningElement.dy */ | 7367 /** @domName SVGTextPositioningElement.dy */ |
| 7368 SVGAnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter"; | 7368 AnimatedLengthList get dy native "SVGTextPositioningElement_dy_Getter"; |
| 7369 | 7369 |
| 7370 | 7370 |
| 7371 /** @domName SVGTextPositioningElement.rotate */ | 7371 /** @domName SVGTextPositioningElement.rotate */ |
| 7372 SVGAnimatedNumberList get rotate native "SVGTextPositioningElement_rotate_Gett
er"; | 7372 AnimatedNumberList get rotate native "SVGTextPositioningElement_rotate_Getter"
; |
| 7373 | 7373 |
| 7374 | 7374 |
| 7375 /** @domName SVGTextPositioningElement.x */ | 7375 /** @domName SVGTextPositioningElement.x */ |
| 7376 SVGAnimatedLengthList get x native "SVGTextPositioningElement_x_Getter"; | 7376 AnimatedLengthList get x native "SVGTextPositioningElement_x_Getter"; |
| 7377 | 7377 |
| 7378 | 7378 |
| 7379 /** @domName SVGTextPositioningElement.y */ | 7379 /** @domName SVGTextPositioningElement.y */ |
| 7380 SVGAnimatedLengthList get y native "SVGTextPositioningElement_y_Getter"; | 7380 AnimatedLengthList get y native "SVGTextPositioningElement_y_Getter"; |
| 7381 | 7381 |
| 7382 } | 7382 } |
| 7383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7384 // for details. All rights reserved. Use of this source code is governed by a | 7384 // for details. All rights reserved. Use of this source code is governed by a |
| 7385 // BSD-style license that can be found in the LICENSE file. | 7385 // BSD-style license that can be found in the LICENSE file. |
| 7386 | 7386 |
| 7387 // WARNING: Do not edit - generated code. | 7387 // WARNING: Do not edit - generated code. |
| 7388 | 7388 |
| 7389 | 7389 |
| 7390 /// @domName SVGTitleElement | 7390 /// @domName SVGTitleElement |
| 7391 class SVGTitleElement extends SVGElement implements SVGLangSpace, SVGStylable { | 7391 class TitleElement extends SvgElement implements Stylable, LangSpace { |
| 7392 | 7392 |
| 7393 factory SVGTitleElement() => _SVGElementFactoryProvider.createSVGElement_tag("
title"); | 7393 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); |
| 7394 SVGTitleElement.internal(): super.internal(); | 7394 TitleElement.internal(): super.internal(); |
| 7395 | 7395 |
| 7396 | 7396 |
| 7397 /** @domName SVGTitleElement.xmllang */ | 7397 /** @domName SVGTitleElement.xmllang */ |
| 7398 String get xmllang native "SVGTitleElement_xmllang_Getter"; | 7398 String get xmllang native "SVGTitleElement_xmllang_Getter"; |
| 7399 | 7399 |
| 7400 | 7400 |
| 7401 /** @domName SVGTitleElement.xmllang */ | 7401 /** @domName SVGTitleElement.xmllang */ |
| 7402 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter"; | 7402 void set xmllang(String value) native "SVGTitleElement_xmllang_Setter"; |
| 7403 | 7403 |
| 7404 | 7404 |
| 7405 /** @domName SVGTitleElement.xmlspace */ | 7405 /** @domName SVGTitleElement.xmlspace */ |
| 7406 String get xmlspace native "SVGTitleElement_xmlspace_Getter"; | 7406 String get xmlspace native "SVGTitleElement_xmlspace_Getter"; |
| 7407 | 7407 |
| 7408 | 7408 |
| 7409 /** @domName SVGTitleElement.xmlspace */ | 7409 /** @domName SVGTitleElement.xmlspace */ |
| 7410 void set xmlspace(String value) native "SVGTitleElement_xmlspace_Setter"; | 7410 void set xmlspace(String value) native "SVGTitleElement_xmlspace_Setter"; |
| 7411 | 7411 |
| 7412 | 7412 |
| 7413 /** @domName SVGTitleElement.className */ | 7413 /** @domName SVGTitleElement.className */ |
| 7414 SVGAnimatedString get $dom_svgClassName native "SVGTitleElement_className_Gett
er"; | 7414 AnimatedString get $dom_svgClassName native "SVGTitleElement_className_Getter"
; |
| 7415 | 7415 |
| 7416 | 7416 |
| 7417 /** @domName SVGTitleElement.style */ | 7417 /** @domName SVGTitleElement.style */ |
| 7418 CSSStyleDeclaration get style native "SVGTitleElement_style_Getter"; | 7418 CSSStyleDeclaration get style native "SVGTitleElement_style_Getter"; |
| 7419 | 7419 |
| 7420 | 7420 |
| 7421 /** @domName SVGTitleElement.getPresentationAttribute */ | 7421 /** @domName SVGTitleElement.getPresentationAttribute */ |
| 7422 CSSValue getPresentationAttribute(String name) native "SVGTitleElement_getPres
entationAttribute_Callback"; | 7422 CSSValue getPresentationAttribute(String name) native "SVGTitleElement_getPres
entationAttribute_Callback"; |
| 7423 | 7423 |
| 7424 } | 7424 } |
| 7425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7425 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7426 // for details. All rights reserved. Use of this source code is governed by a | 7426 // for details. All rights reserved. Use of this source code is governed by a |
| 7427 // BSD-style license that can be found in the LICENSE file. | 7427 // BSD-style license that can be found in the LICENSE file. |
| 7428 | 7428 |
| 7429 // WARNING: Do not edit - generated code. | 7429 // WARNING: Do not edit - generated code. |
| 7430 | 7430 |
| 7431 | 7431 |
| 7432 /// @domName SVGTransform | 7432 /// @domName SVGTransform |
| 7433 class SVGTransform extends NativeFieldWrapperClass1 { | 7433 class Transform extends NativeFieldWrapperClass1 { |
| 7434 SVGTransform.internal(); | 7434 Transform.internal(); |
| 7435 | 7435 |
| 7436 static const int SVG_TRANSFORM_MATRIX = 1; | 7436 static const int SVG_TRANSFORM_MATRIX = 1; |
| 7437 | 7437 |
| 7438 static const int SVG_TRANSFORM_ROTATE = 4; | 7438 static const int SVG_TRANSFORM_ROTATE = 4; |
| 7439 | 7439 |
| 7440 static const int SVG_TRANSFORM_SCALE = 3; | 7440 static const int SVG_TRANSFORM_SCALE = 3; |
| 7441 | 7441 |
| 7442 static const int SVG_TRANSFORM_SKEWX = 5; | 7442 static const int SVG_TRANSFORM_SKEWX = 5; |
| 7443 | 7443 |
| 7444 static const int SVG_TRANSFORM_SKEWY = 6; | 7444 static const int SVG_TRANSFORM_SKEWY = 6; |
| 7445 | 7445 |
| 7446 static const int SVG_TRANSFORM_TRANSLATE = 2; | 7446 static const int SVG_TRANSFORM_TRANSLATE = 2; |
| 7447 | 7447 |
| 7448 static const int SVG_TRANSFORM_UNKNOWN = 0; | 7448 static const int SVG_TRANSFORM_UNKNOWN = 0; |
| 7449 | 7449 |
| 7450 | 7450 |
| 7451 /** @domName SVGTransform.angle */ | 7451 /** @domName SVGTransform.angle */ |
| 7452 num get angle native "SVGTransform_angle_Getter"; | 7452 num get angle native "SVGTransform_angle_Getter"; |
| 7453 | 7453 |
| 7454 | 7454 |
| 7455 /** @domName SVGTransform.matrix */ | 7455 /** @domName SVGTransform.matrix */ |
| 7456 SVGMatrix get matrix native "SVGTransform_matrix_Getter"; | 7456 Matrix get matrix native "SVGTransform_matrix_Getter"; |
| 7457 | 7457 |
| 7458 | 7458 |
| 7459 /** @domName SVGTransform.type */ | 7459 /** @domName SVGTransform.type */ |
| 7460 int get type native "SVGTransform_type_Getter"; | 7460 int get type native "SVGTransform_type_Getter"; |
| 7461 | 7461 |
| 7462 | 7462 |
| 7463 /** @domName SVGTransform.setMatrix */ | 7463 /** @domName SVGTransform.setMatrix */ |
| 7464 void setMatrix(SVGMatrix matrix) native "SVGTransform_setMatrix_Callback"; | 7464 void setMatrix(Matrix matrix) native "SVGTransform_setMatrix_Callback"; |
| 7465 | 7465 |
| 7466 | 7466 |
| 7467 /** @domName SVGTransform.setRotate */ | 7467 /** @domName SVGTransform.setRotate */ |
| 7468 void setRotate(num angle, num cx, num cy) native "SVGTransform_setRotate_Callb
ack"; | 7468 void setRotate(num angle, num cx, num cy) native "SVGTransform_setRotate_Callb
ack"; |
| 7469 | 7469 |
| 7470 | 7470 |
| 7471 /** @domName SVGTransform.setScale */ | 7471 /** @domName SVGTransform.setScale */ |
| 7472 void setScale(num sx, num sy) native "SVGTransform_setScale_Callback"; | 7472 void setScale(num sx, num sy) native "SVGTransform_setScale_Callback"; |
| 7473 | 7473 |
| 7474 | 7474 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 7485 | 7485 |
| 7486 } | 7486 } |
| 7487 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7487 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7488 // for details. All rights reserved. Use of this source code is governed by a | 7488 // for details. All rights reserved. Use of this source code is governed by a |
| 7489 // BSD-style license that can be found in the LICENSE file. | 7489 // BSD-style license that can be found in the LICENSE file. |
| 7490 | 7490 |
| 7491 // WARNING: Do not edit - generated code. | 7491 // WARNING: Do not edit - generated code. |
| 7492 | 7492 |
| 7493 | 7493 |
| 7494 /// @domName SVGTransformList | 7494 /// @domName SVGTransformList |
| 7495 class SVGTransformList extends NativeFieldWrapperClass1 implements List<SVGTrans
form> { | 7495 class TransformList extends NativeFieldWrapperClass1 implements List<Transform>
{ |
| 7496 SVGTransformList.internal(); | 7496 TransformList.internal(); |
| 7497 | 7497 |
| 7498 | 7498 |
| 7499 /** @domName SVGTransformList.numberOfItems */ | 7499 /** @domName SVGTransformList.numberOfItems */ |
| 7500 int get numberOfItems native "SVGTransformList_numberOfItems_Getter"; | 7500 int get numberOfItems native "SVGTransformList_numberOfItems_Getter"; |
| 7501 | 7501 |
| 7502 SVGTransform operator[](int index) native "SVGTransformList_item_Callback"; | 7502 Transform operator[](int index) native "SVGTransformList_item_Callback"; |
| 7503 | 7503 |
| 7504 void operator[]=(int index, SVGTransform value) { | 7504 void operator[]=(int index, Transform value) { |
| 7505 throw new UnsupportedError("Cannot assign element of immutable List."); | 7505 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 7506 } | 7506 } |
| 7507 // -- start List<SVGTransform> mixins. | 7507 // -- start List<Transform> mixins. |
| 7508 // SVGTransform is the element type. | 7508 // Transform is the element type. |
| 7509 | 7509 |
| 7510 // From Iterable<SVGTransform>: | 7510 // From Iterable<Transform>: |
| 7511 | 7511 |
| 7512 Iterator<SVGTransform> iterator() { | 7512 Iterator<Transform> iterator() { |
| 7513 // Note: NodeLists are not fixed size. And most probably length shouldn't | 7513 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 7514 // be cached in both iterator _and_ forEach method. For now caching it | 7514 // be cached in both iterator _and_ forEach method. For now caching it |
| 7515 // for consistency. | 7515 // for consistency. |
| 7516 return new FixedSizeListIterator<SVGTransform>(this); | 7516 return new FixedSizeListIterator<Transform>(this); |
| 7517 } | 7517 } |
| 7518 | 7518 |
| 7519 // From Collection<SVGTransform>: | 7519 // From Collection<Transform>: |
| 7520 | 7520 |
| 7521 void add(SVGTransform value) { | 7521 void add(Transform value) { |
| 7522 throw new UnsupportedError("Cannot add to immutable List."); | 7522 throw new UnsupportedError("Cannot add to immutable List."); |
| 7523 } | 7523 } |
| 7524 | 7524 |
| 7525 void addLast(SVGTransform value) { | 7525 void addLast(Transform value) { |
| 7526 throw new UnsupportedError("Cannot add to immutable List."); | 7526 throw new UnsupportedError("Cannot add to immutable List."); |
| 7527 } | 7527 } |
| 7528 | 7528 |
| 7529 void addAll(Collection<SVGTransform> collection) { | 7529 void addAll(Collection<Transform> collection) { |
| 7530 throw new UnsupportedError("Cannot add to immutable List."); | 7530 throw new UnsupportedError("Cannot add to immutable List."); |
| 7531 } | 7531 } |
| 7532 | 7532 |
| 7533 bool contains(SVGTransform element) => _Collections.contains(this, element); | 7533 bool contains(Transform element) => _Collections.contains(this, element); |
| 7534 | 7534 |
| 7535 void forEach(void f(SVGTransform element)) => _Collections.forEach(this, f); | 7535 void forEach(void f(Transform element)) => _Collections.forEach(this, f); |
| 7536 | 7536 |
| 7537 Collection map(f(SVGTransform element)) => _Collections.map(this, [], f); | 7537 Collection map(f(Transform element)) => _Collections.map(this, [], f); |
| 7538 | 7538 |
| 7539 Collection<SVGTransform> filter(bool f(SVGTransform element)) => | 7539 Collection<Transform> filter(bool f(Transform element)) => |
| 7540 _Collections.filter(this, <SVGTransform>[], f); | 7540 _Collections.filter(this, <Transform>[], f); |
| 7541 | 7541 |
| 7542 bool every(bool f(SVGTransform element)) => _Collections.every(this, f); | 7542 bool every(bool f(Transform element)) => _Collections.every(this, f); |
| 7543 | 7543 |
| 7544 bool some(bool f(SVGTransform element)) => _Collections.some(this, f); | 7544 bool some(bool f(Transform element)) => _Collections.some(this, f); |
| 7545 | 7545 |
| 7546 bool get isEmpty => this.length == 0; | 7546 bool get isEmpty => this.length == 0; |
| 7547 | 7547 |
| 7548 // From List<SVGTransform>: | 7548 // From List<Transform>: |
| 7549 | 7549 |
| 7550 void sort([Comparator<SVGTransform> compare = Comparable.compare]) { | 7550 void sort([Comparator<Transform> compare = Comparable.compare]) { |
| 7551 throw new UnsupportedError("Cannot sort immutable List."); | 7551 throw new UnsupportedError("Cannot sort immutable List."); |
| 7552 } | 7552 } |
| 7553 | 7553 |
| 7554 int indexOf(SVGTransform element, [int start = 0]) => | 7554 int indexOf(Transform element, [int start = 0]) => |
| 7555 _Lists.indexOf(this, element, start, this.length); | 7555 _Lists.indexOf(this, element, start, this.length); |
| 7556 | 7556 |
| 7557 int lastIndexOf(SVGTransform element, [int start]) { | 7557 int lastIndexOf(Transform element, [int start]) { |
| 7558 if (start == null) start = length - 1; | 7558 if (start == null) start = length - 1; |
| 7559 return _Lists.lastIndexOf(this, element, start); | 7559 return _Lists.lastIndexOf(this, element, start); |
| 7560 } | 7560 } |
| 7561 | 7561 |
| 7562 SVGTransform get first => this[0]; | 7562 Transform get first => this[0]; |
| 7563 | 7563 |
| 7564 SVGTransform get last => this[length - 1]; | 7564 Transform get last => this[length - 1]; |
| 7565 | 7565 |
| 7566 SVGTransform removeLast() { | 7566 Transform removeLast() { |
| 7567 throw new UnsupportedError("Cannot removeLast on immutable List."); | 7567 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 7568 } | 7568 } |
| 7569 | 7569 |
| 7570 void setRange(int start, int rangeLength, List<SVGTransform> from, [int startF
rom]) { | 7570 void setRange(int start, int rangeLength, List<Transform> from, [int startFrom
]) { |
| 7571 throw new UnsupportedError("Cannot setRange on immutable List."); | 7571 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 7572 } | 7572 } |
| 7573 | 7573 |
| 7574 void removeRange(int start, int rangeLength) { | 7574 void removeRange(int start, int rangeLength) { |
| 7575 throw new UnsupportedError("Cannot removeRange on immutable List."); | 7575 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 7576 } | 7576 } |
| 7577 | 7577 |
| 7578 void insertRange(int start, int rangeLength, [SVGTransform initialValue]) { | 7578 void insertRange(int start, int rangeLength, [Transform initialValue]) { |
| 7579 throw new UnsupportedError("Cannot insertRange on immutable List."); | 7579 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 7580 } | 7580 } |
| 7581 | 7581 |
| 7582 List<SVGTransform> getRange(int start, int rangeLength) => | 7582 List<Transform> getRange(int start, int rangeLength) => |
| 7583 _Lists.getRange(this, start, rangeLength, <SVGTransform>[]); | 7583 _Lists.getRange(this, start, rangeLength, <Transform>[]); |
| 7584 | 7584 |
| 7585 // -- end List<SVGTransform> mixins. | 7585 // -- end List<Transform> mixins. |
| 7586 | 7586 |
| 7587 | 7587 |
| 7588 /** @domName SVGTransformList.appendItem */ | 7588 /** @domName SVGTransformList.appendItem */ |
| 7589 SVGTransform appendItem(SVGTransform item) native "SVGTransformList_appendItem
_Callback"; | 7589 Transform appendItem(Transform item) native "SVGTransformList_appendItem_Callb
ack"; |
| 7590 | 7590 |
| 7591 | 7591 |
| 7592 /** @domName SVGTransformList.clear */ | 7592 /** @domName SVGTransformList.clear */ |
| 7593 void clear() native "SVGTransformList_clear_Callback"; | 7593 void clear() native "SVGTransformList_clear_Callback"; |
| 7594 | 7594 |
| 7595 | 7595 |
| 7596 /** @domName SVGTransformList.consolidate */ | 7596 /** @domName SVGTransformList.consolidate */ |
| 7597 SVGTransform consolidate() native "SVGTransformList_consolidate_Callback"; | 7597 Transform consolidate() native "SVGTransformList_consolidate_Callback"; |
| 7598 | 7598 |
| 7599 | 7599 |
| 7600 /** @domName SVGTransformList.createSVGTransformFromMatrix */ | 7600 /** @domName SVGTransformList.createSVGTransformFromMatrix */ |
| 7601 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native "SVGTransfo
rmList_createSVGTransformFromMatrix_Callback"; | 7601 Transform createSVGTransformFromMatrix(Matrix matrix) native "SVGTransformList
_createSVGTransformFromMatrix_Callback"; |
| 7602 | 7602 |
| 7603 | 7603 |
| 7604 /** @domName SVGTransformList.getItem */ | 7604 /** @domName SVGTransformList.getItem */ |
| 7605 SVGTransform getItem(int index) native "SVGTransformList_getItem_Callback"; | 7605 Transform getItem(int index) native "SVGTransformList_getItem_Callback"; |
| 7606 | 7606 |
| 7607 | 7607 |
| 7608 /** @domName SVGTransformList.initialize */ | 7608 /** @domName SVGTransformList.initialize */ |
| 7609 SVGTransform initialize(SVGTransform item) native "SVGTransformList_initialize
_Callback"; | 7609 Transform initialize(Transform item) native "SVGTransformList_initialize_Callb
ack"; |
| 7610 | 7610 |
| 7611 | 7611 |
| 7612 /** @domName SVGTransformList.insertItemBefore */ | 7612 /** @domName SVGTransformList.insertItemBefore */ |
| 7613 SVGTransform insertItemBefore(SVGTransform item, int index) native "SVGTransfo
rmList_insertItemBefore_Callback"; | 7613 Transform insertItemBefore(Transform item, int index) native "SVGTransformList
_insertItemBefore_Callback"; |
| 7614 | 7614 |
| 7615 | 7615 |
| 7616 /** @domName SVGTransformList.removeItem */ | 7616 /** @domName SVGTransformList.removeItem */ |
| 7617 SVGTransform removeItem(int index) native "SVGTransformList_removeItem_Callbac
k"; | 7617 Transform removeItem(int index) native "SVGTransformList_removeItem_Callback"; |
| 7618 | 7618 |
| 7619 | 7619 |
| 7620 /** @domName SVGTransformList.replaceItem */ | 7620 /** @domName SVGTransformList.replaceItem */ |
| 7621 SVGTransform replaceItem(SVGTransform item, int index) native "SVGTransformLis
t_replaceItem_Callback"; | 7621 Transform replaceItem(Transform item, int index) native "SVGTransformList_repl
aceItem_Callback"; |
| 7622 | 7622 |
| 7623 } | 7623 } |
| 7624 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7624 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7625 // for details. All rights reserved. Use of this source code is governed by a | 7625 // for details. All rights reserved. Use of this source code is governed by a |
| 7626 // BSD-style license that can be found in the LICENSE file. | 7626 // BSD-style license that can be found in the LICENSE file. |
| 7627 | 7627 |
| 7628 // WARNING: Do not edit - generated code. | 7628 // WARNING: Do not edit - generated code. |
| 7629 | 7629 |
| 7630 | 7630 |
| 7631 /// @domName SVGTransformable | 7631 /// @domName SVGTransformable |
| 7632 class SVGTransformable extends NativeFieldWrapperClass1 implements SVGLocatable
{ | 7632 class Transformable extends NativeFieldWrapperClass1 implements Locatable { |
| 7633 SVGTransformable.internal(); | 7633 Transformable.internal(); |
| 7634 | 7634 |
| 7635 | 7635 |
| 7636 /** @domName SVGTransformable.transform */ | 7636 /** @domName SVGTransformable.transform */ |
| 7637 SVGAnimatedTransformList get transform native "SVGTransformable_transform_Gett
er"; | 7637 AnimatedTransformList get transform native "SVGTransformable_transform_Getter"
; |
| 7638 | 7638 |
| 7639 | 7639 |
| 7640 /** @domName SVGTransformable.farthestViewportElement */ | 7640 /** @domName SVGTransformable.farthestViewportElement */ |
| 7641 SVGElement get farthestViewportElement native "SVGTransformable_farthestViewpo
rtElement_Getter"; | 7641 SvgElement get farthestViewportElement native "SVGTransformable_farthestViewpo
rtElement_Getter"; |
| 7642 | 7642 |
| 7643 | 7643 |
| 7644 /** @domName SVGTransformable.nearestViewportElement */ | 7644 /** @domName SVGTransformable.nearestViewportElement */ |
| 7645 SVGElement get nearestViewportElement native "SVGTransformable_nearestViewport
Element_Getter"; | 7645 SvgElement get nearestViewportElement native "SVGTransformable_nearestViewport
Element_Getter"; |
| 7646 | 7646 |
| 7647 | 7647 |
| 7648 /** @domName SVGTransformable.getBBox */ | 7648 /** @domName SVGTransformable.getBBox */ |
| 7649 SVGRect getBBox() native "SVGTransformable_getBBox_Callback"; | 7649 Rect getBBox() native "SVGTransformable_getBBox_Callback"; |
| 7650 | 7650 |
| 7651 | 7651 |
| 7652 /** @domName SVGTransformable.getCTM */ | 7652 /** @domName SVGTransformable.getCTM */ |
| 7653 SVGMatrix getCTM() native "SVGTransformable_getCTM_Callback"; | 7653 Matrix getCTM() native "SVGTransformable_getCTM_Callback"; |
| 7654 | 7654 |
| 7655 | 7655 |
| 7656 /** @domName SVGTransformable.getScreenCTM */ | 7656 /** @domName SVGTransformable.getScreenCTM */ |
| 7657 SVGMatrix getScreenCTM() native "SVGTransformable_getScreenCTM_Callback"; | 7657 Matrix getScreenCTM() native "SVGTransformable_getScreenCTM_Callback"; |
| 7658 | 7658 |
| 7659 | 7659 |
| 7660 /** @domName SVGTransformable.getTransformToElement */ | 7660 /** @domName SVGTransformable.getTransformToElement */ |
| 7661 SVGMatrix getTransformToElement(SVGElement element) native "SVGTransformable_g
etTransformToElement_Callback"; | 7661 Matrix getTransformToElement(SvgElement element) native "SVGTransformable_getT
ransformToElement_Callback"; |
| 7662 | 7662 |
| 7663 } | 7663 } |
| 7664 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7664 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7665 // for details. All rights reserved. Use of this source code is governed by a | 7665 // for details. All rights reserved. Use of this source code is governed by a |
| 7666 // BSD-style license that can be found in the LICENSE file. | 7666 // BSD-style license that can be found in the LICENSE file. |
| 7667 | 7667 |
| 7668 // WARNING: Do not edit - generated code. | 7668 // WARNING: Do not edit - generated code. |
| 7669 | 7669 |
| 7670 | 7670 |
| 7671 /// @domName SVGURIReference | 7671 /// @domName SVGUnitTypes |
| 7672 class SVGURIReference extends NativeFieldWrapperClass1 { | 7672 class UnitTypes extends NativeFieldWrapperClass1 { |
| 7673 SVGURIReference.internal(); | 7673 UnitTypes.internal(); |
| 7674 | 7674 |
| 7675 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 7675 | 7676 |
| 7676 /** @domName SVGURIReference.href */ | 7677 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 7677 SVGAnimatedString get href native "SVGURIReference_href_Getter"; | 7678 |
| 7679 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 7678 | 7680 |
| 7679 } | 7681 } |
| 7680 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7682 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7681 // for details. All rights reserved. Use of this source code is governed by a | 7683 // for details. All rights reserved. Use of this source code is governed by a |
| 7682 // BSD-style license that can be found in the LICENSE file. | 7684 // BSD-style license that can be found in the LICENSE file. |
| 7683 | 7685 |
| 7684 // WARNING: Do not edit - generated code. | 7686 // WARNING: Do not edit - generated code. |
| 7685 | 7687 |
| 7686 | 7688 |
| 7687 /// @domName SVGUnitTypes | 7689 /// @domName SVGURIReference |
| 7688 class SVGUnitTypes extends NativeFieldWrapperClass1 { | 7690 class UriReference extends NativeFieldWrapperClass1 { |
| 7689 SVGUnitTypes.internal(); | 7691 UriReference.internal(); |
| 7690 | 7692 |
| 7691 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | |
| 7692 | 7693 |
| 7693 static const int SVG_UNIT_TYPE_UNKNOWN = 0; | 7694 /** @domName SVGURIReference.href */ |
| 7694 | 7695 AnimatedString get href native "SVGURIReference_href_Getter"; |
| 7695 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | |
| 7696 | 7696 |
| 7697 } | 7697 } |
| 7698 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7698 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7699 // for details. All rights reserved. Use of this source code is governed by a | 7699 // for details. All rights reserved. Use of this source code is governed by a |
| 7700 // BSD-style license that can be found in the LICENSE file. | 7700 // BSD-style license that can be found in the LICENSE file. |
| 7701 | 7701 |
| 7702 // WARNING: Do not edit - generated code. | 7702 // WARNING: Do not edit - generated code. |
| 7703 | 7703 |
| 7704 | 7704 |
| 7705 /// @domName SVGUseElement | 7705 /// @domName SVGUseElement |
| 7706 class SVGUseElement extends SVGElement implements SVGLangSpace, SVGTests, SVGSty
lable, SVGURIReference, SVGExternalResourcesRequired, SVGTransformable { | 7706 class UseElement extends SvgElement implements Transformable, Tests, UriReferenc
e, Stylable, ExternalResourcesRequired, LangSpace { |
| 7707 | 7707 |
| 7708 factory SVGUseElement() => _SVGElementFactoryProvider.createSVGElement_tag("us
e"); | 7708 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; |
| 7709 SVGUseElement.internal(): super.internal(); | 7709 UseElement.internal(): super.internal(); |
| 7710 | 7710 |
| 7711 | 7711 |
| 7712 /** @domName SVGUseElement.animatedInstanceRoot */ | 7712 /** @domName SVGUseElement.animatedInstanceRoot */ |
| 7713 SVGElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInst
anceRoot_Getter"; | 7713 ElementInstance get animatedInstanceRoot native "SVGUseElement_animatedInstanc
eRoot_Getter"; |
| 7714 | 7714 |
| 7715 | 7715 |
| 7716 /** @domName SVGUseElement.height */ | 7716 /** @domName SVGUseElement.height */ |
| 7717 SVGAnimatedLength get height native "SVGUseElement_height_Getter"; | 7717 AnimatedLength get height native "SVGUseElement_height_Getter"; |
| 7718 | 7718 |
| 7719 | 7719 |
| 7720 /** @domName SVGUseElement.instanceRoot */ | 7720 /** @domName SVGUseElement.instanceRoot */ |
| 7721 SVGElementInstance get instanceRoot native "SVGUseElement_instanceRoot_Getter"
; | 7721 ElementInstance get instanceRoot native "SVGUseElement_instanceRoot_Getter"; |
| 7722 | 7722 |
| 7723 | 7723 |
| 7724 /** @domName SVGUseElement.width */ | 7724 /** @domName SVGUseElement.width */ |
| 7725 SVGAnimatedLength get width native "SVGUseElement_width_Getter"; | 7725 AnimatedLength get width native "SVGUseElement_width_Getter"; |
| 7726 | 7726 |
| 7727 | 7727 |
| 7728 /** @domName SVGUseElement.x */ | 7728 /** @domName SVGUseElement.x */ |
| 7729 SVGAnimatedLength get x native "SVGUseElement_x_Getter"; | 7729 AnimatedLength get x native "SVGUseElement_x_Getter"; |
| 7730 | 7730 |
| 7731 | 7731 |
| 7732 /** @domName SVGUseElement.y */ | 7732 /** @domName SVGUseElement.y */ |
| 7733 SVGAnimatedLength get y native "SVGUseElement_y_Getter"; | 7733 AnimatedLength get y native "SVGUseElement_y_Getter"; |
| 7734 | 7734 |
| 7735 | 7735 |
| 7736 /** @domName SVGUseElement.externalResourcesRequired */ | 7736 /** @domName SVGUseElement.externalResourcesRequired */ |
| 7737 SVGAnimatedBoolean get externalResourcesRequired native "SVGUseElement_externa
lResourcesRequired_Getter"; | 7737 AnimatedBoolean get externalResourcesRequired native "SVGUseElement_externalRe
sourcesRequired_Getter"; |
| 7738 | 7738 |
| 7739 | 7739 |
| 7740 /** @domName SVGUseElement.xmllang */ | 7740 /** @domName SVGUseElement.xmllang */ |
| 7741 String get xmllang native "SVGUseElement_xmllang_Getter"; | 7741 String get xmllang native "SVGUseElement_xmllang_Getter"; |
| 7742 | 7742 |
| 7743 | 7743 |
| 7744 /** @domName SVGUseElement.xmllang */ | 7744 /** @domName SVGUseElement.xmllang */ |
| 7745 void set xmllang(String value) native "SVGUseElement_xmllang_Setter"; | 7745 void set xmllang(String value) native "SVGUseElement_xmllang_Setter"; |
| 7746 | 7746 |
| 7747 | 7747 |
| 7748 /** @domName SVGUseElement.xmlspace */ | 7748 /** @domName SVGUseElement.xmlspace */ |
| 7749 String get xmlspace native "SVGUseElement_xmlspace_Getter"; | 7749 String get xmlspace native "SVGUseElement_xmlspace_Getter"; |
| 7750 | 7750 |
| 7751 | 7751 |
| 7752 /** @domName SVGUseElement.xmlspace */ | 7752 /** @domName SVGUseElement.xmlspace */ |
| 7753 void set xmlspace(String value) native "SVGUseElement_xmlspace_Setter"; | 7753 void set xmlspace(String value) native "SVGUseElement_xmlspace_Setter"; |
| 7754 | 7754 |
| 7755 | 7755 |
| 7756 /** @domName SVGUseElement.farthestViewportElement */ | 7756 /** @domName SVGUseElement.farthestViewportElement */ |
| 7757 SVGElement get farthestViewportElement native "SVGUseElement_farthestViewportE
lement_Getter"; | 7757 SvgElement get farthestViewportElement native "SVGUseElement_farthestViewportE
lement_Getter"; |
| 7758 | 7758 |
| 7759 | 7759 |
| 7760 /** @domName SVGUseElement.nearestViewportElement */ | 7760 /** @domName SVGUseElement.nearestViewportElement */ |
| 7761 SVGElement get nearestViewportElement native "SVGUseElement_nearestViewportEle
ment_Getter"; | 7761 SvgElement get nearestViewportElement native "SVGUseElement_nearestViewportEle
ment_Getter"; |
| 7762 | 7762 |
| 7763 | 7763 |
| 7764 /** @domName SVGUseElement.getBBox */ | 7764 /** @domName SVGUseElement.getBBox */ |
| 7765 SVGRect getBBox() native "SVGUseElement_getBBox_Callback"; | 7765 Rect getBBox() native "SVGUseElement_getBBox_Callback"; |
| 7766 | 7766 |
| 7767 | 7767 |
| 7768 /** @domName SVGUseElement.getCTM */ | 7768 /** @domName SVGUseElement.getCTM */ |
| 7769 SVGMatrix getCTM() native "SVGUseElement_getCTM_Callback"; | 7769 Matrix getCTM() native "SVGUseElement_getCTM_Callback"; |
| 7770 | 7770 |
| 7771 | 7771 |
| 7772 /** @domName SVGUseElement.getScreenCTM */ | 7772 /** @domName SVGUseElement.getScreenCTM */ |
| 7773 SVGMatrix getScreenCTM() native "SVGUseElement_getScreenCTM_Callback"; | 7773 Matrix getScreenCTM() native "SVGUseElement_getScreenCTM_Callback"; |
| 7774 | 7774 |
| 7775 | 7775 |
| 7776 /** @domName SVGUseElement.getTransformToElement */ | 7776 /** @domName SVGUseElement.getTransformToElement */ |
| 7777 SVGMatrix getTransformToElement(SVGElement element) native "SVGUseElement_getT
ransformToElement_Callback"; | 7777 Matrix getTransformToElement(SvgElement element) native "SVGUseElement_getTran
sformToElement_Callback"; |
| 7778 | 7778 |
| 7779 | 7779 |
| 7780 /** @domName SVGUseElement.className */ | 7780 /** @domName SVGUseElement.className */ |
| 7781 SVGAnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter
"; | 7781 AnimatedString get $dom_svgClassName native "SVGUseElement_className_Getter"; |
| 7782 | 7782 |
| 7783 | 7783 |
| 7784 /** @domName SVGUseElement.style */ | 7784 /** @domName SVGUseElement.style */ |
| 7785 CSSStyleDeclaration get style native "SVGUseElement_style_Getter"; | 7785 CSSStyleDeclaration get style native "SVGUseElement_style_Getter"; |
| 7786 | 7786 |
| 7787 | 7787 |
| 7788 /** @domName SVGUseElement.getPresentationAttribute */ | 7788 /** @domName SVGUseElement.getPresentationAttribute */ |
| 7789 CSSValue getPresentationAttribute(String name) native "SVGUseElement_getPresen
tationAttribute_Callback"; | 7789 CSSValue getPresentationAttribute(String name) native "SVGUseElement_getPresen
tationAttribute_Callback"; |
| 7790 | 7790 |
| 7791 | 7791 |
| 7792 /** @domName SVGUseElement.requiredExtensions */ | 7792 /** @domName SVGUseElement.requiredExtensions */ |
| 7793 SVGStringList get requiredExtensions native "SVGUseElement_requiredExtensions_
Getter"; | 7793 StringList get requiredExtensions native "SVGUseElement_requiredExtensions_Get
ter"; |
| 7794 | 7794 |
| 7795 | 7795 |
| 7796 /** @domName SVGUseElement.requiredFeatures */ | 7796 /** @domName SVGUseElement.requiredFeatures */ |
| 7797 SVGStringList get requiredFeatures native "SVGUseElement_requiredFeatures_Gett
er"; | 7797 StringList get requiredFeatures native "SVGUseElement_requiredFeatures_Getter"
; |
| 7798 | 7798 |
| 7799 | 7799 |
| 7800 /** @domName SVGUseElement.systemLanguage */ | 7800 /** @domName SVGUseElement.systemLanguage */ |
| 7801 SVGStringList get systemLanguage native "SVGUseElement_systemLanguage_Getter"; | 7801 StringList get systemLanguage native "SVGUseElement_systemLanguage_Getter"; |
| 7802 | 7802 |
| 7803 | 7803 |
| 7804 /** @domName SVGUseElement.hasExtension */ | 7804 /** @domName SVGUseElement.hasExtension */ |
| 7805 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac
k"; | 7805 bool hasExtension(String extension) native "SVGUseElement_hasExtension_Callbac
k"; |
| 7806 | 7806 |
| 7807 | 7807 |
| 7808 /** @domName SVGUseElement.transform */ | 7808 /** @domName SVGUseElement.transform */ |
| 7809 SVGAnimatedTransformList get transform native "SVGUseElement_transform_Getter"
; | 7809 AnimatedTransformList get transform native "SVGUseElement_transform_Getter"; |
| 7810 | 7810 |
| 7811 | 7811 |
| 7812 /** @domName SVGUseElement.href */ | 7812 /** @domName SVGUseElement.href */ |
| 7813 SVGAnimatedString get href native "SVGUseElement_href_Getter"; | 7813 AnimatedString get href native "SVGUseElement_href_Getter"; |
| 7814 | 7814 |
| 7815 } | 7815 } |
| 7816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7817 // for details. All rights reserved. Use of this source code is governed by a | 7817 // for details. All rights reserved. Use of this source code is governed by a |
| 7818 // BSD-style license that can be found in the LICENSE file. | 7818 // BSD-style license that can be found in the LICENSE file. |
| 7819 | 7819 |
| 7820 // WARNING: Do not edit - generated code. | 7820 // WARNING: Do not edit - generated code. |
| 7821 | 7821 |
| 7822 | 7822 |
| 7823 /// @domName SVGVKernElement | 7823 /// @domName SVGVKernElement |
| 7824 class SVGVKernElement extends SVGElement { | 7824 class VKernElement extends SvgElement { |
| 7825 | 7825 |
| 7826 factory SVGVKernElement() => _SVGElementFactoryProvider.createSVGElement_tag("
vkern"); | 7826 factory VKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("vke
rn"); |
| 7827 SVGVKernElement.internal(): super.internal(); | 7827 VKernElement.internal(): super.internal(); |
| 7828 | 7828 |
| 7829 } | 7829 } |
| 7830 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7830 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7831 // for details. All rights reserved. Use of this source code is governed by a | 7831 // for details. All rights reserved. Use of this source code is governed by a |
| 7832 // BSD-style license that can be found in the LICENSE file. | 7832 // BSD-style license that can be found in the LICENSE file. |
| 7833 | 7833 |
| 7834 // WARNING: Do not edit - generated code. | 7834 // WARNING: Do not edit - generated code. |
| 7835 | 7835 |
| 7836 | 7836 |
| 7837 /// @domName SVGViewElement | 7837 /// @domName SVGViewElement |
| 7838 class SVGViewElement extends SVGElement implements SVGFitToViewBox, SVGZoomAndPa
n, SVGExternalResourcesRequired { | 7838 class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR
equired, ZoomAndPan { |
| 7839 | 7839 |
| 7840 factory SVGViewElement() => _SVGElementFactoryProvider.createSVGElement_tag("v
iew"); | 7840 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); |
| 7841 SVGViewElement.internal(): super.internal(); | 7841 ViewElement.internal(): super.internal(); |
| 7842 | 7842 |
| 7843 | 7843 |
| 7844 /** @domName SVGViewElement.viewTarget */ | 7844 /** @domName SVGViewElement.viewTarget */ |
| 7845 SVGStringList get viewTarget native "SVGViewElement_viewTarget_Getter"; | 7845 StringList get viewTarget native "SVGViewElement_viewTarget_Getter"; |
| 7846 | 7846 |
| 7847 | 7847 |
| 7848 /** @domName SVGViewElement.externalResourcesRequired */ | 7848 /** @domName SVGViewElement.externalResourcesRequired */ |
| 7849 SVGAnimatedBoolean get externalResourcesRequired native "SVGViewElement_extern
alResourcesRequired_Getter"; | 7849 AnimatedBoolean get externalResourcesRequired native "SVGViewElement_externalR
esourcesRequired_Getter"; |
| 7850 | 7850 |
| 7851 | 7851 |
| 7852 /** @domName SVGViewElement.preserveAspectRatio */ | 7852 /** @domName SVGViewElement.preserveAspectRatio */ |
| 7853 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewElement_
preserveAspectRatio_Getter"; | 7853 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewElement_pre
serveAspectRatio_Getter"; |
| 7854 | 7854 |
| 7855 | 7855 |
| 7856 /** @domName SVGViewElement.viewBox */ | 7856 /** @domName SVGViewElement.viewBox */ |
| 7857 SVGAnimatedRect get viewBox native "SVGViewElement_viewBox_Getter"; | 7857 AnimatedRect get viewBox native "SVGViewElement_viewBox_Getter"; |
| 7858 | 7858 |
| 7859 | 7859 |
| 7860 /** @domName SVGViewElement.zoomAndPan */ | 7860 /** @domName SVGViewElement.zoomAndPan */ |
| 7861 int get zoomAndPan native "SVGViewElement_zoomAndPan_Getter"; | 7861 int get zoomAndPan native "SVGViewElement_zoomAndPan_Getter"; |
| 7862 | 7862 |
| 7863 | 7863 |
| 7864 /** @domName SVGViewElement.zoomAndPan */ | 7864 /** @domName SVGViewElement.zoomAndPan */ |
| 7865 void set zoomAndPan(int value) native "SVGViewElement_zoomAndPan_Setter"; | 7865 void set zoomAndPan(int value) native "SVGViewElement_zoomAndPan_Setter"; |
| 7866 | 7866 |
| 7867 } | 7867 } |
| 7868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7869 // for details. All rights reserved. Use of this source code is governed by a | 7869 // for details. All rights reserved. Use of this source code is governed by a |
| 7870 // BSD-style license that can be found in the LICENSE file. | 7870 // BSD-style license that can be found in the LICENSE file. |
| 7871 | 7871 |
| 7872 // WARNING: Do not edit - generated code. | 7872 // WARNING: Do not edit - generated code. |
| 7873 | 7873 |
| 7874 | 7874 |
| 7875 /// @domName SVGViewSpec | 7875 /// @domName SVGViewSpec |
| 7876 class SVGViewSpec extends NativeFieldWrapperClass1 { | 7876 class ViewSpec extends NativeFieldWrapperClass1 { |
| 7877 SVGViewSpec.internal(); | 7877 ViewSpec.internal(); |
| 7878 | 7878 |
| 7879 | 7879 |
| 7880 /** @domName SVGViewSpec.preserveAspectRatio */ | 7880 /** @domName SVGViewSpec.preserveAspectRatio */ |
| 7881 SVGAnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_pre
serveAspectRatio_Getter"; | 7881 AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGViewSpec_preser
veAspectRatio_Getter"; |
| 7882 | 7882 |
| 7883 | 7883 |
| 7884 /** @domName SVGViewSpec.preserveAspectRatioString */ | 7884 /** @domName SVGViewSpec.preserveAspectRatioString */ |
| 7885 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt
ring_Getter"; | 7885 String get preserveAspectRatioString native "SVGViewSpec_preserveAspectRatioSt
ring_Getter"; |
| 7886 | 7886 |
| 7887 | 7887 |
| 7888 /** @domName SVGViewSpec.transform */ | 7888 /** @domName SVGViewSpec.transform */ |
| 7889 SVGTransformList get transform native "SVGViewSpec_transform_Getter"; | 7889 TransformList get transform native "SVGViewSpec_transform_Getter"; |
| 7890 | 7890 |
| 7891 | 7891 |
| 7892 /** @domName SVGViewSpec.transformString */ | 7892 /** @domName SVGViewSpec.transformString */ |
| 7893 String get transformString native "SVGViewSpec_transformString_Getter"; | 7893 String get transformString native "SVGViewSpec_transformString_Getter"; |
| 7894 | 7894 |
| 7895 | 7895 |
| 7896 /** @domName SVGViewSpec.viewBox */ | 7896 /** @domName SVGViewSpec.viewBox */ |
| 7897 SVGAnimatedRect get viewBox native "SVGViewSpec_viewBox_Getter"; | 7897 AnimatedRect get viewBox native "SVGViewSpec_viewBox_Getter"; |
| 7898 | 7898 |
| 7899 | 7899 |
| 7900 /** @domName SVGViewSpec.viewBoxString */ | 7900 /** @domName SVGViewSpec.viewBoxString */ |
| 7901 String get viewBoxString native "SVGViewSpec_viewBoxString_Getter"; | 7901 String get viewBoxString native "SVGViewSpec_viewBoxString_Getter"; |
| 7902 | 7902 |
| 7903 | 7903 |
| 7904 /** @domName SVGViewSpec.viewTarget */ | 7904 /** @domName SVGViewSpec.viewTarget */ |
| 7905 SVGElement get viewTarget native "SVGViewSpec_viewTarget_Getter"; | 7905 SvgElement get viewTarget native "SVGViewSpec_viewTarget_Getter"; |
| 7906 | 7906 |
| 7907 | 7907 |
| 7908 /** @domName SVGViewSpec.viewTargetString */ | 7908 /** @domName SVGViewSpec.viewTargetString */ |
| 7909 String get viewTargetString native "SVGViewSpec_viewTargetString_Getter"; | 7909 String get viewTargetString native "SVGViewSpec_viewTargetString_Getter"; |
| 7910 | 7910 |
| 7911 | 7911 |
| 7912 /** @domName SVGViewSpec.zoomAndPan */ | 7912 /** @domName SVGViewSpec.zoomAndPan */ |
| 7913 int get zoomAndPan native "SVGViewSpec_zoomAndPan_Getter"; | 7913 int get zoomAndPan native "SVGViewSpec_zoomAndPan_Getter"; |
| 7914 | 7914 |
| 7915 | 7915 |
| 7916 /** @domName SVGViewSpec.zoomAndPan */ | 7916 /** @domName SVGViewSpec.zoomAndPan */ |
| 7917 void set zoomAndPan(int value) native "SVGViewSpec_zoomAndPan_Setter"; | 7917 void set zoomAndPan(int value) native "SVGViewSpec_zoomAndPan_Setter"; |
| 7918 | 7918 |
| 7919 } | 7919 } |
| 7920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7921 // for details. All rights reserved. Use of this source code is governed by a | 7921 // for details. All rights reserved. Use of this source code is governed by a |
| 7922 // BSD-style license that can be found in the LICENSE file. | 7922 // BSD-style license that can be found in the LICENSE file. |
| 7923 | 7923 |
| 7924 // WARNING: Do not edit - generated code. | 7924 // WARNING: Do not edit - generated code. |
| 7925 | 7925 |
| 7926 | 7926 |
| 7927 /// @domName SVGZoomAndPan | 7927 /// @domName SVGZoomAndPan |
| 7928 class SVGZoomAndPan extends NativeFieldWrapperClass1 { | 7928 class ZoomAndPan extends NativeFieldWrapperClass1 { |
| 7929 SVGZoomAndPan.internal(); | 7929 ZoomAndPan.internal(); |
| 7930 | 7930 |
| 7931 static const int SVG_ZOOMANDPAN_DISABLE = 1; | 7931 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
| 7932 | 7932 |
| 7933 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; | 7933 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 7934 | 7934 |
| 7935 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; | 7935 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; |
| 7936 | 7936 |
| 7937 | 7937 |
| 7938 /** @domName SVGZoomAndPan.zoomAndPan */ | 7938 /** @domName SVGZoomAndPan.zoomAndPan */ |
| 7939 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter"; | 7939 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter"; |
| 7940 | 7940 |
| 7941 | 7941 |
| 7942 /** @domName SVGZoomAndPan.zoomAndPan */ | 7942 /** @domName SVGZoomAndPan.zoomAndPan */ |
| 7943 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter"; | 7943 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter"; |
| 7944 | 7944 |
| 7945 } | 7945 } |
| 7946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7946 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7947 // for details. All rights reserved. Use of this source code is governed by a | 7947 // for details. All rights reserved. Use of this source code is governed by a |
| 7948 // BSD-style license that can be found in the LICENSE file. | 7948 // BSD-style license that can be found in the LICENSE file. |
| 7949 | 7949 |
| 7950 // WARNING: Do not edit - generated code. | 7950 // WARNING: Do not edit - generated code. |
| 7951 | 7951 |
| 7952 | 7952 |
| 7953 /// @domName SVGZoomEvent | 7953 /// @domName SVGZoomEvent |
| 7954 class SVGZoomEvent extends UIEvent { | 7954 class ZoomEvent extends UIEvent { |
| 7955 SVGZoomEvent.internal(): super.internal(); | 7955 ZoomEvent.internal(): super.internal(); |
| 7956 | 7956 |
| 7957 | 7957 |
| 7958 /** @domName SVGZoomEvent.newScale */ | 7958 /** @domName SVGZoomEvent.newScale */ |
| 7959 num get newScale native "SVGZoomEvent_newScale_Getter"; | 7959 num get newScale native "SVGZoomEvent_newScale_Getter"; |
| 7960 | 7960 |
| 7961 | 7961 |
| 7962 /** @domName SVGZoomEvent.newTranslate */ | 7962 /** @domName SVGZoomEvent.newTranslate */ |
| 7963 SVGPoint get newTranslate native "SVGZoomEvent_newTranslate_Getter"; | 7963 Point get newTranslate native "SVGZoomEvent_newTranslate_Getter"; |
| 7964 | 7964 |
| 7965 | 7965 |
| 7966 /** @domName SVGZoomEvent.previousScale */ | 7966 /** @domName SVGZoomEvent.previousScale */ |
| 7967 num get previousScale native "SVGZoomEvent_previousScale_Getter"; | 7967 num get previousScale native "SVGZoomEvent_previousScale_Getter"; |
| 7968 | 7968 |
| 7969 | 7969 |
| 7970 /** @domName SVGZoomEvent.previousTranslate */ | 7970 /** @domName SVGZoomEvent.previousTranslate */ |
| 7971 SVGPoint get previousTranslate native "SVGZoomEvent_previousTranslate_Getter"; | 7971 Point get previousTranslate native "SVGZoomEvent_previousTranslate_Getter"; |
| 7972 | 7972 |
| 7973 | 7973 |
| 7974 /** @domName SVGZoomEvent.zoomRectScreen */ | 7974 /** @domName SVGZoomEvent.zoomRectScreen */ |
| 7975 SVGRect get zoomRectScreen native "SVGZoomEvent_zoomRectScreen_Getter"; | 7975 Rect get zoomRectScreen native "SVGZoomEvent_zoomRectScreen_Getter"; |
| 7976 | 7976 |
| 7977 } | 7977 } |
| 7978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7979 // for details. All rights reserved. Use of this source code is governed by a | 7979 // for details. All rights reserved. Use of this source code is governed by a |
| 7980 // BSD-style license that can be found in the LICENSE file. | 7980 // BSD-style license that can be found in the LICENSE file. |
| 7981 | 7981 |
| 7982 // WARNING: Do not edit - generated code. | 7982 // WARNING: Do not edit - generated code. |
| 7983 | 7983 |
| 7984 | 7984 |
| 7985 /// @domName SVGElementInstanceList | 7985 /// @domName SVGElementInstanceList |
| 7986 class _SVGElementInstanceList extends NativeFieldWrapperClass1 implements List<S
VGElementInstance> { | 7986 class _ElementInstanceList extends NativeFieldWrapperClass1 implements List<Elem
entInstance> { |
| 7987 _SVGElementInstanceList.internal(); | 7987 _ElementInstanceList.internal(); |
| 7988 | 7988 |
| 7989 | 7989 |
| 7990 /** @domName SVGElementInstanceList.length */ | 7990 /** @domName SVGElementInstanceList.length */ |
| 7991 int get length native "SVGElementInstanceList_length_Getter"; | 7991 int get length native "SVGElementInstanceList_length_Getter"; |
| 7992 | 7992 |
| 7993 SVGElementInstance operator[](int index) native "SVGElementInstanceList_item_C
allback"; | 7993 ElementInstance operator[](int index) native "SVGElementInstanceList_item_Call
back"; |
| 7994 | 7994 |
| 7995 void operator[]=(int index, SVGElementInstance value) { | 7995 void operator[]=(int index, ElementInstance value) { |
| 7996 throw new UnsupportedError("Cannot assign element of immutable List."); | 7996 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 7997 } | 7997 } |
| 7998 // -- start List<SVGElementInstance> mixins. | 7998 // -- start List<ElementInstance> mixins. |
| 7999 // SVGElementInstance is the element type. | 7999 // ElementInstance is the element type. |
| 8000 | 8000 |
| 8001 // From Iterable<SVGElementInstance>: | 8001 // From Iterable<ElementInstance>: |
| 8002 | 8002 |
| 8003 Iterator<SVGElementInstance> iterator() { | 8003 Iterator<ElementInstance> iterator() { |
| 8004 // Note: NodeLists are not fixed size. And most probably length shouldn't | 8004 // Note: NodeLists are not fixed size. And most probably length shouldn't |
| 8005 // be cached in both iterator _and_ forEach method. For now caching it | 8005 // be cached in both iterator _and_ forEach method. For now caching it |
| 8006 // for consistency. | 8006 // for consistency. |
| 8007 return new FixedSizeListIterator<SVGElementInstance>(this); | 8007 return new FixedSizeListIterator<ElementInstance>(this); |
| 8008 } | 8008 } |
| 8009 | 8009 |
| 8010 // From Collection<SVGElementInstance>: | 8010 // From Collection<ElementInstance>: |
| 8011 | 8011 |
| 8012 void add(SVGElementInstance value) { | 8012 void add(ElementInstance value) { |
| 8013 throw new UnsupportedError("Cannot add to immutable List."); | 8013 throw new UnsupportedError("Cannot add to immutable List."); |
| 8014 } | 8014 } |
| 8015 | 8015 |
| 8016 void addLast(SVGElementInstance value) { | 8016 void addLast(ElementInstance value) { |
| 8017 throw new UnsupportedError("Cannot add to immutable List."); | 8017 throw new UnsupportedError("Cannot add to immutable List."); |
| 8018 } | 8018 } |
| 8019 | 8019 |
| 8020 void addAll(Collection<SVGElementInstance> collection) { | 8020 void addAll(Collection<ElementInstance> collection) { |
| 8021 throw new UnsupportedError("Cannot add to immutable List."); | 8021 throw new UnsupportedError("Cannot add to immutable List."); |
| 8022 } | 8022 } |
| 8023 | 8023 |
| 8024 bool contains(SVGElementInstance element) => _Collections.contains(this, eleme
nt); | 8024 bool contains(ElementInstance element) => _Collections.contains(this, element)
; |
| 8025 | 8025 |
| 8026 void forEach(void f(SVGElementInstance element)) => _Collections.forEach(this,
f); | 8026 void forEach(void f(ElementInstance element)) => _Collections.forEach(this, f)
; |
| 8027 | 8027 |
| 8028 Collection map(f(SVGElementInstance element)) => _Collections.map(this, [], f)
; | 8028 Collection map(f(ElementInstance element)) => _Collections.map(this, [], f); |
| 8029 | 8029 |
| 8030 Collection<SVGElementInstance> filter(bool f(SVGElementInstance element)) => | 8030 Collection<ElementInstance> filter(bool f(ElementInstance element)) => |
| 8031 _Collections.filter(this, <SVGElementInstance>[], f); | 8031 _Collections.filter(this, <ElementInstance>[], f); |
| 8032 | 8032 |
| 8033 bool every(bool f(SVGElementInstance element)) => _Collections.every(this, f); | 8033 bool every(bool f(ElementInstance element)) => _Collections.every(this, f); |
| 8034 | 8034 |
| 8035 bool some(bool f(SVGElementInstance element)) => _Collections.some(this, f); | 8035 bool some(bool f(ElementInstance element)) => _Collections.some(this, f); |
| 8036 | 8036 |
| 8037 bool get isEmpty => this.length == 0; | 8037 bool get isEmpty => this.length == 0; |
| 8038 | 8038 |
| 8039 // From List<SVGElementInstance>: | 8039 // From List<ElementInstance>: |
| 8040 | 8040 |
| 8041 void sort([Comparator<SVGElementInstance> compare = Comparable.compare]) { | 8041 void sort([Comparator<ElementInstance> compare = Comparable.compare]) { |
| 8042 throw new UnsupportedError("Cannot sort immutable List."); | 8042 throw new UnsupportedError("Cannot sort immutable List."); |
| 8043 } | 8043 } |
| 8044 | 8044 |
| 8045 int indexOf(SVGElementInstance element, [int start = 0]) => | 8045 int indexOf(ElementInstance element, [int start = 0]) => |
| 8046 _Lists.indexOf(this, element, start, this.length); | 8046 _Lists.indexOf(this, element, start, this.length); |
| 8047 | 8047 |
| 8048 int lastIndexOf(SVGElementInstance element, [int start]) { | 8048 int lastIndexOf(ElementInstance element, [int start]) { |
| 8049 if (start == null) start = length - 1; | 8049 if (start == null) start = length - 1; |
| 8050 return _Lists.lastIndexOf(this, element, start); | 8050 return _Lists.lastIndexOf(this, element, start); |
| 8051 } | 8051 } |
| 8052 | 8052 |
| 8053 SVGElementInstance get first => this[0]; | 8053 ElementInstance get first => this[0]; |
| 8054 | 8054 |
| 8055 SVGElementInstance get last => this[length - 1]; | 8055 ElementInstance get last => this[length - 1]; |
| 8056 | 8056 |
| 8057 SVGElementInstance removeLast() { | 8057 ElementInstance removeLast() { |
| 8058 throw new UnsupportedError("Cannot removeLast on immutable List."); | 8058 throw new UnsupportedError("Cannot removeLast on immutable List."); |
| 8059 } | 8059 } |
| 8060 | 8060 |
| 8061 void setRange(int start, int rangeLength, List<SVGElementInstance> from, [int
startFrom]) { | 8061 void setRange(int start, int rangeLength, List<ElementInstance> from, [int sta
rtFrom]) { |
| 8062 throw new UnsupportedError("Cannot setRange on immutable List."); | 8062 throw new UnsupportedError("Cannot setRange on immutable List."); |
| 8063 } | 8063 } |
| 8064 | 8064 |
| 8065 void removeRange(int start, int rangeLength) { | 8065 void removeRange(int start, int rangeLength) { |
| 8066 throw new UnsupportedError("Cannot removeRange on immutable List."); | 8066 throw new UnsupportedError("Cannot removeRange on immutable List."); |
| 8067 } | 8067 } |
| 8068 | 8068 |
| 8069 void insertRange(int start, int rangeLength, [SVGElementInstance initialValue]
) { | 8069 void insertRange(int start, int rangeLength, [ElementInstance initialValue]) { |
| 8070 throw new UnsupportedError("Cannot insertRange on immutable List."); | 8070 throw new UnsupportedError("Cannot insertRange on immutable List."); |
| 8071 } | 8071 } |
| 8072 | 8072 |
| 8073 List<SVGElementInstance> getRange(int start, int rangeLength) => | 8073 List<ElementInstance> getRange(int start, int rangeLength) => |
| 8074 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]); | 8074 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); |
| 8075 | 8075 |
| 8076 // -- end List<SVGElementInstance> mixins. | 8076 // -- end List<ElementInstance> mixins. |
| 8077 | 8077 |
| 8078 | 8078 |
| 8079 /** @domName SVGElementInstanceList.item */ | 8079 /** @domName SVGElementInstanceList.item */ |
| 8080 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac
k"; | 8080 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; |
| 8081 | 8081 |
| 8082 } | 8082 } |
| OLD | NEW |