| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Scalable Vector Graphics: | 2 * Scalable Vector Graphics: |
| 3 * Two-dimensional vector graphics with support for events and animation. | 3 * Two-dimensional vector graphics with support for events and animation. |
| 4 * | 4 * |
| 5 * For details about the features and syntax of SVG, a W3C standard, | 5 * For details about the features and syntax of SVG, a W3C standard, |
| 6 * refer to the | 6 * refer to the |
| 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). |
| 8 */ | 8 */ |
| 9 library dart.dom.svg; | 9 library dart.dom.svg; |
| 10 | 10 |
| 11 import 'dart:async'; | 11 import 'dart:async'; |
| 12 import 'dart:collection'; | 12 import 'dart:collection'; |
| 13 import 'dart:_internal' hide deprecated; | 13 import 'dart:_internal' hide deprecated; |
| 14 import 'dart:html'; | 14 import 'dart:html'; |
| 15 import 'dart:html_common'; | 15 import 'dart:html_common'; |
| 16 import 'dart:nativewrappers'; | 16 import 'dart:nativewrappers'; |
| 17 import 'dart:_blink' as _blink; | 17 import 'dart:_blink' as _blink; |
| 18 import 'dart:js' as js; | |
| 19 // DO NOT EDIT | 18 // DO NOT EDIT |
| 20 // Auto-generated dart:svg library. | 19 // Auto-generated dart:svg library. |
| 21 | 20 |
| 22 | 21 |
| 23 | 22 |
| 24 | 23 |
| 25 // Need a default constructor for constructing classes with mixins that are | |
| 26 // also extending NativeFieldWrapperClass2. Defining JsoNativeFieldWrapper | |
| 27 // extending NativeFieldWrapperClass2 creates a default constructor. | |
| 28 class JsoNativeFieldWrapper extends NativeFieldWrapperClass2 {} | |
| 29 | |
| 30 | 24 |
| 31 // FIXME: Can we make this private? | 25 // FIXME: Can we make this private? |
| 32 final svgBlinkMap = { | 26 final svgBlinkMap = { |
| 33 'SVGAElement': () => AElement, | 27 'SVGAElement': () => AElement, |
| 34 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, | 28 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement, |
| 35 'SVGAltGlyphElement': () => AltGlyphElement, | 29 'SVGAltGlyphElement': () => AltGlyphElement, |
| 36 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, | 30 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement, |
| 37 'SVGAngle': () => Angle, | 31 'SVGAngle': () => Angle, |
| 38 'SVGAnimateElement': () => AnimateElement, | 32 'SVGAnimateElement': () => AnimateElement, |
| 39 'SVGAnimateMotionElement': () => AnimateMotionElement, | 33 'SVGAnimateMotionElement': () => AnimateMotionElement, |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'SVGUnitTypes': () => UnitTypes, | 162 'SVGUnitTypes': () => UnitTypes, |
| 169 'SVGUseElement': () => UseElement, | 163 'SVGUseElement': () => UseElement, |
| 170 'SVGVKernElement': () => _SVGVKernElement, | 164 'SVGVKernElement': () => _SVGVKernElement, |
| 171 'SVGViewElement': () => ViewElement, | 165 'SVGViewElement': () => ViewElement, |
| 172 'SVGViewSpec': () => ViewSpec, | 166 'SVGViewSpec': () => ViewSpec, |
| 173 'SVGZoomAndPan': () => ZoomAndPan, | 167 'SVGZoomAndPan': () => ZoomAndPan, |
| 174 'SVGZoomEvent': () => ZoomEvent, | 168 'SVGZoomEvent': () => ZoomEvent, |
| 175 | 169 |
| 176 }; | 170 }; |
| 177 | 171 |
| 178 // FIXME: Can we make this private? | |
| 179 final svgBlinkFunctionMap = { | |
| 180 'SVGAElement': () => AElement.internalCreateAElement, | |
| 181 'SVGAltGlyphDefElement': () => _SVGAltGlyphDefElement.internalCreate_SVGAltGly
phDefElement, | |
| 182 'SVGAltGlyphElement': () => AltGlyphElement.internalCreateAltGlyphElement, | |
| 183 'SVGAltGlyphItemElement': () => _SVGAltGlyphItemElement.internalCreate_SVGAltG
lyphItemElement, | |
| 184 'SVGAngle': () => Angle.internalCreateAngle, | |
| 185 'SVGAnimateElement': () => AnimateElement.internalCreateAnimateElement, | |
| 186 'SVGAnimateMotionElement': () => AnimateMotionElement.internalCreateAnimateMot
ionElement, | |
| 187 'SVGAnimateTransformElement': () => AnimateTransformElement.internalCreateAnim
ateTransformElement, | |
| 188 'SVGAnimatedAngle': () => AnimatedAngle.internalCreateAnimatedAngle, | |
| 189 'SVGAnimatedBoolean': () => AnimatedBoolean.internalCreateAnimatedBoolean, | |
| 190 'SVGAnimatedEnumeration': () => AnimatedEnumeration.internalCreateAnimatedEnum
eration, | |
| 191 'SVGAnimatedInteger': () => AnimatedInteger.internalCreateAnimatedInteger, | |
| 192 'SVGAnimatedLength': () => AnimatedLength.internalCreateAnimatedLength, | |
| 193 'SVGAnimatedLengthList': () => AnimatedLengthList.internalCreateAnimatedLength
List, | |
| 194 'SVGAnimatedNumber': () => AnimatedNumber.internalCreateAnimatedNumber, | |
| 195 'SVGAnimatedNumberList': () => AnimatedNumberList.internalCreateAnimatedNumber
List, | |
| 196 'SVGAnimatedPreserveAspectRatio': () => AnimatedPreserveAspectRatio.internalCr
eateAnimatedPreserveAspectRatio, | |
| 197 'SVGAnimatedRect': () => AnimatedRect.internalCreateAnimatedRect, | |
| 198 'SVGAnimatedString': () => AnimatedString.internalCreateAnimatedString, | |
| 199 'SVGAnimatedTransformList': () => AnimatedTransformList.internalCreateAnimated
TransformList, | |
| 200 'SVGAnimationElement': () => AnimationElement.internalCreateAnimationElement, | |
| 201 'SVGCircleElement': () => CircleElement.internalCreateCircleElement, | |
| 202 'SVGClipPathElement': () => ClipPathElement.internalCreateClipPathElement, | |
| 203 'SVGComponentTransferFunctionElement': () => _SVGComponentTransferFunctionElem
ent.internalCreate_SVGComponentTransferFunctionElement, | |
| 204 'SVGCursorElement': () => _SVGCursorElement.internalCreate_SVGCursorElement, | |
| 205 'SVGDefsElement': () => DefsElement.internalCreateDefsElement, | |
| 206 'SVGDescElement': () => DescElement.internalCreateDescElement, | |
| 207 'SVGDiscardElement': () => DiscardElement.internalCreateDiscardElement, | |
| 208 'SVGElement': () => SvgElement.internalCreateSvgElement, | |
| 209 'SVGEllipseElement': () => EllipseElement.internalCreateEllipseElement, | |
| 210 'SVGFEBlendElement': () => FEBlendElement.internalCreateFEBlendElement, | |
| 211 'SVGFEColorMatrixElement': () => FEColorMatrixElement.internalCreateFEColorMat
rixElement, | |
| 212 'SVGFEComponentTransferElement': () => FEComponentTransferElement.internalCrea
teFEComponentTransferElement, | |
| 213 'SVGFECompositeElement': () => FECompositeElement.internalCreateFECompositeEle
ment, | |
| 214 'SVGFEConvolveMatrixElement': () => FEConvolveMatrixElement.internalCreateFECo
nvolveMatrixElement, | |
| 215 'SVGFEDiffuseLightingElement': () => FEDiffuseLightingElement.internalCreateFE
DiffuseLightingElement, | |
| 216 'SVGFEDisplacementMapElement': () => FEDisplacementMapElement.internalCreateFE
DisplacementMapElement, | |
| 217 'SVGFEDistantLightElement': () => FEDistantLightElement.internalCreateFEDistan
tLightElement, | |
| 218 'SVGFEDropShadowElement': () => _SVGFEDropShadowElement.internalCreate_SVGFEDr
opShadowElement, | |
| 219 'SVGFEFloodElement': () => FEFloodElement.internalCreateFEFloodElement, | |
| 220 'SVGFEFuncAElement': () => FEFuncAElement.internalCreateFEFuncAElement, | |
| 221 'SVGFEFuncBElement': () => FEFuncBElement.internalCreateFEFuncBElement, | |
| 222 'SVGFEFuncGElement': () => FEFuncGElement.internalCreateFEFuncGElement, | |
| 223 'SVGFEFuncRElement': () => FEFuncRElement.internalCreateFEFuncRElement, | |
| 224 'SVGFEGaussianBlurElement': () => FEGaussianBlurElement.internalCreateFEGaussi
anBlurElement, | |
| 225 'SVGFEImageElement': () => FEImageElement.internalCreateFEImageElement, | |
| 226 'SVGFEMergeElement': () => FEMergeElement.internalCreateFEMergeElement, | |
| 227 'SVGFEMergeNodeElement': () => FEMergeNodeElement.internalCreateFEMergeNodeEle
ment, | |
| 228 'SVGFEMorphologyElement': () => FEMorphologyElement.internalCreateFEMorphology
Element, | |
| 229 'SVGFEOffsetElement': () => FEOffsetElement.internalCreateFEOffsetElement, | |
| 230 'SVGFEPointLightElement': () => FEPointLightElement.internalCreateFEPointLight
Element, | |
| 231 'SVGFESpecularLightingElement': () => FESpecularLightingElement.internalCreate
FESpecularLightingElement, | |
| 232 'SVGFESpotLightElement': () => FESpotLightElement.internalCreateFESpotLightEle
ment, | |
| 233 'SVGFETileElement': () => FETileElement.internalCreateFETileElement, | |
| 234 'SVGFETurbulenceElement': () => FETurbulenceElement.internalCreateFETurbulence
Element, | |
| 235 'SVGFilterElement': () => FilterElement.internalCreateFilterElement, | |
| 236 'SVGFilterPrimitiveStandardAttributes': () => FilterPrimitiveStandardAttribute
s.internalCreateFilterPrimitiveStandardAttributes, | |
| 237 'SVGFitToViewBox': () => FitToViewBox.internalCreateFitToViewBox, | |
| 238 'SVGFontElement': () => _SVGFontElement.internalCreate_SVGFontElement, | |
| 239 'SVGFontFaceElement': () => _SVGFontFaceElement.internalCreate_SVGFontFaceElem
ent, | |
| 240 'SVGFontFaceFormatElement': () => _SVGFontFaceFormatElement.internalCreate_SVG
FontFaceFormatElement, | |
| 241 'SVGFontFaceNameElement': () => _SVGFontFaceNameElement.internalCreate_SVGFont
FaceNameElement, | |
| 242 'SVGFontFaceSrcElement': () => _SVGFontFaceSrcElement.internalCreate_SVGFontFa
ceSrcElement, | |
| 243 'SVGFontFaceUriElement': () => _SVGFontFaceUriElement.internalCreate_SVGFontFa
ceUriElement, | |
| 244 'SVGForeignObjectElement': () => ForeignObjectElement.internalCreateForeignObj
ectElement, | |
| 245 'SVGGElement': () => GElement.internalCreateGElement, | |
| 246 'SVGGeometryElement': () => GeometryElement.internalCreateGeometryElement, | |
| 247 'SVGGlyphElement': () => _SVGGlyphElement.internalCreate_SVGGlyphElement, | |
| 248 'SVGGlyphRefElement': () => _SVGGlyphRefElement.internalCreate_SVGGlyphRefElem
ent, | |
| 249 'SVGGradientElement': () => _GradientElement.internalCreate_GradientElement, | |
| 250 'SVGGraphicsElement': () => GraphicsElement.internalCreateGraphicsElement, | |
| 251 'SVGHKernElement': () => _SVGHKernElement.internalCreate_SVGHKernElement, | |
| 252 'SVGImageElement': () => ImageElement.internalCreateImageElement, | |
| 253 'SVGLength': () => Length.internalCreateLength, | |
| 254 'SVGLengthList': () => LengthList.internalCreateLengthList, | |
| 255 'SVGLineElement': () => LineElement.internalCreateLineElement, | |
| 256 'SVGLinearGradientElement': () => LinearGradientElement.internalCreateLinearGr
adientElement, | |
| 257 'SVGMPathElement': () => _SVGMPathElement.internalCreate_SVGMPathElement, | |
| 258 'SVGMarkerElement': () => MarkerElement.internalCreateMarkerElement, | |
| 259 'SVGMaskElement': () => MaskElement.internalCreateMaskElement, | |
| 260 'SVGMatrix': () => Matrix.internalCreateMatrix, | |
| 261 'SVGMetadataElement': () => MetadataElement.internalCreateMetadataElement, | |
| 262 'SVGMissingGlyphElement': () => _SVGMissingGlyphElement.internalCreate_SVGMiss
ingGlyphElement, | |
| 263 'SVGNumber': () => Number.internalCreateNumber, | |
| 264 'SVGNumberList': () => NumberList.internalCreateNumberList, | |
| 265 'SVGPathElement': () => PathElement.internalCreatePathElement, | |
| 266 'SVGPathSeg': () => PathSeg.internalCreatePathSeg, | |
| 267 'SVGPathSegArcAbs': () => PathSegArcAbs.internalCreatePathSegArcAbs, | |
| 268 'SVGPathSegArcRel': () => PathSegArcRel.internalCreatePathSegArcRel, | |
| 269 'SVGPathSegClosePath': () => PathSegClosePath.internalCreatePathSegClosePath, | |
| 270 'SVGPathSegCurvetoCubicAbs': () => PathSegCurvetoCubicAbs.internalCreatePathSe
gCurvetoCubicAbs, | |
| 271 'SVGPathSegCurvetoCubicRel': () => PathSegCurvetoCubicRel.internalCreatePathSe
gCurvetoCubicRel, | |
| 272 'SVGPathSegCurvetoCubicSmoothAbs': () => PathSegCurvetoCubicSmoothAbs.internal
CreatePathSegCurvetoCubicSmoothAbs, | |
| 273 'SVGPathSegCurvetoCubicSmoothRel': () => PathSegCurvetoCubicSmoothRel.internal
CreatePathSegCurvetoCubicSmoothRel, | |
| 274 'SVGPathSegCurvetoQuadraticAbs': () => PathSegCurvetoQuadraticAbs.internalCrea
tePathSegCurvetoQuadraticAbs, | |
| 275 'SVGPathSegCurvetoQuadraticRel': () => PathSegCurvetoQuadraticRel.internalCrea
tePathSegCurvetoQuadraticRel, | |
| 276 'SVGPathSegCurvetoQuadraticSmoothAbs': () => PathSegCurvetoQuadraticSmoothAbs.
internalCreatePathSegCurvetoQuadraticSmoothAbs, | |
| 277 'SVGPathSegCurvetoQuadraticSmoothRel': () => PathSegCurvetoQuadraticSmoothRel.
internalCreatePathSegCurvetoQuadraticSmoothRel, | |
| 278 'SVGPathSegLinetoAbs': () => PathSegLinetoAbs.internalCreatePathSegLinetoAbs, | |
| 279 'SVGPathSegLinetoHorizontalAbs': () => PathSegLinetoHorizontalAbs.internalCrea
tePathSegLinetoHorizontalAbs, | |
| 280 'SVGPathSegLinetoHorizontalRel': () => PathSegLinetoHorizontalRel.internalCrea
tePathSegLinetoHorizontalRel, | |
| 281 'SVGPathSegLinetoRel': () => PathSegLinetoRel.internalCreatePathSegLinetoRel, | |
| 282 'SVGPathSegLinetoVerticalAbs': () => PathSegLinetoVerticalAbs.internalCreatePa
thSegLinetoVerticalAbs, | |
| 283 'SVGPathSegLinetoVerticalRel': () => PathSegLinetoVerticalRel.internalCreatePa
thSegLinetoVerticalRel, | |
| 284 'SVGPathSegList': () => PathSegList.internalCreatePathSegList, | |
| 285 'SVGPathSegMovetoAbs': () => PathSegMovetoAbs.internalCreatePathSegMovetoAbs, | |
| 286 'SVGPathSegMovetoRel': () => PathSegMovetoRel.internalCreatePathSegMovetoRel, | |
| 287 'SVGPatternElement': () => PatternElement.internalCreatePatternElement, | |
| 288 'SVGPoint': () => Point.internalCreatePoint, | |
| 289 'SVGPointList': () => PointList.internalCreatePointList, | |
| 290 'SVGPolygonElement': () => PolygonElement.internalCreatePolygonElement, | |
| 291 'SVGPolylineElement': () => PolylineElement.internalCreatePolylineElement, | |
| 292 'SVGPreserveAspectRatio': () => PreserveAspectRatio.internalCreatePreserveAspe
ctRatio, | |
| 293 'SVGRadialGradientElement': () => RadialGradientElement.internalCreateRadialGr
adientElement, | |
| 294 'SVGRect': () => Rect.internalCreateRect, | |
| 295 'SVGRectElement': () => RectElement.internalCreateRectElement, | |
| 296 'SVGRenderingIntent': () => RenderingIntent.internalCreateRenderingIntent, | |
| 297 'SVGSVGElement': () => SvgSvgElement.internalCreateSvgSvgElement, | |
| 298 'SVGScriptElement': () => ScriptElement.internalCreateScriptElement, | |
| 299 'SVGSetElement': () => SetElement.internalCreateSetElement, | |
| 300 'SVGStopElement': () => StopElement.internalCreateStopElement, | |
| 301 'SVGStringList': () => StringList.internalCreateStringList, | |
| 302 'SVGStyleElement': () => StyleElement.internalCreateStyleElement, | |
| 303 'SVGSwitchElement': () => SwitchElement.internalCreateSwitchElement, | |
| 304 'SVGSymbolElement': () => SymbolElement.internalCreateSymbolElement, | |
| 305 'SVGTSpanElement': () => TSpanElement.internalCreateTSpanElement, | |
| 306 'SVGTests': () => Tests.internalCreateTests, | |
| 307 'SVGTextContentElement': () => TextContentElement.internalCreateTextContentEle
ment, | |
| 308 'SVGTextElement': () => TextElement.internalCreateTextElement, | |
| 309 'SVGTextPathElement': () => TextPathElement.internalCreateTextPathElement, | |
| 310 'SVGTextPositioningElement': () => TextPositioningElement.internalCreateTextPo
sitioningElement, | |
| 311 'SVGTitleElement': () => TitleElement.internalCreateTitleElement, | |
| 312 'SVGTransform': () => Transform.internalCreateTransform, | |
| 313 'SVGTransformList': () => TransformList.internalCreateTransformList, | |
| 314 'SVGURIReference': () => UriReference.internalCreateUriReference, | |
| 315 'SVGUnitTypes': () => UnitTypes.internalCreateUnitTypes, | |
| 316 'SVGUseElement': () => UseElement.internalCreateUseElement, | |
| 317 'SVGVKernElement': () => _SVGVKernElement.internalCreate_SVGVKernElement, | |
| 318 'SVGViewElement': () => ViewElement.internalCreateViewElement, | |
| 319 'SVGViewSpec': () => ViewSpec.internalCreateViewSpec, | |
| 320 'SVGZoomAndPan': () => ZoomAndPan.internalCreateZoomAndPan, | |
| 321 'SVGZoomEvent': () => ZoomEvent.internalCreateZoomEvent, | |
| 322 | |
| 323 }; | |
| 324 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 172 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 325 // for details. All rights reserved. Use of this source code is governed by a | 173 // for details. All rights reserved. Use of this source code is governed by a |
| 326 // BSD-style license that can be found in the LICENSE file. | 174 // BSD-style license that can be found in the LICENSE file. |
| 327 | 175 |
| 328 | 176 |
| 329 class _SvgElementFactoryProvider { | 177 class _SvgElementFactoryProvider { |
| 330 static SvgElement createSvgElement_tag(String tag) { | 178 static SvgElement createSvgElement_tag(String tag) { |
| 331 final Element temp = | 179 final Element temp = |
| 332 document.createElementNS("http://www.w3.org/2000/svg", tag); | 180 document.createElementNS("http://www.w3.org/2000/svg", tag); |
| 333 return temp; | 181 return temp; |
| 334 } | 182 } |
| 335 } | 183 } |
| 336 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 337 // for details. All rights reserved. Use of this source code is governed by a | 185 // for details. All rights reserved. Use of this source code is governed by a |
| 338 // BSD-style license that can be found in the LICENSE file. | 186 // BSD-style license that can be found in the LICENSE file. |
| 339 | 187 |
| 340 // WARNING: Do not edit - generated code. | 188 // WARNING: Do not edit - generated code. |
| 341 | 189 |
| 342 | 190 |
| 343 @DocsEditable() | 191 @DocsEditable() |
| 344 @DomName('SVGAElement') | 192 @DomName('SVGAElement') |
| 345 @Unstable() | 193 @Unstable() |
| 346 class AElement extends GraphicsElement implements UriReference { | 194 class AElement extends GraphicsElement implements UriReference { |
| 347 // To suppress missing implicit constructor warnings. | 195 // To suppress missing implicit constructor warnings. |
| 348 factory AElement._() { throw new UnsupportedError("Not supported"); } | 196 factory AElement._() { throw new UnsupportedError("Not supported"); } |
| 349 | 197 |
| 350 @DomName('SVGAElement.SVGAElement') | 198 @DomName('SVGAElement.SVGAElement') |
| 351 @DocsEditable() | 199 @DocsEditable() |
| 352 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); | 200 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); |
| 353 | |
| 354 | |
| 355 static AElement internalCreateAElement() { | |
| 356 return new AElement._internalWrap(); | |
| 357 } | |
| 358 | |
| 359 factory AElement._internalWrap() { | |
| 360 return new AElement.internal_(); | |
| 361 } | |
| 362 | |
| 363 AElement.internal_() : super.internal_(); | |
| 364 | |
| 365 /** | 201 /** |
| 366 * Constructor instantiated by the DOM when a custom element has been created. | 202 * Constructor instantiated by the DOM when a custom element has been created. |
| 367 * | 203 * |
| 368 * This can only be called by subclasses from their created constructor. | 204 * This can only be called by subclasses from their created constructor. |
| 369 */ | 205 */ |
| 370 AElement.created() : super.created(); | 206 AElement.created() : super.created(); |
| 371 | 207 |
| 372 @DomName('SVGAElement.target') | 208 @DomName('SVGAElement.target') |
| 373 @DocsEditable() | 209 @DocsEditable() |
| 374 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); | 210 AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_
Getter_(unwrap_jso(this))); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 391 @SupportedBrowser(SupportedBrowser.FIREFOX) | 227 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 392 @SupportedBrowser(SupportedBrowser.SAFARI) | 228 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 393 @Unstable() | 229 @Unstable() |
| 394 class AltGlyphElement extends TextPositioningElement implements UriReference { | 230 class AltGlyphElement extends TextPositioningElement implements UriReference { |
| 395 // To suppress missing implicit constructor warnings. | 231 // To suppress missing implicit constructor warnings. |
| 396 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } | 232 factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 397 | 233 |
| 398 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') | 234 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') |
| 399 @DocsEditable() | 235 @DocsEditable() |
| 400 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); | 236 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("
altGlyph"); |
| 401 | |
| 402 | |
| 403 static AltGlyphElement internalCreateAltGlyphElement() { | |
| 404 return new AltGlyphElement._internalWrap(); | |
| 405 } | |
| 406 | |
| 407 factory AltGlyphElement._internalWrap() { | |
| 408 return new AltGlyphElement.internal_(); | |
| 409 } | |
| 410 | |
| 411 AltGlyphElement.internal_() : super.internal_(); | |
| 412 | |
| 413 /** | 237 /** |
| 414 * Constructor instantiated by the DOM when a custom element has been created. | 238 * Constructor instantiated by the DOM when a custom element has been created. |
| 415 * | 239 * |
| 416 * This can only be called by subclasses from their created constructor. | 240 * This can only be called by subclasses from their created constructor. |
| 417 */ | 241 */ |
| 418 AltGlyphElement.created() : super.created(); | 242 AltGlyphElement.created() : super.created(); |
| 419 | 243 |
| 420 /// Checks if this type is supported on the current platform. | 244 /// Checks if this type is supported on the current platform. |
| 421 static bool get supported => true; | 245 static bool get supported => true; |
| 422 | 246 |
| 423 @DomName('SVGAltGlyphElement.format') | 247 @DomName('SVGAltGlyphElement.format') |
| 424 @DocsEditable() | 248 @DocsEditable() |
| 425 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(un
wrap_jso(this)); | 249 String get format => _blink.BlinkSVGAltGlyphElement.instance.format_Getter_(un
wrap_jso(this)); |
| 426 | 250 |
| 427 @DomName('SVGAltGlyphElement.format') | 251 @DomName('SVGAltGlyphElement.format') |
| 428 @DocsEditable() | 252 @DocsEditable() |
| 429 set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.format_Set
ter_(unwrap_jso(this), value); | 253 void set format(String value) => _blink.BlinkSVGAltGlyphElement.instance.forma
t_Setter_(unwrap_jso(this), value); |
| 430 | 254 |
| 431 @DomName('SVGAltGlyphElement.glyphRef') | 255 @DomName('SVGAltGlyphElement.glyphRef') |
| 432 @DocsEditable() | 256 @DocsEditable() |
| 433 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(unwrap_jso(this)); | 257 String get glyphRef => _blink.BlinkSVGAltGlyphElement.instance.glyphRef_Getter
_(unwrap_jso(this)); |
| 434 | 258 |
| 435 @DomName('SVGAltGlyphElement.glyphRef') | 259 @DomName('SVGAltGlyphElement.glyphRef') |
| 436 @DocsEditable() | 260 @DocsEditable() |
| 437 set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.glyphRef
_Setter_(unwrap_jso(this), value); | 261 void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.instance.gly
phRef_Setter_(unwrap_jso(this), value); |
| 438 | 262 |
| 439 @DomName('SVGAltGlyphElement.href') | 263 @DomName('SVGAltGlyphElement.href') |
| 440 @DocsEditable() | 264 @DocsEditable() |
| 441 AnimatedString get href => wrap_jso(_blink.BlinkSVGAltGlyphElement.instance.hr
ef_Getter_(unwrap_jso(this))); | 265 AnimatedString get href => wrap_jso(_blink.BlinkSVGAltGlyphElement.instance.hr
ef_Getter_(unwrap_jso(this))); |
| 442 | 266 |
| 443 } | 267 } |
| 444 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 268 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 445 // for details. All rights reserved. Use of this source code is governed by a | 269 // for details. All rights reserved. Use of this source code is governed by a |
| 446 // BSD-style license that can be found in the LICENSE file. | 270 // BSD-style license that can be found in the LICENSE file. |
| 447 | 271 |
| 448 // WARNING: Do not edit - generated code. | 272 // WARNING: Do not edit - generated code. |
| 449 | 273 |
| 450 | 274 |
| 451 @DocsEditable() | 275 @DocsEditable() |
| 452 @DomName('SVGAngle') | 276 @DomName('SVGAngle') |
| 453 @Unstable() | 277 @Unstable() |
| 454 class Angle extends NativeFieldWrapperClass2 { | 278 class Angle extends NativeFieldWrapperClass2 { |
| 455 // To suppress missing implicit constructor warnings. | 279 // To suppress missing implicit constructor warnings. |
| 456 factory Angle._() { throw new UnsupportedError("Not supported"); } | 280 factory Angle._() { throw new UnsupportedError("Not supported"); } |
| 457 | 281 |
| 458 static Angle internalCreateAngle() { | |
| 459 return new Angle._internalWrap(); | |
| 460 } | |
| 461 | |
| 462 js.JsObject blink_jsObject; | |
| 463 | |
| 464 factory Angle._internalWrap() { | |
| 465 return new Angle.internal_(); | |
| 466 } | |
| 467 | |
| 468 Angle.internal_() { } | |
| 469 | |
| 470 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 471 int get hashCode => unwrap_jso(this).hashCode; | |
| 472 | |
| 473 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') | 282 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') |
| 474 @DocsEditable() | 283 @DocsEditable() |
| 475 static const int SVG_ANGLETYPE_DEG = 2; | 284 static const int SVG_ANGLETYPE_DEG = 2; |
| 476 | 285 |
| 477 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') | 286 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') |
| 478 @DocsEditable() | 287 @DocsEditable() |
| 479 static const int SVG_ANGLETYPE_GRAD = 4; | 288 static const int SVG_ANGLETYPE_GRAD = 4; |
| 480 | 289 |
| 481 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') | 290 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') |
| 482 @DocsEditable() | 291 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 493 @DomName('SVGAngle.unitType') | 302 @DomName('SVGAngle.unitType') |
| 494 @DocsEditable() | 303 @DocsEditable() |
| 495 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(
this)); | 304 int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(
this)); |
| 496 | 305 |
| 497 @DomName('SVGAngle.value') | 306 @DomName('SVGAngle.value') |
| 498 @DocsEditable() | 307 @DocsEditable() |
| 499 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this))
; | 308 num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this))
; |
| 500 | 309 |
| 501 @DomName('SVGAngle.value') | 310 @DomName('SVGAngle.value') |
| 502 @DocsEditable() | 311 @DocsEditable() |
| 503 set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwrap_jso
(this), value); | 312 void set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwra
p_jso(this), value); |
| 504 | 313 |
| 505 @DomName('SVGAngle.valueAsString') | 314 @DomName('SVGAngle.valueAsString') |
| 506 @DocsEditable() | 315 @DocsEditable() |
| 507 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(unwrap_jso(this)); | 316 String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter
_(unwrap_jso(this)); |
| 508 | 317 |
| 509 @DomName('SVGAngle.valueAsString') | 318 @DomName('SVGAngle.valueAsString') |
| 510 @DocsEditable() | 319 @DocsEditable() |
| 511 set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString
_Setter_(unwrap_jso(this), value); | 320 void set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsS
tring_Setter_(unwrap_jso(this), value); |
| 512 | 321 |
| 513 @DomName('SVGAngle.valueInSpecifiedUnits') | 322 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 514 @DocsEditable() | 323 @DocsEditable() |
| 515 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(unwrap_jso(this)); | 324 num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifie
dUnits_Getter_(unwrap_jso(this)); |
| 516 | 325 |
| 517 @DomName('SVGAngle.valueInSpecifiedUnits') | 326 @DomName('SVGAngle.valueInSpecifiedUnits') |
| 518 @DocsEditable() | 327 @DocsEditable() |
| 519 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInS
pecifiedUnits_Setter_(unwrap_jso(this), value); | 328 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.val
ueInSpecifiedUnits_Setter_(unwrap_jso(this), value); |
| 520 | 329 |
| 521 @DomName('SVGAngle.convertToSpecifiedUnits') | 330 @DomName('SVGAngle.convertToSpecifiedUnits') |
| 522 @DocsEditable() | 331 @DocsEditable() |
| 523 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); | 332 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.co
nvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
| 524 | 333 |
| 525 @DomName('SVGAngle.newValueSpecifiedUnits') | 334 @DomName('SVGAngle.newValueSpecifiedUnits') |
| 526 @DocsEditable() | 335 @DocsEditable() |
| 527 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni
tType, valueInSpecifiedUnits); | 336 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), uni
tType, valueInSpecifiedUnits); |
| 528 | 337 |
| 529 } | 338 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 540 @SupportedBrowser(SupportedBrowser.FIREFOX) | 349 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 541 @SupportedBrowser(SupportedBrowser.SAFARI) | 350 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 542 @Unstable() | 351 @Unstable() |
| 543 class AnimateElement extends AnimationElement { | 352 class AnimateElement extends AnimationElement { |
| 544 // To suppress missing implicit constructor warnings. | 353 // To suppress missing implicit constructor warnings. |
| 545 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } | 354 factory AnimateElement._() { throw new UnsupportedError("Not supported"); } |
| 546 | 355 |
| 547 @DomName('SVGAnimateElement.SVGAnimateElement') | 356 @DomName('SVGAnimateElement.SVGAnimateElement') |
| 548 @DocsEditable() | 357 @DocsEditable() |
| 549 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); | 358 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a
nimate"); |
| 550 | |
| 551 | |
| 552 static AnimateElement internalCreateAnimateElement() { | |
| 553 return new AnimateElement._internalWrap(); | |
| 554 } | |
| 555 | |
| 556 factory AnimateElement._internalWrap() { | |
| 557 return new AnimateElement.internal_(); | |
| 558 } | |
| 559 | |
| 560 AnimateElement.internal_() : super.internal_(); | |
| 561 | |
| 562 /** | 359 /** |
| 563 * Constructor instantiated by the DOM when a custom element has been created. | 360 * Constructor instantiated by the DOM when a custom element has been created. |
| 564 * | 361 * |
| 565 * This can only be called by subclasses from their created constructor. | 362 * This can only be called by subclasses from their created constructor. |
| 566 */ | 363 */ |
| 567 AnimateElement.created() : super.created(); | 364 AnimateElement.created() : super.created(); |
| 568 | 365 |
| 569 /// Checks if this type is supported on the current platform. | 366 /// Checks if this type is supported on the current platform. |
| 570 static bool get supported => true; | 367 static bool get supported => true; |
| 571 | 368 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 583 @SupportedBrowser(SupportedBrowser.FIREFOX) | 380 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 584 @SupportedBrowser(SupportedBrowser.SAFARI) | 381 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 585 @Unstable() | 382 @Unstable() |
| 586 class AnimateMotionElement extends AnimationElement { | 383 class AnimateMotionElement extends AnimationElement { |
| 587 // To suppress missing implicit constructor warnings. | 384 // To suppress missing implicit constructor warnings. |
| 588 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } | 385 factory AnimateMotionElement._() { throw new UnsupportedError("Not supported")
; } |
| 589 | 386 |
| 590 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') | 387 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') |
| 591 @DocsEditable() | 388 @DocsEditable() |
| 592 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); | 389 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_
tag("animateMotion"); |
| 593 | |
| 594 | |
| 595 static AnimateMotionElement internalCreateAnimateMotionElement() { | |
| 596 return new AnimateMotionElement._internalWrap(); | |
| 597 } | |
| 598 | |
| 599 factory AnimateMotionElement._internalWrap() { | |
| 600 return new AnimateMotionElement.internal_(); | |
| 601 } | |
| 602 | |
| 603 AnimateMotionElement.internal_() : super.internal_(); | |
| 604 | |
| 605 /** | 390 /** |
| 606 * Constructor instantiated by the DOM when a custom element has been created. | 391 * Constructor instantiated by the DOM when a custom element has been created. |
| 607 * | 392 * |
| 608 * This can only be called by subclasses from their created constructor. | 393 * This can only be called by subclasses from their created constructor. |
| 609 */ | 394 */ |
| 610 AnimateMotionElement.created() : super.created(); | 395 AnimateMotionElement.created() : super.created(); |
| 611 | 396 |
| 612 /// Checks if this type is supported on the current platform. | 397 /// Checks if this type is supported on the current platform. |
| 613 static bool get supported => true; | 398 static bool get supported => true; |
| 614 | 399 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 626 @SupportedBrowser(SupportedBrowser.FIREFOX) | 411 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 627 @SupportedBrowser(SupportedBrowser.SAFARI) | 412 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 628 @Unstable() | 413 @Unstable() |
| 629 class AnimateTransformElement extends AnimationElement { | 414 class AnimateTransformElement extends AnimationElement { |
| 630 // To suppress missing implicit constructor warnings. | 415 // To suppress missing implicit constructor warnings. |
| 631 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } | 416 factory AnimateTransformElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 632 | 417 |
| 633 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') | 418 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') |
| 634 @DocsEditable() | 419 @DocsEditable() |
| 635 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); | 420 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("animateTransform"); |
| 636 | |
| 637 | |
| 638 static AnimateTransformElement internalCreateAnimateTransformElement() { | |
| 639 return new AnimateTransformElement._internalWrap(); | |
| 640 } | |
| 641 | |
| 642 factory AnimateTransformElement._internalWrap() { | |
| 643 return new AnimateTransformElement.internal_(); | |
| 644 } | |
| 645 | |
| 646 AnimateTransformElement.internal_() : super.internal_(); | |
| 647 | |
| 648 /** | 421 /** |
| 649 * Constructor instantiated by the DOM when a custom element has been created. | 422 * Constructor instantiated by the DOM when a custom element has been created. |
| 650 * | 423 * |
| 651 * This can only be called by subclasses from their created constructor. | 424 * This can only be called by subclasses from their created constructor. |
| 652 */ | 425 */ |
| 653 AnimateTransformElement.created() : super.created(); | 426 AnimateTransformElement.created() : super.created(); |
| 654 | 427 |
| 655 /// Checks if this type is supported on the current platform. | 428 /// Checks if this type is supported on the current platform. |
| 656 static bool get supported => true; | 429 static bool get supported => true; |
| 657 | 430 |
| 658 } | 431 } |
| 659 // 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 |
| 660 // 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 |
| 661 // BSD-style license that can be found in the LICENSE file. | 434 // BSD-style license that can be found in the LICENSE file. |
| 662 | 435 |
| 663 // WARNING: Do not edit - generated code. | 436 // WARNING: Do not edit - generated code. |
| 664 | 437 |
| 665 | 438 |
| 666 @DocsEditable() | 439 @DocsEditable() |
| 667 @DomName('SVGAnimatedAngle') | 440 @DomName('SVGAnimatedAngle') |
| 668 @Unstable() | 441 @Unstable() |
| 669 class AnimatedAngle extends NativeFieldWrapperClass2 { | 442 class AnimatedAngle extends NativeFieldWrapperClass2 { |
| 670 // To suppress missing implicit constructor warnings. | 443 // To suppress missing implicit constructor warnings. |
| 671 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } | 444 factory AnimatedAngle._() { throw new UnsupportedError("Not supported"); } |
| 672 | 445 |
| 673 static AnimatedAngle internalCreateAnimatedAngle() { | |
| 674 return new AnimatedAngle._internalWrap(); | |
| 675 } | |
| 676 | |
| 677 js.JsObject blink_jsObject; | |
| 678 | |
| 679 factory AnimatedAngle._internalWrap() { | |
| 680 return new AnimatedAngle.internal_(); | |
| 681 } | |
| 682 | |
| 683 AnimatedAngle.internal_() { } | |
| 684 | |
| 685 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 686 int get hashCode => unwrap_jso(this).hashCode; | |
| 687 | |
| 688 @DomName('SVGAnimatedAngle.animVal') | 446 @DomName('SVGAnimatedAngle.animVal') |
| 689 @DocsEditable() | 447 @DocsEditable() |
| 690 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); | 448 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge
tter_(unwrap_jso(this))); |
| 691 | 449 |
| 692 @DomName('SVGAnimatedAngle.baseVal') | 450 @DomName('SVGAnimatedAngle.baseVal') |
| 693 @DocsEditable() | 451 @DocsEditable() |
| 694 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); | 452 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge
tter_(unwrap_jso(this))); |
| 695 | 453 |
| 696 } | 454 } |
| 697 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 455 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 698 // for details. All rights reserved. Use of this source code is governed by a | 456 // for details. All rights reserved. Use of this source code is governed by a |
| 699 // BSD-style license that can be found in the LICENSE file. | 457 // BSD-style license that can be found in the LICENSE file. |
| 700 | 458 |
| 701 // WARNING: Do not edit - generated code. | 459 // WARNING: Do not edit - generated code. |
| 702 | 460 |
| 703 | 461 |
| 704 @DocsEditable() | 462 @DocsEditable() |
| 705 @DomName('SVGAnimatedBoolean') | 463 @DomName('SVGAnimatedBoolean') |
| 706 @Unstable() | 464 @Unstable() |
| 707 class AnimatedBoolean extends NativeFieldWrapperClass2 { | 465 class AnimatedBoolean extends NativeFieldWrapperClass2 { |
| 708 // To suppress missing implicit constructor warnings. | 466 // To suppress missing implicit constructor warnings. |
| 709 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } | 467 factory AnimatedBoolean._() { throw new UnsupportedError("Not supported"); } |
| 710 | 468 |
| 711 static AnimatedBoolean internalCreateAnimatedBoolean() { | |
| 712 return new AnimatedBoolean._internalWrap(); | |
| 713 } | |
| 714 | |
| 715 js.JsObject blink_jsObject; | |
| 716 | |
| 717 factory AnimatedBoolean._internalWrap() { | |
| 718 return new AnimatedBoolean.internal_(); | |
| 719 } | |
| 720 | |
| 721 AnimatedBoolean.internal_() { } | |
| 722 | |
| 723 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 724 int get hashCode => unwrap_jso(this).hashCode; | |
| 725 | |
| 726 @DomName('SVGAnimatedBoolean.animVal') | 469 @DomName('SVGAnimatedBoolean.animVal') |
| 727 @DocsEditable() | 470 @DocsEditable() |
| 728 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); | 471 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un
wrap_jso(this)); |
| 729 | 472 |
| 730 @DomName('SVGAnimatedBoolean.baseVal') | 473 @DomName('SVGAnimatedBoolean.baseVal') |
| 731 @DocsEditable() | 474 @DocsEditable() |
| 732 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); | 475 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un
wrap_jso(this)); |
| 733 | 476 |
| 734 @DomName('SVGAnimatedBoolean.baseVal') | 477 @DomName('SVGAnimatedBoolean.baseVal') |
| 735 @DocsEditable() | 478 @DocsEditable() |
| 736 set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Set
ter_(unwrap_jso(this), value); | 479 void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVa
l_Setter_(unwrap_jso(this), value); |
| 737 | 480 |
| 738 } | 481 } |
| 739 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 482 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 740 // for details. All rights reserved. Use of this source code is governed by a | 483 // for details. All rights reserved. Use of this source code is governed by a |
| 741 // BSD-style license that can be found in the LICENSE file. | 484 // BSD-style license that can be found in the LICENSE file. |
| 742 | 485 |
| 743 // WARNING: Do not edit - generated code. | 486 // WARNING: Do not edit - generated code. |
| 744 | 487 |
| 745 | 488 |
| 746 @DocsEditable() | 489 @DocsEditable() |
| 747 @DomName('SVGAnimatedEnumeration') | 490 @DomName('SVGAnimatedEnumeration') |
| 748 @Unstable() | 491 @Unstable() |
| 749 class AnimatedEnumeration extends NativeFieldWrapperClass2 { | 492 class AnimatedEnumeration extends NativeFieldWrapperClass2 { |
| 750 // To suppress missing implicit constructor warnings. | 493 // To suppress missing implicit constructor warnings. |
| 751 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} | 494 factory AnimatedEnumeration._() { throw new UnsupportedError("Not supported");
} |
| 752 | 495 |
| 753 static AnimatedEnumeration internalCreateAnimatedEnumeration() { | |
| 754 return new AnimatedEnumeration._internalWrap(); | |
| 755 } | |
| 756 | |
| 757 js.JsObject blink_jsObject; | |
| 758 | |
| 759 factory AnimatedEnumeration._internalWrap() { | |
| 760 return new AnimatedEnumeration.internal_(); | |
| 761 } | |
| 762 | |
| 763 AnimatedEnumeration.internal_() { } | |
| 764 | |
| 765 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 766 int get hashCode => unwrap_jso(this).hashCode; | |
| 767 | |
| 768 @DomName('SVGAnimatedEnumeration.animVal') | 496 @DomName('SVGAnimatedEnumeration.animVal') |
| 769 @DocsEditable() | 497 @DocsEditable() |
| 770 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); | 498 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_
(unwrap_jso(this)); |
| 771 | 499 |
| 772 @DomName('SVGAnimatedEnumeration.baseVal') | 500 @DomName('SVGAnimatedEnumeration.baseVal') |
| 773 @DocsEditable() | 501 @DocsEditable() |
| 774 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); | 502 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_
(unwrap_jso(this)); |
| 775 | 503 |
| 776 @DomName('SVGAnimatedEnumeration.baseVal') | 504 @DomName('SVGAnimatedEnumeration.baseVal') |
| 777 @DocsEditable() | 505 @DocsEditable() |
| 778 set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_
Setter_(unwrap_jso(this), value); | 506 void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.bas
eVal_Setter_(unwrap_jso(this), value); |
| 779 | 507 |
| 780 } | 508 } |
| 781 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 509 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 782 // for details. All rights reserved. Use of this source code is governed by a | 510 // for details. All rights reserved. Use of this source code is governed by a |
| 783 // BSD-style license that can be found in the LICENSE file. | 511 // BSD-style license that can be found in the LICENSE file. |
| 784 | 512 |
| 785 // WARNING: Do not edit - generated code. | 513 // WARNING: Do not edit - generated code. |
| 786 | 514 |
| 787 | 515 |
| 788 @DocsEditable() | 516 @DocsEditable() |
| 789 @DomName('SVGAnimatedInteger') | 517 @DomName('SVGAnimatedInteger') |
| 790 @Unstable() | 518 @Unstable() |
| 791 class AnimatedInteger extends NativeFieldWrapperClass2 { | 519 class AnimatedInteger extends NativeFieldWrapperClass2 { |
| 792 // To suppress missing implicit constructor warnings. | 520 // To suppress missing implicit constructor warnings. |
| 793 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } | 521 factory AnimatedInteger._() { throw new UnsupportedError("Not supported"); } |
| 794 | 522 |
| 795 static AnimatedInteger internalCreateAnimatedInteger() { | |
| 796 return new AnimatedInteger._internalWrap(); | |
| 797 } | |
| 798 | |
| 799 js.JsObject blink_jsObject; | |
| 800 | |
| 801 factory AnimatedInteger._internalWrap() { | |
| 802 return new AnimatedInteger.internal_(); | |
| 803 } | |
| 804 | |
| 805 AnimatedInteger.internal_() { } | |
| 806 | |
| 807 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 808 int get hashCode => unwrap_jso(this).hashCode; | |
| 809 | |
| 810 @DomName('SVGAnimatedInteger.animVal') | 523 @DomName('SVGAnimatedInteger.animVal') |
| 811 @DocsEditable() | 524 @DocsEditable() |
| 812 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); | 525 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw
rap_jso(this)); |
| 813 | 526 |
| 814 @DomName('SVGAnimatedInteger.baseVal') | 527 @DomName('SVGAnimatedInteger.baseVal') |
| 815 @DocsEditable() | 528 @DocsEditable() |
| 816 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); | 529 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw
rap_jso(this)); |
| 817 | 530 |
| 818 @DomName('SVGAnimatedInteger.baseVal') | 531 @DomName('SVGAnimatedInteger.baseVal') |
| 819 @DocsEditable() | 532 @DocsEditable() |
| 820 set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Sett
er_(unwrap_jso(this), value); | 533 void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal
_Setter_(unwrap_jso(this), value); |
| 821 | 534 |
| 822 } | 535 } |
| 823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 824 // for details. All rights reserved. Use of this source code is governed by a | 537 // for details. All rights reserved. Use of this source code is governed by a |
| 825 // BSD-style license that can be found in the LICENSE file. | 538 // BSD-style license that can be found in the LICENSE file. |
| 826 | 539 |
| 827 // WARNING: Do not edit - generated code. | 540 // WARNING: Do not edit - generated code. |
| 828 | 541 |
| 829 | 542 |
| 830 @DocsEditable() | 543 @DocsEditable() |
| 831 @DomName('SVGAnimatedLength') | 544 @DomName('SVGAnimatedLength') |
| 832 @Unstable() | 545 @Unstable() |
| 833 class AnimatedLength extends NativeFieldWrapperClass2 { | 546 class AnimatedLength extends NativeFieldWrapperClass2 { |
| 834 // To suppress missing implicit constructor warnings. | 547 // To suppress missing implicit constructor warnings. |
| 835 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } | 548 factory AnimatedLength._() { throw new UnsupportedError("Not supported"); } |
| 836 | 549 |
| 837 static AnimatedLength internalCreateAnimatedLength() { | |
| 838 return new AnimatedLength._internalWrap(); | |
| 839 } | |
| 840 | |
| 841 js.JsObject blink_jsObject; | |
| 842 | |
| 843 factory AnimatedLength._internalWrap() { | |
| 844 return new AnimatedLength.internal_(); | |
| 845 } | |
| 846 | |
| 847 AnimatedLength.internal_() { } | |
| 848 | |
| 849 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 850 int get hashCode => unwrap_jso(this).hashCode; | |
| 851 | |
| 852 @DomName('SVGAnimatedLength.animVal') | 550 @DomName('SVGAnimatedLength.animVal') |
| 853 @DocsEditable() | 551 @DocsEditable() |
| 854 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); | 552 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_
Getter_(unwrap_jso(this))); |
| 855 | 553 |
| 856 @DomName('SVGAnimatedLength.baseVal') | 554 @DomName('SVGAnimatedLength.baseVal') |
| 857 @DocsEditable() | 555 @DocsEditable() |
| 858 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); | 556 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_
Getter_(unwrap_jso(this))); |
| 859 | 557 |
| 860 } | 558 } |
| 861 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 559 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 862 // for details. All rights reserved. Use of this source code is governed by a | 560 // for details. All rights reserved. Use of this source code is governed by a |
| 863 // BSD-style license that can be found in the LICENSE file. | 561 // BSD-style license that can be found in the LICENSE file. |
| 864 | 562 |
| 865 // WARNING: Do not edit - generated code. | 563 // WARNING: Do not edit - generated code. |
| 866 | 564 |
| 867 | 565 |
| 868 @DocsEditable() | 566 @DocsEditable() |
| 869 @DomName('SVGAnimatedLengthList') | 567 @DomName('SVGAnimatedLengthList') |
| 870 @Unstable() | 568 @Unstable() |
| 871 class AnimatedLengthList extends NativeFieldWrapperClass2 { | 569 class AnimatedLengthList extends NativeFieldWrapperClass2 { |
| 872 // To suppress missing implicit constructor warnings. | 570 // To suppress missing implicit constructor warnings. |
| 873 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} | 571 factory AnimatedLengthList._() { throw new UnsupportedError("Not supported");
} |
| 874 | 572 |
| 875 static AnimatedLengthList internalCreateAnimatedLengthList() { | |
| 876 return new AnimatedLengthList._internalWrap(); | |
| 877 } | |
| 878 | |
| 879 js.JsObject blink_jsObject; | |
| 880 | |
| 881 factory AnimatedLengthList._internalWrap() { | |
| 882 return new AnimatedLengthList.internal_(); | |
| 883 } | |
| 884 | |
| 885 AnimatedLengthList.internal_() { } | |
| 886 | |
| 887 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 888 int get hashCode => unwrap_jso(this).hashCode; | |
| 889 | |
| 890 @DomName('SVGAnimatedLengthList.animVal') | 573 @DomName('SVGAnimatedLengthList.animVal') |
| 891 @DocsEditable() | 574 @DocsEditable() |
| 892 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); | 575 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 893 | 576 |
| 894 @DomName('SVGAnimatedLengthList.baseVal') | 577 @DomName('SVGAnimatedLengthList.baseVal') |
| 895 @DocsEditable() | 578 @DocsEditable() |
| 896 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); | 579 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 897 | 580 |
| 898 } | 581 } |
| 899 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 582 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 900 // for details. All rights reserved. Use of this source code is governed by a | 583 // for details. All rights reserved. Use of this source code is governed by a |
| 901 // BSD-style license that can be found in the LICENSE file. | 584 // BSD-style license that can be found in the LICENSE file. |
| 902 | 585 |
| 903 // WARNING: Do not edit - generated code. | 586 // WARNING: Do not edit - generated code. |
| 904 | 587 |
| 905 | 588 |
| 906 @DocsEditable() | 589 @DocsEditable() |
| 907 @DomName('SVGAnimatedNumber') | 590 @DomName('SVGAnimatedNumber') |
| 908 @Unstable() | 591 @Unstable() |
| 909 class AnimatedNumber extends NativeFieldWrapperClass2 { | 592 class AnimatedNumber extends NativeFieldWrapperClass2 { |
| 910 // To suppress missing implicit constructor warnings. | 593 // To suppress missing implicit constructor warnings. |
| 911 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } | 594 factory AnimatedNumber._() { throw new UnsupportedError("Not supported"); } |
| 912 | 595 |
| 913 static AnimatedNumber internalCreateAnimatedNumber() { | |
| 914 return new AnimatedNumber._internalWrap(); | |
| 915 } | |
| 916 | |
| 917 js.JsObject blink_jsObject; | |
| 918 | |
| 919 factory AnimatedNumber._internalWrap() { | |
| 920 return new AnimatedNumber.internal_(); | |
| 921 } | |
| 922 | |
| 923 AnimatedNumber.internal_() { } | |
| 924 | |
| 925 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 926 int get hashCode => unwrap_jso(this).hashCode; | |
| 927 | |
| 928 @DomName('SVGAnimatedNumber.animVal') | 596 @DomName('SVGAnimatedNumber.animVal') |
| 929 @DocsEditable() | 597 @DocsEditable() |
| 930 num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwr
ap_jso(this)); | 598 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 931 | 599 |
| 932 @DomName('SVGAnimatedNumber.baseVal') | 600 @DomName('SVGAnimatedNumber.baseVal') |
| 933 @DocsEditable() | 601 @DocsEditable() |
| 934 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); | 602 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr
ap_jso(this)); |
| 935 | 603 |
| 936 @DomName('SVGAnimatedNumber.baseVal') | 604 @DomName('SVGAnimatedNumber.baseVal') |
| 937 @DocsEditable() | 605 @DocsEditable() |
| 938 set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Sette
r_(unwrap_jso(this), value); | 606 void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_
Setter_(unwrap_jso(this), value); |
| 939 | 607 |
| 940 } | 608 } |
| 941 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 942 // for details. All rights reserved. Use of this source code is governed by a | 610 // for details. All rights reserved. Use of this source code is governed by a |
| 943 // BSD-style license that can be found in the LICENSE file. | 611 // BSD-style license that can be found in the LICENSE file. |
| 944 | 612 |
| 945 // WARNING: Do not edit - generated code. | 613 // WARNING: Do not edit - generated code. |
| 946 | 614 |
| 947 | 615 |
| 948 @DocsEditable() | 616 @DocsEditable() |
| 949 @DomName('SVGAnimatedNumberList') | 617 @DomName('SVGAnimatedNumberList') |
| 950 @Unstable() | 618 @Unstable() |
| 951 class AnimatedNumberList extends NativeFieldWrapperClass2 { | 619 class AnimatedNumberList extends NativeFieldWrapperClass2 { |
| 952 // To suppress missing implicit constructor warnings. | 620 // To suppress missing implicit constructor warnings. |
| 953 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} | 621 factory AnimatedNumberList._() { throw new UnsupportedError("Not supported");
} |
| 954 | 622 |
| 955 static AnimatedNumberList internalCreateAnimatedNumberList() { | |
| 956 return new AnimatedNumberList._internalWrap(); | |
| 957 } | |
| 958 | |
| 959 js.JsObject blink_jsObject; | |
| 960 | |
| 961 factory AnimatedNumberList._internalWrap() { | |
| 962 return new AnimatedNumberList.internal_(); | |
| 963 } | |
| 964 | |
| 965 AnimatedNumberList.internal_() { } | |
| 966 | |
| 967 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 968 int get hashCode => unwrap_jso(this).hashCode; | |
| 969 | |
| 970 @DomName('SVGAnimatedNumberList.animVal') | 623 @DomName('SVGAnimatedNumberList.animVal') |
| 971 @DocsEditable() | 624 @DocsEditable() |
| 972 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); | 625 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
animVal_Getter_(unwrap_jso(this))); |
| 973 | 626 |
| 974 @DomName('SVGAnimatedNumberList.baseVal') | 627 @DomName('SVGAnimatedNumberList.baseVal') |
| 975 @DocsEditable() | 628 @DocsEditable() |
| 976 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); | 629 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.
baseVal_Getter_(unwrap_jso(this))); |
| 977 | 630 |
| 978 } | 631 } |
| 979 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 632 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 980 // for details. All rights reserved. Use of this source code is governed by a | 633 // for details. All rights reserved. Use of this source code is governed by a |
| 981 // BSD-style license that can be found in the LICENSE file. | 634 // BSD-style license that can be found in the LICENSE file. |
| 982 | 635 |
| 983 // WARNING: Do not edit - generated code. | 636 // WARNING: Do not edit - generated code. |
| 984 | 637 |
| 985 | 638 |
| 986 @DocsEditable() | 639 @DocsEditable() |
| 987 @DomName('SVGAnimatedPreserveAspectRatio') | 640 @DomName('SVGAnimatedPreserveAspectRatio') |
| 988 @Unstable() | 641 @Unstable() |
| 989 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { | 642 class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 990 // To suppress missing implicit constructor warnings. | 643 // To suppress missing implicit constructor warnings. |
| 991 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } | 644 factory AnimatedPreserveAspectRatio._() { throw new UnsupportedError("Not supp
orted"); } |
| 992 | 645 |
| 993 static AnimatedPreserveAspectRatio internalCreateAnimatedPreserveAspectRatio()
{ | |
| 994 return new AnimatedPreserveAspectRatio._internalWrap(); | |
| 995 } | |
| 996 | |
| 997 js.JsObject blink_jsObject; | |
| 998 | |
| 999 factory AnimatedPreserveAspectRatio._internalWrap() { | |
| 1000 return new AnimatedPreserveAspectRatio.internal_(); | |
| 1001 } | |
| 1002 | |
| 1003 AnimatedPreserveAspectRatio.internal_() { } | |
| 1004 | |
| 1005 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 1006 int get hashCode => unwrap_jso(this).hashCode; | |
| 1007 | |
| 1008 @DomName('SVGAnimatedPreserveAspectRatio.animVal') | 646 @DomName('SVGAnimatedPreserveAspectRatio.animVal') |
| 1009 @DocsEditable() | 647 @DocsEditable() |
| 1010 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); | 648 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.animVal_Getter_(unwrap_jso(this))); |
| 1011 | 649 |
| 1012 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') | 650 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') |
| 1013 @DocsEditable() | 651 @DocsEditable() |
| 1014 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); | 652 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp
ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); |
| 1015 | 653 |
| 1016 } | 654 } |
| 1017 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 655 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1018 // for details. All rights reserved. Use of this source code is governed by a | 656 // for details. All rights reserved. Use of this source code is governed by a |
| 1019 // BSD-style license that can be found in the LICENSE file. | 657 // BSD-style license that can be found in the LICENSE file. |
| 1020 | 658 |
| 1021 // WARNING: Do not edit - generated code. | 659 // WARNING: Do not edit - generated code. |
| 1022 | 660 |
| 1023 | 661 |
| 1024 @DocsEditable() | 662 @DocsEditable() |
| 1025 @DomName('SVGAnimatedRect') | 663 @DomName('SVGAnimatedRect') |
| 1026 @Unstable() | 664 @Unstable() |
| 1027 class AnimatedRect extends NativeFieldWrapperClass2 { | 665 class AnimatedRect extends NativeFieldWrapperClass2 { |
| 1028 // To suppress missing implicit constructor warnings. | 666 // To suppress missing implicit constructor warnings. |
| 1029 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } | 667 factory AnimatedRect._() { throw new UnsupportedError("Not supported"); } |
| 1030 | 668 |
| 1031 static AnimatedRect internalCreateAnimatedRect() { | |
| 1032 return new AnimatedRect._internalWrap(); | |
| 1033 } | |
| 1034 | |
| 1035 js.JsObject blink_jsObject; | |
| 1036 | |
| 1037 factory AnimatedRect._internalWrap() { | |
| 1038 return new AnimatedRect.internal_(); | |
| 1039 } | |
| 1040 | |
| 1041 AnimatedRect.internal_() { } | |
| 1042 | |
| 1043 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 1044 int get hashCode => unwrap_jso(this).hashCode; | |
| 1045 | |
| 1046 @DomName('SVGAnimatedRect.animVal') | 669 @DomName('SVGAnimatedRect.animVal') |
| 1047 @DocsEditable() | 670 @DocsEditable() |
| 1048 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); | 671 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett
er_(unwrap_jso(this))); |
| 1049 | 672 |
| 1050 @DomName('SVGAnimatedRect.baseVal') | 673 @DomName('SVGAnimatedRect.baseVal') |
| 1051 @DocsEditable() | 674 @DocsEditable() |
| 1052 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); | 675 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett
er_(unwrap_jso(this))); |
| 1053 | 676 |
| 1054 } | 677 } |
| 1055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1056 // for details. All rights reserved. Use of this source code is governed by a | 679 // for details. All rights reserved. Use of this source code is governed by a |
| 1057 // BSD-style license that can be found in the LICENSE file. | 680 // BSD-style license that can be found in the LICENSE file. |
| 1058 | 681 |
| 1059 // WARNING: Do not edit - generated code. | 682 // WARNING: Do not edit - generated code. |
| 1060 | 683 |
| 1061 | 684 |
| 1062 @DocsEditable() | 685 @DocsEditable() |
| 1063 @DomName('SVGAnimatedString') | 686 @DomName('SVGAnimatedString') |
| 1064 @Unstable() | 687 @Unstable() |
| 1065 class AnimatedString extends NativeFieldWrapperClass2 { | 688 class AnimatedString extends NativeFieldWrapperClass2 { |
| 1066 // To suppress missing implicit constructor warnings. | 689 // To suppress missing implicit constructor warnings. |
| 1067 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } | 690 factory AnimatedString._() { throw new UnsupportedError("Not supported"); } |
| 1068 | 691 |
| 1069 static AnimatedString internalCreateAnimatedString() { | |
| 1070 return new AnimatedString._internalWrap(); | |
| 1071 } | |
| 1072 | |
| 1073 js.JsObject blink_jsObject; | |
| 1074 | |
| 1075 factory AnimatedString._internalWrap() { | |
| 1076 return new AnimatedString.internal_(); | |
| 1077 } | |
| 1078 | |
| 1079 AnimatedString.internal_() { } | |
| 1080 | |
| 1081 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 1082 int get hashCode => unwrap_jso(this).hashCode; | |
| 1083 | |
| 1084 @DomName('SVGAnimatedString.animVal') | 692 @DomName('SVGAnimatedString.animVal') |
| 1085 @DocsEditable() | 693 @DocsEditable() |
| 1086 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); | 694 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u
nwrap_jso(this)); |
| 1087 | 695 |
| 1088 @DomName('SVGAnimatedString.baseVal') | 696 @DomName('SVGAnimatedString.baseVal') |
| 1089 @DocsEditable() | 697 @DocsEditable() |
| 1090 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); | 698 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u
nwrap_jso(this)); |
| 1091 | 699 |
| 1092 @DomName('SVGAnimatedString.baseVal') | 700 @DomName('SVGAnimatedString.baseVal') |
| 1093 @DocsEditable() | 701 @DocsEditable() |
| 1094 set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Se
tter_(unwrap_jso(this), value); | 702 void set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseV
al_Setter_(unwrap_jso(this), value); |
| 1095 | 703 |
| 1096 } | 704 } |
| 1097 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1098 // for details. All rights reserved. Use of this source code is governed by a | 706 // for details. All rights reserved. Use of this source code is governed by a |
| 1099 // BSD-style license that can be found in the LICENSE file. | 707 // BSD-style license that can be found in the LICENSE file. |
| 1100 | 708 |
| 1101 // WARNING: Do not edit - generated code. | 709 // WARNING: Do not edit - generated code. |
| 1102 | 710 |
| 1103 | 711 |
| 1104 @DocsEditable() | 712 @DocsEditable() |
| 1105 @DomName('SVGAnimatedTransformList') | 713 @DomName('SVGAnimatedTransformList') |
| 1106 @Unstable() | 714 @Unstable() |
| 1107 class AnimatedTransformList extends NativeFieldWrapperClass2 { | 715 class AnimatedTransformList extends NativeFieldWrapperClass2 { |
| 1108 // To suppress missing implicit constructor warnings. | 716 // To suppress missing implicit constructor warnings. |
| 1109 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } | 717 factory AnimatedTransformList._() { throw new UnsupportedError("Not supported"
); } |
| 1110 | 718 |
| 1111 static AnimatedTransformList internalCreateAnimatedTransformList() { | |
| 1112 return new AnimatedTransformList._internalWrap(); | |
| 1113 } | |
| 1114 | |
| 1115 js.JsObject blink_jsObject; | |
| 1116 | |
| 1117 factory AnimatedTransformList._internalWrap() { | |
| 1118 return new AnimatedTransformList.internal_(); | |
| 1119 } | |
| 1120 | |
| 1121 AnimatedTransformList.internal_() { } | |
| 1122 | |
| 1123 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 1124 int get hashCode => unwrap_jso(this).hashCode; | |
| 1125 | |
| 1126 @DomName('SVGAnimatedTransformList.animVal') | 719 @DomName('SVGAnimatedTransformList.animVal') |
| 1127 @DocsEditable() | 720 @DocsEditable() |
| 1128 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); | 721 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.animVal_Getter_(unwrap_jso(this))); |
| 1129 | 722 |
| 1130 @DomName('SVGAnimatedTransformList.baseVal') | 723 @DomName('SVGAnimatedTransformList.baseVal') |
| 1131 @DocsEditable() | 724 @DocsEditable() |
| 1132 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); | 725 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins
tance.baseVal_Getter_(unwrap_jso(this))); |
| 1133 | 726 |
| 1134 } | 727 } |
| 1135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1136 // for details. All rights reserved. Use of this source code is governed by a | 729 // for details. All rights reserved. Use of this source code is governed by a |
| 1137 // BSD-style license that can be found in the LICENSE file. | 730 // BSD-style license that can be found in the LICENSE file. |
| 1138 | 731 |
| 1139 // WARNING: Do not edit - generated code. | 732 // WARNING: Do not edit - generated code. |
| 1140 | 733 |
| 1141 | 734 |
| 1142 @DocsEditable() | 735 @DocsEditable() |
| 1143 @DomName('SVGAnimationElement') | 736 @DomName('SVGAnimationElement') |
| 1144 @Unstable() | 737 @Unstable() |
| 1145 class AnimationElement extends SvgElement implements Tests { | 738 class AnimationElement extends SvgElement implements Tests { |
| 1146 // To suppress missing implicit constructor warnings. | 739 // To suppress missing implicit constructor warnings. |
| 1147 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } | 740 factory AnimationElement._() { throw new UnsupportedError("Not supported"); } |
| 1148 | 741 |
| 1149 @DomName('SVGAnimationElement.SVGAnimationElement') | 742 @DomName('SVGAnimationElement.SVGAnimationElement') |
| 1150 @DocsEditable() | 743 @DocsEditable() |
| 1151 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); | 744 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"animation"); |
| 1152 | |
| 1153 | |
| 1154 static AnimationElement internalCreateAnimationElement() { | |
| 1155 return new AnimationElement._internalWrap(); | |
| 1156 } | |
| 1157 | |
| 1158 factory AnimationElement._internalWrap() { | |
| 1159 return new AnimationElement.internal_(); | |
| 1160 } | |
| 1161 | |
| 1162 AnimationElement.internal_() : super.internal_(); | |
| 1163 | |
| 1164 /** | 745 /** |
| 1165 * Constructor instantiated by the DOM when a custom element has been created. | 746 * Constructor instantiated by the DOM when a custom element has been created. |
| 1166 * | 747 * |
| 1167 * This can only be called by subclasses from their created constructor. | 748 * This can only be called by subclasses from their created constructor. |
| 1168 */ | 749 */ |
| 1169 AnimationElement.created() : super.created(); | 750 AnimationElement.created() : super.created(); |
| 1170 | 751 |
| 1171 @DomName('SVGAnimationElement.targetElement') | 752 @DomName('SVGAnimationElement.targetElement') |
| 1172 @DocsEditable() | 753 @DocsEditable() |
| 1173 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); | 754 SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.insta
nce.targetElement_Getter_(unwrap_jso(this))); |
| 1174 | 755 |
| 1175 @DomName('SVGAnimationElement.beginElement') | 756 @DomName('SVGAnimationElement.beginElement') |
| 1176 @DocsEditable() | 757 @DocsEditable() |
| 1177 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(unwrap_jso(this)); | 758 void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_C
allback_0_(unwrap_jso(this)); |
| 1178 | 759 |
| 1179 @DomName('SVGAnimationElement.beginElementAt') | 760 @DomName('SVGAnimationElement.beginElementAt') |
| 1180 @DocsEditable() | 761 @DocsEditable() |
| 1181 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(unwrap_jso(this), offset); | 762 void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.be
ginElementAt_Callback_1_(unwrap_jso(this), offset); |
| 1182 | 763 |
| 1183 @DomName('SVGAnimationElement.endElement') | 764 @DomName('SVGAnimationElement.endElement') |
| 1184 @DocsEditable() | 765 @DocsEditable() |
| 1185 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(unwrap_jso(this)); | 766 void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callb
ack_0_(unwrap_jso(this)); |
| 1186 | 767 |
| 1187 @DomName('SVGAnimationElement.endElementAt') | 768 @DomName('SVGAnimationElement.endElementAt') |
| 1188 @DocsEditable() | 769 @DocsEditable() |
| 1189 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(unwrap_jso(this), offset); | 770 void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endE
lementAt_Callback_1_(unwrap_jso(this), offset); |
| 1190 | 771 |
| 1191 @DomName('SVGAnimationElement.getCurrentTime') | 772 @DomName('SVGAnimationElement.getCurrentTime') |
| 1192 @DocsEditable() | 773 @DocsEditable() |
| 1193 num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTim
e_Callback_0_(unwrap_jso(this)); | 774 double getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrent
Time_Callback_0_(unwrap_jso(this)); |
| 1194 | 775 |
| 1195 @DomName('SVGAnimationElement.getSimpleDuration') | 776 @DomName('SVGAnimationElement.getSimpleDuration') |
| 1196 @DocsEditable() | 777 @DocsEditable() |
| 1197 num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleD
uration_Callback_0_(unwrap_jso(this)); | 778 double getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimp
leDuration_Callback_0_(unwrap_jso(this)); |
| 1198 | 779 |
| 1199 @DomName('SVGAnimationElement.getStartTime') | 780 @DomName('SVGAnimationElement.getStartTime') |
| 1200 @DocsEditable() | 781 @DocsEditable() |
| 1201 num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Ca
llback_0_(unwrap_jso(this)); | 782 double getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime
_Callback_0_(unwrap_jso(this)); |
| 1202 | 783 |
| 1203 @DomName('SVGAnimationElement.requiredExtensions') | 784 @DomName('SVGAnimationElement.requiredExtensions') |
| 1204 @DocsEditable() | 785 @DocsEditable() |
| 1205 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.
instance.requiredExtensions_Getter_(unwrap_jso(this))); | 786 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.
instance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 1206 | 787 |
| 1207 @DomName('SVGAnimationElement.requiredFeatures') | 788 @DomName('SVGAnimationElement.requiredFeatures') |
| 1208 @DocsEditable() | 789 @DocsEditable() |
| 1209 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in
stance.requiredFeatures_Getter_(unwrap_jso(this))); | 790 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.in
stance.requiredFeatures_Getter_(unwrap_jso(this))); |
| 1210 | 791 |
| 1211 @DomName('SVGAnimationElement.systemLanguage') | 792 @DomName('SVGAnimationElement.systemLanguage') |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1227 @DocsEditable() | 808 @DocsEditable() |
| 1228 @DomName('SVGCircleElement') | 809 @DomName('SVGCircleElement') |
| 1229 @Unstable() | 810 @Unstable() |
| 1230 class CircleElement extends GeometryElement { | 811 class CircleElement extends GeometryElement { |
| 1231 // To suppress missing implicit constructor warnings. | 812 // To suppress missing implicit constructor warnings. |
| 1232 factory CircleElement._() { throw new UnsupportedError("Not supported"); } | 813 factory CircleElement._() { throw new UnsupportedError("Not supported"); } |
| 1233 | 814 |
| 1234 @DomName('SVGCircleElement.SVGCircleElement') | 815 @DomName('SVGCircleElement.SVGCircleElement') |
| 1235 @DocsEditable() | 816 @DocsEditable() |
| 1236 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); | 817 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci
rcle"); |
| 1237 | |
| 1238 | |
| 1239 static CircleElement internalCreateCircleElement() { | |
| 1240 return new CircleElement._internalWrap(); | |
| 1241 } | |
| 1242 | |
| 1243 factory CircleElement._internalWrap() { | |
| 1244 return new CircleElement.internal_(); | |
| 1245 } | |
| 1246 | |
| 1247 CircleElement.internal_() : super.internal_(); | |
| 1248 | |
| 1249 /** | 818 /** |
| 1250 * Constructor instantiated by the DOM when a custom element has been created. | 819 * Constructor instantiated by the DOM when a custom element has been created. |
| 1251 * | 820 * |
| 1252 * This can only be called by subclasses from their created constructor. | 821 * This can only be called by subclasses from their created constructor. |
| 1253 */ | 822 */ |
| 1254 CircleElement.created() : super.created(); | 823 CircleElement.created() : super.created(); |
| 1255 | 824 |
| 1256 @DomName('SVGCircleElement.cx') | 825 @DomName('SVGCircleElement.cx') |
| 1257 @DocsEditable() | 826 @DocsEditable() |
| 1258 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); | 827 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Get
ter_(unwrap_jso(this))); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1276 @DocsEditable() | 845 @DocsEditable() |
| 1277 @DomName('SVGClipPathElement') | 846 @DomName('SVGClipPathElement') |
| 1278 @Unstable() | 847 @Unstable() |
| 1279 class ClipPathElement extends GraphicsElement { | 848 class ClipPathElement extends GraphicsElement { |
| 1280 // To suppress missing implicit constructor warnings. | 849 // To suppress missing implicit constructor warnings. |
| 1281 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } | 850 factory ClipPathElement._() { throw new UnsupportedError("Not supported"); } |
| 1282 | 851 |
| 1283 @DomName('SVGClipPathElement.SVGClipPathElement') | 852 @DomName('SVGClipPathElement.SVGClipPathElement') |
| 1284 @DocsEditable() | 853 @DocsEditable() |
| 1285 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); | 854 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("
clipPath"); |
| 1286 | |
| 1287 | |
| 1288 static ClipPathElement internalCreateClipPathElement() { | |
| 1289 return new ClipPathElement._internalWrap(); | |
| 1290 } | |
| 1291 | |
| 1292 factory ClipPathElement._internalWrap() { | |
| 1293 return new ClipPathElement.internal_(); | |
| 1294 } | |
| 1295 | |
| 1296 ClipPathElement.internal_() : super.internal_(); | |
| 1297 | |
| 1298 /** | 855 /** |
| 1299 * Constructor instantiated by the DOM when a custom element has been created. | 856 * Constructor instantiated by the DOM when a custom element has been created. |
| 1300 * | 857 * |
| 1301 * This can only be called by subclasses from their created constructor. | 858 * This can only be called by subclasses from their created constructor. |
| 1302 */ | 859 */ |
| 1303 ClipPathElement.created() : super.created(); | 860 ClipPathElement.created() : super.created(); |
| 1304 | 861 |
| 1305 @DomName('SVGClipPathElement.clipPathUnits') | 862 @DomName('SVGClipPathElement.clipPathUnits') |
| 1306 @DocsEditable() | 863 @DocsEditable() |
| 1307 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); | 864 AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathEleme
nt.instance.clipPathUnits_Getter_(unwrap_jso(this))); |
| 1308 | 865 |
| 1309 } | 866 } |
| 1310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 867 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1311 // for details. All rights reserved. Use of this source code is governed by a | 868 // for details. All rights reserved. Use of this source code is governed by a |
| 1312 // BSD-style license that can be found in the LICENSE file. | 869 // BSD-style license that can be found in the LICENSE file. |
| 1313 | 870 |
| 1314 // WARNING: Do not edit - generated code. | 871 // WARNING: Do not edit - generated code. |
| 1315 | 872 |
| 1316 | 873 |
| 1317 @DocsEditable() | 874 @DocsEditable() |
| 1318 @DomName('SVGDefsElement') | 875 @DomName('SVGDefsElement') |
| 1319 @Unstable() | 876 @Unstable() |
| 1320 class DefsElement extends GraphicsElement { | 877 class DefsElement extends GraphicsElement { |
| 1321 // To suppress missing implicit constructor warnings. | 878 // To suppress missing implicit constructor warnings. |
| 1322 factory DefsElement._() { throw new UnsupportedError("Not supported"); } | 879 factory DefsElement._() { throw new UnsupportedError("Not supported"); } |
| 1323 | 880 |
| 1324 @DomName('SVGDefsElement.SVGDefsElement') | 881 @DomName('SVGDefsElement.SVGDefsElement') |
| 1325 @DocsEditable() | 882 @DocsEditable() |
| 1326 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); | 883 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs
"); |
| 1327 | |
| 1328 | |
| 1329 static DefsElement internalCreateDefsElement() { | |
| 1330 return new DefsElement._internalWrap(); | |
| 1331 } | |
| 1332 | |
| 1333 factory DefsElement._internalWrap() { | |
| 1334 return new DefsElement.internal_(); | |
| 1335 } | |
| 1336 | |
| 1337 DefsElement.internal_() : super.internal_(); | |
| 1338 | |
| 1339 /** | 884 /** |
| 1340 * Constructor instantiated by the DOM when a custom element has been created. | 885 * Constructor instantiated by the DOM when a custom element has been created. |
| 1341 * | 886 * |
| 1342 * This can only be called by subclasses from their created constructor. | 887 * This can only be called by subclasses from their created constructor. |
| 1343 */ | 888 */ |
| 1344 DefsElement.created() : super.created(); | 889 DefsElement.created() : super.created(); |
| 1345 | 890 |
| 1346 } | 891 } |
| 1347 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1348 // for details. All rights reserved. Use of this source code is governed by a | 893 // for details. All rights reserved. Use of this source code is governed by a |
| 1349 // BSD-style license that can be found in the LICENSE file. | 894 // BSD-style license that can be found in the LICENSE file. |
| 1350 | 895 |
| 1351 // WARNING: Do not edit - generated code. | 896 // WARNING: Do not edit - generated code. |
| 1352 | 897 |
| 1353 | 898 |
| 1354 @DocsEditable() | 899 @DocsEditable() |
| 1355 @DomName('SVGDescElement') | 900 @DomName('SVGDescElement') |
| 1356 @Unstable() | 901 @Unstable() |
| 1357 class DescElement extends SvgElement { | 902 class DescElement extends SvgElement { |
| 1358 // To suppress missing implicit constructor warnings. | 903 // To suppress missing implicit constructor warnings. |
| 1359 factory DescElement._() { throw new UnsupportedError("Not supported"); } | 904 factory DescElement._() { throw new UnsupportedError("Not supported"); } |
| 1360 | 905 |
| 1361 @DomName('SVGDescElement.SVGDescElement') | 906 @DomName('SVGDescElement.SVGDescElement') |
| 1362 @DocsEditable() | 907 @DocsEditable() |
| 1363 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); | 908 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc
"); |
| 1364 | |
| 1365 | |
| 1366 static DescElement internalCreateDescElement() { | |
| 1367 return new DescElement._internalWrap(); | |
| 1368 } | |
| 1369 | |
| 1370 factory DescElement._internalWrap() { | |
| 1371 return new DescElement.internal_(); | |
| 1372 } | |
| 1373 | |
| 1374 DescElement.internal_() : super.internal_(); | |
| 1375 | |
| 1376 /** | 909 /** |
| 1377 * Constructor instantiated by the DOM when a custom element has been created. | 910 * Constructor instantiated by the DOM when a custom element has been created. |
| 1378 * | 911 * |
| 1379 * This can only be called by subclasses from their created constructor. | 912 * This can only be called by subclasses from their created constructor. |
| 1380 */ | 913 */ |
| 1381 DescElement.created() : super.created(); | 914 DescElement.created() : super.created(); |
| 1382 | 915 |
| 1383 } | 916 } |
| 1384 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1385 // for details. All rights reserved. Use of this source code is governed by a | 918 // for details. All rights reserved. Use of this source code is governed by a |
| 1386 // BSD-style license that can be found in the LICENSE file. | 919 // BSD-style license that can be found in the LICENSE file. |
| 1387 | 920 |
| 1388 // WARNING: Do not edit - generated code. | 921 // WARNING: Do not edit - generated code. |
| 1389 | 922 |
| 1390 | 923 |
| 1391 @DocsEditable() | 924 @DocsEditable() |
| 1392 @DomName('SVGDiscardElement') | 925 @DomName('SVGDiscardElement') |
| 1393 @Experimental() // untriaged | 926 @Experimental() // untriaged |
| 1394 class DiscardElement extends SvgElement { | 927 class DiscardElement extends SvgElement { |
| 1395 // To suppress missing implicit constructor warnings. | 928 // To suppress missing implicit constructor warnings. |
| 1396 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } | 929 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } |
| 1397 | |
| 1398 | |
| 1399 static DiscardElement internalCreateDiscardElement() { | |
| 1400 return new DiscardElement._internalWrap(); | |
| 1401 } | |
| 1402 | |
| 1403 factory DiscardElement._internalWrap() { | |
| 1404 return new DiscardElement.internal_(); | |
| 1405 } | |
| 1406 | |
| 1407 DiscardElement.internal_() : super.internal_(); | |
| 1408 | |
| 1409 /** | 930 /** |
| 1410 * Constructor instantiated by the DOM when a custom element has been created. | 931 * Constructor instantiated by the DOM when a custom element has been created. |
| 1411 * | 932 * |
| 1412 * This can only be called by subclasses from their created constructor. | 933 * This can only be called by subclasses from their created constructor. |
| 1413 */ | 934 */ |
| 1414 DiscardElement.created() : super.created(); | 935 DiscardElement.created() : super.created(); |
| 1415 | 936 |
| 1416 } | 937 } |
| 1417 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1418 // for details. All rights reserved. Use of this source code is governed by a | 939 // for details. All rights reserved. Use of this source code is governed by a |
| 1419 // BSD-style license that can be found in the LICENSE file. | 940 // BSD-style license that can be found in the LICENSE file. |
| 1420 | 941 |
| 1421 // WARNING: Do not edit - generated code. | 942 // WARNING: Do not edit - generated code. |
| 1422 | 943 |
| 1423 | 944 |
| 1424 @DocsEditable() | 945 @DocsEditable() |
| 1425 @DomName('SVGEllipseElement') | 946 @DomName('SVGEllipseElement') |
| 1426 @Unstable() | 947 @Unstable() |
| 1427 class EllipseElement extends GeometryElement { | 948 class EllipseElement extends GeometryElement { |
| 1428 // To suppress missing implicit constructor warnings. | 949 // To suppress missing implicit constructor warnings. |
| 1429 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } | 950 factory EllipseElement._() { throw new UnsupportedError("Not supported"); } |
| 1430 | 951 |
| 1431 @DomName('SVGEllipseElement.SVGEllipseElement') | 952 @DomName('SVGEllipseElement.SVGEllipseElement') |
| 1432 @DocsEditable() | 953 @DocsEditable() |
| 1433 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 954 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
| 1434 | |
| 1435 | |
| 1436 static EllipseElement internalCreateEllipseElement() { | |
| 1437 return new EllipseElement._internalWrap(); | |
| 1438 } | |
| 1439 | |
| 1440 factory EllipseElement._internalWrap() { | |
| 1441 return new EllipseElement.internal_(); | |
| 1442 } | |
| 1443 | |
| 1444 EllipseElement.internal_() : super.internal_(); | |
| 1445 | |
| 1446 /** | 955 /** |
| 1447 * Constructor instantiated by the DOM when a custom element has been created. | 956 * Constructor instantiated by the DOM when a custom element has been created. |
| 1448 * | 957 * |
| 1449 * This can only be called by subclasses from their created constructor. | 958 * This can only be called by subclasses from their created constructor. |
| 1450 */ | 959 */ |
| 1451 EllipseElement.created() : super.created(); | 960 EllipseElement.created() : super.created(); |
| 1452 | 961 |
| 1453 @DomName('SVGEllipseElement.cx') | 962 @DomName('SVGEllipseElement.cx') |
| 1454 @DocsEditable() | 963 @DocsEditable() |
| 1455 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); | 964 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Ge
tter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1481 @SupportedBrowser(SupportedBrowser.IE, '10') | 990 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1482 @SupportedBrowser(SupportedBrowser.SAFARI) | 991 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1483 @Unstable() | 992 @Unstable() |
| 1484 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 993 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 1485 // To suppress missing implicit constructor warnings. | 994 // To suppress missing implicit constructor warnings. |
| 1486 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } | 995 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } |
| 1487 | 996 |
| 1488 @DomName('SVGFEBlendElement.SVGFEBlendElement') | 997 @DomName('SVGFEBlendElement.SVGFEBlendElement') |
| 1489 @DocsEditable() | 998 @DocsEditable() |
| 1490 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); | 999 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eBlend"); |
| 1491 | |
| 1492 | |
| 1493 static FEBlendElement internalCreateFEBlendElement() { | |
| 1494 return new FEBlendElement._internalWrap(); | |
| 1495 } | |
| 1496 | |
| 1497 factory FEBlendElement._internalWrap() { | |
| 1498 return new FEBlendElement.internal_(); | |
| 1499 } | |
| 1500 | |
| 1501 FEBlendElement.internal_() : super.internal_(); | |
| 1502 | |
| 1503 /** | 1000 /** |
| 1504 * Constructor instantiated by the DOM when a custom element has been created. | 1001 * Constructor instantiated by the DOM when a custom element has been created. |
| 1505 * | 1002 * |
| 1506 * This can only be called by subclasses from their created constructor. | 1003 * This can only be called by subclasses from their created constructor. |
| 1507 */ | 1004 */ |
| 1508 FEBlendElement.created() : super.created(); | 1005 FEBlendElement.created() : super.created(); |
| 1509 | 1006 |
| 1510 /// Checks if this type is supported on the current platform. | 1007 /// Checks if this type is supported on the current platform. |
| 1511 static bool get supported => true; | 1008 static bool get supported => true; |
| 1512 | 1009 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1581 @SupportedBrowser(SupportedBrowser.IE, '10') | 1078 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1582 @SupportedBrowser(SupportedBrowser.SAFARI) | 1079 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1583 @Unstable() | 1080 @Unstable() |
| 1584 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { | 1081 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
Attributes { |
| 1585 // To suppress missing implicit constructor warnings. | 1082 // To suppress missing implicit constructor warnings. |
| 1586 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } | 1083 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported")
; } |
| 1587 | 1084 |
| 1588 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') | 1085 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') |
| 1589 @DocsEditable() | 1086 @DocsEditable() |
| 1590 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); | 1087 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_
tag("feColorMatrix"); |
| 1591 | |
| 1592 | |
| 1593 static FEColorMatrixElement internalCreateFEColorMatrixElement() { | |
| 1594 return new FEColorMatrixElement._internalWrap(); | |
| 1595 } | |
| 1596 | |
| 1597 factory FEColorMatrixElement._internalWrap() { | |
| 1598 return new FEColorMatrixElement.internal_(); | |
| 1599 } | |
| 1600 | |
| 1601 FEColorMatrixElement.internal_() : super.internal_(); | |
| 1602 | |
| 1603 /** | 1088 /** |
| 1604 * Constructor instantiated by the DOM when a custom element has been created. | 1089 * Constructor instantiated by the DOM when a custom element has been created. |
| 1605 * | 1090 * |
| 1606 * This can only be called by subclasses from their created constructor. | 1091 * This can only be called by subclasses from their created constructor. |
| 1607 */ | 1092 */ |
| 1608 FEColorMatrixElement.created() : super.created(); | 1093 FEColorMatrixElement.created() : super.created(); |
| 1609 | 1094 |
| 1610 /// Checks if this type is supported on the current platform. | 1095 /// Checks if this type is supported on the current platform. |
| 1611 static bool get supported => true; | 1096 static bool get supported => true; |
| 1612 | 1097 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 @SupportedBrowser(SupportedBrowser.IE, '10') | 1162 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1678 @SupportedBrowser(SupportedBrowser.SAFARI) | 1163 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1679 @Unstable() | 1164 @Unstable() |
| 1680 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { | 1165 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
andardAttributes { |
| 1681 // To suppress missing implicit constructor warnings. | 1166 // To suppress missing implicit constructor warnings. |
| 1682 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } | 1167 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo
rted"); } |
| 1683 | 1168 |
| 1684 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') | 1169 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') |
| 1685 @DocsEditable() | 1170 @DocsEditable() |
| 1686 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); | 1171 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl
ement_tag("feComponentTransfer"); |
| 1687 | |
| 1688 | |
| 1689 static FEComponentTransferElement internalCreateFEComponentTransferElement() { | |
| 1690 return new FEComponentTransferElement._internalWrap(); | |
| 1691 } | |
| 1692 | |
| 1693 factory FEComponentTransferElement._internalWrap() { | |
| 1694 return new FEComponentTransferElement.internal_(); | |
| 1695 } | |
| 1696 | |
| 1697 FEComponentTransferElement.internal_() : super.internal_(); | |
| 1698 | |
| 1699 /** | 1172 /** |
| 1700 * Constructor instantiated by the DOM when a custom element has been created. | 1173 * Constructor instantiated by the DOM when a custom element has been created. |
| 1701 * | 1174 * |
| 1702 * This can only be called by subclasses from their created constructor. | 1175 * This can only be called by subclasses from their created constructor. |
| 1703 */ | 1176 */ |
| 1704 FEComponentTransferElement.created() : super.created(); | 1177 FEComponentTransferElement.created() : super.created(); |
| 1705 | 1178 |
| 1706 /// Checks if this type is supported on the current platform. | 1179 /// Checks if this type is supported on the current platform. |
| 1707 static bool get supported => true; | 1180 static bool get supported => true; |
| 1708 | 1181 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1737 | 1210 |
| 1738 // WARNING: Do not edit - generated code. | 1211 // WARNING: Do not edit - generated code. |
| 1739 | 1212 |
| 1740 | 1213 |
| 1741 @DocsEditable() | 1214 @DocsEditable() |
| 1742 @DomName('SVGFECompositeElement') | 1215 @DomName('SVGFECompositeElement') |
| 1743 @Unstable() | 1216 @Unstable() |
| 1744 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { | 1217 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
tributes { |
| 1745 // To suppress missing implicit constructor warnings. | 1218 // To suppress missing implicit constructor warnings. |
| 1746 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} | 1219 factory FECompositeElement._() { throw new UnsupportedError("Not supported");
} |
| 1747 | |
| 1748 | |
| 1749 static FECompositeElement internalCreateFECompositeElement() { | |
| 1750 return new FECompositeElement._internalWrap(); | |
| 1751 } | |
| 1752 | |
| 1753 factory FECompositeElement._internalWrap() { | |
| 1754 return new FECompositeElement.internal_(); | |
| 1755 } | |
| 1756 | |
| 1757 FECompositeElement.internal_() : super.internal_(); | |
| 1758 | |
| 1759 /** | 1220 /** |
| 1760 * Constructor instantiated by the DOM when a custom element has been created. | 1221 * Constructor instantiated by the DOM when a custom element has been created. |
| 1761 * | 1222 * |
| 1762 * This can only be called by subclasses from their created constructor. | 1223 * This can only be called by subclasses from their created constructor. |
| 1763 */ | 1224 */ |
| 1764 FECompositeElement.created() : super.created(); | 1225 FECompositeElement.created() : super.created(); |
| 1765 | 1226 |
| 1766 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') | 1227 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') |
| 1767 @DocsEditable() | 1228 @DocsEditable() |
| 1768 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; | 1229 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1854 @SupportedBrowser(SupportedBrowser.IE, '10') | 1315 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1855 @SupportedBrowser(SupportedBrowser.SAFARI) | 1316 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1856 @Unstable() | 1317 @Unstable() |
| 1857 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 1318 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { |
| 1858 // To suppress missing implicit constructor warnings. | 1319 // To suppress missing implicit constructor warnings. |
| 1859 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } | 1320 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 1860 | 1321 |
| 1861 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') | 1322 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') |
| 1862 @DocsEditable() | 1323 @DocsEditable() |
| 1863 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); | 1324 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme
nt_tag("feConvolveMatrix"); |
| 1864 | |
| 1865 | |
| 1866 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { | |
| 1867 return new FEConvolveMatrixElement._internalWrap(); | |
| 1868 } | |
| 1869 | |
| 1870 factory FEConvolveMatrixElement._internalWrap() { | |
| 1871 return new FEConvolveMatrixElement.internal_(); | |
| 1872 } | |
| 1873 | |
| 1874 FEConvolveMatrixElement.internal_() : super.internal_(); | |
| 1875 | |
| 1876 /** | 1325 /** |
| 1877 * Constructor instantiated by the DOM when a custom element has been created. | 1326 * Constructor instantiated by the DOM when a custom element has been created. |
| 1878 * | 1327 * |
| 1879 * This can only be called by subclasses from their created constructor. | 1328 * This can only be called by subclasses from their created constructor. |
| 1880 */ | 1329 */ |
| 1881 FEConvolveMatrixElement.created() : super.created(); | 1330 FEConvolveMatrixElement.created() : super.created(); |
| 1882 | 1331 |
| 1883 /// Checks if this type is supported on the current platform. | 1332 /// Checks if this type is supported on the current platform. |
| 1884 static bool get supported => true; | 1333 static bool get supported => true; |
| 1885 | 1334 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1982 @SupportedBrowser(SupportedBrowser.IE, '10') | 1431 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 1983 @SupportedBrowser(SupportedBrowser.SAFARI) | 1432 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 1984 @Unstable() | 1433 @Unstable() |
| 1985 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1434 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 1986 // To suppress missing implicit constructor warnings. | 1435 // To suppress missing implicit constructor warnings. |
| 1987 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } | 1436 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support
ed"); } |
| 1988 | 1437 |
| 1989 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') | 1438 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') |
| 1990 @DocsEditable() | 1439 @DocsEditable() |
| 1991 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); | 1440 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDiffuseLighting"); |
| 1992 | |
| 1993 | |
| 1994 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { | |
| 1995 return new FEDiffuseLightingElement._internalWrap(); | |
| 1996 } | |
| 1997 | |
| 1998 factory FEDiffuseLightingElement._internalWrap() { | |
| 1999 return new FEDiffuseLightingElement.internal_(); | |
| 2000 } | |
| 2001 | |
| 2002 FEDiffuseLightingElement.internal_() : super.internal_(); | |
| 2003 | |
| 2004 /** | 1441 /** |
| 2005 * Constructor instantiated by the DOM when a custom element has been created. | 1442 * Constructor instantiated by the DOM when a custom element has been created. |
| 2006 * | 1443 * |
| 2007 * This can only be called by subclasses from their created constructor. | 1444 * This can only be called by subclasses from their created constructor. |
| 2008 */ | 1445 */ |
| 2009 FEDiffuseLightingElement.created() : super.created(); | 1446 FEDiffuseLightingElement.created() : super.created(); |
| 2010 | 1447 |
| 2011 /// Checks if this type is supported on the current platform. | 1448 /// Checks if this type is supported on the current platform. |
| 2012 static bool get supported => true; | 1449 static bool get supported => true; |
| 2013 | 1450 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2066 @SupportedBrowser(SupportedBrowser.IE, '10') | 1503 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2067 @SupportedBrowser(SupportedBrowser.SAFARI) | 1504 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2068 @Unstable() | 1505 @Unstable() |
| 2069 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { | 1506 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
dardAttributes { |
| 2070 // To suppress missing implicit constructor warnings. | 1507 // To suppress missing implicit constructor warnings. |
| 2071 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } | 1508 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support
ed"); } |
| 2072 | 1509 |
| 2073 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') | 1510 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') |
| 2074 @DocsEditable() | 1511 @DocsEditable() |
| 2075 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); | 1512 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem
ent_tag("feDisplacementMap"); |
| 2076 | |
| 2077 | |
| 2078 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { | |
| 2079 return new FEDisplacementMapElement._internalWrap(); | |
| 2080 } | |
| 2081 | |
| 2082 factory FEDisplacementMapElement._internalWrap() { | |
| 2083 return new FEDisplacementMapElement.internal_(); | |
| 2084 } | |
| 2085 | |
| 2086 FEDisplacementMapElement.internal_() : super.internal_(); | |
| 2087 | |
| 2088 /** | 1513 /** |
| 2089 * Constructor instantiated by the DOM when a custom element has been created. | 1514 * Constructor instantiated by the DOM when a custom element has been created. |
| 2090 * | 1515 * |
| 2091 * This can only be called by subclasses from their created constructor. | 1516 * This can only be called by subclasses from their created constructor. |
| 2092 */ | 1517 */ |
| 2093 FEDisplacementMapElement.created() : super.created(); | 1518 FEDisplacementMapElement.created() : super.created(); |
| 2094 | 1519 |
| 2095 /// Checks if this type is supported on the current platform. | 1520 /// Checks if this type is supported on the current platform. |
| 2096 static bool get supported => true; | 1521 static bool get supported => true; |
| 2097 | 1522 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2170 @SupportedBrowser(SupportedBrowser.IE, '10') | 1595 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2171 @SupportedBrowser(SupportedBrowser.SAFARI) | 1596 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2172 @Unstable() | 1597 @Unstable() |
| 2173 class FEDistantLightElement extends SvgElement { | 1598 class FEDistantLightElement extends SvgElement { |
| 2174 // To suppress missing implicit constructor warnings. | 1599 // To suppress missing implicit constructor warnings. |
| 2175 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } | 1600 factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"
); } |
| 2176 | 1601 |
| 2177 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') | 1602 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') |
| 2178 @DocsEditable() | 1603 @DocsEditable() |
| 2179 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); | 1604 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feDistantLight"); |
| 2180 | |
| 2181 | |
| 2182 static FEDistantLightElement internalCreateFEDistantLightElement() { | |
| 2183 return new FEDistantLightElement._internalWrap(); | |
| 2184 } | |
| 2185 | |
| 2186 factory FEDistantLightElement._internalWrap() { | |
| 2187 return new FEDistantLightElement.internal_(); | |
| 2188 } | |
| 2189 | |
| 2190 FEDistantLightElement.internal_() : super.internal_(); | |
| 2191 | |
| 2192 /** | 1605 /** |
| 2193 * Constructor instantiated by the DOM when a custom element has been created. | 1606 * Constructor instantiated by the DOM when a custom element has been created. |
| 2194 * | 1607 * |
| 2195 * This can only be called by subclasses from their created constructor. | 1608 * This can only be called by subclasses from their created constructor. |
| 2196 */ | 1609 */ |
| 2197 FEDistantLightElement.created() : super.created(); | 1610 FEDistantLightElement.created() : super.created(); |
| 2198 | 1611 |
| 2199 /// Checks if this type is supported on the current platform. | 1612 /// Checks if this type is supported on the current platform. |
| 2200 static bool get supported => true; | 1613 static bool get supported => true; |
| 2201 | 1614 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 2222 @SupportedBrowser(SupportedBrowser.IE, '10') | 1635 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2223 @SupportedBrowser(SupportedBrowser.SAFARI) | 1636 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2224 @Unstable() | 1637 @Unstable() |
| 2225 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1638 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2226 // To suppress missing implicit constructor warnings. | 1639 // To suppress missing implicit constructor warnings. |
| 2227 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } | 1640 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } |
| 2228 | 1641 |
| 2229 @DomName('SVGFEFloodElement.SVGFEFloodElement') | 1642 @DomName('SVGFEFloodElement.SVGFEFloodElement') |
| 2230 @DocsEditable() | 1643 @DocsEditable() |
| 2231 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); | 1644 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFlood"); |
| 2232 | |
| 2233 | |
| 2234 static FEFloodElement internalCreateFEFloodElement() { | |
| 2235 return new FEFloodElement._internalWrap(); | |
| 2236 } | |
| 2237 | |
| 2238 factory FEFloodElement._internalWrap() { | |
| 2239 return new FEFloodElement.internal_(); | |
| 2240 } | |
| 2241 | |
| 2242 FEFloodElement.internal_() : super.internal_(); | |
| 2243 | |
| 2244 /** | 1645 /** |
| 2245 * Constructor instantiated by the DOM when a custom element has been created. | 1646 * Constructor instantiated by the DOM when a custom element has been created. |
| 2246 * | 1647 * |
| 2247 * This can only be called by subclasses from their created constructor. | 1648 * This can only be called by subclasses from their created constructor. |
| 2248 */ | 1649 */ |
| 2249 FEFloodElement.created() : super.created(); | 1650 FEFloodElement.created() : super.created(); |
| 2250 | 1651 |
| 2251 /// Checks if this type is supported on the current platform. | 1652 /// Checks if this type is supported on the current platform. |
| 2252 static bool get supported => true; | 1653 static bool get supported => true; |
| 2253 | 1654 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2286 @SupportedBrowser(SupportedBrowser.IE, '10') | 1687 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2287 @SupportedBrowser(SupportedBrowser.SAFARI) | 1688 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2288 @Unstable() | 1689 @Unstable() |
| 2289 class FEFuncAElement extends _SVGComponentTransferFunctionElement { | 1690 class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
| 2290 // To suppress missing implicit constructor warnings. | 1691 // To suppress missing implicit constructor warnings. |
| 2291 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } | 1692 factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); } |
| 2292 | 1693 |
| 2293 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') | 1694 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') |
| 2294 @DocsEditable() | 1695 @DocsEditable() |
| 2295 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); | 1696 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncA"); |
| 2296 | |
| 2297 | |
| 2298 static FEFuncAElement internalCreateFEFuncAElement() { | |
| 2299 return new FEFuncAElement._internalWrap(); | |
| 2300 } | |
| 2301 | |
| 2302 factory FEFuncAElement._internalWrap() { | |
| 2303 return new FEFuncAElement.internal_(); | |
| 2304 } | |
| 2305 | |
| 2306 FEFuncAElement.internal_() : super.internal_(); | |
| 2307 | |
| 2308 /** | 1697 /** |
| 2309 * Constructor instantiated by the DOM when a custom element has been created. | 1698 * Constructor instantiated by the DOM when a custom element has been created. |
| 2310 * | 1699 * |
| 2311 * This can only be called by subclasses from their created constructor. | 1700 * This can only be called by subclasses from their created constructor. |
| 2312 */ | 1701 */ |
| 2313 FEFuncAElement.created() : super.created(); | 1702 FEFuncAElement.created() : super.created(); |
| 2314 | 1703 |
| 2315 /// Checks if this type is supported on the current platform. | 1704 /// Checks if this type is supported on the current platform. |
| 2316 static bool get supported => true; | 1705 static bool get supported => true; |
| 2317 | 1706 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2330 @SupportedBrowser(SupportedBrowser.IE, '10') | 1719 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2331 @SupportedBrowser(SupportedBrowser.SAFARI) | 1720 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2332 @Unstable() | 1721 @Unstable() |
| 2333 class FEFuncBElement extends _SVGComponentTransferFunctionElement { | 1722 class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
| 2334 // To suppress missing implicit constructor warnings. | 1723 // To suppress missing implicit constructor warnings. |
| 2335 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } | 1724 factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); } |
| 2336 | 1725 |
| 2337 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') | 1726 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') |
| 2338 @DocsEditable() | 1727 @DocsEditable() |
| 2339 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); | 1728 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncB"); |
| 2340 | |
| 2341 | |
| 2342 static FEFuncBElement internalCreateFEFuncBElement() { | |
| 2343 return new FEFuncBElement._internalWrap(); | |
| 2344 } | |
| 2345 | |
| 2346 factory FEFuncBElement._internalWrap() { | |
| 2347 return new FEFuncBElement.internal_(); | |
| 2348 } | |
| 2349 | |
| 2350 FEFuncBElement.internal_() : super.internal_(); | |
| 2351 | |
| 2352 /** | 1729 /** |
| 2353 * Constructor instantiated by the DOM when a custom element has been created. | 1730 * Constructor instantiated by the DOM when a custom element has been created. |
| 2354 * | 1731 * |
| 2355 * This can only be called by subclasses from their created constructor. | 1732 * This can only be called by subclasses from their created constructor. |
| 2356 */ | 1733 */ |
| 2357 FEFuncBElement.created() : super.created(); | 1734 FEFuncBElement.created() : super.created(); |
| 2358 | 1735 |
| 2359 /// Checks if this type is supported on the current platform. | 1736 /// Checks if this type is supported on the current platform. |
| 2360 static bool get supported => true; | 1737 static bool get supported => true; |
| 2361 | 1738 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2374 @SupportedBrowser(SupportedBrowser.IE, '10') | 1751 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2375 @SupportedBrowser(SupportedBrowser.SAFARI) | 1752 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2376 @Unstable() | 1753 @Unstable() |
| 2377 class FEFuncGElement extends _SVGComponentTransferFunctionElement { | 1754 class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
| 2378 // To suppress missing implicit constructor warnings. | 1755 // To suppress missing implicit constructor warnings. |
| 2379 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } | 1756 factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); } |
| 2380 | 1757 |
| 2381 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') | 1758 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') |
| 2382 @DocsEditable() | 1759 @DocsEditable() |
| 2383 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); | 1760 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncG"); |
| 2384 | |
| 2385 | |
| 2386 static FEFuncGElement internalCreateFEFuncGElement() { | |
| 2387 return new FEFuncGElement._internalWrap(); | |
| 2388 } | |
| 2389 | |
| 2390 factory FEFuncGElement._internalWrap() { | |
| 2391 return new FEFuncGElement.internal_(); | |
| 2392 } | |
| 2393 | |
| 2394 FEFuncGElement.internal_() : super.internal_(); | |
| 2395 | |
| 2396 /** | 1761 /** |
| 2397 * Constructor instantiated by the DOM when a custom element has been created. | 1762 * Constructor instantiated by the DOM when a custom element has been created. |
| 2398 * | 1763 * |
| 2399 * This can only be called by subclasses from their created constructor. | 1764 * This can only be called by subclasses from their created constructor. |
| 2400 */ | 1765 */ |
| 2401 FEFuncGElement.created() : super.created(); | 1766 FEFuncGElement.created() : super.created(); |
| 2402 | 1767 |
| 2403 /// Checks if this type is supported on the current platform. | 1768 /// Checks if this type is supported on the current platform. |
| 2404 static bool get supported => true; | 1769 static bool get supported => true; |
| 2405 | 1770 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2418 @SupportedBrowser(SupportedBrowser.IE, '10') | 1783 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2419 @SupportedBrowser(SupportedBrowser.SAFARI) | 1784 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2420 @Unstable() | 1785 @Unstable() |
| 2421 class FEFuncRElement extends _SVGComponentTransferFunctionElement { | 1786 class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
| 2422 // To suppress missing implicit constructor warnings. | 1787 // To suppress missing implicit constructor warnings. |
| 2423 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } | 1788 factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); } |
| 2424 | 1789 |
| 2425 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') | 1790 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') |
| 2426 @DocsEditable() | 1791 @DocsEditable() |
| 2427 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); | 1792 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eFuncR"); |
| 2428 | |
| 2429 | |
| 2430 static FEFuncRElement internalCreateFEFuncRElement() { | |
| 2431 return new FEFuncRElement._internalWrap(); | |
| 2432 } | |
| 2433 | |
| 2434 factory FEFuncRElement._internalWrap() { | |
| 2435 return new FEFuncRElement.internal_(); | |
| 2436 } | |
| 2437 | |
| 2438 FEFuncRElement.internal_() : super.internal_(); | |
| 2439 | |
| 2440 /** | 1793 /** |
| 2441 * Constructor instantiated by the DOM when a custom element has been created. | 1794 * Constructor instantiated by the DOM when a custom element has been created. |
| 2442 * | 1795 * |
| 2443 * This can only be called by subclasses from their created constructor. | 1796 * This can only be called by subclasses from their created constructor. |
| 2444 */ | 1797 */ |
| 2445 FEFuncRElement.created() : super.created(); | 1798 FEFuncRElement.created() : super.created(); |
| 2446 | 1799 |
| 2447 /// Checks if this type is supported on the current platform. | 1800 /// Checks if this type is supported on the current platform. |
| 2448 static bool get supported => true; | 1801 static bool get supported => true; |
| 2449 | 1802 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2462 @SupportedBrowser(SupportedBrowser.IE, '10') | 1815 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2463 @SupportedBrowser(SupportedBrowser.SAFARI) | 1816 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2464 @Unstable() | 1817 @Unstable() |
| 2465 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { | 1818 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
dAttributes { |
| 2466 // To suppress missing implicit constructor warnings. | 1819 // To suppress missing implicit constructor warnings. |
| 2467 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } | 1820 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"
); } |
| 2468 | 1821 |
| 2469 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') | 1822 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') |
| 2470 @DocsEditable() | 1823 @DocsEditable() |
| 2471 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); | 1824 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement
_tag("feGaussianBlur"); |
| 2472 | |
| 2473 | |
| 2474 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { | |
| 2475 return new FEGaussianBlurElement._internalWrap(); | |
| 2476 } | |
| 2477 | |
| 2478 factory FEGaussianBlurElement._internalWrap() { | |
| 2479 return new FEGaussianBlurElement.internal_(); | |
| 2480 } | |
| 2481 | |
| 2482 FEGaussianBlurElement.internal_() : super.internal_(); | |
| 2483 | |
| 2484 /** | 1825 /** |
| 2485 * Constructor instantiated by the DOM when a custom element has been created. | 1826 * Constructor instantiated by the DOM when a custom element has been created. |
| 2486 * | 1827 * |
| 2487 * This can only be called by subclasses from their created constructor. | 1828 * This can only be called by subclasses from their created constructor. |
| 2488 */ | 1829 */ |
| 2489 FEGaussianBlurElement.created() : super.created(); | 1830 FEGaussianBlurElement.created() : super.created(); |
| 2490 | 1831 |
| 2491 /// Checks if this type is supported on the current platform. | 1832 /// Checks if this type is supported on the current platform. |
| 2492 static bool get supported => true; | 1833 static bool get supported => true; |
| 2493 | 1834 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2542 @SupportedBrowser(SupportedBrowser.IE, '10') | 1883 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2543 @SupportedBrowser(SupportedBrowser.SAFARI) | 1884 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2544 @Unstable() | 1885 @Unstable() |
| 2545 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { | 1886 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes, UriReference { |
| 2546 // To suppress missing implicit constructor warnings. | 1887 // To suppress missing implicit constructor warnings. |
| 2547 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } | 1888 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } |
| 2548 | 1889 |
| 2549 @DomName('SVGFEImageElement.SVGFEImageElement') | 1890 @DomName('SVGFEImageElement.SVGFEImageElement') |
| 2550 @DocsEditable() | 1891 @DocsEditable() |
| 2551 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); | 1892 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eImage"); |
| 2552 | |
| 2553 | |
| 2554 static FEImageElement internalCreateFEImageElement() { | |
| 2555 return new FEImageElement._internalWrap(); | |
| 2556 } | |
| 2557 | |
| 2558 factory FEImageElement._internalWrap() { | |
| 2559 return new FEImageElement.internal_(); | |
| 2560 } | |
| 2561 | |
| 2562 FEImageElement.internal_() : super.internal_(); | |
| 2563 | |
| 2564 /** | 1893 /** |
| 2565 * Constructor instantiated by the DOM when a custom element has been created. | 1894 * Constructor instantiated by the DOM when a custom element has been created. |
| 2566 * | 1895 * |
| 2567 * This can only be called by subclasses from their created constructor. | 1896 * This can only be called by subclasses from their created constructor. |
| 2568 */ | 1897 */ |
| 2569 FEImageElement.created() : super.created(); | 1898 FEImageElement.created() : super.created(); |
| 2570 | 1899 |
| 2571 /// Checks if this type is supported on the current platform. | 1900 /// Checks if this type is supported on the current platform. |
| 2572 static bool get supported => true; | 1901 static bool get supported => true; |
| 2573 | 1902 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2614 @SupportedBrowser(SupportedBrowser.IE, '10') | 1943 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2615 @SupportedBrowser(SupportedBrowser.SAFARI) | 1944 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2616 @Unstable() | 1945 @Unstable() |
| 2617 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { | 1946 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
utes { |
| 2618 // To suppress missing implicit constructor warnings. | 1947 // To suppress missing implicit constructor warnings. |
| 2619 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } | 1948 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } |
| 2620 | 1949 |
| 2621 @DomName('SVGFEMergeElement.SVGFEMergeElement') | 1950 @DomName('SVGFEMergeElement.SVGFEMergeElement') |
| 2622 @DocsEditable() | 1951 @DocsEditable() |
| 2623 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); | 1952 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f
eMerge"); |
| 2624 | |
| 2625 | |
| 2626 static FEMergeElement internalCreateFEMergeElement() { | |
| 2627 return new FEMergeElement._internalWrap(); | |
| 2628 } | |
| 2629 | |
| 2630 factory FEMergeElement._internalWrap() { | |
| 2631 return new FEMergeElement.internal_(); | |
| 2632 } | |
| 2633 | |
| 2634 FEMergeElement.internal_() : super.internal_(); | |
| 2635 | |
| 2636 /** | 1953 /** |
| 2637 * Constructor instantiated by the DOM when a custom element has been created. | 1954 * Constructor instantiated by the DOM when a custom element has been created. |
| 2638 * | 1955 * |
| 2639 * This can only be called by subclasses from their created constructor. | 1956 * This can only be called by subclasses from their created constructor. |
| 2640 */ | 1957 */ |
| 2641 FEMergeElement.created() : super.created(); | 1958 FEMergeElement.created() : super.created(); |
| 2642 | 1959 |
| 2643 /// Checks if this type is supported on the current platform. | 1960 /// Checks if this type is supported on the current platform. |
| 2644 static bool get supported => true; | 1961 static bool get supported => true; |
| 2645 | 1962 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2678 @SupportedBrowser(SupportedBrowser.IE, '10') | 1995 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2679 @SupportedBrowser(SupportedBrowser.SAFARI) | 1996 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2680 @Unstable() | 1997 @Unstable() |
| 2681 class FEMergeNodeElement extends SvgElement { | 1998 class FEMergeNodeElement extends SvgElement { |
| 2682 // To suppress missing implicit constructor warnings. | 1999 // To suppress missing implicit constructor warnings. |
| 2683 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} | 2000 factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported");
} |
| 2684 | 2001 |
| 2685 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') | 2002 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') |
| 2686 @DocsEditable() | 2003 @DocsEditable() |
| 2687 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); | 2004 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feMergeNode"); |
| 2688 | |
| 2689 | |
| 2690 static FEMergeNodeElement internalCreateFEMergeNodeElement() { | |
| 2691 return new FEMergeNodeElement._internalWrap(); | |
| 2692 } | |
| 2693 | |
| 2694 factory FEMergeNodeElement._internalWrap() { | |
| 2695 return new FEMergeNodeElement.internal_(); | |
| 2696 } | |
| 2697 | |
| 2698 FEMergeNodeElement.internal_() : super.internal_(); | |
| 2699 | |
| 2700 /** | 2005 /** |
| 2701 * Constructor instantiated by the DOM when a custom element has been created. | 2006 * Constructor instantiated by the DOM when a custom element has been created. |
| 2702 * | 2007 * |
| 2703 * This can only be called by subclasses from their created constructor. | 2008 * This can only be called by subclasses from their created constructor. |
| 2704 */ | 2009 */ |
| 2705 FEMergeNodeElement.created() : super.created(); | 2010 FEMergeNodeElement.created() : super.created(); |
| 2706 | 2011 |
| 2707 /// Checks if this type is supported on the current platform. | 2012 /// Checks if this type is supported on the current platform. |
| 2708 static bool get supported => true; | 2013 static bool get supported => true; |
| 2709 | 2014 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 2722 @DocsEditable() | 2027 @DocsEditable() |
| 2723 @DomName('SVGFEMorphologyElement') | 2028 @DomName('SVGFEMorphologyElement') |
| 2724 @SupportedBrowser(SupportedBrowser.CHROME) | 2029 @SupportedBrowser(SupportedBrowser.CHROME) |
| 2725 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2030 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 2726 @SupportedBrowser(SupportedBrowser.IE, '10') | 2031 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2727 @SupportedBrowser(SupportedBrowser.SAFARI) | 2032 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2728 @Unstable() | 2033 @Unstable() |
| 2729 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2034 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 2730 // To suppress missing implicit constructor warnings. | 2035 // To suppress missing implicit constructor warnings. |
| 2731 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} | 2036 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported");
} |
| 2732 | |
| 2733 | |
| 2734 static FEMorphologyElement internalCreateFEMorphologyElement() { | |
| 2735 return new FEMorphologyElement._internalWrap(); | |
| 2736 } | |
| 2737 | |
| 2738 factory FEMorphologyElement._internalWrap() { | |
| 2739 return new FEMorphologyElement.internal_(); | |
| 2740 } | |
| 2741 | |
| 2742 FEMorphologyElement.internal_() : super.internal_(); | |
| 2743 | |
| 2744 /** | 2037 /** |
| 2745 * Constructor instantiated by the DOM when a custom element has been created. | 2038 * Constructor instantiated by the DOM when a custom element has been created. |
| 2746 * | 2039 * |
| 2747 * This can only be called by subclasses from their created constructor. | 2040 * This can only be called by subclasses from their created constructor. |
| 2748 */ | 2041 */ |
| 2749 FEMorphologyElement.created() : super.created(); | 2042 FEMorphologyElement.created() : super.created(); |
| 2750 | 2043 |
| 2751 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') | 2044 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') |
| 2752 @DocsEditable() | 2045 @DocsEditable() |
| 2753 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; | 2046 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2811 @SupportedBrowser(SupportedBrowser.IE, '10') | 2104 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2812 @SupportedBrowser(SupportedBrowser.SAFARI) | 2105 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2813 @Unstable() | 2106 @Unstable() |
| 2814 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { | 2107 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
butes { |
| 2815 // To suppress missing implicit constructor warnings. | 2108 // To suppress missing implicit constructor warnings. |
| 2816 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } | 2109 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } |
| 2817 | 2110 |
| 2818 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') | 2111 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') |
| 2819 @DocsEditable() | 2112 @DocsEditable() |
| 2820 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); | 2113 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("
feOffset"); |
| 2821 | |
| 2822 | |
| 2823 static FEOffsetElement internalCreateFEOffsetElement() { | |
| 2824 return new FEOffsetElement._internalWrap(); | |
| 2825 } | |
| 2826 | |
| 2827 factory FEOffsetElement._internalWrap() { | |
| 2828 return new FEOffsetElement.internal_(); | |
| 2829 } | |
| 2830 | |
| 2831 FEOffsetElement.internal_() : super.internal_(); | |
| 2832 | |
| 2833 /** | 2114 /** |
| 2834 * Constructor instantiated by the DOM when a custom element has been created. | 2115 * Constructor instantiated by the DOM when a custom element has been created. |
| 2835 * | 2116 * |
| 2836 * This can only be called by subclasses from their created constructor. | 2117 * This can only be called by subclasses from their created constructor. |
| 2837 */ | 2118 */ |
| 2838 FEOffsetElement.created() : super.created(); | 2119 FEOffsetElement.created() : super.created(); |
| 2839 | 2120 |
| 2840 /// Checks if this type is supported on the current platform. | 2121 /// Checks if this type is supported on the current platform. |
| 2841 static bool get supported => true; | 2122 static bool get supported => true; |
| 2842 | 2123 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2887 @SupportedBrowser(SupportedBrowser.IE, '10') | 2168 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2888 @SupportedBrowser(SupportedBrowser.SAFARI) | 2169 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2889 @Unstable() | 2170 @Unstable() |
| 2890 class FEPointLightElement extends SvgElement { | 2171 class FEPointLightElement extends SvgElement { |
| 2891 // To suppress missing implicit constructor warnings. | 2172 // To suppress missing implicit constructor warnings. |
| 2892 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} | 2173 factory FEPointLightElement._() { throw new UnsupportedError("Not supported");
} |
| 2893 | 2174 |
| 2894 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') | 2175 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') |
| 2895 @DocsEditable() | 2176 @DocsEditable() |
| 2896 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); | 2177 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("fePointLight"); |
| 2897 | |
| 2898 | |
| 2899 static FEPointLightElement internalCreateFEPointLightElement() { | |
| 2900 return new FEPointLightElement._internalWrap(); | |
| 2901 } | |
| 2902 | |
| 2903 factory FEPointLightElement._internalWrap() { | |
| 2904 return new FEPointLightElement.internal_(); | |
| 2905 } | |
| 2906 | |
| 2907 FEPointLightElement.internal_() : super.internal_(); | |
| 2908 | |
| 2909 /** | 2178 /** |
| 2910 * Constructor instantiated by the DOM when a custom element has been created. | 2179 * Constructor instantiated by the DOM when a custom element has been created. |
| 2911 * | 2180 * |
| 2912 * This can only be called by subclasses from their created constructor. | 2181 * This can only be called by subclasses from their created constructor. |
| 2913 */ | 2182 */ |
| 2914 FEPointLightElement.created() : super.created(); | 2183 FEPointLightElement.created() : super.created(); |
| 2915 | 2184 |
| 2916 /// Checks if this type is supported on the current platform. | 2185 /// Checks if this type is supported on the current platform. |
| 2917 static bool get supported => true; | 2186 static bool get supported => true; |
| 2918 | 2187 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 2943 @SupportedBrowser(SupportedBrowser.IE, '10') | 2212 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 2944 @SupportedBrowser(SupportedBrowser.SAFARI) | 2213 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 2945 @Unstable() | 2214 @Unstable() |
| 2946 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { | 2215 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
ndardAttributes { |
| 2947 // To suppress missing implicit constructor warnings. | 2216 // To suppress missing implicit constructor warnings. |
| 2948 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } | 2217 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 2949 | 2218 |
| 2950 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') | 2219 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') |
| 2951 @DocsEditable() | 2220 @DocsEditable() |
| 2952 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); | 2221 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle
ment_tag("feSpecularLighting"); |
| 2953 | |
| 2954 | |
| 2955 static FESpecularLightingElement internalCreateFESpecularLightingElement() { | |
| 2956 return new FESpecularLightingElement._internalWrap(); | |
| 2957 } | |
| 2958 | |
| 2959 factory FESpecularLightingElement._internalWrap() { | |
| 2960 return new FESpecularLightingElement.internal_(); | |
| 2961 } | |
| 2962 | |
| 2963 FESpecularLightingElement.internal_() : super.internal_(); | |
| 2964 | |
| 2965 /** | 2222 /** |
| 2966 * Constructor instantiated by the DOM when a custom element has been created. | 2223 * Constructor instantiated by the DOM when a custom element has been created. |
| 2967 * | 2224 * |
| 2968 * This can only be called by subclasses from their created constructor. | 2225 * This can only be called by subclasses from their created constructor. |
| 2969 */ | 2226 */ |
| 2970 FESpecularLightingElement.created() : super.created(); | 2227 FESpecularLightingElement.created() : super.created(); |
| 2971 | 2228 |
| 2972 /// Checks if this type is supported on the current platform. | 2229 /// Checks if this type is supported on the current platform. |
| 2973 static bool get supported => true; | 2230 static bool get supported => true; |
| 2974 | 2231 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3023 @SupportedBrowser(SupportedBrowser.IE, '10') | 2280 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3024 @SupportedBrowser(SupportedBrowser.SAFARI) | 2281 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3025 @Unstable() | 2282 @Unstable() |
| 3026 class FESpotLightElement extends SvgElement { | 2283 class FESpotLightElement extends SvgElement { |
| 3027 // To suppress missing implicit constructor warnings. | 2284 // To suppress missing implicit constructor warnings. |
| 3028 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} | 2285 factory FESpotLightElement._() { throw new UnsupportedError("Not supported");
} |
| 3029 | 2286 |
| 3030 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') | 2287 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') |
| 3031 @DocsEditable() | 2288 @DocsEditable() |
| 3032 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); | 2289 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta
g("feSpotLight"); |
| 3033 | |
| 3034 | |
| 3035 static FESpotLightElement internalCreateFESpotLightElement() { | |
| 3036 return new FESpotLightElement._internalWrap(); | |
| 3037 } | |
| 3038 | |
| 3039 factory FESpotLightElement._internalWrap() { | |
| 3040 return new FESpotLightElement.internal_(); | |
| 3041 } | |
| 3042 | |
| 3043 FESpotLightElement.internal_() : super.internal_(); | |
| 3044 | |
| 3045 /** | 2290 /** |
| 3046 * Constructor instantiated by the DOM when a custom element has been created. | 2291 * Constructor instantiated by the DOM when a custom element has been created. |
| 3047 * | 2292 * |
| 3048 * This can only be called by subclasses from their created constructor. | 2293 * This can only be called by subclasses from their created constructor. |
| 3049 */ | 2294 */ |
| 3050 FESpotLightElement.created() : super.created(); | 2295 FESpotLightElement.created() : super.created(); |
| 3051 | 2296 |
| 3052 /// Checks if this type is supported on the current platform. | 2297 /// Checks if this type is supported on the current platform. |
| 3053 static bool get supported => true; | 2298 static bool get supported => true; |
| 3054 | 2299 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3099 @SupportedBrowser(SupportedBrowser.IE, '10') | 2344 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3100 @SupportedBrowser(SupportedBrowser.SAFARI) | 2345 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3101 @Unstable() | 2346 @Unstable() |
| 3102 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { | 2347 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
tes { |
| 3103 // To suppress missing implicit constructor warnings. | 2348 // To suppress missing implicit constructor warnings. |
| 3104 factory FETileElement._() { throw new UnsupportedError("Not supported"); } | 2349 factory FETileElement._() { throw new UnsupportedError("Not supported"); } |
| 3105 | 2350 |
| 3106 @DomName('SVGFETileElement.SVGFETileElement') | 2351 @DomName('SVGFETileElement.SVGFETileElement') |
| 3107 @DocsEditable() | 2352 @DocsEditable() |
| 3108 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); | 2353 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe
Tile"); |
| 3109 | |
| 3110 | |
| 3111 static FETileElement internalCreateFETileElement() { | |
| 3112 return new FETileElement._internalWrap(); | |
| 3113 } | |
| 3114 | |
| 3115 factory FETileElement._internalWrap() { | |
| 3116 return new FETileElement.internal_(); | |
| 3117 } | |
| 3118 | |
| 3119 FETileElement.internal_() : super.internal_(); | |
| 3120 | |
| 3121 /** | 2354 /** |
| 3122 * Constructor instantiated by the DOM when a custom element has been created. | 2355 * Constructor instantiated by the DOM when a custom element has been created. |
| 3123 * | 2356 * |
| 3124 * This can only be called by subclasses from their created constructor. | 2357 * This can only be called by subclasses from their created constructor. |
| 3125 */ | 2358 */ |
| 3126 FETileElement.created() : super.created(); | 2359 FETileElement.created() : super.created(); |
| 3127 | 2360 |
| 3128 /// Checks if this type is supported on the current platform. | 2361 /// Checks if this type is supported on the current platform. |
| 3129 static bool get supported => true; | 2362 static bool get supported => true; |
| 3130 | 2363 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3167 @SupportedBrowser(SupportedBrowser.IE, '10') | 2400 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3168 @SupportedBrowser(SupportedBrowser.SAFARI) | 2401 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3169 @Unstable() | 2402 @Unstable() |
| 3170 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { | 2403 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
ttributes { |
| 3171 // To suppress missing implicit constructor warnings. | 2404 // To suppress missing implicit constructor warnings. |
| 3172 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} | 2405 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported");
} |
| 3173 | 2406 |
| 3174 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') | 2407 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') |
| 3175 @DocsEditable() | 2408 @DocsEditable() |
| 3176 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); | 2409 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t
ag("feTurbulence"); |
| 3177 | |
| 3178 | |
| 3179 static FETurbulenceElement internalCreateFETurbulenceElement() { | |
| 3180 return new FETurbulenceElement._internalWrap(); | |
| 3181 } | |
| 3182 | |
| 3183 factory FETurbulenceElement._internalWrap() { | |
| 3184 return new FETurbulenceElement.internal_(); | |
| 3185 } | |
| 3186 | |
| 3187 FETurbulenceElement.internal_() : super.internal_(); | |
| 3188 | |
| 3189 /** | 2410 /** |
| 3190 * Constructor instantiated by the DOM when a custom element has been created. | 2411 * Constructor instantiated by the DOM when a custom element has been created. |
| 3191 * | 2412 * |
| 3192 * This can only be called by subclasses from their created constructor. | 2413 * This can only be called by subclasses from their created constructor. |
| 3193 */ | 2414 */ |
| 3194 FETurbulenceElement.created() : super.created(); | 2415 FETurbulenceElement.created() : super.created(); |
| 3195 | 2416 |
| 3196 /// Checks if this type is supported on the current platform. | 2417 /// Checks if this type is supported on the current platform. |
| 3197 static bool get supported => true; | 2418 static bool get supported => true; |
| 3198 | 2419 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3279 @SupportedBrowser(SupportedBrowser.IE, '10') | 2500 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 3280 @SupportedBrowser(SupportedBrowser.SAFARI) | 2501 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3281 @Unstable() | 2502 @Unstable() |
| 3282 class FilterElement extends SvgElement implements UriReference { | 2503 class FilterElement extends SvgElement implements UriReference { |
| 3283 // To suppress missing implicit constructor warnings. | 2504 // To suppress missing implicit constructor warnings. |
| 3284 factory FilterElement._() { throw new UnsupportedError("Not supported"); } | 2505 factory FilterElement._() { throw new UnsupportedError("Not supported"); } |
| 3285 | 2506 |
| 3286 @DomName('SVGFilterElement.SVGFilterElement') | 2507 @DomName('SVGFilterElement.SVGFilterElement') |
| 3287 @DocsEditable() | 2508 @DocsEditable() |
| 3288 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); | 2509 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi
lter"); |
| 3289 | |
| 3290 | |
| 3291 static FilterElement internalCreateFilterElement() { | |
| 3292 return new FilterElement._internalWrap(); | |
| 3293 } | |
| 3294 | |
| 3295 factory FilterElement._internalWrap() { | |
| 3296 return new FilterElement.internal_(); | |
| 3297 } | |
| 3298 | |
| 3299 FilterElement.internal_() : super.internal_(); | |
| 3300 | |
| 3301 /** | 2510 /** |
| 3302 * Constructor instantiated by the DOM when a custom element has been created. | 2511 * Constructor instantiated by the DOM when a custom element has been created. |
| 3303 * | 2512 * |
| 3304 * This can only be called by subclasses from their created constructor. | 2513 * This can only be called by subclasses from their created constructor. |
| 3305 */ | 2514 */ |
| 3306 FilterElement.created() : super.created(); | 2515 FilterElement.created() : super.created(); |
| 3307 | 2516 |
| 3308 /// Checks if this type is supported on the current platform. | 2517 /// Checks if this type is supported on the current platform. |
| 3309 static bool get supported => true; | 2518 static bool get supported => true; |
| 3310 | 2519 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3356 // WARNING: Do not edit - generated code. | 2565 // WARNING: Do not edit - generated code. |
| 3357 | 2566 |
| 3358 | 2567 |
| 3359 @DocsEditable() | 2568 @DocsEditable() |
| 3360 @DomName('SVGFilterPrimitiveStandardAttributes') | 2569 @DomName('SVGFilterPrimitiveStandardAttributes') |
| 3361 @Unstable() | 2570 @Unstable() |
| 3362 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { | 2571 abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
2 { |
| 3363 // To suppress missing implicit constructor warnings. | 2572 // To suppress missing implicit constructor warnings. |
| 3364 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } | 2573 factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("No
t supported"); } |
| 3365 | 2574 |
| 3366 static FilterPrimitiveStandardAttributes internalCreateFilterPrimitiveStandard
Attributes() { | |
| 3367 return new FilterPrimitiveStandardAttributes._internalWrap(); | |
| 3368 } | |
| 3369 | |
| 3370 js.JsObject blink_jsObject; | |
| 3371 | |
| 3372 factory FilterPrimitiveStandardAttributes._internalWrap() { | |
| 3373 return new FilterPrimitiveStandardAttributes.internal_(); | |
| 3374 } | |
| 3375 | |
| 3376 FilterPrimitiveStandardAttributes.internal_() { } | |
| 3377 | |
| 3378 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3379 int get hashCode => unwrap_jso(this).hashCode; | |
| 3380 | |
| 3381 @DomName('SVGFilterPrimitiveStandardAttributes.height') | 2575 @DomName('SVGFilterPrimitiveStandardAttributes.height') |
| 3382 @DocsEditable() | 2576 @DocsEditable() |
| 3383 AnimatedLength get height; | 2577 AnimatedLength get height; |
| 3384 | 2578 |
| 3385 @DomName('SVGFilterPrimitiveStandardAttributes.result') | 2579 @DomName('SVGFilterPrimitiveStandardAttributes.result') |
| 3386 @DocsEditable() | 2580 @DocsEditable() |
| 3387 AnimatedString get result; | 2581 AnimatedString get result; |
| 3388 | 2582 |
| 3389 @DomName('SVGFilterPrimitiveStandardAttributes.width') | 2583 @DomName('SVGFilterPrimitiveStandardAttributes.width') |
| 3390 @DocsEditable() | 2584 @DocsEditable() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3406 // WARNING: Do not edit - generated code. | 2600 // WARNING: Do not edit - generated code. |
| 3407 | 2601 |
| 3408 | 2602 |
| 3409 @DocsEditable() | 2603 @DocsEditable() |
| 3410 @DomName('SVGFitToViewBox') | 2604 @DomName('SVGFitToViewBox') |
| 3411 @Unstable() | 2605 @Unstable() |
| 3412 abstract class FitToViewBox extends NativeFieldWrapperClass2 { | 2606 abstract class FitToViewBox extends NativeFieldWrapperClass2 { |
| 3413 // To suppress missing implicit constructor warnings. | 2607 // To suppress missing implicit constructor warnings. |
| 3414 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } | 2608 factory FitToViewBox._() { throw new UnsupportedError("Not supported"); } |
| 3415 | 2609 |
| 3416 static FitToViewBox internalCreateFitToViewBox() { | |
| 3417 return new FitToViewBox._internalWrap(); | |
| 3418 } | |
| 3419 | |
| 3420 js.JsObject blink_jsObject; | |
| 3421 | |
| 3422 factory FitToViewBox._internalWrap() { | |
| 3423 return new FitToViewBox.internal_(); | |
| 3424 } | |
| 3425 | |
| 3426 FitToViewBox.internal_() { } | |
| 3427 | |
| 3428 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3429 int get hashCode => unwrap_jso(this).hashCode; | |
| 3430 | |
| 3431 @DomName('SVGFitToViewBox.preserveAspectRatio') | 2610 @DomName('SVGFitToViewBox.preserveAspectRatio') |
| 3432 @DocsEditable() | 2611 @DocsEditable() |
| 3433 AnimatedPreserveAspectRatio get preserveAspectRatio; | 2612 AnimatedPreserveAspectRatio get preserveAspectRatio; |
| 3434 | 2613 |
| 3435 @DomName('SVGFitToViewBox.viewBox') | 2614 @DomName('SVGFitToViewBox.viewBox') |
| 3436 @DocsEditable() | 2615 @DocsEditable() |
| 3437 AnimatedRect get viewBox; | 2616 AnimatedRect get viewBox; |
| 3438 | 2617 |
| 3439 } | 2618 } |
| 3440 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2619 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3441 // for details. All rights reserved. Use of this source code is governed by a | 2620 // for details. All rights reserved. Use of this source code is governed by a |
| 3442 // BSD-style license that can be found in the LICENSE file. | 2621 // BSD-style license that can be found in the LICENSE file. |
| 3443 | 2622 |
| 3444 // WARNING: Do not edit - generated code. | 2623 // WARNING: Do not edit - generated code. |
| 3445 | 2624 |
| 3446 | 2625 |
| 3447 @DocsEditable() | 2626 @DocsEditable() |
| 3448 @DomName('SVGForeignObjectElement') | 2627 @DomName('SVGForeignObjectElement') |
| 3449 @SupportedBrowser(SupportedBrowser.CHROME) | 2628 @SupportedBrowser(SupportedBrowser.CHROME) |
| 3450 @SupportedBrowser(SupportedBrowser.FIREFOX) | 2629 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 3451 @SupportedBrowser(SupportedBrowser.SAFARI) | 2630 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 3452 @Unstable() | 2631 @Unstable() |
| 3453 class ForeignObjectElement extends GraphicsElement { | 2632 class ForeignObjectElement extends GraphicsElement { |
| 3454 // To suppress missing implicit constructor warnings. | 2633 // To suppress missing implicit constructor warnings. |
| 3455 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } | 2634 factory ForeignObjectElement._() { throw new UnsupportedError("Not supported")
; } |
| 3456 | 2635 |
| 3457 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') | 2636 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') |
| 3458 @DocsEditable() | 2637 @DocsEditable() |
| 3459 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); | 2638 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_
tag("foreignObject"); |
| 3460 | |
| 3461 | |
| 3462 static ForeignObjectElement internalCreateForeignObjectElement() { | |
| 3463 return new ForeignObjectElement._internalWrap(); | |
| 3464 } | |
| 3465 | |
| 3466 factory ForeignObjectElement._internalWrap() { | |
| 3467 return new ForeignObjectElement.internal_(); | |
| 3468 } | |
| 3469 | |
| 3470 ForeignObjectElement.internal_() : super.internal_(); | |
| 3471 | |
| 3472 /** | 2639 /** |
| 3473 * Constructor instantiated by the DOM when a custom element has been created. | 2640 * Constructor instantiated by the DOM when a custom element has been created. |
| 3474 * | 2641 * |
| 3475 * This can only be called by subclasses from their created constructor. | 2642 * This can only be called by subclasses from their created constructor. |
| 3476 */ | 2643 */ |
| 3477 ForeignObjectElement.created() : super.created(); | 2644 ForeignObjectElement.created() : super.created(); |
| 3478 | 2645 |
| 3479 /// Checks if this type is supported on the current platform. | 2646 /// Checks if this type is supported on the current platform. |
| 3480 static bool get supported => true; | 2647 static bool get supported => true; |
| 3481 | 2648 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 3506 @DocsEditable() | 2673 @DocsEditable() |
| 3507 @DomName('SVGGElement') | 2674 @DomName('SVGGElement') |
| 3508 @Unstable() | 2675 @Unstable() |
| 3509 class GElement extends GraphicsElement { | 2676 class GElement extends GraphicsElement { |
| 3510 // To suppress missing implicit constructor warnings. | 2677 // To suppress missing implicit constructor warnings. |
| 3511 factory GElement._() { throw new UnsupportedError("Not supported"); } | 2678 factory GElement._() { throw new UnsupportedError("Not supported"); } |
| 3512 | 2679 |
| 3513 @DomName('SVGGElement.SVGGElement') | 2680 @DomName('SVGGElement.SVGGElement') |
| 3514 @DocsEditable() | 2681 @DocsEditable() |
| 3515 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); | 2682 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); |
| 3516 | |
| 3517 | |
| 3518 static GElement internalCreateGElement() { | |
| 3519 return new GElement._internalWrap(); | |
| 3520 } | |
| 3521 | |
| 3522 factory GElement._internalWrap() { | |
| 3523 return new GElement.internal_(); | |
| 3524 } | |
| 3525 | |
| 3526 GElement.internal_() : super.internal_(); | |
| 3527 | |
| 3528 /** | 2683 /** |
| 3529 * Constructor instantiated by the DOM when a custom element has been created. | 2684 * Constructor instantiated by the DOM when a custom element has been created. |
| 3530 * | 2685 * |
| 3531 * This can only be called by subclasses from their created constructor. | 2686 * This can only be called by subclasses from their created constructor. |
| 3532 */ | 2687 */ |
| 3533 GElement.created() : super.created(); | 2688 GElement.created() : super.created(); |
| 3534 | 2689 |
| 3535 } | 2690 } |
| 3536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2691 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3537 // for details. All rights reserved. Use of this source code is governed by a | 2692 // for details. All rights reserved. Use of this source code is governed by a |
| 3538 // BSD-style license that can be found in the LICENSE file. | 2693 // BSD-style license that can be found in the LICENSE file. |
| 3539 | 2694 |
| 3540 // WARNING: Do not edit - generated code. | 2695 // WARNING: Do not edit - generated code. |
| 3541 | 2696 |
| 3542 | 2697 |
| 3543 @DocsEditable() | 2698 @DocsEditable() |
| 3544 @DomName('SVGGeometryElement') | 2699 @DomName('SVGGeometryElement') |
| 3545 @Experimental() // untriaged | 2700 @Experimental() // untriaged |
| 3546 class GeometryElement extends GraphicsElement { | 2701 class GeometryElement extends GraphicsElement { |
| 3547 // To suppress missing implicit constructor warnings. | 2702 // To suppress missing implicit constructor warnings. |
| 3548 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } | 2703 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } |
| 3549 | |
| 3550 | |
| 3551 static GeometryElement internalCreateGeometryElement() { | |
| 3552 return new GeometryElement._internalWrap(); | |
| 3553 } | |
| 3554 | |
| 3555 factory GeometryElement._internalWrap() { | |
| 3556 return new GeometryElement.internal_(); | |
| 3557 } | |
| 3558 | |
| 3559 GeometryElement.internal_() : super.internal_(); | |
| 3560 | |
| 3561 /** | 2704 /** |
| 3562 * Constructor instantiated by the DOM when a custom element has been created. | 2705 * Constructor instantiated by the DOM when a custom element has been created. |
| 3563 * | 2706 * |
| 3564 * This can only be called by subclasses from their created constructor. | 2707 * This can only be called by subclasses from their created constructor. |
| 3565 */ | 2708 */ |
| 3566 GeometryElement.created() : super.created(); | 2709 GeometryElement.created() : super.created(); |
| 3567 | 2710 |
| 3568 @DomName('SVGGeometryElement.isPointInFill') | 2711 @DomName('SVGGeometryElement.isPointInFill') |
| 3569 @DocsEditable() | 2712 @DocsEditable() |
| 3570 @Experimental() // untriaged | 2713 @Experimental() // untriaged |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3582 | 2725 |
| 3583 // WARNING: Do not edit - generated code. | 2726 // WARNING: Do not edit - generated code. |
| 3584 | 2727 |
| 3585 | 2728 |
| 3586 @DocsEditable() | 2729 @DocsEditable() |
| 3587 @DomName('SVGGraphicsElement') | 2730 @DomName('SVGGraphicsElement') |
| 3588 @Experimental() // untriaged | 2731 @Experimental() // untriaged |
| 3589 class GraphicsElement extends SvgElement implements Tests { | 2732 class GraphicsElement extends SvgElement implements Tests { |
| 3590 // To suppress missing implicit constructor warnings. | 2733 // To suppress missing implicit constructor warnings. |
| 3591 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } | 2734 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } |
| 3592 | |
| 3593 | |
| 3594 static GraphicsElement internalCreateGraphicsElement() { | |
| 3595 return new GraphicsElement._internalWrap(); | |
| 3596 } | |
| 3597 | |
| 3598 factory GraphicsElement._internalWrap() { | |
| 3599 return new GraphicsElement.internal_(); | |
| 3600 } | |
| 3601 | |
| 3602 GraphicsElement.internal_() : super.internal_(); | |
| 3603 | |
| 3604 /** | 2735 /** |
| 3605 * Constructor instantiated by the DOM when a custom element has been created. | 2736 * Constructor instantiated by the DOM when a custom element has been created. |
| 3606 * | 2737 * |
| 3607 * This can only be called by subclasses from their created constructor. | 2738 * This can only be called by subclasses from their created constructor. |
| 3608 */ | 2739 */ |
| 3609 GraphicsElement.created() : super.created(); | 2740 GraphicsElement.created() : super.created(); |
| 3610 | 2741 |
| 3611 @DomName('SVGGraphicsElement.farthestViewportElement') | 2742 @DomName('SVGGraphicsElement.farthestViewportElement') |
| 3612 @DocsEditable() | 2743 @DocsEditable() |
| 3613 @Experimental() // untriaged | 2744 @Experimental() // untriaged |
| (...skipping 10 matching lines...) Expand all Loading... |
| 3624 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement
.instance.transform_Getter_(unwrap_jso(this))); | 2755 AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement
.instance.transform_Getter_(unwrap_jso(this))); |
| 3625 | 2756 |
| 3626 @DomName('SVGGraphicsElement.getBBox') | 2757 @DomName('SVGGraphicsElement.getBBox') |
| 3627 @DocsEditable() | 2758 @DocsEditable() |
| 3628 @Experimental() // untriaged | 2759 @Experimental() // untriaged |
| 3629 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal
lback_0_(unwrap_jso(this))); | 2760 Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Cal
lback_0_(unwrap_jso(this))); |
| 3630 | 2761 |
| 3631 @DomName('SVGGraphicsElement.getCTM') | 2762 @DomName('SVGGraphicsElement.getCTM') |
| 3632 @DocsEditable() | 2763 @DocsEditable() |
| 3633 @Experimental() // untriaged | 2764 @Experimental() // untriaged |
| 3634 Matrix getCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getCTM_Cal
lback_0_(unwrap_jso(this))); | 2765 Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(
unwrap_jso(this)); |
| 3635 | 2766 |
| 3636 @DomName('SVGGraphicsElement.getScreenCTM') | 2767 @DomName('SVGGraphicsElement.getScreenCTM') |
| 3637 @DocsEditable() | 2768 @DocsEditable() |
| 3638 @Experimental() // untriaged | 2769 @Experimental() // untriaged |
| 3639 Matrix getScreenCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getS
creenCTM_Callback_0_(unwrap_jso(this))); | 2770 Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_
Callback_0_(unwrap_jso(this)); |
| 3640 | 2771 |
| 3641 @DomName('SVGGraphicsElement.getTransformToElement') | 2772 @DomName('SVGGraphicsElement.getTransformToElement') |
| 3642 @DocsEditable() | 2773 @DocsEditable() |
| 3643 @Experimental() // untriaged | 2774 @Experimental() // untriaged |
| 3644 Matrix getTransformToElement(SvgElement element) => wrap_jso(_blink.BlinkSVGGr
aphicsElement.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwra
p_jso(element))); | 2775 Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsEle
ment.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwrap_jso(ele
ment)); |
| 3645 | 2776 |
| 3646 @DomName('SVGGraphicsElement.requiredExtensions') | 2777 @DomName('SVGGraphicsElement.requiredExtensions') |
| 3647 @DocsEditable() | 2778 @DocsEditable() |
| 3648 @Experimental() // untriaged | 2779 @Experimental() // untriaged |
| 3649 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i
nstance.requiredExtensions_Getter_(unwrap_jso(this))); | 2780 StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.i
nstance.requiredExtensions_Getter_(unwrap_jso(this))); |
| 3650 | 2781 |
| 3651 @DomName('SVGGraphicsElement.requiredFeatures') | 2782 @DomName('SVGGraphicsElement.requiredFeatures') |
| 3652 @DocsEditable() | 2783 @DocsEditable() |
| 3653 @Experimental() // untriaged | 2784 @Experimental() // untriaged |
| 3654 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins
tance.requiredFeatures_Getter_(unwrap_jso(this))); | 2785 StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.ins
tance.requiredFeatures_Getter_(unwrap_jso(this))); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 3674 @DocsEditable() | 2805 @DocsEditable() |
| 3675 @DomName('SVGImageElement') | 2806 @DomName('SVGImageElement') |
| 3676 @Unstable() | 2807 @Unstable() |
| 3677 class ImageElement extends GraphicsElement implements UriReference { | 2808 class ImageElement extends GraphicsElement implements UriReference { |
| 3678 // To suppress missing implicit constructor warnings. | 2809 // To suppress missing implicit constructor warnings. |
| 3679 factory ImageElement._() { throw new UnsupportedError("Not supported"); } | 2810 factory ImageElement._() { throw new UnsupportedError("Not supported"); } |
| 3680 | 2811 |
| 3681 @DomName('SVGImageElement.SVGImageElement') | 2812 @DomName('SVGImageElement.SVGImageElement') |
| 3682 @DocsEditable() | 2813 @DocsEditable() |
| 3683 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); | 2814 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima
ge"); |
| 3684 | |
| 3685 | |
| 3686 static ImageElement internalCreateImageElement() { | |
| 3687 return new ImageElement._internalWrap(); | |
| 3688 } | |
| 3689 | |
| 3690 factory ImageElement._internalWrap() { | |
| 3691 return new ImageElement.internal_(); | |
| 3692 } | |
| 3693 | |
| 3694 ImageElement.internal_() : super.internal_(); | |
| 3695 | |
| 3696 /** | 2815 /** |
| 3697 * Constructor instantiated by the DOM when a custom element has been created. | 2816 * Constructor instantiated by the DOM when a custom element has been created. |
| 3698 * | 2817 * |
| 3699 * This can only be called by subclasses from their created constructor. | 2818 * This can only be called by subclasses from their created constructor. |
| 3700 */ | 2819 */ |
| 3701 ImageElement.created() : super.created(); | 2820 ImageElement.created() : super.created(); |
| 3702 | 2821 |
| 3703 @DomName('SVGImageElement.height') | 2822 @DomName('SVGImageElement.height') |
| 3704 @DocsEditable() | 2823 @DocsEditable() |
| 3705 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); | 2824 AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.hei
ght_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 3732 // WARNING: Do not edit - generated code. | 2851 // WARNING: Do not edit - generated code. |
| 3733 | 2852 |
| 3734 | 2853 |
| 3735 @DocsEditable() | 2854 @DocsEditable() |
| 3736 @DomName('SVGLength') | 2855 @DomName('SVGLength') |
| 3737 @Unstable() | 2856 @Unstable() |
| 3738 class Length extends NativeFieldWrapperClass2 { | 2857 class Length extends NativeFieldWrapperClass2 { |
| 3739 // To suppress missing implicit constructor warnings. | 2858 // To suppress missing implicit constructor warnings. |
| 3740 factory Length._() { throw new UnsupportedError("Not supported"); } | 2859 factory Length._() { throw new UnsupportedError("Not supported"); } |
| 3741 | 2860 |
| 3742 static Length internalCreateLength() { | |
| 3743 return new Length._internalWrap(); | |
| 3744 } | |
| 3745 | |
| 3746 js.JsObject blink_jsObject; | |
| 3747 | |
| 3748 factory Length._internalWrap() { | |
| 3749 return new Length.internal_(); | |
| 3750 } | |
| 3751 | |
| 3752 Length.internal_() { } | |
| 3753 | |
| 3754 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3755 int get hashCode => unwrap_jso(this).hashCode; | |
| 3756 | |
| 3757 @DomName('SVGLength.SVG_LENGTHTYPE_CM') | 2861 @DomName('SVGLength.SVG_LENGTHTYPE_CM') |
| 3758 @DocsEditable() | 2862 @DocsEditable() |
| 3759 static const int SVG_LENGTHTYPE_CM = 6; | 2863 static const int SVG_LENGTHTYPE_CM = 6; |
| 3760 | 2864 |
| 3761 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') | 2865 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') |
| 3762 @DocsEditable() | 2866 @DocsEditable() |
| 3763 static const int SVG_LENGTHTYPE_EMS = 3; | 2867 static const int SVG_LENGTHTYPE_EMS = 3; |
| 3764 | 2868 |
| 3765 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') | 2869 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') |
| 3766 @DocsEditable() | 2870 @DocsEditable() |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3801 @DomName('SVGLength.unitType') | 2905 @DomName('SVGLength.unitType') |
| 3802 @DocsEditable() | 2906 @DocsEditable() |
| 3803 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso
(this)); | 2907 int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso
(this)); |
| 3804 | 2908 |
| 3805 @DomName('SVGLength.value') | 2909 @DomName('SVGLength.value') |
| 3806 @DocsEditable() | 2910 @DocsEditable() |
| 3807 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this)
); | 2911 num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this)
); |
| 3808 | 2912 |
| 3809 @DomName('SVGLength.value') | 2913 @DomName('SVGLength.value') |
| 3810 @DocsEditable() | 2914 @DocsEditable() |
| 3811 set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwrap_js
o(this), value); | 2915 void set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwr
ap_jso(this), value); |
| 3812 | 2916 |
| 3813 @DomName('SVGLength.valueAsString') | 2917 @DomName('SVGLength.valueAsString') |
| 3814 @DocsEditable() | 2918 @DocsEditable() |
| 3815 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(unwrap_jso(this)); | 2919 String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Gette
r_(unwrap_jso(this)); |
| 3816 | 2920 |
| 3817 @DomName('SVGLength.valueAsString') | 2921 @DomName('SVGLength.valueAsString') |
| 3818 @DocsEditable() | 2922 @DocsEditable() |
| 3819 set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsStrin
g_Setter_(unwrap_jso(this), value); | 2923 void set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAs
String_Setter_(unwrap_jso(this), value); |
| 3820 | 2924 |
| 3821 @DomName('SVGLength.valueInSpecifiedUnits') | 2925 @DomName('SVGLength.valueInSpecifiedUnits') |
| 3822 @DocsEditable() | 2926 @DocsEditable() |
| 3823 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(unwrap_jso(this)); | 2927 num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifi
edUnits_Getter_(unwrap_jso(this)); |
| 3824 | 2928 |
| 3825 @DomName('SVGLength.valueInSpecifiedUnits') | 2929 @DomName('SVGLength.valueInSpecifiedUnits') |
| 3826 @DocsEditable() | 2930 @DocsEditable() |
| 3827 set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueIn
SpecifiedUnits_Setter_(unwrap_jso(this), value); | 2931 void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.va
lueInSpecifiedUnits_Setter_(unwrap_jso(this), value); |
| 3828 | 2932 |
| 3829 @DomName('SVGLength.convertToSpecifiedUnits') | 2933 @DomName('SVGLength.convertToSpecifiedUnits') |
| 3830 @DocsEditable() | 2934 @DocsEditable() |
| 3831 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); | 2935 void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.c
onvertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType); |
| 3832 | 2936 |
| 3833 @DomName('SVGLength.newValueSpecifiedUnits') | 2937 @DomName('SVGLength.newValueSpecifiedUnits') |
| 3834 @DocsEditable() | 2938 @DocsEditable() |
| 3835 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un
itType, valueInSpecifiedUnits); | 2939 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink
.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), un
itType, valueInSpecifiedUnits); |
| 3836 | 2940 |
| 3837 } | 2941 } |
| 3838 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2942 // 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 | 2943 // 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. | 2944 // BSD-style license that can be found in the LICENSE file. |
| 3841 | 2945 |
| 3842 // WARNING: Do not edit - generated code. | 2946 // WARNING: Do not edit - generated code. |
| 3843 | 2947 |
| 3844 | 2948 |
| 3845 @DocsEditable() | 2949 @DocsEditable() |
| 3846 @DomName('SVGLengthList') | 2950 @DomName('SVGLengthList') |
| 3847 @Unstable() | 2951 @Unstable() |
| 3848 class LengthList extends JsoNativeFieldWrapper with ListMixin<Length>, Immutable
ListMixin<Length> implements List<Length> { | 2952 class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
bleListMixin<Length> implements List<Length> { |
| 3849 // To suppress missing implicit constructor warnings. | 2953 // To suppress missing implicit constructor warnings. |
| 3850 factory LengthList._() { throw new UnsupportedError("Not supported"); } | 2954 factory LengthList._() { throw new UnsupportedError("Not supported"); } |
| 3851 | 2955 |
| 3852 static LengthList internalCreateLengthList() { | |
| 3853 return new LengthList._internalWrap(); | |
| 3854 } | |
| 3855 | |
| 3856 js.JsObject blink_jsObject; | |
| 3857 | |
| 3858 factory LengthList._internalWrap() { | |
| 3859 return new LengthList.internal_(); | |
| 3860 } | |
| 3861 | |
| 3862 LengthList.internal_() { } | |
| 3863 | |
| 3864 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 3865 int get hashCode => unwrap_jso(this).hashCode; | |
| 3866 | |
| 3867 @DomName('SVGLengthList.length') | 2956 @DomName('SVGLengthList.length') |
| 3868 @DocsEditable() | 2957 @DocsEditable() |
| 3869 @Experimental() // untriaged | 2958 @Experimental() // untriaged |
| 3870 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); | 2959 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso
(this)); |
| 3871 | 2960 |
| 3872 @DomName('SVGLengthList.numberOfItems') | 2961 @DomName('SVGLengthList.numberOfItems') |
| 3873 @DocsEditable() | 2962 @DocsEditable() |
| 3874 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 2963 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 3875 | 2964 |
| 3876 Length operator[](int index) { | 2965 Length operator[](int index) { |
| 3877 if (index < 0 || index >= length) | 2966 if (index < 0 || index >= length) |
| 3878 throw new RangeError.index(index, this); | 2967 throw new RangeError.index(index, this); |
| 3879 return getItem(index); | 2968 return getItem(index); |
| 3880 } | 2969 } |
| 3881 | 2970 |
| 3882 void operator[]=(int index, Length value) { | 2971 void operator[]=(int index, Length value) { |
| 3883 throw new UnsupportedError("Cannot assign element of immutable List."); | 2972 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 3884 } | 2973 } |
| 3885 // -- start List<Length> mixins. | 2974 // -- start List<Length> mixins. |
| 3886 // Length is the element type. | 2975 // Length is the element type. |
| 3887 | 2976 |
| 3888 | 2977 |
| 3889 set length(int value) { | 2978 void set length(int value) { |
| 3890 throw new UnsupportedError("Cannot resize immutable List."); | 2979 throw new UnsupportedError("Cannot resize immutable List."); |
| 3891 } | 2980 } |
| 3892 | 2981 |
| 3893 Length get first { | 2982 Length get first { |
| 3894 if (this.length > 0) { | 2983 if (this.length > 0) { |
| 3895 return getItem(0); | 2984 return getItem(0); |
| 3896 } | 2985 } |
| 3897 throw new StateError("No elements"); | 2986 throw new StateError("No elements"); |
| 3898 } | 2987 } |
| 3899 | 2988 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3917 Length elementAt(int index) => this[index]; | 3006 Length elementAt(int index) => this[index]; |
| 3918 // -- end List<Length> mixins. | 3007 // -- end List<Length> mixins. |
| 3919 | 3008 |
| 3920 @DomName('SVGLengthList.__setter__') | 3009 @DomName('SVGLengthList.__setter__') |
| 3921 @DocsEditable() | 3010 @DocsEditable() |
| 3922 @Experimental() // untriaged | 3011 @Experimental() // untriaged |
| 3923 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 3012 void __setter__(int index, Length value) => _blink.BlinkSVGLengthList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 3924 | 3013 |
| 3925 @DomName('SVGLengthList.appendItem') | 3014 @DomName('SVGLengthList.appendItem') |
| 3926 @DocsEditable() | 3015 @DocsEditable() |
| 3927 Length appendItem(Length item) => wrap_jso(_blink.BlinkSVGLengthList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 3016 Length appendItem(Length item) => _blink.BlinkSVGLengthList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3928 | 3017 |
| 3929 @DomName('SVGLengthList.clear') | 3018 @DomName('SVGLengthList.clear') |
| 3930 @DocsEditable() | 3019 @DocsEditable() |
| 3931 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js
o(this)); | 3020 void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_js
o(this)); |
| 3932 | 3021 |
| 3933 @DomName('SVGLengthList.getItem') | 3022 @DomName('SVGLengthList.getItem') |
| 3934 @DocsEditable() | 3023 @DocsEditable() |
| 3935 Length getItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.getIt
em_Callback_1_(unwrap_jso(this), index)); | 3024 Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); |
| 3936 | 3025 |
| 3937 @DomName('SVGLengthList.initialize') | 3026 @DomName('SVGLengthList.initialize') |
| 3938 @DocsEditable() | 3027 @DocsEditable() |
| 3939 Length initialize(Length item) => wrap_jso(_blink.BlinkSVGLengthList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 3028 Length initialize(Length item) => _blink.BlinkSVGLengthList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 3940 | 3029 |
| 3941 @DomName('SVGLengthList.insertItemBefore') | 3030 @DomName('SVGLengthList.insertItemBefore') |
| 3942 @DocsEditable() | 3031 @DocsEditable() |
| 3943 Length insertItemBefore(Length item, int index) => wrap_jso(_blink.BlinkSVGLen
gthList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index)); | 3032 Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3944 | 3033 |
| 3945 @DomName('SVGLengthList.removeItem') | 3034 @DomName('SVGLengthList.removeItem') |
| 3946 @DocsEditable() | 3035 @DocsEditable() |
| 3947 Length removeItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.re
moveItem_Callback_1_(unwrap_jso(this), index)); | 3036 Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); |
| 3948 | 3037 |
| 3949 @DomName('SVGLengthList.replaceItem') | 3038 @DomName('SVGLengthList.replaceItem') |
| 3950 @DocsEditable() | 3039 @DocsEditable() |
| 3951 Length replaceItem(Length item, int index) => wrap_jso(_blink.BlinkSVGLengthLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); | 3040 Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 3952 | 3041 |
| 3953 } | 3042 } |
| 3954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3955 // for details. All rights reserved. Use of this source code is governed by a | 3044 // for details. All rights reserved. Use of this source code is governed by a |
| 3956 // BSD-style license that can be found in the LICENSE file. | 3045 // BSD-style license that can be found in the LICENSE file. |
| 3957 | 3046 |
| 3958 // WARNING: Do not edit - generated code. | 3047 // WARNING: Do not edit - generated code. |
| 3959 | 3048 |
| 3960 | 3049 |
| 3961 @DocsEditable() | 3050 @DocsEditable() |
| 3962 @DomName('SVGLineElement') | 3051 @DomName('SVGLineElement') |
| 3963 @Unstable() | 3052 @Unstable() |
| 3964 class LineElement extends GeometryElement { | 3053 class LineElement extends GeometryElement { |
| 3965 // To suppress missing implicit constructor warnings. | 3054 // To suppress missing implicit constructor warnings. |
| 3966 factory LineElement._() { throw new UnsupportedError("Not supported"); } | 3055 factory LineElement._() { throw new UnsupportedError("Not supported"); } |
| 3967 | 3056 |
| 3968 @DomName('SVGLineElement.SVGLineElement') | 3057 @DomName('SVGLineElement.SVGLineElement') |
| 3969 @DocsEditable() | 3058 @DocsEditable() |
| 3970 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); | 3059 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line
"); |
| 3971 | |
| 3972 | |
| 3973 static LineElement internalCreateLineElement() { | |
| 3974 return new LineElement._internalWrap(); | |
| 3975 } | |
| 3976 | |
| 3977 factory LineElement._internalWrap() { | |
| 3978 return new LineElement.internal_(); | |
| 3979 } | |
| 3980 | |
| 3981 LineElement.internal_() : super.internal_(); | |
| 3982 | |
| 3983 /** | 3060 /** |
| 3984 * Constructor instantiated by the DOM when a custom element has been created. | 3061 * Constructor instantiated by the DOM when a custom element has been created. |
| 3985 * | 3062 * |
| 3986 * This can only be called by subclasses from their created constructor. | 3063 * This can only be called by subclasses from their created constructor. |
| 3987 */ | 3064 */ |
| 3988 LineElement.created() : super.created(); | 3065 LineElement.created() : super.created(); |
| 3989 | 3066 |
| 3990 @DomName('SVGLineElement.x1') | 3067 @DomName('SVGLineElement.x1') |
| 3991 @DocsEditable() | 3068 @DocsEditable() |
| 3992 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); | 3069 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Gette
r_(unwrap_jso(this))); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 4014 @DocsEditable() | 3091 @DocsEditable() |
| 4015 @DomName('SVGLinearGradientElement') | 3092 @DomName('SVGLinearGradientElement') |
| 4016 @Unstable() | 3093 @Unstable() |
| 4017 class LinearGradientElement extends _GradientElement { | 3094 class LinearGradientElement extends _GradientElement { |
| 4018 // To suppress missing implicit constructor warnings. | 3095 // To suppress missing implicit constructor warnings. |
| 4019 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } | 3096 factory LinearGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 4020 | 3097 |
| 4021 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') | 3098 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
| 4022 @DocsEditable() | 3099 @DocsEditable() |
| 4023 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); | 3100 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("linearGradient"); |
| 4024 | |
| 4025 | |
| 4026 static LinearGradientElement internalCreateLinearGradientElement() { | |
| 4027 return new LinearGradientElement._internalWrap(); | |
| 4028 } | |
| 4029 | |
| 4030 factory LinearGradientElement._internalWrap() { | |
| 4031 return new LinearGradientElement.internal_(); | |
| 4032 } | |
| 4033 | |
| 4034 LinearGradientElement.internal_() : super.internal_(); | |
| 4035 | |
| 4036 /** | 3101 /** |
| 4037 * Constructor instantiated by the DOM when a custom element has been created. | 3102 * Constructor instantiated by the DOM when a custom element has been created. |
| 4038 * | 3103 * |
| 4039 * This can only be called by subclasses from their created constructor. | 3104 * This can only be called by subclasses from their created constructor. |
| 4040 */ | 3105 */ |
| 4041 LinearGradientElement.created() : super.created(); | 3106 LinearGradientElement.created() : super.created(); |
| 4042 | 3107 |
| 4043 @DomName('SVGLinearGradientElement.x1') | 3108 @DomName('SVGLinearGradientElement.x1') |
| 4044 @DocsEditable() | 3109 @DocsEditable() |
| 4045 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); | 3110 AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instanc
e.x1_Getter_(unwrap_jso(this))); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 4067 @DocsEditable() | 3132 @DocsEditable() |
| 4068 @DomName('SVGMarkerElement') | 3133 @DomName('SVGMarkerElement') |
| 4069 @Unstable() | 3134 @Unstable() |
| 4070 class MarkerElement extends SvgElement implements FitToViewBox { | 3135 class MarkerElement extends SvgElement implements FitToViewBox { |
| 4071 // To suppress missing implicit constructor warnings. | 3136 // To suppress missing implicit constructor warnings. |
| 4072 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } | 3137 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } |
| 4073 | 3138 |
| 4074 @DomName('SVGMarkerElement.SVGMarkerElement') | 3139 @DomName('SVGMarkerElement.SVGMarkerElement') |
| 4075 @DocsEditable() | 3140 @DocsEditable() |
| 4076 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); | 3141 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma
rker"); |
| 4077 | |
| 4078 | |
| 4079 static MarkerElement internalCreateMarkerElement() { | |
| 4080 return new MarkerElement._internalWrap(); | |
| 4081 } | |
| 4082 | |
| 4083 factory MarkerElement._internalWrap() { | |
| 4084 return new MarkerElement.internal_(); | |
| 4085 } | |
| 4086 | |
| 4087 MarkerElement.internal_() : super.internal_(); | |
| 4088 | |
| 4089 /** | 3142 /** |
| 4090 * Constructor instantiated by the DOM when a custom element has been created. | 3143 * Constructor instantiated by the DOM when a custom element has been created. |
| 4091 * | 3144 * |
| 4092 * This can only be called by subclasses from their created constructor. | 3145 * This can only be called by subclasses from their created constructor. |
| 4093 */ | 3146 */ |
| 4094 MarkerElement.created() : super.created(); | 3147 MarkerElement.created() : super.created(); |
| 4095 | 3148 |
| 4096 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') | 3149 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
| 4097 @DocsEditable() | 3150 @DocsEditable() |
| 4098 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; | 3151 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4172 @DocsEditable() | 3225 @DocsEditable() |
| 4173 @DomName('SVGMaskElement') | 3226 @DomName('SVGMaskElement') |
| 4174 @Unstable() | 3227 @Unstable() |
| 4175 class MaskElement extends SvgElement implements Tests { | 3228 class MaskElement extends SvgElement implements Tests { |
| 4176 // To suppress missing implicit constructor warnings. | 3229 // To suppress missing implicit constructor warnings. |
| 4177 factory MaskElement._() { throw new UnsupportedError("Not supported"); } | 3230 factory MaskElement._() { throw new UnsupportedError("Not supported"); } |
| 4178 | 3231 |
| 4179 @DomName('SVGMaskElement.SVGMaskElement') | 3232 @DomName('SVGMaskElement.SVGMaskElement') |
| 4180 @DocsEditable() | 3233 @DocsEditable() |
| 4181 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); | 3234 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask
"); |
| 4182 | |
| 4183 | |
| 4184 static MaskElement internalCreateMaskElement() { | |
| 4185 return new MaskElement._internalWrap(); | |
| 4186 } | |
| 4187 | |
| 4188 factory MaskElement._internalWrap() { | |
| 4189 return new MaskElement.internal_(); | |
| 4190 } | |
| 4191 | |
| 4192 MaskElement.internal_() : super.internal_(); | |
| 4193 | |
| 4194 /** | 3235 /** |
| 4195 * Constructor instantiated by the DOM when a custom element has been created. | 3236 * Constructor instantiated by the DOM when a custom element has been created. |
| 4196 * | 3237 * |
| 4197 * This can only be called by subclasses from their created constructor. | 3238 * This can only be called by subclasses from their created constructor. |
| 4198 */ | 3239 */ |
| 4199 MaskElement.created() : super.created(); | 3240 MaskElement.created() : super.created(); |
| 4200 | 3241 |
| 4201 @DomName('SVGMaskElement.height') | 3242 @DomName('SVGMaskElement.height') |
| 4202 @DocsEditable() | 3243 @DocsEditable() |
| 4203 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 3244 AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4246 // WARNING: Do not edit - generated code. | 3287 // WARNING: Do not edit - generated code. |
| 4247 | 3288 |
| 4248 | 3289 |
| 4249 @DocsEditable() | 3290 @DocsEditable() |
| 4250 @DomName('SVGMatrix') | 3291 @DomName('SVGMatrix') |
| 4251 @Unstable() | 3292 @Unstable() |
| 4252 class Matrix extends NativeFieldWrapperClass2 { | 3293 class Matrix extends NativeFieldWrapperClass2 { |
| 4253 // To suppress missing implicit constructor warnings. | 3294 // To suppress missing implicit constructor warnings. |
| 4254 factory Matrix._() { throw new UnsupportedError("Not supported"); } | 3295 factory Matrix._() { throw new UnsupportedError("Not supported"); } |
| 4255 | 3296 |
| 4256 static Matrix internalCreateMatrix() { | |
| 4257 return new Matrix._internalWrap(); | |
| 4258 } | |
| 4259 | |
| 4260 js.JsObject blink_jsObject; | |
| 4261 | |
| 4262 factory Matrix._internalWrap() { | |
| 4263 return new Matrix.internal_(); | |
| 4264 } | |
| 4265 | |
| 4266 Matrix.internal_() { } | |
| 4267 | |
| 4268 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4269 int get hashCode => unwrap_jso(this).hashCode; | |
| 4270 | |
| 4271 @DomName('SVGMatrix.a') | 3297 @DomName('SVGMatrix.a') |
| 4272 @DocsEditable() | 3298 @DocsEditable() |
| 4273 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); | 3299 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); |
| 4274 | 3300 |
| 4275 @DomName('SVGMatrix.a') | 3301 @DomName('SVGMatrix.a') |
| 4276 @DocsEditable() | 3302 @DocsEditable() |
| 4277 set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(this),
value); | 3303 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t
his), value); |
| 4278 | 3304 |
| 4279 @DomName('SVGMatrix.b') | 3305 @DomName('SVGMatrix.b') |
| 4280 @DocsEditable() | 3306 @DocsEditable() |
| 4281 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); | 3307 num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this)); |
| 4282 | 3308 |
| 4283 @DomName('SVGMatrix.b') | 3309 @DomName('SVGMatrix.b') |
| 4284 @DocsEditable() | 3310 @DocsEditable() |
| 4285 set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(this),
value); | 3311 void set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(t
his), value); |
| 4286 | 3312 |
| 4287 @DomName('SVGMatrix.c') | 3313 @DomName('SVGMatrix.c') |
| 4288 @DocsEditable() | 3314 @DocsEditable() |
| 4289 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); | 3315 num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this)); |
| 4290 | 3316 |
| 4291 @DomName('SVGMatrix.c') | 3317 @DomName('SVGMatrix.c') |
| 4292 @DocsEditable() | 3318 @DocsEditable() |
| 4293 set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(this),
value); | 3319 void set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(t
his), value); |
| 4294 | 3320 |
| 4295 @DomName('SVGMatrix.d') | 3321 @DomName('SVGMatrix.d') |
| 4296 @DocsEditable() | 3322 @DocsEditable() |
| 4297 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); | 3323 num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this)); |
| 4298 | 3324 |
| 4299 @DomName('SVGMatrix.d') | 3325 @DomName('SVGMatrix.d') |
| 4300 @DocsEditable() | 3326 @DocsEditable() |
| 4301 set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(this),
value); | 3327 void set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(t
his), value); |
| 4302 | 3328 |
| 4303 @DomName('SVGMatrix.e') | 3329 @DomName('SVGMatrix.e') |
| 4304 @DocsEditable() | 3330 @DocsEditable() |
| 4305 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); | 3331 num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this)); |
| 4306 | 3332 |
| 4307 @DomName('SVGMatrix.e') | 3333 @DomName('SVGMatrix.e') |
| 4308 @DocsEditable() | 3334 @DocsEditable() |
| 4309 set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(this),
value); | 3335 void set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(t
his), value); |
| 4310 | 3336 |
| 4311 @DomName('SVGMatrix.f') | 3337 @DomName('SVGMatrix.f') |
| 4312 @DocsEditable() | 3338 @DocsEditable() |
| 4313 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); | 3339 num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this)); |
| 4314 | 3340 |
| 4315 @DomName('SVGMatrix.f') | 3341 @DomName('SVGMatrix.f') |
| 4316 @DocsEditable() | 3342 @DocsEditable() |
| 4317 set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(this),
value); | 3343 void set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(t
his), value); |
| 4318 | 3344 |
| 4319 @DomName('SVGMatrix.flipX') | 3345 @DomName('SVGMatrix.flipX') |
| 4320 @DocsEditable() | 3346 @DocsEditable() |
| 4321 Matrix flipX() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipX_Callback_0_(un
wrap_jso(this))); | 3347 Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(unwrap_jso(
this)); |
| 4322 | 3348 |
| 4323 @DomName('SVGMatrix.flipY') | 3349 @DomName('SVGMatrix.flipY') |
| 4324 @DocsEditable() | 3350 @DocsEditable() |
| 4325 Matrix flipY() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipY_Callback_0_(un
wrap_jso(this))); | 3351 Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(unwrap_jso(
this)); |
| 4326 | 3352 |
| 4327 @DomName('SVGMatrix.inverse') | 3353 @DomName('SVGMatrix.inverse') |
| 4328 @DocsEditable() | 3354 @DocsEditable() |
| 4329 Matrix inverse() => wrap_jso(_blink.BlinkSVGMatrix.instance.inverse_Callback_0
_(unwrap_jso(this))); | 3355 Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(unwrap_
jso(this)); |
| 4330 | 3356 |
| 4331 @DomName('SVGMatrix.multiply') | 3357 @DomName('SVGMatrix.multiply') |
| 4332 @DocsEditable() | 3358 @DocsEditable() |
| 4333 Matrix multiply(Matrix secondMatrix) => wrap_jso(_blink.BlinkSVGMatrix.instanc
e.multiply_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix))); | 3359 Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multipl
y_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix)); |
| 4334 | 3360 |
| 4335 @DomName('SVGMatrix.rotate') | 3361 @DomName('SVGMatrix.rotate') |
| 4336 @DocsEditable() | 3362 @DocsEditable() |
| 4337 Matrix rotate(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.rotate_Cal
lback_1_(unwrap_jso(this), angle)); | 3363 Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_(
unwrap_jso(this), angle); |
| 4338 | 3364 |
| 4339 @DomName('SVGMatrix.rotateFromVector') | 3365 @DomName('SVGMatrix.rotateFromVector') |
| 4340 @DocsEditable() | 3366 @DocsEditable() |
| 4341 Matrix rotateFromVector(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instan
ce.rotateFromVector_Callback_2_(unwrap_jso(this), x, y)); | 3367 Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotate
FromVector_Callback_2_(unwrap_jso(this), x, y); |
| 4342 | 3368 |
| 4343 @DomName('SVGMatrix.scale') | 3369 @DomName('SVGMatrix.scale') |
| 4344 @DocsEditable() | 3370 @DocsEditable() |
| 4345 Matrix scale(num scaleFactor) => wrap_jso(_blink.BlinkSVGMatrix.instance.scale
_Callback_1_(unwrap_jso(this), scaleFactor)); | 3371 Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback
_1_(unwrap_jso(this), scaleFactor); |
| 4346 | 3372 |
| 4347 @DomName('SVGMatrix.scaleNonUniform') | 3373 @DomName('SVGMatrix.scaleNonUniform') |
| 4348 @DocsEditable() | 3374 @DocsEditable() |
| 4349 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => wrap_jso(_blink.
BlinkSVGMatrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFacto
rX, scaleFactorY)); | 3375 Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGM
atrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFactorX, scale
FactorY); |
| 4350 | 3376 |
| 4351 @DomName('SVGMatrix.skewX') | 3377 @DomName('SVGMatrix.skewX') |
| 4352 @DocsEditable() | 3378 @DocsEditable() |
| 4353 Matrix skewX(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewX_Callb
ack_1_(unwrap_jso(this), angle)); | 3379 Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(un
wrap_jso(this), angle); |
| 4354 | 3380 |
| 4355 @DomName('SVGMatrix.skewY') | 3381 @DomName('SVGMatrix.skewY') |
| 4356 @DocsEditable() | 3382 @DocsEditable() |
| 4357 Matrix skewY(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewY_Callb
ack_1_(unwrap_jso(this), angle)); | 3383 Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(un
wrap_jso(this), angle); |
| 4358 | 3384 |
| 4359 @DomName('SVGMatrix.translate') | 3385 @DomName('SVGMatrix.translate') |
| 4360 @DocsEditable() | 3386 @DocsEditable() |
| 4361 Matrix translate(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instance.tran
slate_Callback_2_(unwrap_jso(this), x, y)); | 3387 Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Cal
lback_2_(unwrap_jso(this), x, y); |
| 4362 | 3388 |
| 4363 } | 3389 } |
| 4364 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3390 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4365 // for details. All rights reserved. Use of this source code is governed by a | 3391 // for details. All rights reserved. Use of this source code is governed by a |
| 4366 // BSD-style license that can be found in the LICENSE file. | 3392 // BSD-style license that can be found in the LICENSE file. |
| 4367 | 3393 |
| 4368 // WARNING: Do not edit - generated code. | 3394 // WARNING: Do not edit - generated code. |
| 4369 | 3395 |
| 4370 | 3396 |
| 4371 @DocsEditable() | 3397 @DocsEditable() |
| 4372 @DomName('SVGMetadataElement') | 3398 @DomName('SVGMetadataElement') |
| 4373 @Unstable() | 3399 @Unstable() |
| 4374 class MetadataElement extends SvgElement { | 3400 class MetadataElement extends SvgElement { |
| 4375 // To suppress missing implicit constructor warnings. | 3401 // To suppress missing implicit constructor warnings. |
| 4376 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } | 3402 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } |
| 4377 | |
| 4378 | |
| 4379 static MetadataElement internalCreateMetadataElement() { | |
| 4380 return new MetadataElement._internalWrap(); | |
| 4381 } | |
| 4382 | |
| 4383 factory MetadataElement._internalWrap() { | |
| 4384 return new MetadataElement.internal_(); | |
| 4385 } | |
| 4386 | |
| 4387 MetadataElement.internal_() : super.internal_(); | |
| 4388 | |
| 4389 /** | 3403 /** |
| 4390 * Constructor instantiated by the DOM when a custom element has been created. | 3404 * Constructor instantiated by the DOM when a custom element has been created. |
| 4391 * | 3405 * |
| 4392 * This can only be called by subclasses from their created constructor. | 3406 * This can only be called by subclasses from their created constructor. |
| 4393 */ | 3407 */ |
| 4394 MetadataElement.created() : super.created(); | 3408 MetadataElement.created() : super.created(); |
| 4395 | 3409 |
| 4396 } | 3410 } |
| 4397 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4398 // for details. All rights reserved. Use of this source code is governed by a | 3412 // for details. All rights reserved. Use of this source code is governed by a |
| 4399 // BSD-style license that can be found in the LICENSE file. | 3413 // BSD-style license that can be found in the LICENSE file. |
| 4400 | 3414 |
| 4401 // WARNING: Do not edit - generated code. | 3415 // WARNING: Do not edit - generated code. |
| 4402 | 3416 |
| 4403 | 3417 |
| 4404 @DocsEditable() | 3418 @DocsEditable() |
| 4405 @DomName('SVGNumber') | 3419 @DomName('SVGNumber') |
| 4406 @Unstable() | 3420 @Unstable() |
| 4407 class Number extends NativeFieldWrapperClass2 { | 3421 class Number extends NativeFieldWrapperClass2 { |
| 4408 // To suppress missing implicit constructor warnings. | 3422 // To suppress missing implicit constructor warnings. |
| 4409 factory Number._() { throw new UnsupportedError("Not supported"); } | 3423 factory Number._() { throw new UnsupportedError("Not supported"); } |
| 4410 | 3424 |
| 4411 static Number internalCreateNumber() { | |
| 4412 return new Number._internalWrap(); | |
| 4413 } | |
| 4414 | |
| 4415 js.JsObject blink_jsObject; | |
| 4416 | |
| 4417 factory Number._internalWrap() { | |
| 4418 return new Number.internal_(); | |
| 4419 } | |
| 4420 | |
| 4421 Number.internal_() { } | |
| 4422 | |
| 4423 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4424 int get hashCode => unwrap_jso(this).hashCode; | |
| 4425 | |
| 4426 @DomName('SVGNumber.value') | 3425 @DomName('SVGNumber.value') |
| 4427 @DocsEditable() | 3426 @DocsEditable() |
| 4428 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); | 3427 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this)
); |
| 4429 | 3428 |
| 4430 @DomName('SVGNumber.value') | 3429 @DomName('SVGNumber.value') |
| 4431 @DocsEditable() | 3430 @DocsEditable() |
| 4432 set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_js
o(this), value); | 3431 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr
ap_jso(this), value); |
| 4433 | 3432 |
| 4434 } | 3433 } |
| 4435 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4436 // for details. All rights reserved. Use of this source code is governed by a | 3435 // for details. All rights reserved. Use of this source code is governed by a |
| 4437 // BSD-style license that can be found in the LICENSE file. | 3436 // BSD-style license that can be found in the LICENSE file. |
| 4438 | 3437 |
| 4439 // WARNING: Do not edit - generated code. | 3438 // WARNING: Do not edit - generated code. |
| 4440 | 3439 |
| 4441 | 3440 |
| 4442 @DocsEditable() | 3441 @DocsEditable() |
| 4443 @DomName('SVGNumberList') | 3442 @DomName('SVGNumberList') |
| 4444 @Unstable() | 3443 @Unstable() |
| 4445 class NumberList extends JsoNativeFieldWrapper with ListMixin<Number>, Immutable
ListMixin<Number> implements List<Number> { | 3444 class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
bleListMixin<Number> implements List<Number> { |
| 4446 // To suppress missing implicit constructor warnings. | 3445 // To suppress missing implicit constructor warnings. |
| 4447 factory NumberList._() { throw new UnsupportedError("Not supported"); } | 3446 factory NumberList._() { throw new UnsupportedError("Not supported"); } |
| 4448 | 3447 |
| 4449 static NumberList internalCreateNumberList() { | |
| 4450 return new NumberList._internalWrap(); | |
| 4451 } | |
| 4452 | |
| 4453 js.JsObject blink_jsObject; | |
| 4454 | |
| 4455 factory NumberList._internalWrap() { | |
| 4456 return new NumberList.internal_(); | |
| 4457 } | |
| 4458 | |
| 4459 NumberList.internal_() { } | |
| 4460 | |
| 4461 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4462 int get hashCode => unwrap_jso(this).hashCode; | |
| 4463 | |
| 4464 @DomName('SVGNumberList.length') | 3448 @DomName('SVGNumberList.length') |
| 4465 @DocsEditable() | 3449 @DocsEditable() |
| 4466 @Experimental() // untriaged | 3450 @Experimental() // untriaged |
| 4467 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); | 3451 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso
(this)); |
| 4468 | 3452 |
| 4469 @DomName('SVGNumberList.numberOfItems') | 3453 @DomName('SVGNumberList.numberOfItems') |
| 4470 @DocsEditable() | 3454 @DocsEditable() |
| 4471 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 3455 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 4472 | 3456 |
| 4473 Number operator[](int index) { | 3457 Number operator[](int index) { |
| 4474 if (index < 0 || index >= length) | 3458 if (index < 0 || index >= length) |
| 4475 throw new RangeError.index(index, this); | 3459 throw new RangeError.index(index, this); |
| 4476 return getItem(index); | 3460 return getItem(index); |
| 4477 } | 3461 } |
| 4478 | 3462 |
| 4479 void operator[]=(int index, Number value) { | 3463 void operator[]=(int index, Number value) { |
| 4480 throw new UnsupportedError("Cannot assign element of immutable List."); | 3464 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 4481 } | 3465 } |
| 4482 // -- start List<Number> mixins. | 3466 // -- start List<Number> mixins. |
| 4483 // Number is the element type. | 3467 // Number is the element type. |
| 4484 | 3468 |
| 4485 | 3469 |
| 4486 set length(int value) { | 3470 void set length(int value) { |
| 4487 throw new UnsupportedError("Cannot resize immutable List."); | 3471 throw new UnsupportedError("Cannot resize immutable List."); |
| 4488 } | 3472 } |
| 4489 | 3473 |
| 4490 Number get first { | 3474 Number get first { |
| 4491 if (this.length > 0) { | 3475 if (this.length > 0) { |
| 4492 return getItem(0); | 3476 return getItem(0); |
| 4493 } | 3477 } |
| 4494 throw new StateError("No elements"); | 3478 throw new StateError("No elements"); |
| 4495 } | 3479 } |
| 4496 | 3480 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 4514 Number elementAt(int index) => this[index]; | 3498 Number elementAt(int index) => this[index]; |
| 4515 // -- end List<Number> mixins. | 3499 // -- end List<Number> mixins. |
| 4516 | 3500 |
| 4517 @DomName('SVGNumberList.__setter__') | 3501 @DomName('SVGNumberList.__setter__') |
| 4518 @DocsEditable() | 3502 @DocsEditable() |
| 4519 @Experimental() // untriaged | 3503 @Experimental() // untriaged |
| 4520 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 3504 void __setter__(int index, Number value) => _blink.BlinkSVGNumberList.instance
.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 4521 | 3505 |
| 4522 @DomName('SVGNumberList.appendItem') | 3506 @DomName('SVGNumberList.appendItem') |
| 4523 @DocsEditable() | 3507 @DocsEditable() |
| 4524 Number appendItem(Number item) => wrap_jso(_blink.BlinkSVGNumberList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 3508 Number appendItem(Number item) => _blink.BlinkSVGNumberList.instance.appendIte
m_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 4525 | 3509 |
| 4526 @DomName('SVGNumberList.clear') | 3510 @DomName('SVGNumberList.clear') |
| 4527 @DocsEditable() | 3511 @DocsEditable() |
| 4528 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js
o(this)); | 3512 void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_js
o(this)); |
| 4529 | 3513 |
| 4530 @DomName('SVGNumberList.getItem') | 3514 @DomName('SVGNumberList.getItem') |
| 4531 @DocsEditable() | 3515 @DocsEditable() |
| 4532 Number getItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.getIt
em_Callback_1_(unwrap_jso(this), index)); | 3516 Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callba
ck_1_(unwrap_jso(this), index); |
| 4533 | 3517 |
| 4534 @DomName('SVGNumberList.initialize') | 3518 @DomName('SVGNumberList.initialize') |
| 4535 @DocsEditable() | 3519 @DocsEditable() |
| 4536 Number initialize(Number item) => wrap_jso(_blink.BlinkSVGNumberList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 3520 Number initialize(Number item) => _blink.BlinkSVGNumberList.instance.initializ
e_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 4537 | 3521 |
| 4538 @DomName('SVGNumberList.insertItemBefore') | 3522 @DomName('SVGNumberList.insertItemBefore') |
| 4539 @DocsEditable() | 3523 @DocsEditable() |
| 4540 Number insertItemBefore(Number item, int index) => wrap_jso(_blink.BlinkSVGNum
berList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index)); | 3524 Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.i
nstance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 4541 | 3525 |
| 4542 @DomName('SVGNumberList.removeItem') | 3526 @DomName('SVGNumberList.removeItem') |
| 4543 @DocsEditable() | 3527 @DocsEditable() |
| 4544 Number removeItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.re
moveItem_Callback_1_(unwrap_jso(this), index)); | 3528 Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_
Callback_1_(unwrap_jso(this), index); |
| 4545 | 3529 |
| 4546 @DomName('SVGNumberList.replaceItem') | 3530 @DomName('SVGNumberList.replaceItem') |
| 4547 @DocsEditable() | 3531 @DocsEditable() |
| 4548 Number replaceItem(Number item, int index) => wrap_jso(_blink.BlinkSVGNumberLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); | 3532 Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.instan
ce.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 4549 | 3533 |
| 4550 } | 3534 } |
| 4551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3535 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4552 // for details. All rights reserved. Use of this source code is governed by a | 3536 // for details. All rights reserved. Use of this source code is governed by a |
| 4553 // BSD-style license that can be found in the LICENSE file. | 3537 // BSD-style license that can be found in the LICENSE file. |
| 4554 | 3538 |
| 4555 // WARNING: Do not edit - generated code. | 3539 // WARNING: Do not edit - generated code. |
| 4556 | 3540 |
| 4557 | 3541 |
| 4558 @DocsEditable() | 3542 @DocsEditable() |
| 4559 @DomName('SVGPathElement') | 3543 @DomName('SVGPathElement') |
| 4560 @Unstable() | 3544 @Unstable() |
| 4561 class PathElement extends GeometryElement { | 3545 class PathElement extends GeometryElement { |
| 4562 // To suppress missing implicit constructor warnings. | 3546 // To suppress missing implicit constructor warnings. |
| 4563 factory PathElement._() { throw new UnsupportedError("Not supported"); } | 3547 factory PathElement._() { throw new UnsupportedError("Not supported"); } |
| 4564 | 3548 |
| 4565 @DomName('SVGPathElement.SVGPathElement') | 3549 @DomName('SVGPathElement.SVGPathElement') |
| 4566 @DocsEditable() | 3550 @DocsEditable() |
| 4567 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); | 3551 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path
"); |
| 4568 | |
| 4569 | |
| 4570 static PathElement internalCreatePathElement() { | |
| 4571 return new PathElement._internalWrap(); | |
| 4572 } | |
| 4573 | |
| 4574 factory PathElement._internalWrap() { | |
| 4575 return new PathElement.internal_(); | |
| 4576 } | |
| 4577 | |
| 4578 PathElement.internal_() : super.internal_(); | |
| 4579 | |
| 4580 /** | 3552 /** |
| 4581 * Constructor instantiated by the DOM when a custom element has been created. | 3553 * Constructor instantiated by the DOM when a custom element has been created. |
| 4582 * | 3554 * |
| 4583 * This can only be called by subclasses from their created constructor. | 3555 * This can only be called by subclasses from their created constructor. |
| 4584 */ | 3556 */ |
| 4585 PathElement.created() : super.created(); | 3557 PathElement.created() : super.created(); |
| 4586 | 3558 |
| 4587 @DomName('SVGPathElement.animatedNormalizedPathSegList') | 3559 @DomName('SVGPathElement.animatedNormalizedPathSegList') |
| 4588 @DocsEditable() | 3560 @DocsEditable() |
| 4589 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); | 3561 PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathE
lement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this))); |
| 4590 | 3562 |
| 4591 @DomName('SVGPathElement.animatedPathSegList') | 3563 @DomName('SVGPathElement.animatedPathSegList') |
| 4592 @DocsEditable() | 3564 @DocsEditable() |
| 4593 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins
tance.animatedPathSegList_Getter_(unwrap_jso(this))); | 3565 PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.ins
tance.animatedPathSegList_Getter_(unwrap_jso(this))); |
| 4594 | 3566 |
| 4595 @DomName('SVGPathElement.normalizedPathSegList') | 3567 @DomName('SVGPathElement.normalizedPathSegList') |
| 4596 @DocsEditable() | 3568 @DocsEditable() |
| 4597 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i
nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); | 3569 PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.i
nstance.normalizedPathSegList_Getter_(unwrap_jso(this))); |
| 4598 | 3570 |
| 4599 @DomName('SVGPathElement.pathLength') | 3571 @DomName('SVGPathElement.pathLength') |
| 4600 @DocsEditable() | 3572 @DocsEditable() |
| 4601 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.
pathLength_Getter_(unwrap_jso(this))); | 3573 AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.
pathLength_Getter_(unwrap_jso(this))); |
| 4602 | 3574 |
| 4603 @DomName('SVGPathElement.pathSegList') | 3575 @DomName('SVGPathElement.pathSegList') |
| 4604 @DocsEditable() | 3576 @DocsEditable() |
| 4605 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa
thSegList_Getter_(unwrap_jso(this))); | 3577 PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pa
thSegList_Getter_(unwrap_jso(this))); |
| 4606 | 3578 |
| 4607 @DomName('SVGPathElement.createSVGPathSegArcAbs') | 3579 @DomName('SVGPathElement.createSVGPathSegArcAbs') |
| 4608 @DocsEditable() | 3580 @DocsEditable() |
| 4609 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan
ce.createSVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar
geArcFlag, sweepFlag)); | 3581 PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); |
| 4610 | 3582 |
| 4611 @DomName('SVGPathElement.createSVGPathSegArcRel') | 3583 @DomName('SVGPathElement.createSVGPathSegArcRel') |
| 4612 @DocsEditable() | 3584 @DocsEditable() |
| 4613 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instan
ce.createSVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, lar
geArcFlag, sweepFlag)); | 3585 PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle,
bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.create
SVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag
, sweepFlag); |
| 4614 | 3586 |
| 4615 @DomName('SVGPathElement.createSVGPathSegClosePath') | 3587 @DomName('SVGPathElement.createSVGPathSegClosePath') |
| 4616 @DocsEditable() | 3588 @DocsEditable() |
| 4617 PathSegClosePath createSvgPathSegClosePath() => wrap_jso(_blink.BlinkSVGPathEl
ement.instance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this))); | 3589 PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.ins
tance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this)); |
| 4618 | 3590 |
| 4619 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') | 3591 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs') |
| 4620 @DocsEditable() | 3592 @DocsEditable() |
| 4621 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG
PathSegCurvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); | 3593 PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); |
| 4622 | 3594 |
| 4623 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') | 3595 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel') |
| 4624 @DocsEditable() | 3596 @DocsEditable() |
| 4625 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVG
PathSegCurvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2)); | 3597 PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, n
um y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCu
rvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2); |
| 4626 | 3598 |
| 4627 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') | 3599 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs') |
| 4628 @DocsEditable() | 3600 @DocsEditable() |
| 4629 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath
SegCurvetoCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2)); | 3601 PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2); |
| 4630 | 3602 |
| 4631 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') | 3603 @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel') |
| 4632 @DocsEditable() | 3604 @DocsEditable() |
| 4633 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPath
SegCurvetoCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2)); | 3605 PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num
y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvet
oCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2); |
| 4634 | 3606 |
| 4635 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') | 3607 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs') |
| 4636 @DocsEditable() | 3608 @DocsEditable() |
| 4637 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC
urvetoQuadraticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1)); | 3609 PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1); |
| 4638 | 3610 |
| 4639 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') | 3611 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel') |
| 4640 @DocsEditable() | 3612 @DocsEditable() |
| 4641 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegC
urvetoQuadraticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1)); | 3613 PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, n
um x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQua
draticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1); |
| 4642 | 3614 |
| 4643 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') | 3615 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs') |
| 4644 @DocsEditable() | 3616 @DocsEditable() |
| 4645 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve
toQuadraticSmoothAbs_Callback_2_(unwrap_jso(this), x, y)); | 3617 PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothAbs_Callback_2_(unwrap_jso(this), x, y); |
| 4646 | 3618 |
| 4647 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') | 3619 @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel') |
| 4648 @DocsEditable() | 3620 @DocsEditable() |
| 4649 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurve
toQuadraticSmoothRel_Callback_2_(unwrap_jso(this), x, y)); | 3621 PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num
x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadrat
icSmoothRel_Callback_2_(unwrap_jso(this), x, y); |
| 4650 | 3622 |
| 4651 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') | 3623 @DomName('SVGPathElement.createSVGPathSegLinetoAbs') |
| 4652 @DocsEditable() | 3624 @DocsEditable() |
| 4653 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this
), x, y)); | 3625 PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this), x, y); |
| 4654 | 3626 |
| 4655 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') | 3627 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs') |
| 4656 @DocsEditable() | 3628 @DocsEditable() |
| 4657 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => wrap_
jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Call
back_1_(unwrap_jso(this), x)); | 3629 PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(u
nwrap_jso(this), x); |
| 4658 | 3630 |
| 4659 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') | 3631 @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel') |
| 4660 @DocsEditable() | 3632 @DocsEditable() |
| 4661 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => wrap_
jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Call
back_1_(unwrap_jso(this), x)); | 3633 PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blin
k.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(u
nwrap_jso(this), x); |
| 4662 | 3634 |
| 4663 @DomName('SVGPathElement.createSVGPathSegLinetoRel') | 3635 @DomName('SVGPathElement.createSVGPathSegLinetoRel') |
| 4664 @DocsEditable() | 3636 @DocsEditable() |
| 4665 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this
), x, y)); | 3637 PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this), x, y); |
| 4666 | 3638 |
| 4667 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') | 3639 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs') |
| 4668 @DocsEditable() | 3640 @DocsEditable() |
| 4669 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => wrap_jso(
_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1
_(unwrap_jso(this), y)); | 3641 PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(unwrap_
jso(this), y); |
| 4670 | 3642 |
| 4671 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') | 3643 @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel') |
| 4672 @DocsEditable() | 3644 @DocsEditable() |
| 4673 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => wrap_jso(
_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1
_(unwrap_jso(this), y)); | 3645 PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Bl
inkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(unwrap_
jso(this), y); |
| 4674 | 3646 |
| 4675 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') | 3647 @DomName('SVGPathElement.createSVGPathSegMovetoAbs') |
| 4676 @DocsEditable() | 3648 @DocsEditable() |
| 4677 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this
), x, y)); | 3649 PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this), x, y); |
| 4678 | 3650 |
| 4679 @DomName('SVGPathElement.createSVGPathSegMovetoRel') | 3651 @DomName('SVGPathElement.createSVGPathSegMovetoRel') |
| 4680 @DocsEditable() | 3652 @DocsEditable() |
| 4681 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => wrap_jso(_blink.Bl
inkSVGPathElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this
), x, y)); | 3653 PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPat
hElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this), x, y); |
| 4682 | 3654 |
| 4683 @DomName('SVGPathElement.getPathSegAtLength') | 3655 @DomName('SVGPathElement.getPathSegAtLength') |
| 4684 @DocsEditable() | 3656 @DocsEditable() |
| 4685 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); | 3657 int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPathSegAtLength_Callback_1_(unwrap_jso(this), distance); |
| 4686 | 3658 |
| 4687 @DomName('SVGPathElement.getPointAtLength') | 3659 @DomName('SVGPathElement.getPointAtLength') |
| 4688 @DocsEditable() | 3660 @DocsEditable() |
| 4689 Point getPointAtLength(num distance) => wrap_jso(_blink.BlinkSVGPathElement.in
stance.getPointAtLength_Callback_1_(unwrap_jso(this), distance)); | 3661 Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.ge
tPointAtLength_Callback_1_(unwrap_jso(this), distance); |
| 4690 | 3662 |
| 4691 @DomName('SVGPathElement.getTotalLength') | 3663 @DomName('SVGPathElement.getTotalLength') |
| 4692 @DocsEditable() | 3664 @DocsEditable() |
| 4693 num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Cal
lback_0_(unwrap_jso(this)); | 3665 double getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_
Callback_0_(unwrap_jso(this)); |
| 4694 | 3666 |
| 4695 } | 3667 } |
| 4696 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3668 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4697 // for details. All rights reserved. Use of this source code is governed by a | 3669 // for details. All rights reserved. Use of this source code is governed by a |
| 4698 // BSD-style license that can be found in the LICENSE file. | 3670 // BSD-style license that can be found in the LICENSE file. |
| 4699 | 3671 |
| 4700 // WARNING: Do not edit - generated code. | 3672 // WARNING: Do not edit - generated code. |
| 4701 | 3673 |
| 4702 | 3674 |
| 4703 @DocsEditable() | 3675 @DocsEditable() |
| 4704 @DomName('SVGPathSeg') | 3676 @DomName('SVGPathSeg') |
| 4705 @Unstable() | 3677 @Unstable() |
| 4706 class PathSeg extends NativeFieldWrapperClass2 { | 3678 class PathSeg extends NativeFieldWrapperClass2 { |
| 4707 // To suppress missing implicit constructor warnings. | 3679 // To suppress missing implicit constructor warnings. |
| 4708 factory PathSeg._() { throw new UnsupportedError("Not supported"); } | 3680 factory PathSeg._() { throw new UnsupportedError("Not supported"); } |
| 4709 | 3681 |
| 4710 static PathSeg internalCreatePathSeg() { | |
| 4711 return new PathSeg._internalWrap(); | |
| 4712 } | |
| 4713 | |
| 4714 js.JsObject blink_jsObject; | |
| 4715 | |
| 4716 factory PathSeg._internalWrap() { | |
| 4717 return new PathSeg.internal_(); | |
| 4718 } | |
| 4719 | |
| 4720 PathSeg.internal_() { } | |
| 4721 | |
| 4722 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 4723 int get hashCode => unwrap_jso(this).hashCode; | |
| 4724 | |
| 4725 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') | 3682 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') |
| 4726 @DocsEditable() | 3683 @DocsEditable() |
| 4727 static const int PATHSEG_ARC_ABS = 10; | 3684 static const int PATHSEG_ARC_ABS = 10; |
| 4728 | 3685 |
| 4729 @DomName('SVGPathSeg.PATHSEG_ARC_REL') | 3686 @DomName('SVGPathSeg.PATHSEG_ARC_REL') |
| 4730 @DocsEditable() | 3687 @DocsEditable() |
| 4731 static const int PATHSEG_ARC_REL = 11; | 3688 static const int PATHSEG_ARC_REL = 11; |
| 4732 | 3689 |
| 4733 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') | 3690 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') |
| 4734 @DocsEditable() | 3691 @DocsEditable() |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4818 // WARNING: Do not edit - generated code. | 3775 // WARNING: Do not edit - generated code. |
| 4819 | 3776 |
| 4820 | 3777 |
| 4821 @DocsEditable() | 3778 @DocsEditable() |
| 4822 @DomName('SVGPathSegArcAbs') | 3779 @DomName('SVGPathSegArcAbs') |
| 4823 @Unstable() | 3780 @Unstable() |
| 4824 class PathSegArcAbs extends PathSeg { | 3781 class PathSegArcAbs extends PathSeg { |
| 4825 // To suppress missing implicit constructor warnings. | 3782 // To suppress missing implicit constructor warnings. |
| 4826 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } | 3783 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } |
| 4827 | 3784 |
| 4828 | |
| 4829 static PathSegArcAbs internalCreatePathSegArcAbs() { | |
| 4830 return new PathSegArcAbs._internalWrap(); | |
| 4831 } | |
| 4832 | |
| 4833 factory PathSegArcAbs._internalWrap() { | |
| 4834 return new PathSegArcAbs.internal_(); | |
| 4835 } | |
| 4836 | |
| 4837 PathSegArcAbs.internal_() : super.internal_(); | |
| 4838 | |
| 4839 | |
| 4840 @DomName('SVGPathSegArcAbs.angle') | 3785 @DomName('SVGPathSegArcAbs.angle') |
| 4841 @DocsEditable() | 3786 @DocsEditable() |
| 4842 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); | 3787 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js
o(this)); |
| 4843 | 3788 |
| 4844 @DomName('SVGPathSegArcAbs.angle') | 3789 @DomName('SVGPathSegArcAbs.angle') |
| 4845 @DocsEditable() | 3790 @DocsEditable() |
| 4846 set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(un
wrap_jso(this), value); | 3791 void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4847 | 3792 |
| 4848 @DomName('SVGPathSegArcAbs.largeArcFlag') | 3793 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 4849 @DocsEditable() | 3794 @DocsEditable() |
| 4850 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); | 3795 bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
| 4851 | 3796 |
| 4852 @DomName('SVGPathSegArcAbs.largeArcFlag') | 3797 @DomName('SVGPathSegArcAbs.largeArcFlag') |
| 4853 @DocsEditable() | 3798 @DocsEditable() |
| 4854 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArc
Flag_Setter_(unwrap_jso(this), value); | 3799 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); |
| 4855 | 3800 |
| 4856 @DomName('SVGPathSegArcAbs.r1') | 3801 @DomName('SVGPathSegArcAbs.r1') |
| 4857 @DocsEditable() | 3802 @DocsEditable() |
| 4858 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this
)); | 3803 num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this
)); |
| 4859 | 3804 |
| 4860 @DomName('SVGPathSegArcAbs.r1') | 3805 @DomName('SVGPathSegArcAbs.r1') |
| 4861 @DocsEditable() | 3806 @DocsEditable() |
| 4862 set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unwrap_j
so(this), value); | 3807 void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unw
rap_jso(this), value); |
| 4863 | 3808 |
| 4864 @DomName('SVGPathSegArcAbs.r2') | 3809 @DomName('SVGPathSegArcAbs.r2') |
| 4865 @DocsEditable() | 3810 @DocsEditable() |
| 4866 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this
)); | 3811 num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this
)); |
| 4867 | 3812 |
| 4868 @DomName('SVGPathSegArcAbs.r2') | 3813 @DomName('SVGPathSegArcAbs.r2') |
| 4869 @DocsEditable() | 3814 @DocsEditable() |
| 4870 set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unwrap_j
so(this), value); | 3815 void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unw
rap_jso(this), value); |
| 4871 | 3816 |
| 4872 @DomName('SVGPathSegArcAbs.sweepFlag') | 3817 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 4873 @DocsEditable() | 3818 @DocsEditable() |
| 4874 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
unwrap_jso(this)); | 3819 bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
| 4875 | 3820 |
| 4876 @DomName('SVGPathSegArcAbs.sweepFlag') | 3821 @DomName('SVGPathSegArcAbs.sweepFlag') |
| 4877 @DocsEditable() | 3822 @DocsEditable() |
| 4878 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_S
etter_(unwrap_jso(this), value); | 3823 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepF
lag_Setter_(unwrap_jso(this), value); |
| 4879 | 3824 |
| 4880 @DomName('SVGPathSegArcAbs.x') | 3825 @DomName('SVGPathSegArcAbs.x') |
| 4881 @DocsEditable() | 3826 @DocsEditable() |
| 4882 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this))
; | 3827 num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this))
; |
| 4883 | 3828 |
| 4884 @DomName('SVGPathSegArcAbs.x') | 3829 @DomName('SVGPathSegArcAbs.x') |
| 4885 @DocsEditable() | 3830 @DocsEditable() |
| 4886 set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwrap_jso
(this), value); | 3831 void set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwra
p_jso(this), value); |
| 4887 | 3832 |
| 4888 @DomName('SVGPathSegArcAbs.y') | 3833 @DomName('SVGPathSegArcAbs.y') |
| 4889 @DocsEditable() | 3834 @DocsEditable() |
| 4890 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this))
; | 3835 num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this))
; |
| 4891 | 3836 |
| 4892 @DomName('SVGPathSegArcAbs.y') | 3837 @DomName('SVGPathSegArcAbs.y') |
| 4893 @DocsEditable() | 3838 @DocsEditable() |
| 4894 set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwrap_jso
(this), value); | 3839 void set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwra
p_jso(this), value); |
| 4895 | 3840 |
| 4896 } | 3841 } |
| 4897 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4898 // for details. All rights reserved. Use of this source code is governed by a | 3843 // for details. All rights reserved. Use of this source code is governed by a |
| 4899 // BSD-style license that can be found in the LICENSE file. | 3844 // BSD-style license that can be found in the LICENSE file. |
| 4900 | 3845 |
| 4901 // WARNING: Do not edit - generated code. | 3846 // WARNING: Do not edit - generated code. |
| 4902 | 3847 |
| 4903 | 3848 |
| 4904 @DocsEditable() | 3849 @DocsEditable() |
| 4905 @DomName('SVGPathSegArcRel') | 3850 @DomName('SVGPathSegArcRel') |
| 4906 @Unstable() | 3851 @Unstable() |
| 4907 class PathSegArcRel extends PathSeg { | 3852 class PathSegArcRel extends PathSeg { |
| 4908 // To suppress missing implicit constructor warnings. | 3853 // To suppress missing implicit constructor warnings. |
| 4909 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } | 3854 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } |
| 4910 | 3855 |
| 4911 | |
| 4912 static PathSegArcRel internalCreatePathSegArcRel() { | |
| 4913 return new PathSegArcRel._internalWrap(); | |
| 4914 } | |
| 4915 | |
| 4916 factory PathSegArcRel._internalWrap() { | |
| 4917 return new PathSegArcRel.internal_(); | |
| 4918 } | |
| 4919 | |
| 4920 PathSegArcRel.internal_() : super.internal_(); | |
| 4921 | |
| 4922 | |
| 4923 @DomName('SVGPathSegArcRel.angle') | 3856 @DomName('SVGPathSegArcRel.angle') |
| 4924 @DocsEditable() | 3857 @DocsEditable() |
| 4925 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); | 3858 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js
o(this)); |
| 4926 | 3859 |
| 4927 @DomName('SVGPathSegArcRel.angle') | 3860 @DomName('SVGPathSegArcRel.angle') |
| 4928 @DocsEditable() | 3861 @DocsEditable() |
| 4929 set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(un
wrap_jso(this), value); | 3862 void set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Sette
r_(unwrap_jso(this), value); |
| 4930 | 3863 |
| 4931 @DomName('SVGPathSegArcRel.largeArcFlag') | 3864 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 4932 @DocsEditable() | 3865 @DocsEditable() |
| 4933 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); | 3866 bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Ge
tter_(unwrap_jso(this)); |
| 4934 | 3867 |
| 4935 @DomName('SVGPathSegArcRel.largeArcFlag') | 3868 @DomName('SVGPathSegArcRel.largeArcFlag') |
| 4936 @DocsEditable() | 3869 @DocsEditable() |
| 4937 set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArc
Flag_Setter_(unwrap_jso(this), value); | 3870 void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.lar
geArcFlag_Setter_(unwrap_jso(this), value); |
| 4938 | 3871 |
| 4939 @DomName('SVGPathSegArcRel.r1') | 3872 @DomName('SVGPathSegArcRel.r1') |
| 4940 @DocsEditable() | 3873 @DocsEditable() |
| 4941 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this
)); | 3874 num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this
)); |
| 4942 | 3875 |
| 4943 @DomName('SVGPathSegArcRel.r1') | 3876 @DomName('SVGPathSegArcRel.r1') |
| 4944 @DocsEditable() | 3877 @DocsEditable() |
| 4945 set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unwrap_j
so(this), value); | 3878 void set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unw
rap_jso(this), value); |
| 4946 | 3879 |
| 4947 @DomName('SVGPathSegArcRel.r2') | 3880 @DomName('SVGPathSegArcRel.r2') |
| 4948 @DocsEditable() | 3881 @DocsEditable() |
| 4949 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this
)); | 3882 num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this
)); |
| 4950 | 3883 |
| 4951 @DomName('SVGPathSegArcRel.r2') | 3884 @DomName('SVGPathSegArcRel.r2') |
| 4952 @DocsEditable() | 3885 @DocsEditable() |
| 4953 set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unwrap_j
so(this), value); | 3886 void set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unw
rap_jso(this), value); |
| 4954 | 3887 |
| 4955 @DomName('SVGPathSegArcRel.sweepFlag') | 3888 @DomName('SVGPathSegArcRel.sweepFlag') |
| 4956 @DocsEditable() | 3889 @DocsEditable() |
| 4957 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
unwrap_jso(this)); | 3890 bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(
unwrap_jso(this)); |
| 4958 | 3891 |
| 4959 @DomName('SVGPathSegArcRel.sweepFlag') | 3892 @DomName('SVGPathSegArcRel.sweepFlag') |
| 4960 @DocsEditable() | 3893 @DocsEditable() |
| 4961 set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_S
etter_(unwrap_jso(this), value); | 3894 void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepF
lag_Setter_(unwrap_jso(this), value); |
| 4962 | 3895 |
| 4963 @DomName('SVGPathSegArcRel.x') | 3896 @DomName('SVGPathSegArcRel.x') |
| 4964 @DocsEditable() | 3897 @DocsEditable() |
| 4965 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this))
; | 3898 num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this))
; |
| 4966 | 3899 |
| 4967 @DomName('SVGPathSegArcRel.x') | 3900 @DomName('SVGPathSegArcRel.x') |
| 4968 @DocsEditable() | 3901 @DocsEditable() |
| 4969 set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwrap_jso
(this), value); | 3902 void set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwra
p_jso(this), value); |
| 4970 | 3903 |
| 4971 @DomName('SVGPathSegArcRel.y') | 3904 @DomName('SVGPathSegArcRel.y') |
| 4972 @DocsEditable() | 3905 @DocsEditable() |
| 4973 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this))
; | 3906 num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this))
; |
| 4974 | 3907 |
| 4975 @DomName('SVGPathSegArcRel.y') | 3908 @DomName('SVGPathSegArcRel.y') |
| 4976 @DocsEditable() | 3909 @DocsEditable() |
| 4977 set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwrap_jso
(this), value); | 3910 void set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwra
p_jso(this), value); |
| 4978 | 3911 |
| 4979 } | 3912 } |
| 4980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3913 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4981 // for details. All rights reserved. Use of this source code is governed by a | 3914 // for details. All rights reserved. Use of this source code is governed by a |
| 4982 // BSD-style license that can be found in the LICENSE file. | 3915 // BSD-style license that can be found in the LICENSE file. |
| 4983 | 3916 |
| 4984 // WARNING: Do not edit - generated code. | 3917 // WARNING: Do not edit - generated code. |
| 4985 | 3918 |
| 4986 | 3919 |
| 4987 @DocsEditable() | 3920 @DocsEditable() |
| 4988 @DomName('SVGPathSegClosePath') | 3921 @DomName('SVGPathSegClosePath') |
| 4989 @Unstable() | 3922 @Unstable() |
| 4990 class PathSegClosePath extends PathSeg { | 3923 class PathSegClosePath extends PathSeg { |
| 4991 // To suppress missing implicit constructor warnings. | 3924 // To suppress missing implicit constructor warnings. |
| 4992 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } | 3925 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } |
| 4993 | 3926 |
| 4994 | |
| 4995 static PathSegClosePath internalCreatePathSegClosePath() { | |
| 4996 return new PathSegClosePath._internalWrap(); | |
| 4997 } | |
| 4998 | |
| 4999 factory PathSegClosePath._internalWrap() { | |
| 5000 return new PathSegClosePath.internal_(); | |
| 5001 } | |
| 5002 | |
| 5003 PathSegClosePath.internal_() : super.internal_(); | |
| 5004 | |
| 5005 | |
| 5006 } | 3927 } |
| 5007 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3928 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5008 // for details. All rights reserved. Use of this source code is governed by a | 3929 // for details. All rights reserved. Use of this source code is governed by a |
| 5009 // BSD-style license that can be found in the LICENSE file. | 3930 // BSD-style license that can be found in the LICENSE file. |
| 5010 | 3931 |
| 5011 // WARNING: Do not edit - generated code. | 3932 // WARNING: Do not edit - generated code. |
| 5012 | 3933 |
| 5013 | 3934 |
| 5014 @DocsEditable() | 3935 @DocsEditable() |
| 5015 @DomName('SVGPathSegCurvetoCubicAbs') | 3936 @DomName('SVGPathSegCurvetoCubicAbs') |
| 5016 @Unstable() | 3937 @Unstable() |
| 5017 class PathSegCurvetoCubicAbs extends PathSeg { | 3938 class PathSegCurvetoCubicAbs extends PathSeg { |
| 5018 // To suppress missing implicit constructor warnings. | 3939 // To suppress missing implicit constructor warnings. |
| 5019 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } | 3940 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported
"); } |
| 5020 | 3941 |
| 5021 | |
| 5022 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { | |
| 5023 return new PathSegCurvetoCubicAbs._internalWrap(); | |
| 5024 } | |
| 5025 | |
| 5026 factory PathSegCurvetoCubicAbs._internalWrap() { | |
| 5027 return new PathSegCurvetoCubicAbs.internal_(); | |
| 5028 } | |
| 5029 | |
| 5030 PathSegCurvetoCubicAbs.internal_() : super.internal_(); | |
| 5031 | |
| 5032 | |
| 5033 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3942 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 5034 @DocsEditable() | 3943 @DocsEditable() |
| 5035 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); | 3944 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j
so(this)); |
| 5036 | 3945 |
| 5037 @DomName('SVGPathSegCurvetoCubicAbs.x') | 3946 @DomName('SVGPathSegCurvetoCubicAbs.x') |
| 5038 @DocsEditable() | 3947 @DocsEditable() |
| 5039 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(u
nwrap_jso(this), value); | 3948 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Sett
er_(unwrap_jso(this), value); |
| 5040 | 3949 |
| 5041 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 3950 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 5042 @DocsEditable() | 3951 @DocsEditable() |
| 5043 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap
_jso(this)); | 3952 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap
_jso(this)); |
| 5044 | 3953 |
| 5045 @DomName('SVGPathSegCurvetoCubicAbs.x1') | 3954 @DomName('SVGPathSegCurvetoCubicAbs.x1') |
| 5046 @DocsEditable() | 3955 @DocsEditable() |
| 5047 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_
(unwrap_jso(this), value); | 3956 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Se
tter_(unwrap_jso(this), value); |
| 5048 | 3957 |
| 5049 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 3958 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 5050 @DocsEditable() | 3959 @DocsEditable() |
| 5051 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap
_jso(this)); | 3960 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap
_jso(this)); |
| 5052 | 3961 |
| 5053 @DomName('SVGPathSegCurvetoCubicAbs.x2') | 3962 @DomName('SVGPathSegCurvetoCubicAbs.x2') |
| 5054 @DocsEditable() | 3963 @DocsEditable() |
| 5055 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_
(unwrap_jso(this), value); | 3964 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Se
tter_(unwrap_jso(this), value); |
| 5056 | 3965 |
| 5057 @DomName('SVGPathSegCurvetoCubicAbs.y') | 3966 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 5058 @DocsEditable() | 3967 @DocsEditable() |
| 5059 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j
so(this)); | 3968 num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_j
so(this)); |
| 5060 | 3969 |
| 5061 @DomName('SVGPathSegCurvetoCubicAbs.y') | 3970 @DomName('SVGPathSegCurvetoCubicAbs.y') |
| 5062 @DocsEditable() | 3971 @DocsEditable() |
| 5063 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(u
nwrap_jso(this), value); | 3972 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Sett
er_(unwrap_jso(this), value); |
| 5064 | 3973 |
| 5065 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 3974 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 5066 @DocsEditable() | 3975 @DocsEditable() |
| 5067 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap
_jso(this)); | 3976 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap
_jso(this)); |
| 5068 | 3977 |
| 5069 @DomName('SVGPathSegCurvetoCubicAbs.y1') | 3978 @DomName('SVGPathSegCurvetoCubicAbs.y1') |
| 5070 @DocsEditable() | 3979 @DocsEditable() |
| 5071 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_
(unwrap_jso(this), value); | 3980 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Se
tter_(unwrap_jso(this), value); |
| 5072 | 3981 |
| 5073 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 3982 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 5074 @DocsEditable() | 3983 @DocsEditable() |
| 5075 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap
_jso(this)); | 3984 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap
_jso(this)); |
| 5076 | 3985 |
| 5077 @DomName('SVGPathSegCurvetoCubicAbs.y2') | 3986 @DomName('SVGPathSegCurvetoCubicAbs.y2') |
| 5078 @DocsEditable() | 3987 @DocsEditable() |
| 5079 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_
(unwrap_jso(this), value); | 3988 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Se
tter_(unwrap_jso(this), value); |
| 5080 | 3989 |
| 5081 } | 3990 } |
| 5082 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5083 // for details. All rights reserved. Use of this source code is governed by a | 3992 // for details. All rights reserved. Use of this source code is governed by a |
| 5084 // BSD-style license that can be found in the LICENSE file. | 3993 // BSD-style license that can be found in the LICENSE file. |
| 5085 | 3994 |
| 5086 // WARNING: Do not edit - generated code. | 3995 // WARNING: Do not edit - generated code. |
| 5087 | 3996 |
| 5088 | 3997 |
| 5089 @DocsEditable() | 3998 @DocsEditable() |
| 5090 @DomName('SVGPathSegCurvetoCubicRel') | 3999 @DomName('SVGPathSegCurvetoCubicRel') |
| 5091 @Unstable() | 4000 @Unstable() |
| 5092 class PathSegCurvetoCubicRel extends PathSeg { | 4001 class PathSegCurvetoCubicRel extends PathSeg { |
| 5093 // To suppress missing implicit constructor warnings. | 4002 // To suppress missing implicit constructor warnings. |
| 5094 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } | 4003 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported
"); } |
| 5095 | 4004 |
| 5096 | |
| 5097 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { | |
| 5098 return new PathSegCurvetoCubicRel._internalWrap(); | |
| 5099 } | |
| 5100 | |
| 5101 factory PathSegCurvetoCubicRel._internalWrap() { | |
| 5102 return new PathSegCurvetoCubicRel.internal_(); | |
| 5103 } | |
| 5104 | |
| 5105 PathSegCurvetoCubicRel.internal_() : super.internal_(); | |
| 5106 | |
| 5107 | |
| 5108 @DomName('SVGPathSegCurvetoCubicRel.x') | 4005 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 5109 @DocsEditable() | 4006 @DocsEditable() |
| 5110 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); | 4007 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j
so(this)); |
| 5111 | 4008 |
| 5112 @DomName('SVGPathSegCurvetoCubicRel.x') | 4009 @DomName('SVGPathSegCurvetoCubicRel.x') |
| 5113 @DocsEditable() | 4010 @DocsEditable() |
| 5114 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(u
nwrap_jso(this), value); | 4011 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Sett
er_(unwrap_jso(this), value); |
| 5115 | 4012 |
| 5116 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4013 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 5117 @DocsEditable() | 4014 @DocsEditable() |
| 5118 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap
_jso(this)); | 4015 num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap
_jso(this)); |
| 5119 | 4016 |
| 5120 @DomName('SVGPathSegCurvetoCubicRel.x1') | 4017 @DomName('SVGPathSegCurvetoCubicRel.x1') |
| 5121 @DocsEditable() | 4018 @DocsEditable() |
| 5122 set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_
(unwrap_jso(this), value); | 4019 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Se
tter_(unwrap_jso(this), value); |
| 5123 | 4020 |
| 5124 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4021 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 5125 @DocsEditable() | 4022 @DocsEditable() |
| 5126 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap
_jso(this)); | 4023 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap
_jso(this)); |
| 5127 | 4024 |
| 5128 @DomName('SVGPathSegCurvetoCubicRel.x2') | 4025 @DomName('SVGPathSegCurvetoCubicRel.x2') |
| 5129 @DocsEditable() | 4026 @DocsEditable() |
| 5130 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_
(unwrap_jso(this), value); | 4027 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Se
tter_(unwrap_jso(this), value); |
| 5131 | 4028 |
| 5132 @DomName('SVGPathSegCurvetoCubicRel.y') | 4029 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 5133 @DocsEditable() | 4030 @DocsEditable() |
| 5134 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j
so(this)); | 4031 num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_j
so(this)); |
| 5135 | 4032 |
| 5136 @DomName('SVGPathSegCurvetoCubicRel.y') | 4033 @DomName('SVGPathSegCurvetoCubicRel.y') |
| 5137 @DocsEditable() | 4034 @DocsEditable() |
| 5138 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(u
nwrap_jso(this), value); | 4035 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Sett
er_(unwrap_jso(this), value); |
| 5139 | 4036 |
| 5140 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4037 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 5141 @DocsEditable() | 4038 @DocsEditable() |
| 5142 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap
_jso(this)); | 4039 num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap
_jso(this)); |
| 5143 | 4040 |
| 5144 @DomName('SVGPathSegCurvetoCubicRel.y1') | 4041 @DomName('SVGPathSegCurvetoCubicRel.y1') |
| 5145 @DocsEditable() | 4042 @DocsEditable() |
| 5146 set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_
(unwrap_jso(this), value); | 4043 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Se
tter_(unwrap_jso(this), value); |
| 5147 | 4044 |
| 5148 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4045 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 5149 @DocsEditable() | 4046 @DocsEditable() |
| 5150 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap
_jso(this)); | 4047 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap
_jso(this)); |
| 5151 | 4048 |
| 5152 @DomName('SVGPathSegCurvetoCubicRel.y2') | 4049 @DomName('SVGPathSegCurvetoCubicRel.y2') |
| 5153 @DocsEditable() | 4050 @DocsEditable() |
| 5154 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_
(unwrap_jso(this), value); | 4051 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Se
tter_(unwrap_jso(this), value); |
| 5155 | 4052 |
| 5156 } | 4053 } |
| 5157 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4054 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5158 // for details. All rights reserved. Use of this source code is governed by a | 4055 // for details. All rights reserved. Use of this source code is governed by a |
| 5159 // BSD-style license that can be found in the LICENSE file. | 4056 // BSD-style license that can be found in the LICENSE file. |
| 5160 | 4057 |
| 5161 // WARNING: Do not edit - generated code. | 4058 // WARNING: Do not edit - generated code. |
| 5162 | 4059 |
| 5163 | 4060 |
| 5164 @DocsEditable() | 4061 @DocsEditable() |
| 5165 @DomName('SVGPathSegCurvetoCubicSmoothAbs') | 4062 @DomName('SVGPathSegCurvetoCubicSmoothAbs') |
| 5166 @Unstable() | 4063 @Unstable() |
| 5167 class PathSegCurvetoCubicSmoothAbs extends PathSeg { | 4064 class PathSegCurvetoCubicSmoothAbs extends PathSeg { |
| 5168 // To suppress missing implicit constructor warnings. | 4065 // To suppress missing implicit constructor warnings. |
| 5169 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } | 4066 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup
ported"); } |
| 5170 | 4067 |
| 5171 | |
| 5172 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs
() { | |
| 5173 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); | |
| 5174 } | |
| 5175 | |
| 5176 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { | |
| 5177 return new PathSegCurvetoCubicSmoothAbs.internal_(); | |
| 5178 } | |
| 5179 | |
| 5180 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); | |
| 5181 | |
| 5182 | |
| 5183 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4068 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5184 @DocsEditable() | 4069 @DocsEditable() |
| 5185 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); | 4070 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un
wrap_jso(this)); |
| 5186 | 4071 |
| 5187 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') | 4072 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') |
| 5188 @DocsEditable() | 4073 @DocsEditable() |
| 5189 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Set
ter_(unwrap_jso(this), value); | 4074 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
x_Setter_(unwrap_jso(this), value); |
| 5190 | 4075 |
| 5191 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 4076 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 5192 @DocsEditable() | 4077 @DocsEditable() |
| 5193 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
unwrap_jso(this)); | 4078 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(
unwrap_jso(this)); |
| 5194 | 4079 |
| 5195 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') | 4080 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2') |
| 5196 @DocsEditable() | 4081 @DocsEditable() |
| 5197 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_S
etter_(unwrap_jso(this), value); | 4082 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.x2_Setter_(unwrap_jso(this), value); |
| 5198 | 4083 |
| 5199 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 4084 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 5200 @DocsEditable() | 4085 @DocsEditable() |
| 5201 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un
wrap_jso(this)); | 4086 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(un
wrap_jso(this)); |
| 5202 | 4087 |
| 5203 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') | 4088 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y') |
| 5204 @DocsEditable() | 4089 @DocsEditable() |
| 5205 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Set
ter_(unwrap_jso(this), value); | 4090 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.
y_Setter_(unwrap_jso(this), value); |
| 5206 | 4091 |
| 5207 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 4092 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 5208 @DocsEditable() | 4093 @DocsEditable() |
| 5209 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
unwrap_jso(this)); | 4094 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(
unwrap_jso(this)); |
| 5210 | 4095 |
| 5211 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') | 4096 @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2') |
| 5212 @DocsEditable() | 4097 @DocsEditable() |
| 5213 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_S
etter_(unwrap_jso(this), value); | 4098 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance
.y2_Setter_(unwrap_jso(this), value); |
| 5214 | 4099 |
| 5215 } | 4100 } |
| 5216 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5217 // for details. All rights reserved. Use of this source code is governed by a | 4102 // for details. All rights reserved. Use of this source code is governed by a |
| 5218 // BSD-style license that can be found in the LICENSE file. | 4103 // BSD-style license that can be found in the LICENSE file. |
| 5219 | 4104 |
| 5220 // WARNING: Do not edit - generated code. | 4105 // WARNING: Do not edit - generated code. |
| 5221 | 4106 |
| 5222 | 4107 |
| 5223 @DocsEditable() | 4108 @DocsEditable() |
| 5224 @DomName('SVGPathSegCurvetoCubicSmoothRel') | 4109 @DomName('SVGPathSegCurvetoCubicSmoothRel') |
| 5225 @Unstable() | 4110 @Unstable() |
| 5226 class PathSegCurvetoCubicSmoothRel extends PathSeg { | 4111 class PathSegCurvetoCubicSmoothRel extends PathSeg { |
| 5227 // To suppress missing implicit constructor warnings. | 4112 // To suppress missing implicit constructor warnings. |
| 5228 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } | 4113 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup
ported"); } |
| 5229 | 4114 |
| 5230 | |
| 5231 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel
() { | |
| 5232 return new PathSegCurvetoCubicSmoothRel._internalWrap(); | |
| 5233 } | |
| 5234 | |
| 5235 factory PathSegCurvetoCubicSmoothRel._internalWrap() { | |
| 5236 return new PathSegCurvetoCubicSmoothRel.internal_(); | |
| 5237 } | |
| 5238 | |
| 5239 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); | |
| 5240 | |
| 5241 | |
| 5242 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4115 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5243 @DocsEditable() | 4116 @DocsEditable() |
| 5244 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); | 4117 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un
wrap_jso(this)); |
| 5245 | 4118 |
| 5246 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') | 4119 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') |
| 5247 @DocsEditable() | 4120 @DocsEditable() |
| 5248 set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Set
ter_(unwrap_jso(this), value); | 4121 void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
x_Setter_(unwrap_jso(this), value); |
| 5249 | 4122 |
| 5250 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 4123 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 5251 @DocsEditable() | 4124 @DocsEditable() |
| 5252 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
unwrap_jso(this)); | 4125 num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(
unwrap_jso(this)); |
| 5253 | 4126 |
| 5254 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') | 4127 @DomName('SVGPathSegCurvetoCubicSmoothRel.x2') |
| 5255 @DocsEditable() | 4128 @DocsEditable() |
| 5256 set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_S
etter_(unwrap_jso(this), value); | 4129 void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.x2_Setter_(unwrap_jso(this), value); |
| 5257 | 4130 |
| 5258 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 4131 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 5259 @DocsEditable() | 4132 @DocsEditable() |
| 5260 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un
wrap_jso(this)); | 4133 num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(un
wrap_jso(this)); |
| 5261 | 4134 |
| 5262 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') | 4135 @DomName('SVGPathSegCurvetoCubicSmoothRel.y') |
| 5263 @DocsEditable() | 4136 @DocsEditable() |
| 5264 set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Set
ter_(unwrap_jso(this), value); | 4137 void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.
y_Setter_(unwrap_jso(this), value); |
| 5265 | 4138 |
| 5266 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 4139 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 5267 @DocsEditable() | 4140 @DocsEditable() |
| 5268 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
unwrap_jso(this)); | 4141 num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(
unwrap_jso(this)); |
| 5269 | 4142 |
| 5270 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') | 4143 @DomName('SVGPathSegCurvetoCubicSmoothRel.y2') |
| 5271 @DocsEditable() | 4144 @DocsEditable() |
| 5272 set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_S
etter_(unwrap_jso(this), value); | 4145 void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance
.y2_Setter_(unwrap_jso(this), value); |
| 5273 | 4146 |
| 5274 } | 4147 } |
| 5275 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4148 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5276 // for details. All rights reserved. Use of this source code is governed by a | 4149 // for details. All rights reserved. Use of this source code is governed by a |
| 5277 // BSD-style license that can be found in the LICENSE file. | 4150 // BSD-style license that can be found in the LICENSE file. |
| 5278 | 4151 |
| 5279 // WARNING: Do not edit - generated code. | 4152 // WARNING: Do not edit - generated code. |
| 5280 | 4153 |
| 5281 | 4154 |
| 5282 @DocsEditable() | 4155 @DocsEditable() |
| 5283 @DomName('SVGPathSegCurvetoQuadraticAbs') | 4156 @DomName('SVGPathSegCurvetoQuadraticAbs') |
| 5284 @Unstable() | 4157 @Unstable() |
| 5285 class PathSegCurvetoQuadraticAbs extends PathSeg { | 4158 class PathSegCurvetoQuadraticAbs extends PathSeg { |
| 5286 // To suppress missing implicit constructor warnings. | 4159 // To suppress missing implicit constructor warnings. |
| 5287 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4160 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5288 | 4161 |
| 5289 | |
| 5290 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { | |
| 5291 return new PathSegCurvetoQuadraticAbs._internalWrap(); | |
| 5292 } | |
| 5293 | |
| 5294 factory PathSegCurvetoQuadraticAbs._internalWrap() { | |
| 5295 return new PathSegCurvetoQuadraticAbs.internal_(); | |
| 5296 } | |
| 5297 | |
| 5298 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); | |
| 5299 | |
| 5300 | |
| 5301 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4162 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5302 @DocsEditable() | 4163 @DocsEditable() |
| 5303 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); | 4164 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5304 | 4165 |
| 5305 @DomName('SVGPathSegCurvetoQuadraticAbs.x') | 4166 @DomName('SVGPathSegCurvetoQuadraticAbs.x') |
| 5306 @DocsEditable() | 4167 @DocsEditable() |
| 5307 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Sette
r_(unwrap_jso(this), value); | 4168 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5308 | 4169 |
| 5309 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 4170 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 5310 @DocsEditable() | 4171 @DocsEditable() |
| 5311 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un
wrap_jso(this)); | 4172 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(un
wrap_jso(this)); |
| 5312 | 4173 |
| 5313 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') | 4174 @DomName('SVGPathSegCurvetoQuadraticAbs.x1') |
| 5314 @DocsEditable() | 4175 @DocsEditable() |
| 5315 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Set
ter_(unwrap_jso(this), value); | 4176 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x
1_Setter_(unwrap_jso(this), value); |
| 5316 | 4177 |
| 5317 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 4178 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 5318 @DocsEditable() | 4179 @DocsEditable() |
| 5319 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr
ap_jso(this)); | 4180 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwr
ap_jso(this)); |
| 5320 | 4181 |
| 5321 @DomName('SVGPathSegCurvetoQuadraticAbs.y') | 4182 @DomName('SVGPathSegCurvetoQuadraticAbs.y') |
| 5322 @DocsEditable() | 4183 @DocsEditable() |
| 5323 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Sette
r_(unwrap_jso(this), value); | 4184 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_
Setter_(unwrap_jso(this), value); |
| 5324 | 4185 |
| 5325 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 4186 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 5326 @DocsEditable() | 4187 @DocsEditable() |
| 5327 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un
wrap_jso(this)); | 4188 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(un
wrap_jso(this)); |
| 5328 | 4189 |
| 5329 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') | 4190 @DomName('SVGPathSegCurvetoQuadraticAbs.y1') |
| 5330 @DocsEditable() | 4191 @DocsEditable() |
| 5331 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Set
ter_(unwrap_jso(this), value); | 4192 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y
1_Setter_(unwrap_jso(this), value); |
| 5332 | 4193 |
| 5333 } | 4194 } |
| 5334 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4195 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5335 // for details. All rights reserved. Use of this source code is governed by a | 4196 // for details. All rights reserved. Use of this source code is governed by a |
| 5336 // BSD-style license that can be found in the LICENSE file. | 4197 // BSD-style license that can be found in the LICENSE file. |
| 5337 | 4198 |
| 5338 // WARNING: Do not edit - generated code. | 4199 // WARNING: Do not edit - generated code. |
| 5339 | 4200 |
| 5340 | 4201 |
| 5341 @DocsEditable() | 4202 @DocsEditable() |
| 5342 @DomName('SVGPathSegCurvetoQuadraticRel') | 4203 @DomName('SVGPathSegCurvetoQuadraticRel') |
| 5343 @Unstable() | 4204 @Unstable() |
| 5344 class PathSegCurvetoQuadraticRel extends PathSeg { | 4205 class PathSegCurvetoQuadraticRel extends PathSeg { |
| 5345 // To suppress missing implicit constructor warnings. | 4206 // To suppress missing implicit constructor warnings. |
| 5346 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4207 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5347 | 4208 |
| 5348 | |
| 5349 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { | |
| 5350 return new PathSegCurvetoQuadraticRel._internalWrap(); | |
| 5351 } | |
| 5352 | |
| 5353 factory PathSegCurvetoQuadraticRel._internalWrap() { | |
| 5354 return new PathSegCurvetoQuadraticRel.internal_(); | |
| 5355 } | |
| 5356 | |
| 5357 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); | |
| 5358 | |
| 5359 | |
| 5360 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4209 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5361 @DocsEditable() | 4210 @DocsEditable() |
| 5362 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); | 4211 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5363 | 4212 |
| 5364 @DomName('SVGPathSegCurvetoQuadraticRel.x') | 4213 @DomName('SVGPathSegCurvetoQuadraticRel.x') |
| 5365 @DocsEditable() | 4214 @DocsEditable() |
| 5366 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Sette
r_(unwrap_jso(this), value); | 4215 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5367 | 4216 |
| 5368 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 4217 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 5369 @DocsEditable() | 4218 @DocsEditable() |
| 5370 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un
wrap_jso(this)); | 4219 num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(un
wrap_jso(this)); |
| 5371 | 4220 |
| 5372 @DomName('SVGPathSegCurvetoQuadraticRel.x1') | 4221 @DomName('SVGPathSegCurvetoQuadraticRel.x1') |
| 5373 @DocsEditable() | 4222 @DocsEditable() |
| 5374 set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Set
ter_(unwrap_jso(this), value); | 4223 void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x
1_Setter_(unwrap_jso(this), value); |
| 5375 | 4224 |
| 5376 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 4225 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 5377 @DocsEditable() | 4226 @DocsEditable() |
| 5378 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr
ap_jso(this)); | 4227 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwr
ap_jso(this)); |
| 5379 | 4228 |
| 5380 @DomName('SVGPathSegCurvetoQuadraticRel.y') | 4229 @DomName('SVGPathSegCurvetoQuadraticRel.y') |
| 5381 @DocsEditable() | 4230 @DocsEditable() |
| 5382 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Sette
r_(unwrap_jso(this), value); | 4231 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_
Setter_(unwrap_jso(this), value); |
| 5383 | 4232 |
| 5384 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 4233 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 5385 @DocsEditable() | 4234 @DocsEditable() |
| 5386 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un
wrap_jso(this)); | 4235 num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(un
wrap_jso(this)); |
| 5387 | 4236 |
| 5388 @DomName('SVGPathSegCurvetoQuadraticRel.y1') | 4237 @DomName('SVGPathSegCurvetoQuadraticRel.y1') |
| 5389 @DocsEditable() | 4238 @DocsEditable() |
| 5390 set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Set
ter_(unwrap_jso(this), value); | 4239 void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y
1_Setter_(unwrap_jso(this), value); |
| 5391 | 4240 |
| 5392 } | 4241 } |
| 5393 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4242 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5394 // for details. All rights reserved. Use of this source code is governed by a | 4243 // for details. All rights reserved. Use of this source code is governed by a |
| 5395 // BSD-style license that can be found in the LICENSE file. | 4244 // BSD-style license that can be found in the LICENSE file. |
| 5396 | 4245 |
| 5397 // WARNING: Do not edit - generated code. | 4246 // WARNING: Do not edit - generated code. |
| 5398 | 4247 |
| 5399 | 4248 |
| 5400 @DocsEditable() | 4249 @DocsEditable() |
| 5401 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') | 4250 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs') |
| 5402 @Unstable() | 4251 @Unstable() |
| 5403 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { | 4252 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { |
| 5404 // To suppress missing implicit constructor warnings. | 4253 // To suppress missing implicit constructor warnings. |
| 5405 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } | 4254 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not
supported"); } |
| 5406 | 4255 |
| 5407 | |
| 5408 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS
moothAbs() { | |
| 5409 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); | |
| 5410 } | |
| 5411 | |
| 5412 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { | |
| 5413 return new PathSegCurvetoQuadraticSmoothAbs.internal_(); | |
| 5414 } | |
| 5415 | |
| 5416 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); | |
| 5417 | |
| 5418 | |
| 5419 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4256 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5420 @DocsEditable() | 4257 @DocsEditable() |
| 5421 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); | 4258 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter
_(unwrap_jso(this)); |
| 5422 | 4259 |
| 5423 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') | 4260 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') |
| 5424 @DocsEditable() | 4261 @DocsEditable() |
| 5425 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x
_Setter_(unwrap_jso(this), value); | 4262 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5426 | 4263 |
| 5427 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 4264 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 5428 @DocsEditable() | 4265 @DocsEditable() |
| 5429 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(unwrap_jso(this)); | 4266 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter
_(unwrap_jso(this)); |
| 5430 | 4267 |
| 5431 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') | 4268 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y') |
| 5432 @DocsEditable() | 4269 @DocsEditable() |
| 5433 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y
_Setter_(unwrap_jso(this), value); | 4270 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.insta
nce.y_Setter_(unwrap_jso(this), value); |
| 5434 | 4271 |
| 5435 } | 4272 } |
| 5436 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4273 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5437 // for details. All rights reserved. Use of this source code is governed by a | 4274 // for details. All rights reserved. Use of this source code is governed by a |
| 5438 // BSD-style license that can be found in the LICENSE file. | 4275 // BSD-style license that can be found in the LICENSE file. |
| 5439 | 4276 |
| 5440 // WARNING: Do not edit - generated code. | 4277 // WARNING: Do not edit - generated code. |
| 5441 | 4278 |
| 5442 | 4279 |
| 5443 @DocsEditable() | 4280 @DocsEditable() |
| 5444 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') | 4281 @DomName('SVGPathSegCurvetoQuadraticSmoothRel') |
| 5445 @Unstable() | 4282 @Unstable() |
| 5446 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { | 4283 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { |
| 5447 // To suppress missing implicit constructor warnings. | 4284 // To suppress missing implicit constructor warnings. |
| 5448 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } | 4285 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not
supported"); } |
| 5449 | 4286 |
| 5450 | |
| 5451 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS
moothRel() { | |
| 5452 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); | |
| 5453 } | |
| 5454 | |
| 5455 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { | |
| 5456 return new PathSegCurvetoQuadraticSmoothRel.internal_(); | |
| 5457 } | |
| 5458 | |
| 5459 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); | |
| 5460 | |
| 5461 | |
| 5462 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4287 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5463 @DocsEditable() | 4288 @DocsEditable() |
| 5464 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); | 4289 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter
_(unwrap_jso(this)); |
| 5465 | 4290 |
| 5466 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') | 4291 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') |
| 5467 @DocsEditable() | 4292 @DocsEditable() |
| 5468 set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x
_Setter_(unwrap_jso(this), value); | 4293 void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.x_Setter_(unwrap_jso(this), value); |
| 5469 | 4294 |
| 5470 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 4295 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 5471 @DocsEditable() | 4296 @DocsEditable() |
| 5472 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(unwrap_jso(this)); | 4297 num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter
_(unwrap_jso(this)); |
| 5473 | 4298 |
| 5474 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') | 4299 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y') |
| 5475 @DocsEditable() | 4300 @DocsEditable() |
| 5476 set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y
_Setter_(unwrap_jso(this), value); | 4301 void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.insta
nce.y_Setter_(unwrap_jso(this), value); |
| 5477 | 4302 |
| 5478 } | 4303 } |
| 5479 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4304 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5480 // for details. All rights reserved. Use of this source code is governed by a | 4305 // for details. All rights reserved. Use of this source code is governed by a |
| 5481 // BSD-style license that can be found in the LICENSE file. | 4306 // BSD-style license that can be found in the LICENSE file. |
| 5482 | 4307 |
| 5483 // WARNING: Do not edit - generated code. | 4308 // WARNING: Do not edit - generated code. |
| 5484 | 4309 |
| 5485 | 4310 |
| 5486 @DocsEditable() | 4311 @DocsEditable() |
| 5487 @DomName('SVGPathSegLinetoAbs') | 4312 @DomName('SVGPathSegLinetoAbs') |
| 5488 @Unstable() | 4313 @Unstable() |
| 5489 class PathSegLinetoAbs extends PathSeg { | 4314 class PathSegLinetoAbs extends PathSeg { |
| 5490 // To suppress missing implicit constructor warnings. | 4315 // To suppress missing implicit constructor warnings. |
| 5491 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } | 4316 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 5492 | 4317 |
| 5493 | |
| 5494 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { | |
| 5495 return new PathSegLinetoAbs._internalWrap(); | |
| 5496 } | |
| 5497 | |
| 5498 factory PathSegLinetoAbs._internalWrap() { | |
| 5499 return new PathSegLinetoAbs.internal_(); | |
| 5500 } | |
| 5501 | |
| 5502 PathSegLinetoAbs.internal_() : super.internal_(); | |
| 5503 | |
| 5504 | |
| 5505 @DomName('SVGPathSegLinetoAbs.x') | 4318 @DomName('SVGPathSegLinetoAbs.x') |
| 5506 @DocsEditable() | 4319 @DocsEditable() |
| 5507 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 4320 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5508 | 4321 |
| 5509 @DomName('SVGPathSegLinetoAbs.x') | 4322 @DomName('SVGPathSegLinetoAbs.x') |
| 5510 @DocsEditable() | 4323 @DocsEditable() |
| 5511 set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_
jso(this), value); | 4324 void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5512 | 4325 |
| 5513 @DomName('SVGPathSegLinetoAbs.y') | 4326 @DomName('SVGPathSegLinetoAbs.y') |
| 5514 @DocsEditable() | 4327 @DocsEditable() |
| 5515 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); | 4328 num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
| 5516 | 4329 |
| 5517 @DomName('SVGPathSegLinetoAbs.y') | 4330 @DomName('SVGPathSegLinetoAbs.y') |
| 5518 @DocsEditable() | 4331 @DocsEditable() |
| 5519 set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(unwrap_
jso(this), value); | 4332 void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(un
wrap_jso(this), value); |
| 5520 | 4333 |
| 5521 } | 4334 } |
| 5522 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4335 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5523 // for details. All rights reserved. Use of this source code is governed by a | 4336 // for details. All rights reserved. Use of this source code is governed by a |
| 5524 // BSD-style license that can be found in the LICENSE file. | 4337 // BSD-style license that can be found in the LICENSE file. |
| 5525 | 4338 |
| 5526 // WARNING: Do not edit - generated code. | 4339 // WARNING: Do not edit - generated code. |
| 5527 | 4340 |
| 5528 | 4341 |
| 5529 @DocsEditable() | 4342 @DocsEditable() |
| 5530 @DomName('SVGPathSegLinetoHorizontalAbs') | 4343 @DomName('SVGPathSegLinetoHorizontalAbs') |
| 5531 @Unstable() | 4344 @Unstable() |
| 5532 class PathSegLinetoHorizontalAbs extends PathSeg { | 4345 class PathSegLinetoHorizontalAbs extends PathSeg { |
| 5533 // To suppress missing implicit constructor warnings. | 4346 // To suppress missing implicit constructor warnings. |
| 5534 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } | 4347 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5535 | 4348 |
| 5536 | |
| 5537 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { | |
| 5538 return new PathSegLinetoHorizontalAbs._internalWrap(); | |
| 5539 } | |
| 5540 | |
| 5541 factory PathSegLinetoHorizontalAbs._internalWrap() { | |
| 5542 return new PathSegLinetoHorizontalAbs.internal_(); | |
| 5543 } | |
| 5544 | |
| 5545 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); | |
| 5546 | |
| 5547 | |
| 5548 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4349 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5549 @DocsEditable() | 4350 @DocsEditable() |
| 5550 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); | 4351 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr
ap_jso(this)); |
| 5551 | 4352 |
| 5552 @DomName('SVGPathSegLinetoHorizontalAbs.x') | 4353 @DomName('SVGPathSegLinetoHorizontalAbs.x') |
| 5553 @DocsEditable() | 4354 @DocsEditable() |
| 5554 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Sette
r_(unwrap_jso(this), value); | 4355 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_
Setter_(unwrap_jso(this), value); |
| 5555 | 4356 |
| 5556 } | 4357 } |
| 5557 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5558 // for details. All rights reserved. Use of this source code is governed by a | 4359 // for details. All rights reserved. Use of this source code is governed by a |
| 5559 // BSD-style license that can be found in the LICENSE file. | 4360 // BSD-style license that can be found in the LICENSE file. |
| 5560 | 4361 |
| 5561 // WARNING: Do not edit - generated code. | 4362 // WARNING: Do not edit - generated code. |
| 5562 | 4363 |
| 5563 | 4364 |
| 5564 @DocsEditable() | 4365 @DocsEditable() |
| 5565 @DomName('SVGPathSegLinetoHorizontalRel') | 4366 @DomName('SVGPathSegLinetoHorizontalRel') |
| 5566 @Unstable() | 4367 @Unstable() |
| 5567 class PathSegLinetoHorizontalRel extends PathSeg { | 4368 class PathSegLinetoHorizontalRel extends PathSeg { |
| 5568 // To suppress missing implicit constructor warnings. | 4369 // To suppress missing implicit constructor warnings. |
| 5569 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } | 4370 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo
rted"); } |
| 5570 | 4371 |
| 5571 | |
| 5572 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { | |
| 5573 return new PathSegLinetoHorizontalRel._internalWrap(); | |
| 5574 } | |
| 5575 | |
| 5576 factory PathSegLinetoHorizontalRel._internalWrap() { | |
| 5577 return new PathSegLinetoHorizontalRel.internal_(); | |
| 5578 } | |
| 5579 | |
| 5580 PathSegLinetoHorizontalRel.internal_() : super.internal_(); | |
| 5581 | |
| 5582 | |
| 5583 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4372 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5584 @DocsEditable() | 4373 @DocsEditable() |
| 5585 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); | 4374 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr
ap_jso(this)); |
| 5586 | 4375 |
| 5587 @DomName('SVGPathSegLinetoHorizontalRel.x') | 4376 @DomName('SVGPathSegLinetoHorizontalRel.x') |
| 5588 @DocsEditable() | 4377 @DocsEditable() |
| 5589 set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Sette
r_(unwrap_jso(this), value); | 4378 void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_
Setter_(unwrap_jso(this), value); |
| 5590 | 4379 |
| 5591 } | 4380 } |
| 5592 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5593 // for details. All rights reserved. Use of this source code is governed by a | 4382 // for details. All rights reserved. Use of this source code is governed by a |
| 5594 // BSD-style license that can be found in the LICENSE file. | 4383 // BSD-style license that can be found in the LICENSE file. |
| 5595 | 4384 |
| 5596 // WARNING: Do not edit - generated code. | 4385 // WARNING: Do not edit - generated code. |
| 5597 | 4386 |
| 5598 | 4387 |
| 5599 @DocsEditable() | 4388 @DocsEditable() |
| 5600 @DomName('SVGPathSegLinetoRel') | 4389 @DomName('SVGPathSegLinetoRel') |
| 5601 @Unstable() | 4390 @Unstable() |
| 5602 class PathSegLinetoRel extends PathSeg { | 4391 class PathSegLinetoRel extends PathSeg { |
| 5603 // To suppress missing implicit constructor warnings. | 4392 // To suppress missing implicit constructor warnings. |
| 5604 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } | 4393 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } |
| 5605 | 4394 |
| 5606 | |
| 5607 static PathSegLinetoRel internalCreatePathSegLinetoRel() { | |
| 5608 return new PathSegLinetoRel._internalWrap(); | |
| 5609 } | |
| 5610 | |
| 5611 factory PathSegLinetoRel._internalWrap() { | |
| 5612 return new PathSegLinetoRel.internal_(); | |
| 5613 } | |
| 5614 | |
| 5615 PathSegLinetoRel.internal_() : super.internal_(); | |
| 5616 | |
| 5617 | |
| 5618 @DomName('SVGPathSegLinetoRel.x') | 4395 @DomName('SVGPathSegLinetoRel.x') |
| 5619 @DocsEditable() | 4396 @DocsEditable() |
| 5620 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 4397 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5621 | 4398 |
| 5622 @DomName('SVGPathSegLinetoRel.x') | 4399 @DomName('SVGPathSegLinetoRel.x') |
| 5623 @DocsEditable() | 4400 @DocsEditable() |
| 5624 set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_
jso(this), value); | 4401 void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5625 | 4402 |
| 5626 @DomName('SVGPathSegLinetoRel.y') | 4403 @DomName('SVGPathSegLinetoRel.y') |
| 5627 @DocsEditable() | 4404 @DocsEditable() |
| 5628 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi
s)); | 4405 num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
| 5629 | 4406 |
| 5630 @DomName('SVGPathSegLinetoRel.y') | 4407 @DomName('SVGPathSegLinetoRel.y') |
| 5631 @DocsEditable() | 4408 @DocsEditable() |
| 5632 set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(unwrap_
jso(this), value); | 4409 void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(un
wrap_jso(this), value); |
| 5633 | 4410 |
| 5634 } | 4411 } |
| 5635 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5636 // for details. All rights reserved. Use of this source code is governed by a | 4413 // for details. All rights reserved. Use of this source code is governed by a |
| 5637 // BSD-style license that can be found in the LICENSE file. | 4414 // BSD-style license that can be found in the LICENSE file. |
| 5638 | 4415 |
| 5639 // WARNING: Do not edit - generated code. | 4416 // WARNING: Do not edit - generated code. |
| 5640 | 4417 |
| 5641 | 4418 |
| 5642 @DocsEditable() | 4419 @DocsEditable() |
| 5643 @DomName('SVGPathSegLinetoVerticalAbs') | 4420 @DomName('SVGPathSegLinetoVerticalAbs') |
| 5644 @Unstable() | 4421 @Unstable() |
| 5645 class PathSegLinetoVerticalAbs extends PathSeg { | 4422 class PathSegLinetoVerticalAbs extends PathSeg { |
| 5646 // To suppress missing implicit constructor warnings. | 4423 // To suppress missing implicit constructor warnings. |
| 5647 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } | 4424 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support
ed"); } |
| 5648 | 4425 |
| 5649 | |
| 5650 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { | |
| 5651 return new PathSegLinetoVerticalAbs._internalWrap(); | |
| 5652 } | |
| 5653 | |
| 5654 factory PathSegLinetoVerticalAbs._internalWrap() { | |
| 5655 return new PathSegLinetoVerticalAbs.internal_(); | |
| 5656 } | |
| 5657 | |
| 5658 PathSegLinetoVerticalAbs.internal_() : super.internal_(); | |
| 5659 | |
| 5660 | |
| 5661 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4426 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5662 @DocsEditable() | 4427 @DocsEditable() |
| 5663 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); | 4428 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap
_jso(this)); |
| 5664 | 4429 |
| 5665 @DomName('SVGPathSegLinetoVerticalAbs.y') | 4430 @DomName('SVGPathSegLinetoVerticalAbs.y') |
| 5666 @DocsEditable() | 4431 @DocsEditable() |
| 5667 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_
(unwrap_jso(this), value); | 4432 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5668 | 4433 |
| 5669 } | 4434 } |
| 5670 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4435 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5671 // for details. All rights reserved. Use of this source code is governed by a | 4436 // for details. All rights reserved. Use of this source code is governed by a |
| 5672 // BSD-style license that can be found in the LICENSE file. | 4437 // BSD-style license that can be found in the LICENSE file. |
| 5673 | 4438 |
| 5674 // WARNING: Do not edit - generated code. | 4439 // WARNING: Do not edit - generated code. |
| 5675 | 4440 |
| 5676 | 4441 |
| 5677 @DocsEditable() | 4442 @DocsEditable() |
| 5678 @DomName('SVGPathSegLinetoVerticalRel') | 4443 @DomName('SVGPathSegLinetoVerticalRel') |
| 5679 @Unstable() | 4444 @Unstable() |
| 5680 class PathSegLinetoVerticalRel extends PathSeg { | 4445 class PathSegLinetoVerticalRel extends PathSeg { |
| 5681 // To suppress missing implicit constructor warnings. | 4446 // To suppress missing implicit constructor warnings. |
| 5682 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } | 4447 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support
ed"); } |
| 5683 | 4448 |
| 5684 | |
| 5685 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { | |
| 5686 return new PathSegLinetoVerticalRel._internalWrap(); | |
| 5687 } | |
| 5688 | |
| 5689 factory PathSegLinetoVerticalRel._internalWrap() { | |
| 5690 return new PathSegLinetoVerticalRel.internal_(); | |
| 5691 } | |
| 5692 | |
| 5693 PathSegLinetoVerticalRel.internal_() : super.internal_(); | |
| 5694 | |
| 5695 | |
| 5696 @DomName('SVGPathSegLinetoVerticalRel.y') | 4449 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5697 @DocsEditable() | 4450 @DocsEditable() |
| 5698 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); | 4451 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap
_jso(this)); |
| 5699 | 4452 |
| 5700 @DomName('SVGPathSegLinetoVerticalRel.y') | 4453 @DomName('SVGPathSegLinetoVerticalRel.y') |
| 5701 @DocsEditable() | 4454 @DocsEditable() |
| 5702 set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_
(unwrap_jso(this), value); | 4455 void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Se
tter_(unwrap_jso(this), value); |
| 5703 | 4456 |
| 5704 } | 4457 } |
| 5705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4458 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5706 // for details. All rights reserved. Use of this source code is governed by a | 4459 // for details. All rights reserved. Use of this source code is governed by a |
| 5707 // BSD-style license that can be found in the LICENSE file. | 4460 // BSD-style license that can be found in the LICENSE file. |
| 5708 | 4461 |
| 5709 // WARNING: Do not edit - generated code. | 4462 // WARNING: Do not edit - generated code. |
| 5710 | 4463 |
| 5711 | 4464 |
| 5712 @DocsEditable() | 4465 @DocsEditable() |
| 5713 @DomName('SVGPathSegList') | 4466 @DomName('SVGPathSegList') |
| 5714 @Unstable() | 4467 @Unstable() |
| 5715 class PathSegList extends JsoNativeFieldWrapper with ListMixin<PathSeg>, Immutab
leListMixin<PathSeg> implements List<PathSeg> { | 4468 class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
tableListMixin<PathSeg> implements List<PathSeg> { |
| 5716 // To suppress missing implicit constructor warnings. | 4469 // To suppress missing implicit constructor warnings. |
| 5717 factory PathSegList._() { throw new UnsupportedError("Not supported"); } | 4470 factory PathSegList._() { throw new UnsupportedError("Not supported"); } |
| 5718 | 4471 |
| 5719 static PathSegList internalCreatePathSegList() { | |
| 5720 return new PathSegList._internalWrap(); | |
| 5721 } | |
| 5722 | |
| 5723 js.JsObject blink_jsObject; | |
| 5724 | |
| 5725 factory PathSegList._internalWrap() { | |
| 5726 return new PathSegList.internal_(); | |
| 5727 } | |
| 5728 | |
| 5729 PathSegList.internal_() { } | |
| 5730 | |
| 5731 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 5732 int get hashCode => unwrap_jso(this).hashCode; | |
| 5733 | |
| 5734 @DomName('SVGPathSegList.length') | 4472 @DomName('SVGPathSegList.length') |
| 5735 @DocsEditable() | 4473 @DocsEditable() |
| 5736 @Experimental() // untriaged | 4474 @Experimental() // untriaged |
| 5737 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); | 4475 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js
o(this)); |
| 5738 | 4476 |
| 5739 @DomName('SVGPathSegList.numberOfItems') | 4477 @DomName('SVGPathSegList.numberOfItems') |
| 5740 @DocsEditable() | 4478 @DocsEditable() |
| 5741 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); | 4479 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get
ter_(unwrap_jso(this)); |
| 5742 | 4480 |
| 5743 PathSeg operator[](int index) { | 4481 PathSeg operator[](int index) { |
| 5744 if (index < 0 || index >= length) | 4482 if (index < 0 || index >= length) |
| 5745 throw new RangeError.index(index, this); | 4483 throw new RangeError.index(index, this); |
| 5746 return getItem(index); | 4484 return getItem(index); |
| 5747 } | 4485 } |
| 5748 | 4486 |
| 5749 void operator[]=(int index, PathSeg value) { | 4487 void operator[]=(int index, PathSeg value) { |
| 5750 throw new UnsupportedError("Cannot assign element of immutable List."); | 4488 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 5751 } | 4489 } |
| 5752 // -- start List<PathSeg> mixins. | 4490 // -- start List<PathSeg> mixins. |
| 5753 // PathSeg is the element type. | 4491 // PathSeg is the element type. |
| 5754 | 4492 |
| 5755 | 4493 |
| 5756 set length(int value) { | 4494 void set length(int value) { |
| 5757 throw new UnsupportedError("Cannot resize immutable List."); | 4495 throw new UnsupportedError("Cannot resize immutable List."); |
| 5758 } | 4496 } |
| 5759 | 4497 |
| 5760 PathSeg get first { | 4498 PathSeg get first { |
| 5761 if (this.length > 0) { | 4499 if (this.length > 0) { |
| 5762 return getItem(0); | 4500 return getItem(0); |
| 5763 } | 4501 } |
| 5764 throw new StateError("No elements"); | 4502 throw new StateError("No elements"); |
| 5765 } | 4503 } |
| 5766 | 4504 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 5784 PathSeg elementAt(int index) => this[index]; | 4522 PathSeg elementAt(int index) => this[index]; |
| 5785 // -- end List<PathSeg> mixins. | 4523 // -- end List<PathSeg> mixins. |
| 5786 | 4524 |
| 5787 @DomName('SVGPathSegList.__setter__') | 4525 @DomName('SVGPathSegList.__setter__') |
| 5788 @DocsEditable() | 4526 @DocsEditable() |
| 5789 @Experimental() // untriaged | 4527 @Experimental() // untriaged |
| 5790 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 4528 void __setter__(int index, PathSeg value) => _blink.BlinkSVGPathSegList.instan
ce.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 5791 | 4529 |
| 5792 @DomName('SVGPathSegList.appendItem') | 4530 @DomName('SVGPathSegList.appendItem') |
| 5793 @DocsEditable() | 4531 @DocsEditable() |
| 5794 PathSeg appendItem(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins
tance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); | 4532 PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.app
endItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); |
| 5795 | 4533 |
| 5796 @DomName('SVGPathSegList.clear') | 4534 @DomName('SVGPathSegList.clear') |
| 5797 @DocsEditable() | 4535 @DocsEditable() |
| 5798 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j
so(this)); | 4536 void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_j
so(this)); |
| 5799 | 4537 |
| 5800 @DomName('SVGPathSegList.getItem') | 4538 @DomName('SVGPathSegList.getItem') |
| 5801 @DocsEditable() | 4539 @DocsEditable() |
| 5802 PathSeg getItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.get
Item_Callback_1_(unwrap_jso(this), index)); | 4540 PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Call
back_1_(unwrap_jso(this), index); |
| 5803 | 4541 |
| 5804 @DomName('SVGPathSegList.initialize') | 4542 @DomName('SVGPathSegList.initialize') |
| 5805 @DocsEditable() | 4543 @DocsEditable() |
| 5806 PathSeg initialize(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.ins
tance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem))); | 4544 PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.ini
tialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)); |
| 5807 | 4545 |
| 5808 @DomName('SVGPathSegList.insertItemBefore') | 4546 @DomName('SVGPathSegList.insertItemBefore') |
| 5809 @DocsEditable() | 4547 @DocsEditable() |
| 5810 PathSeg insertItemBefore(PathSeg newItem, int index) => wrap_jso(_blink.BlinkS
VGPathSegList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso
(newItem), index)); | 4548 PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSeg
List.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem)
, index); |
| 5811 | 4549 |
| 5812 @DomName('SVGPathSegList.removeItem') | 4550 @DomName('SVGPathSegList.removeItem') |
| 5813 @DocsEditable() | 4551 @DocsEditable() |
| 5814 PathSeg removeItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.
removeItem_Callback_1_(unwrap_jso(this), index)); | 4552 PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeIte
m_Callback_1_(unwrap_jso(this), index); |
| 5815 | 4553 |
| 5816 @DomName('SVGPathSegList.replaceItem') | 4554 @DomName('SVGPathSegList.replaceItem') |
| 5817 @DocsEditable() | 4555 @DocsEditable() |
| 5818 PathSeg replaceItem(PathSeg newItem, int index) => wrap_jso(_blink.BlinkSVGPat
hSegList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem),
index)); | 4556 PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.
instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index); |
| 5819 | 4557 |
| 5820 } | 4558 } |
| 5821 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4559 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5822 // for details. All rights reserved. Use of this source code is governed by a | 4560 // for details. All rights reserved. Use of this source code is governed by a |
| 5823 // BSD-style license that can be found in the LICENSE file. | 4561 // BSD-style license that can be found in the LICENSE file. |
| 5824 | 4562 |
| 5825 // WARNING: Do not edit - generated code. | 4563 // WARNING: Do not edit - generated code. |
| 5826 | 4564 |
| 5827 | 4565 |
| 5828 @DocsEditable() | 4566 @DocsEditable() |
| 5829 @DomName('SVGPathSegMovetoAbs') | 4567 @DomName('SVGPathSegMovetoAbs') |
| 5830 @Unstable() | 4568 @Unstable() |
| 5831 class PathSegMovetoAbs extends PathSeg { | 4569 class PathSegMovetoAbs extends PathSeg { |
| 5832 // To suppress missing implicit constructor warnings. | 4570 // To suppress missing implicit constructor warnings. |
| 5833 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } | 4571 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } |
| 5834 | 4572 |
| 5835 | |
| 5836 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { | |
| 5837 return new PathSegMovetoAbs._internalWrap(); | |
| 5838 } | |
| 5839 | |
| 5840 factory PathSegMovetoAbs._internalWrap() { | |
| 5841 return new PathSegMovetoAbs.internal_(); | |
| 5842 } | |
| 5843 | |
| 5844 PathSegMovetoAbs.internal_() : super.internal_(); | |
| 5845 | |
| 5846 | |
| 5847 @DomName('SVGPathSegMovetoAbs.x') | 4573 @DomName('SVGPathSegMovetoAbs.x') |
| 5848 @DocsEditable() | 4574 @DocsEditable() |
| 5849 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); | 4575 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5850 | 4576 |
| 5851 @DomName('SVGPathSegMovetoAbs.x') | 4577 @DomName('SVGPathSegMovetoAbs.x') |
| 5852 @DocsEditable() | 4578 @DocsEditable() |
| 5853 set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_
jso(this), value); | 4579 void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(un
wrap_jso(this), value); |
| 5854 | 4580 |
| 5855 @DomName('SVGPathSegMovetoAbs.y') | 4581 @DomName('SVGPathSegMovetoAbs.y') |
| 5856 @DocsEditable() | 4582 @DocsEditable() |
| 5857 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); | 4583 num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(thi
s)); |
| 5858 | 4584 |
| 5859 @DomName('SVGPathSegMovetoAbs.y') | 4585 @DomName('SVGPathSegMovetoAbs.y') |
| 5860 @DocsEditable() | 4586 @DocsEditable() |
| 5861 set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(unwrap_
jso(this), value); | 4587 void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(un
wrap_jso(this), value); |
| 5862 | 4588 |
| 5863 } | 4589 } |
| 5864 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4590 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5865 // for details. All rights reserved. Use of this source code is governed by a | 4591 // for details. All rights reserved. Use of this source code is governed by a |
| 5866 // BSD-style license that can be found in the LICENSE file. | 4592 // BSD-style license that can be found in the LICENSE file. |
| 5867 | 4593 |
| 5868 // WARNING: Do not edit - generated code. | 4594 // WARNING: Do not edit - generated code. |
| 5869 | 4595 |
| 5870 | 4596 |
| 5871 @DocsEditable() | 4597 @DocsEditable() |
| 5872 @DomName('SVGPathSegMovetoRel') | 4598 @DomName('SVGPathSegMovetoRel') |
| 5873 @Unstable() | 4599 @Unstable() |
| 5874 class PathSegMovetoRel extends PathSeg { | 4600 class PathSegMovetoRel extends PathSeg { |
| 5875 // To suppress missing implicit constructor warnings. | 4601 // To suppress missing implicit constructor warnings. |
| 5876 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } | 4602 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } |
| 5877 | 4603 |
| 5878 | |
| 5879 static PathSegMovetoRel internalCreatePathSegMovetoRel() { | |
| 5880 return new PathSegMovetoRel._internalWrap(); | |
| 5881 } | |
| 5882 | |
| 5883 factory PathSegMovetoRel._internalWrap() { | |
| 5884 return new PathSegMovetoRel.internal_(); | |
| 5885 } | |
| 5886 | |
| 5887 PathSegMovetoRel.internal_() : super.internal_(); | |
| 5888 | |
| 5889 | |
| 5890 @DomName('SVGPathSegMovetoRel.x') | 4604 @DomName('SVGPathSegMovetoRel.x') |
| 5891 @DocsEditable() | 4605 @DocsEditable() |
| 5892 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); | 4606 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi
s)); |
| 5893 | 4607 |
| 5894 @DomName('SVGPathSegMovetoRel.x') | 4608 @DomName('SVGPathSegMovetoRel.x') |
| 5895 @DocsEditable() | 4609 @DocsEditable() |
| 5896 set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_
jso(this), value); | 4610 void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(un
wrap_jso(this), value); |
| 5897 | 4611 |
| 5898 @DomName('SVGPathSegMovetoRel.y') | 4612 @DomName('SVGPathSegMovetoRel.y') |
| 5899 @DocsEditable() | 4613 @DocsEditable() |
| 5900 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi
s)); | 4614 num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(thi
s)); |
| 5901 | 4615 |
| 5902 @DomName('SVGPathSegMovetoRel.y') | 4616 @DomName('SVGPathSegMovetoRel.y') |
| 5903 @DocsEditable() | 4617 @DocsEditable() |
| 5904 set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(unwrap_
jso(this), value); | 4618 void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(un
wrap_jso(this), value); |
| 5905 | 4619 |
| 5906 } | 4620 } |
| 5907 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4621 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5908 // for details. All rights reserved. Use of this source code is governed by a | 4622 // for details. All rights reserved. Use of this source code is governed by a |
| 5909 // BSD-style license that can be found in the LICENSE file. | 4623 // BSD-style license that can be found in the LICENSE file. |
| 5910 | 4624 |
| 5911 // WARNING: Do not edit - generated code. | 4625 // WARNING: Do not edit - generated code. |
| 5912 | 4626 |
| 5913 | 4627 |
| 5914 @DocsEditable() | 4628 @DocsEditable() |
| 5915 @DomName('SVGPatternElement') | 4629 @DomName('SVGPatternElement') |
| 5916 @Unstable() | 4630 @Unstable() |
| 5917 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { | 4631 class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
ests { |
| 5918 // To suppress missing implicit constructor warnings. | 4632 // To suppress missing implicit constructor warnings. |
| 5919 factory PatternElement._() { throw new UnsupportedError("Not supported"); } | 4633 factory PatternElement._() { throw new UnsupportedError("Not supported"); } |
| 5920 | 4634 |
| 5921 @DomName('SVGPatternElement.SVGPatternElement') | 4635 @DomName('SVGPatternElement.SVGPatternElement') |
| 5922 @DocsEditable() | 4636 @DocsEditable() |
| 5923 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); | 4637 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
attern"); |
| 5924 | |
| 5925 | |
| 5926 static PatternElement internalCreatePatternElement() { | |
| 5927 return new PatternElement._internalWrap(); | |
| 5928 } | |
| 5929 | |
| 5930 factory PatternElement._internalWrap() { | |
| 5931 return new PatternElement.internal_(); | |
| 5932 } | |
| 5933 | |
| 5934 PatternElement.internal_() : super.internal_(); | |
| 5935 | |
| 5936 /** | 4638 /** |
| 5937 * Constructor instantiated by the DOM when a custom element has been created. | 4639 * Constructor instantiated by the DOM when a custom element has been created. |
| 5938 * | 4640 * |
| 5939 * This can only be called by subclasses from their created constructor. | 4641 * This can only be called by subclasses from their created constructor. |
| 5940 */ | 4642 */ |
| 5941 PatternElement.created() : super.created(); | 4643 PatternElement.created() : super.created(); |
| 5942 | 4644 |
| 5943 @DomName('SVGPatternElement.height') | 4645 @DomName('SVGPatternElement.height') |
| 5944 @DocsEditable() | 4646 @DocsEditable() |
| 5945 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); | 4647 AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.h
eight_Getter_(unwrap_jso(this))); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6004 // WARNING: Do not edit - generated code. | 4706 // WARNING: Do not edit - generated code. |
| 6005 | 4707 |
| 6006 | 4708 |
| 6007 @DocsEditable() | 4709 @DocsEditable() |
| 6008 @DomName('SVGPoint') | 4710 @DomName('SVGPoint') |
| 6009 @Unstable() | 4711 @Unstable() |
| 6010 class Point extends NativeFieldWrapperClass2 { | 4712 class Point extends NativeFieldWrapperClass2 { |
| 6011 // To suppress missing implicit constructor warnings. | 4713 // To suppress missing implicit constructor warnings. |
| 6012 factory Point._() { throw new UnsupportedError("Not supported"); } | 4714 factory Point._() { throw new UnsupportedError("Not supported"); } |
| 6013 | 4715 |
| 6014 static Point internalCreatePoint() { | |
| 6015 return new Point._internalWrap(); | |
| 6016 } | |
| 6017 | |
| 6018 js.JsObject blink_jsObject; | |
| 6019 | |
| 6020 factory Point._internalWrap() { | |
| 6021 return new Point.internal_(); | |
| 6022 } | |
| 6023 | |
| 6024 Point.internal_() { } | |
| 6025 | |
| 6026 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6027 int get hashCode => unwrap_jso(this).hashCode; | |
| 6028 | |
| 6029 @DomName('SVGPoint.x') | 4716 @DomName('SVGPoint.x') |
| 6030 @DocsEditable() | 4717 @DocsEditable() |
| 6031 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); | 4718 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); |
| 6032 | 4719 |
| 6033 @DomName('SVGPoint.x') | 4720 @DomName('SVGPoint.x') |
| 6034 @DocsEditable() | 4721 @DocsEditable() |
| 6035 set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(this),
value); | 4722 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th
is), value); |
| 6036 | 4723 |
| 6037 @DomName('SVGPoint.y') | 4724 @DomName('SVGPoint.y') |
| 6038 @DocsEditable() | 4725 @DocsEditable() |
| 6039 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); | 4726 num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this)); |
| 6040 | 4727 |
| 6041 @DomName('SVGPoint.y') | 4728 @DomName('SVGPoint.y') |
| 6042 @DocsEditable() | 4729 @DocsEditable() |
| 6043 set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(this),
value); | 4730 void set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(th
is), value); |
| 6044 | 4731 |
| 6045 @DomName('SVGPoint.matrixTransform') | 4732 @DomName('SVGPoint.matrixTransform') |
| 6046 @DocsEditable() | 4733 @DocsEditable() |
| 6047 Point matrixTransform(Matrix matrix) => wrap_jso(_blink.BlinkSVGPoint.instance
.matrixTransform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix))); | 4734 Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTr
ansform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)); |
| 6048 | 4735 |
| 6049 } | 4736 } |
| 6050 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4737 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6051 // for details. All rights reserved. Use of this source code is governed by a | 4738 // for details. All rights reserved. Use of this source code is governed by a |
| 6052 // BSD-style license that can be found in the LICENSE file. | 4739 // BSD-style license that can be found in the LICENSE file. |
| 6053 | 4740 |
| 6054 // WARNING: Do not edit - generated code. | 4741 // WARNING: Do not edit - generated code. |
| 6055 | 4742 |
| 6056 | 4743 |
| 6057 @DocsEditable() | 4744 @DocsEditable() |
| 6058 @DomName('SVGPointList') | 4745 @DomName('SVGPointList') |
| 6059 @Unstable() | 4746 @Unstable() |
| 6060 class PointList extends NativeFieldWrapperClass2 { | 4747 class PointList extends NativeFieldWrapperClass2 { |
| 6061 // To suppress missing implicit constructor warnings. | 4748 // To suppress missing implicit constructor warnings. |
| 6062 factory PointList._() { throw new UnsupportedError("Not supported"); } | 4749 factory PointList._() { throw new UnsupportedError("Not supported"); } |
| 6063 | 4750 |
| 6064 static PointList internalCreatePointList() { | |
| 6065 return new PointList._internalWrap(); | |
| 6066 } | |
| 6067 | |
| 6068 js.JsObject blink_jsObject; | |
| 6069 | |
| 6070 factory PointList._internalWrap() { | |
| 6071 return new PointList.internal_(); | |
| 6072 } | |
| 6073 | |
| 6074 PointList.internal_() { } | |
| 6075 | |
| 6076 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6077 int get hashCode => unwrap_jso(this).hashCode; | |
| 6078 | |
| 6079 @DomName('SVGPointList.length') | 4751 @DomName('SVGPointList.length') |
| 6080 @DocsEditable() | 4752 @DocsEditable() |
| 6081 @Experimental() // untriaged | 4753 @Experimental() // untriaged |
| 6082 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); | 4754 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(
this)); |
| 6083 | 4755 |
| 6084 @DomName('SVGPointList.numberOfItems') | 4756 @DomName('SVGPointList.numberOfItems') |
| 6085 @DocsEditable() | 4757 @DocsEditable() |
| 6086 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); | 4758 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette
r_(unwrap_jso(this)); |
| 6087 | 4759 |
| 6088 @DomName('SVGPointList.__setter__') | 4760 @DomName('SVGPointList.__setter__') |
| 6089 @DocsEditable() | 4761 @DocsEditable() |
| 6090 @Experimental() // untriaged | 4762 @Experimental() // untriaged |
| 6091 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 4763 void __setter__(int index, Point value) => _blink.BlinkSVGPointList.instance.$
__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 6092 | 4764 |
| 6093 @DomName('SVGPointList.appendItem') | 4765 @DomName('SVGPointList.appendItem') |
| 6094 @DocsEditable() | 4766 @DocsEditable() |
| 6095 Point appendItem(Point item) => wrap_jso(_blink.BlinkSVGPointList.instance.app
endItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 4767 Point appendItem(Point item) => _blink.BlinkSVGPointList.instance.appendItem_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 6096 | 4768 |
| 6097 @DomName('SVGPointList.clear') | 4769 @DomName('SVGPointList.clear') |
| 6098 @DocsEditable() | 4770 @DocsEditable() |
| 6099 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso
(this)); | 4771 void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso
(this)); |
| 6100 | 4772 |
| 6101 @DomName('SVGPointList.getItem') | 4773 @DomName('SVGPointList.getItem') |
| 6102 @DocsEditable() | 4774 @DocsEditable() |
| 6103 Point getItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.getItem
_Callback_1_(unwrap_jso(this), index)); | 4775 Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback
_1_(unwrap_jso(this), index); |
| 6104 | 4776 |
| 6105 @DomName('SVGPointList.initialize') | 4777 @DomName('SVGPointList.initialize') |
| 6106 @DocsEditable() | 4778 @DocsEditable() |
| 6107 Point initialize(Point item) => wrap_jso(_blink.BlinkSVGPointList.instance.ini
tialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 4779 Point initialize(Point item) => _blink.BlinkSVGPointList.instance.initialize_C
allback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 6108 | 4780 |
| 6109 @DomName('SVGPointList.insertItemBefore') | 4781 @DomName('SVGPointList.insertItemBefore') |
| 6110 @DocsEditable() | 4782 @DocsEditable() |
| 6111 Point insertItemBefore(Point item, int index) => wrap_jso(_blink.BlinkSVGPoint
List.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), i
ndex)); | 4783 Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.inst
ance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 6112 | 4784 |
| 6113 @DomName('SVGPointList.removeItem') | 4785 @DomName('SVGPointList.removeItem') |
| 6114 @DocsEditable() | 4786 @DocsEditable() |
| 6115 Point removeItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.remo
veItem_Callback_1_(unwrap_jso(this), index)); | 4787 Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Ca
llback_1_(unwrap_jso(this), index); |
| 6116 | 4788 |
| 6117 @DomName('SVGPointList.replaceItem') | 4789 @DomName('SVGPointList.replaceItem') |
| 6118 @DocsEditable() | 4790 @DocsEditable() |
| 6119 Point replaceItem(Point item, int index) => wrap_jso(_blink.BlinkSVGPointList.
instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index)); | 4791 Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.instance.
replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 6120 | 4792 |
| 6121 } | 4793 } |
| 6122 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4794 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6123 // for details. All rights reserved. Use of this source code is governed by a | 4795 // for details. All rights reserved. Use of this source code is governed by a |
| 6124 // BSD-style license that can be found in the LICENSE file. | 4796 // BSD-style license that can be found in the LICENSE file. |
| 6125 | 4797 |
| 6126 // WARNING: Do not edit - generated code. | 4798 // WARNING: Do not edit - generated code. |
| 6127 | 4799 |
| 6128 | 4800 |
| 6129 @DocsEditable() | 4801 @DocsEditable() |
| 6130 @DomName('SVGPolygonElement') | 4802 @DomName('SVGPolygonElement') |
| 6131 @Unstable() | 4803 @Unstable() |
| 6132 class PolygonElement extends GeometryElement { | 4804 class PolygonElement extends GeometryElement { |
| 6133 // To suppress missing implicit constructor warnings. | 4805 // To suppress missing implicit constructor warnings. |
| 6134 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } | 4806 factory PolygonElement._() { throw new UnsupportedError("Not supported"); } |
| 6135 | 4807 |
| 6136 @DomName('SVGPolygonElement.SVGPolygonElement') | 4808 @DomName('SVGPolygonElement.SVGPolygonElement') |
| 6137 @DocsEditable() | 4809 @DocsEditable() |
| 6138 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); | 4810 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p
olygon"); |
| 6139 | |
| 6140 | |
| 6141 static PolygonElement internalCreatePolygonElement() { | |
| 6142 return new PolygonElement._internalWrap(); | |
| 6143 } | |
| 6144 | |
| 6145 factory PolygonElement._internalWrap() { | |
| 6146 return new PolygonElement.internal_(); | |
| 6147 } | |
| 6148 | |
| 6149 PolygonElement.internal_() : super.internal_(); | |
| 6150 | |
| 6151 /** | 4811 /** |
| 6152 * Constructor instantiated by the DOM when a custom element has been created. | 4812 * Constructor instantiated by the DOM when a custom element has been created. |
| 6153 * | 4813 * |
| 6154 * This can only be called by subclasses from their created constructor. | 4814 * This can only be called by subclasses from their created constructor. |
| 6155 */ | 4815 */ |
| 6156 PolygonElement.created() : super.created(); | 4816 PolygonElement.created() : super.created(); |
| 6157 | 4817 |
| 6158 @DomName('SVGPolygonElement.animatedPoints') | 4818 @DomName('SVGPolygonElement.animatedPoints') |
| 6159 @DocsEditable() | 4819 @DocsEditable() |
| 6160 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); | 4820 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instanc
e.animatedPoints_Getter_(unwrap_jso(this))); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6174 @DocsEditable() | 4834 @DocsEditable() |
| 6175 @DomName('SVGPolylineElement') | 4835 @DomName('SVGPolylineElement') |
| 6176 @Unstable() | 4836 @Unstable() |
| 6177 class PolylineElement extends GeometryElement { | 4837 class PolylineElement extends GeometryElement { |
| 6178 // To suppress missing implicit constructor warnings. | 4838 // To suppress missing implicit constructor warnings. |
| 6179 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } | 4839 factory PolylineElement._() { throw new UnsupportedError("Not supported"); } |
| 6180 | 4840 |
| 6181 @DomName('SVGPolylineElement.SVGPolylineElement') | 4841 @DomName('SVGPolylineElement.SVGPolylineElement') |
| 6182 @DocsEditable() | 4842 @DocsEditable() |
| 6183 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); | 4843 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("
polyline"); |
| 6184 | |
| 6185 | |
| 6186 static PolylineElement internalCreatePolylineElement() { | |
| 6187 return new PolylineElement._internalWrap(); | |
| 6188 } | |
| 6189 | |
| 6190 factory PolylineElement._internalWrap() { | |
| 6191 return new PolylineElement.internal_(); | |
| 6192 } | |
| 6193 | |
| 6194 PolylineElement.internal_() : super.internal_(); | |
| 6195 | |
| 6196 /** | 4844 /** |
| 6197 * Constructor instantiated by the DOM when a custom element has been created. | 4845 * Constructor instantiated by the DOM when a custom element has been created. |
| 6198 * | 4846 * |
| 6199 * This can only be called by subclasses from their created constructor. | 4847 * This can only be called by subclasses from their created constructor. |
| 6200 */ | 4848 */ |
| 6201 PolylineElement.created() : super.created(); | 4849 PolylineElement.created() : super.created(); |
| 6202 | 4850 |
| 6203 @DomName('SVGPolylineElement.animatedPoints') | 4851 @DomName('SVGPolylineElement.animatedPoints') |
| 6204 @DocsEditable() | 4852 @DocsEditable() |
| 6205 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); | 4853 PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instan
ce.animatedPoints_Getter_(unwrap_jso(this))); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 6216 // WARNING: Do not edit - generated code. | 4864 // WARNING: Do not edit - generated code. |
| 6217 | 4865 |
| 6218 | 4866 |
| 6219 @DocsEditable() | 4867 @DocsEditable() |
| 6220 @DomName('SVGPreserveAspectRatio') | 4868 @DomName('SVGPreserveAspectRatio') |
| 6221 @Unstable() | 4869 @Unstable() |
| 6222 class PreserveAspectRatio extends NativeFieldWrapperClass2 { | 4870 class PreserveAspectRatio extends NativeFieldWrapperClass2 { |
| 6223 // To suppress missing implicit constructor warnings. | 4871 // To suppress missing implicit constructor warnings. |
| 6224 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} | 4872 factory PreserveAspectRatio._() { throw new UnsupportedError("Not supported");
} |
| 6225 | 4873 |
| 6226 static PreserveAspectRatio internalCreatePreserveAspectRatio() { | |
| 6227 return new PreserveAspectRatio._internalWrap(); | |
| 6228 } | |
| 6229 | |
| 6230 js.JsObject blink_jsObject; | |
| 6231 | |
| 6232 factory PreserveAspectRatio._internalWrap() { | |
| 6233 return new PreserveAspectRatio.internal_(); | |
| 6234 } | |
| 6235 | |
| 6236 PreserveAspectRatio.internal_() { } | |
| 6237 | |
| 6238 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6239 int get hashCode => unwrap_jso(this).hashCode; | |
| 6240 | |
| 6241 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') | 4874 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') |
| 6242 @DocsEditable() | 4875 @DocsEditable() |
| 6243 static const int SVG_MEETORSLICE_MEET = 1; | 4876 static const int SVG_MEETORSLICE_MEET = 1; |
| 6244 | 4877 |
| 6245 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') | 4878 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') |
| 6246 @DocsEditable() | 4879 @DocsEditable() |
| 6247 static const int SVG_MEETORSLICE_SLICE = 2; | 4880 static const int SVG_MEETORSLICE_SLICE = 2; |
| 6248 | 4881 |
| 6249 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') | 4882 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') |
| 6250 @DocsEditable() | 4883 @DocsEditable() |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6293 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') | 4926 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN') |
| 6294 @DocsEditable() | 4927 @DocsEditable() |
| 6295 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; | 4928 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 6296 | 4929 |
| 6297 @DomName('SVGPreserveAspectRatio.align') | 4930 @DomName('SVGPreserveAspectRatio.align') |
| 6298 @DocsEditable() | 4931 @DocsEditable() |
| 6299 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw
rap_jso(this)); | 4932 int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unw
rap_jso(this)); |
| 6300 | 4933 |
| 6301 @DomName('SVGPreserveAspectRatio.align') | 4934 @DomName('SVGPreserveAspectRatio.align') |
| 6302 @DocsEditable() | 4935 @DocsEditable() |
| 6303 set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Sett
er_(unwrap_jso(this), value); | 4936 void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align
_Setter_(unwrap_jso(this), value); |
| 6304 | 4937 |
| 6305 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 4938 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 6306 @DocsEditable() | 4939 @DocsEditable() |
| 6307 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(unwrap_jso(this)); | 4940 int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice
_Getter_(unwrap_jso(this)); |
| 6308 | 4941 |
| 6309 @DomName('SVGPreserveAspectRatio.meetOrSlice') | 4942 @DomName('SVGPreserveAspectRatio.meetOrSlice') |
| 6310 @DocsEditable() | 4943 @DocsEditable() |
| 6311 set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meet
OrSlice_Setter_(unwrap_jso(this), value); | 4944 void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance
.meetOrSlice_Setter_(unwrap_jso(this), value); |
| 6312 | 4945 |
| 6313 } | 4946 } |
| 6314 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 4947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6315 // for details. All rights reserved. Use of this source code is governed by a | 4948 // for details. All rights reserved. Use of this source code is governed by a |
| 6316 // BSD-style license that can be found in the LICENSE file. | 4949 // BSD-style license that can be found in the LICENSE file. |
| 6317 | 4950 |
| 6318 // WARNING: Do not edit - generated code. | 4951 // WARNING: Do not edit - generated code. |
| 6319 | 4952 |
| 6320 | 4953 |
| 6321 @DocsEditable() | 4954 @DocsEditable() |
| 6322 @DomName('SVGRadialGradientElement') | 4955 @DomName('SVGRadialGradientElement') |
| 6323 @Unstable() | 4956 @Unstable() |
| 6324 class RadialGradientElement extends _GradientElement { | 4957 class RadialGradientElement extends _GradientElement { |
| 6325 // To suppress missing implicit constructor warnings. | 4958 // To suppress missing implicit constructor warnings. |
| 6326 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } | 4959 factory RadialGradientElement._() { throw new UnsupportedError("Not supported"
); } |
| 6327 | 4960 |
| 6328 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') | 4961 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
| 6329 @DocsEditable() | 4962 @DocsEditable() |
| 6330 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); | 4963 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement
_tag("radialGradient"); |
| 6331 | |
| 6332 | |
| 6333 static RadialGradientElement internalCreateRadialGradientElement() { | |
| 6334 return new RadialGradientElement._internalWrap(); | |
| 6335 } | |
| 6336 | |
| 6337 factory RadialGradientElement._internalWrap() { | |
| 6338 return new RadialGradientElement.internal_(); | |
| 6339 } | |
| 6340 | |
| 6341 RadialGradientElement.internal_() : super.internal_(); | |
| 6342 | |
| 6343 /** | 4964 /** |
| 6344 * Constructor instantiated by the DOM when a custom element has been created. | 4965 * Constructor instantiated by the DOM when a custom element has been created. |
| 6345 * | 4966 * |
| 6346 * This can only be called by subclasses from their created constructor. | 4967 * This can only be called by subclasses from their created constructor. |
| 6347 */ | 4968 */ |
| 6348 RadialGradientElement.created() : super.created(); | 4969 RadialGradientElement.created() : super.created(); |
| 6349 | 4970 |
| 6350 @DomName('SVGRadialGradientElement.cx') | 4971 @DomName('SVGRadialGradientElement.cx') |
| 6351 @DocsEditable() | 4972 @DocsEditable() |
| 6352 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); | 4973 AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instanc
e.cx_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6379 // WARNING: Do not edit - generated code. | 5000 // WARNING: Do not edit - generated code. |
| 6380 | 5001 |
| 6381 | 5002 |
| 6382 @DocsEditable() | 5003 @DocsEditable() |
| 6383 @DomName('SVGRect') | 5004 @DomName('SVGRect') |
| 6384 @Unstable() | 5005 @Unstable() |
| 6385 class Rect extends NativeFieldWrapperClass2 { | 5006 class Rect extends NativeFieldWrapperClass2 { |
| 6386 // To suppress missing implicit constructor warnings. | 5007 // To suppress missing implicit constructor warnings. |
| 6387 factory Rect._() { throw new UnsupportedError("Not supported"); } | 5008 factory Rect._() { throw new UnsupportedError("Not supported"); } |
| 6388 | 5009 |
| 6389 static Rect internalCreateRect() { | |
| 6390 return new Rect._internalWrap(); | |
| 6391 } | |
| 6392 | |
| 6393 js.JsObject blink_jsObject; | |
| 6394 | |
| 6395 factory Rect._internalWrap() { | |
| 6396 return new Rect.internal_(); | |
| 6397 } | |
| 6398 | |
| 6399 Rect.internal_() { } | |
| 6400 | |
| 6401 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6402 int get hashCode => unwrap_jso(this).hashCode; | |
| 6403 | |
| 6404 @DomName('SVGRect.height') | 5010 @DomName('SVGRect.height') |
| 6405 @DocsEditable() | 5011 @DocsEditable() |
| 6406 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); | 5012 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this)
); |
| 6407 | 5013 |
| 6408 @DomName('SVGRect.height') | 5014 @DomName('SVGRect.height') |
| 6409 @DocsEditable() | 5015 @DocsEditable() |
| 6410 set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwrap_js
o(this), value); | 5016 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr
ap_jso(this), value); |
| 6411 | 5017 |
| 6412 @DomName('SVGRect.width') | 5018 @DomName('SVGRect.width') |
| 6413 @DocsEditable() | 5019 @DocsEditable() |
| 6414 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); | 5020 num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this)); |
| 6415 | 5021 |
| 6416 @DomName('SVGRect.width') | 5022 @DomName('SVGRect.width') |
| 6417 @DocsEditable() | 5023 @DocsEditable() |
| 6418 set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap_jso(
this), value); | 5024 void set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap
_jso(this), value); |
| 6419 | 5025 |
| 6420 @DomName('SVGRect.x') | 5026 @DomName('SVGRect.x') |
| 6421 @DocsEditable() | 5027 @DocsEditable() |
| 6422 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); | 5028 num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this)); |
| 6423 | 5029 |
| 6424 @DomName('SVGRect.x') | 5030 @DomName('SVGRect.x') |
| 6425 @DocsEditable() | 5031 @DocsEditable() |
| 6426 set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(this), v
alue); | 5032 void set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(thi
s), value); |
| 6427 | 5033 |
| 6428 @DomName('SVGRect.y') | 5034 @DomName('SVGRect.y') |
| 6429 @DocsEditable() | 5035 @DocsEditable() |
| 6430 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); | 5036 num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this)); |
| 6431 | 5037 |
| 6432 @DomName('SVGRect.y') | 5038 @DomName('SVGRect.y') |
| 6433 @DocsEditable() | 5039 @DocsEditable() |
| 6434 set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(this), v
alue); | 5040 void set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(thi
s), value); |
| 6435 | 5041 |
| 6436 } | 5042 } |
| 6437 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6438 // for details. All rights reserved. Use of this source code is governed by a | 5044 // for details. All rights reserved. Use of this source code is governed by a |
| 6439 // BSD-style license that can be found in the LICENSE file. | 5045 // BSD-style license that can be found in the LICENSE file. |
| 6440 | 5046 |
| 6441 // WARNING: Do not edit - generated code. | 5047 // WARNING: Do not edit - generated code. |
| 6442 | 5048 |
| 6443 | 5049 |
| 6444 @DocsEditable() | 5050 @DocsEditable() |
| 6445 @DomName('SVGRectElement') | 5051 @DomName('SVGRectElement') |
| 6446 @Unstable() | 5052 @Unstable() |
| 6447 class RectElement extends GeometryElement { | 5053 class RectElement extends GeometryElement { |
| 6448 // To suppress missing implicit constructor warnings. | 5054 // To suppress missing implicit constructor warnings. |
| 6449 factory RectElement._() { throw new UnsupportedError("Not supported"); } | 5055 factory RectElement._() { throw new UnsupportedError("Not supported"); } |
| 6450 | 5056 |
| 6451 @DomName('SVGRectElement.SVGRectElement') | 5057 @DomName('SVGRectElement.SVGRectElement') |
| 6452 @DocsEditable() | 5058 @DocsEditable() |
| 6453 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); | 5059 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect
"); |
| 6454 | |
| 6455 | |
| 6456 static RectElement internalCreateRectElement() { | |
| 6457 return new RectElement._internalWrap(); | |
| 6458 } | |
| 6459 | |
| 6460 factory RectElement._internalWrap() { | |
| 6461 return new RectElement.internal_(); | |
| 6462 } | |
| 6463 | |
| 6464 RectElement.internal_() : super.internal_(); | |
| 6465 | |
| 6466 /** | 5060 /** |
| 6467 * Constructor instantiated by the DOM when a custom element has been created. | 5061 * Constructor instantiated by the DOM when a custom element has been created. |
| 6468 * | 5062 * |
| 6469 * This can only be called by subclasses from their created constructor. | 5063 * This can only be called by subclasses from their created constructor. |
| 6470 */ | 5064 */ |
| 6471 RectElement.created() : super.created(); | 5065 RectElement.created() : super.created(); |
| 6472 | 5066 |
| 6473 @DomName('SVGRectElement.height') | 5067 @DomName('SVGRectElement.height') |
| 6474 @DocsEditable() | 5068 @DocsEditable() |
| 6475 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); | 5069 AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.heig
ht_Getter_(unwrap_jso(this))); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 6502 // WARNING: Do not edit - generated code. | 5096 // WARNING: Do not edit - generated code. |
| 6503 | 5097 |
| 6504 | 5098 |
| 6505 @DocsEditable() | 5099 @DocsEditable() |
| 6506 @DomName('SVGRenderingIntent') | 5100 @DomName('SVGRenderingIntent') |
| 6507 @Unstable() | 5101 @Unstable() |
| 6508 class RenderingIntent extends NativeFieldWrapperClass2 { | 5102 class RenderingIntent extends NativeFieldWrapperClass2 { |
| 6509 // To suppress missing implicit constructor warnings. | 5103 // To suppress missing implicit constructor warnings. |
| 6510 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } | 5104 factory RenderingIntent._() { throw new UnsupportedError("Not supported"); } |
| 6511 | 5105 |
| 6512 static RenderingIntent internalCreateRenderingIntent() { | |
| 6513 return new RenderingIntent._internalWrap(); | |
| 6514 } | |
| 6515 | |
| 6516 js.JsObject blink_jsObject; | |
| 6517 | |
| 6518 factory RenderingIntent._internalWrap() { | |
| 6519 return new RenderingIntent.internal_(); | |
| 6520 } | |
| 6521 | |
| 6522 RenderingIntent.internal_() { } | |
| 6523 | |
| 6524 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6525 int get hashCode => unwrap_jso(this).hashCode; | |
| 6526 | |
| 6527 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') | 5106 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') |
| 6528 @DocsEditable() | 5107 @DocsEditable() |
| 6529 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; | 5108 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 6530 | 5109 |
| 6531 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') | 5110 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') |
| 6532 @DocsEditable() | 5111 @DocsEditable() |
| 6533 static const int RENDERING_INTENT_AUTO = 1; | 5112 static const int RENDERING_INTENT_AUTO = 1; |
| 6534 | 5113 |
| 6535 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') | 5114 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') |
| 6536 @DocsEditable() | 5115 @DocsEditable() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 6559 @DocsEditable() | 5138 @DocsEditable() |
| 6560 @DomName('SVGScriptElement') | 5139 @DomName('SVGScriptElement') |
| 6561 @Unstable() | 5140 @Unstable() |
| 6562 class ScriptElement extends SvgElement implements UriReference { | 5141 class ScriptElement extends SvgElement implements UriReference { |
| 6563 // To suppress missing implicit constructor warnings. | 5142 // To suppress missing implicit constructor warnings. |
| 6564 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } | 5143 factory ScriptElement._() { throw new UnsupportedError("Not supported"); } |
| 6565 | 5144 |
| 6566 @DomName('SVGScriptElement.SVGScriptElement') | 5145 @DomName('SVGScriptElement.SVGScriptElement') |
| 6567 @DocsEditable() | 5146 @DocsEditable() |
| 6568 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); | 5147 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc
ript"); |
| 6569 | |
| 6570 | |
| 6571 static ScriptElement internalCreateScriptElement() { | |
| 6572 return new ScriptElement._internalWrap(); | |
| 6573 } | |
| 6574 | |
| 6575 factory ScriptElement._internalWrap() { | |
| 6576 return new ScriptElement.internal_(); | |
| 6577 } | |
| 6578 | |
| 6579 ScriptElement.internal_() : super.internal_(); | |
| 6580 | |
| 6581 /** | 5148 /** |
| 6582 * Constructor instantiated by the DOM when a custom element has been created. | 5149 * Constructor instantiated by the DOM when a custom element has been created. |
| 6583 * | 5150 * |
| 6584 * This can only be called by subclasses from their created constructor. | 5151 * This can only be called by subclasses from their created constructor. |
| 6585 */ | 5152 */ |
| 6586 ScriptElement.created() : super.created(); | 5153 ScriptElement.created() : super.created(); |
| 6587 | 5154 |
| 6588 @DomName('SVGScriptElement.type') | 5155 @DomName('SVGScriptElement.type') |
| 6589 @DocsEditable() | 5156 @DocsEditable() |
| 6590 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); | 5157 String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_j
so(this)); |
| 6591 | 5158 |
| 6592 @DomName('SVGScriptElement.type') | 5159 @DomName('SVGScriptElement.type') |
| 6593 @DocsEditable() | 5160 @DocsEditable() |
| 6594 set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(u
nwrap_jso(this), value); | 5161 void set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Sett
er_(unwrap_jso(this), value); |
| 6595 | 5162 |
| 6596 @DomName('SVGScriptElement.href') | 5163 @DomName('SVGScriptElement.href') |
| 6597 @DocsEditable() | 5164 @DocsEditable() |
| 6598 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href
_Getter_(unwrap_jso(this))); | 5165 AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href
_Getter_(unwrap_jso(this))); |
| 6599 | 5166 |
| 6600 } | 5167 } |
| 6601 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5168 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6602 // for details. All rights reserved. Use of this source code is governed by a | 5169 // for details. All rights reserved. Use of this source code is governed by a |
| 6603 // BSD-style license that can be found in the LICENSE file. | 5170 // BSD-style license that can be found in the LICENSE file. |
| 6604 | 5171 |
| 6605 // WARNING: Do not edit - generated code. | 5172 // WARNING: Do not edit - generated code. |
| 6606 | 5173 |
| 6607 | 5174 |
| 6608 @DocsEditable() | 5175 @DocsEditable() |
| 6609 @DomName('SVGSetElement') | 5176 @DomName('SVGSetElement') |
| 6610 @SupportedBrowser(SupportedBrowser.CHROME) | 5177 @SupportedBrowser(SupportedBrowser.CHROME) |
| 6611 @SupportedBrowser(SupportedBrowser.FIREFOX) | 5178 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 6612 @SupportedBrowser(SupportedBrowser.SAFARI) | 5179 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 6613 @Unstable() | 5180 @Unstable() |
| 6614 class SetElement extends AnimationElement { | 5181 class SetElement extends AnimationElement { |
| 6615 // To suppress missing implicit constructor warnings. | 5182 // To suppress missing implicit constructor warnings. |
| 6616 factory SetElement._() { throw new UnsupportedError("Not supported"); } | 5183 factory SetElement._() { throw new UnsupportedError("Not supported"); } |
| 6617 | 5184 |
| 6618 @DomName('SVGSetElement.SVGSetElement') | 5185 @DomName('SVGSetElement.SVGSetElement') |
| 6619 @DocsEditable() | 5186 @DocsEditable() |
| 6620 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; | 5187 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set")
; |
| 6621 | |
| 6622 | |
| 6623 static SetElement internalCreateSetElement() { | |
| 6624 return new SetElement._internalWrap(); | |
| 6625 } | |
| 6626 | |
| 6627 factory SetElement._internalWrap() { | |
| 6628 return new SetElement.internal_(); | |
| 6629 } | |
| 6630 | |
| 6631 SetElement.internal_() : super.internal_(); | |
| 6632 | |
| 6633 /** | 5188 /** |
| 6634 * Constructor instantiated by the DOM when a custom element has been created. | 5189 * Constructor instantiated by the DOM when a custom element has been created. |
| 6635 * | 5190 * |
| 6636 * This can only be called by subclasses from their created constructor. | 5191 * This can only be called by subclasses from their created constructor. |
| 6637 */ | 5192 */ |
| 6638 SetElement.created() : super.created(); | 5193 SetElement.created() : super.created(); |
| 6639 | 5194 |
| 6640 /// Checks if this type is supported on the current platform. | 5195 /// Checks if this type is supported on the current platform. |
| 6641 static bool get supported => true; | 5196 static bool get supported => true; |
| 6642 | 5197 |
| 6643 } | 5198 } |
| 6644 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6645 // for details. All rights reserved. Use of this source code is governed by a | 5200 // for details. All rights reserved. Use of this source code is governed by a |
| 6646 // BSD-style license that can be found in the LICENSE file. | 5201 // BSD-style license that can be found in the LICENSE file. |
| 6647 | 5202 |
| 6648 // WARNING: Do not edit - generated code. | 5203 // WARNING: Do not edit - generated code. |
| 6649 | 5204 |
| 6650 | 5205 |
| 6651 @DocsEditable() | 5206 @DocsEditable() |
| 6652 @DomName('SVGStopElement') | 5207 @DomName('SVGStopElement') |
| 6653 @Unstable() | 5208 @Unstable() |
| 6654 class StopElement extends SvgElement { | 5209 class StopElement extends SvgElement { |
| 6655 // To suppress missing implicit constructor warnings. | 5210 // To suppress missing implicit constructor warnings. |
| 6656 factory StopElement._() { throw new UnsupportedError("Not supported"); } | 5211 factory StopElement._() { throw new UnsupportedError("Not supported"); } |
| 6657 | 5212 |
| 6658 @DomName('SVGStopElement.SVGStopElement') | 5213 @DomName('SVGStopElement.SVGStopElement') |
| 6659 @DocsEditable() | 5214 @DocsEditable() |
| 6660 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); | 5215 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop
"); |
| 6661 | |
| 6662 | |
| 6663 static StopElement internalCreateStopElement() { | |
| 6664 return new StopElement._internalWrap(); | |
| 6665 } | |
| 6666 | |
| 6667 factory StopElement._internalWrap() { | |
| 6668 return new StopElement.internal_(); | |
| 6669 } | |
| 6670 | |
| 6671 StopElement.internal_() : super.internal_(); | |
| 6672 | |
| 6673 /** | 5216 /** |
| 6674 * Constructor instantiated by the DOM when a custom element has been created. | 5217 * Constructor instantiated by the DOM when a custom element has been created. |
| 6675 * | 5218 * |
| 6676 * This can only be called by subclasses from their created constructor. | 5219 * This can only be called by subclasses from their created constructor. |
| 6677 */ | 5220 */ |
| 6678 StopElement.created() : super.created(); | 5221 StopElement.created() : super.created(); |
| 6679 | 5222 |
| 6680 @DomName('SVGStopElement.offset') | 5223 @DomName('SVGStopElement.offset') |
| 6681 @DocsEditable() | 5224 @DocsEditable() |
| 6682 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); | 5225 AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.insta
nce.offset_Getter_(unwrap_jso(this))); |
| 6683 | 5226 |
| 6684 } | 5227 } |
| 6685 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5228 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6686 // for details. All rights reserved. Use of this source code is governed by a | 5229 // for details. All rights reserved. Use of this source code is governed by a |
| 6687 // BSD-style license that can be found in the LICENSE file. | 5230 // BSD-style license that can be found in the LICENSE file. |
| 6688 | 5231 |
| 6689 // WARNING: Do not edit - generated code. | 5232 // WARNING: Do not edit - generated code. |
| 6690 | 5233 |
| 6691 | 5234 |
| 6692 @DocsEditable() | 5235 @DocsEditable() |
| 6693 @DomName('SVGStringList') | 5236 @DomName('SVGStringList') |
| 6694 @Unstable() | 5237 @Unstable() |
| 6695 class StringList extends JsoNativeFieldWrapper with ListMixin<String>, Immutable
ListMixin<String> implements List<String> { | 5238 class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
bleListMixin<String> implements List<String> { |
| 6696 // To suppress missing implicit constructor warnings. | 5239 // To suppress missing implicit constructor warnings. |
| 6697 factory StringList._() { throw new UnsupportedError("Not supported"); } | 5240 factory StringList._() { throw new UnsupportedError("Not supported"); } |
| 6698 | 5241 |
| 6699 static StringList internalCreateStringList() { | |
| 6700 return new StringList._internalWrap(); | |
| 6701 } | |
| 6702 | |
| 6703 js.JsObject blink_jsObject; | |
| 6704 | |
| 6705 factory StringList._internalWrap() { | |
| 6706 return new StringList.internal_(); | |
| 6707 } | |
| 6708 | |
| 6709 StringList.internal_() { } | |
| 6710 | |
| 6711 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 6712 int get hashCode => unwrap_jso(this).hashCode; | |
| 6713 | |
| 6714 @DomName('SVGStringList.length') | 5242 @DomName('SVGStringList.length') |
| 6715 @DocsEditable() | 5243 @DocsEditable() |
| 6716 @Experimental() // untriaged | 5244 @Experimental() // untriaged |
| 6717 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); | 5245 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso
(this)); |
| 6718 | 5246 |
| 6719 @DomName('SVGStringList.numberOfItems') | 5247 @DomName('SVGStringList.numberOfItems') |
| 6720 @DocsEditable() | 5248 @DocsEditable() |
| 6721 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); | 5249 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett
er_(unwrap_jso(this)); |
| 6722 | 5250 |
| 6723 String operator[](int index) { | 5251 String operator[](int index) { |
| 6724 if (index < 0 || index >= length) | 5252 if (index < 0 || index >= length) |
| 6725 throw new RangeError.index(index, this); | 5253 throw new RangeError.index(index, this); |
| 6726 return getItem(index); | 5254 return getItem(index); |
| 6727 } | 5255 } |
| 6728 | 5256 |
| 6729 void operator[]=(int index, String value) { | 5257 void operator[]=(int index, String value) { |
| 6730 throw new UnsupportedError("Cannot assign element of immutable List."); | 5258 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 6731 } | 5259 } |
| 6732 // -- start List<String> mixins. | 5260 // -- start List<String> mixins. |
| 6733 // String is the element type. | 5261 // String is the element type. |
| 6734 | 5262 |
| 6735 | 5263 |
| 6736 set length(int value) { | 5264 void set length(int value) { |
| 6737 throw new UnsupportedError("Cannot resize immutable List."); | 5265 throw new UnsupportedError("Cannot resize immutable List."); |
| 6738 } | 5266 } |
| 6739 | 5267 |
| 6740 String get first { | 5268 String get first { |
| 6741 if (this.length > 0) { | 5269 if (this.length > 0) { |
| 6742 return getItem(0); | 5270 return getItem(0); |
| 6743 } | 5271 } |
| 6744 throw new StateError("No elements"); | 5272 throw new StateError("No elements"); |
| 6745 } | 5273 } |
| 6746 | 5274 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6809 @DomName('SVGStyleElement') | 5337 @DomName('SVGStyleElement') |
| 6810 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable | 5338 // http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable |
| 6811 @Experimental() // nonstandard | 5339 @Experimental() // nonstandard |
| 6812 class StyleElement extends SvgElement { | 5340 class StyleElement extends SvgElement { |
| 6813 // To suppress missing implicit constructor warnings. | 5341 // To suppress missing implicit constructor warnings. |
| 6814 factory StyleElement._() { throw new UnsupportedError("Not supported"); } | 5342 factory StyleElement._() { throw new UnsupportedError("Not supported"); } |
| 6815 | 5343 |
| 6816 @DomName('SVGStyleElement.SVGStyleElement') | 5344 @DomName('SVGStyleElement.SVGStyleElement') |
| 6817 @DocsEditable() | 5345 @DocsEditable() |
| 6818 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); | 5346 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty
le"); |
| 6819 | |
| 6820 | |
| 6821 static StyleElement internalCreateStyleElement() { | |
| 6822 return new StyleElement._internalWrap(); | |
| 6823 } | |
| 6824 | |
| 6825 factory StyleElement._internalWrap() { | |
| 6826 return new StyleElement.internal_(); | |
| 6827 } | |
| 6828 | |
| 6829 StyleElement.internal_() : super.internal_(); | |
| 6830 | |
| 6831 /** | 5347 /** |
| 6832 * Constructor instantiated by the DOM when a custom element has been created. | 5348 * Constructor instantiated by the DOM when a custom element has been created. |
| 6833 * | 5349 * |
| 6834 * This can only be called by subclasses from their created constructor. | 5350 * This can only be called by subclasses from their created constructor. |
| 6835 */ | 5351 */ |
| 6836 StyleElement.created() : super.created(); | 5352 StyleElement.created() : super.created(); |
| 6837 | 5353 |
| 6838 @DomName('SVGStyleElement.disabled') | 5354 @DomName('SVGStyleElement.disabled') |
| 6839 @DocsEditable() | 5355 @DocsEditable() |
| 6840 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); | 5356 bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unw
rap_jso(this)); |
| 6841 | 5357 |
| 6842 @DomName('SVGStyleElement.disabled') | 5358 @DomName('SVGStyleElement.disabled') |
| 6843 @DocsEditable() | 5359 @DocsEditable() |
| 6844 set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Sett
er_(unwrap_jso(this), value); | 5360 void set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled
_Setter_(unwrap_jso(this), value); |
| 6845 | 5361 |
| 6846 @DomName('SVGStyleElement.media') | 5362 @DomName('SVGStyleElement.media') |
| 6847 @DocsEditable() | 5363 @DocsEditable() |
| 6848 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_
jso(this)); | 5364 String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_
jso(this)); |
| 6849 | 5365 |
| 6850 @DomName('SVGStyleElement.media') | 5366 @DomName('SVGStyleElement.media') |
| 6851 @DocsEditable() | 5367 @DocsEditable() |
| 6852 set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_(
unwrap_jso(this), value); | 5368 void set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Set
ter_(unwrap_jso(this), value); |
| 6853 | 5369 |
| 6854 @DomName('SVGStyleElement.sheet') | 5370 @DomName('SVGStyleElement.sheet') |
| 6855 @DocsEditable() | 5371 @DocsEditable() |
| 6856 @Experimental() // untriaged | 5372 @Experimental() // untriaged |
| 6857 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge
tter_(unwrap_jso(this))); | 5373 StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Ge
tter_(unwrap_jso(this))); |
| 6858 | 5374 |
| 6859 @DomName('SVGStyleElement.title') | 5375 @DomName('SVGStyleElement.title') |
| 6860 @DocsEditable() | 5376 @DocsEditable() |
| 6861 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_
jso(this)); | 5377 String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_
jso(this)); |
| 6862 | 5378 |
| 6863 @DomName('SVGStyleElement.title') | 5379 @DomName('SVGStyleElement.title') |
| 6864 @DocsEditable() | 5380 @DocsEditable() |
| 6865 set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_(
unwrap_jso(this), value); | 5381 void set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Set
ter_(unwrap_jso(this), value); |
| 6866 | 5382 |
| 6867 @DomName('SVGStyleElement.type') | 5383 @DomName('SVGStyleElement.type') |
| 6868 @DocsEditable() | 5384 @DocsEditable() |
| 6869 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js
o(this)); | 5385 String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_js
o(this)); |
| 6870 | 5386 |
| 6871 @DomName('SVGStyleElement.type') | 5387 @DomName('SVGStyleElement.type') |
| 6872 @DocsEditable() | 5388 @DocsEditable() |
| 6873 set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(un
wrap_jso(this), value); | 5389 void set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Sette
r_(unwrap_jso(this), value); |
| 6874 | 5390 |
| 6875 } | 5391 } |
| 6876 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 5392 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 6877 // for details. All rights reserved. Use of this source code is governed by a | 5393 // for details. All rights reserved. Use of this source code is governed by a |
| 6878 // BSD-style license that can be found in the LICENSE file. | 5394 // BSD-style license that can be found in the LICENSE file. |
| 6879 | 5395 |
| 6880 | 5396 |
| 6881 class _AttributeClassSet extends CssClassSetImpl { | 5397 class _AttributeClassSet extends CssClassSetImpl { |
| 6882 final Element _element; | 5398 final Element _element; |
| 6883 | 5399 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6927 } | 5443 } |
| 6928 var fragment = parentElement.createFragment(svg, validator: validator, | 5444 var fragment = parentElement.createFragment(svg, validator: validator, |
| 6929 treeSanitizer: treeSanitizer); | 5445 treeSanitizer: treeSanitizer); |
| 6930 return fragment.nodes.where((e) => e is SvgElement).single; | 5446 return fragment.nodes.where((e) => e is SvgElement).single; |
| 6931 } | 5447 } |
| 6932 | 5448 |
| 6933 CssClassSet get classes => new _AttributeClassSet(this); | 5449 CssClassSet get classes => new _AttributeClassSet(this); |
| 6934 | 5450 |
| 6935 List<Element> get children => new FilteredElementList(this); | 5451 List<Element> get children => new FilteredElementList(this); |
| 6936 | 5452 |
| 6937 set children(List<Element> value) { | 5453 void set children(List<Element> value) { |
| 6938 final children = this.children; | 5454 final children = this.children; |
| 6939 children.clear(); | 5455 children.clear(); |
| 6940 children.addAll(value); | 5456 children.addAll(value); |
| 6941 } | 5457 } |
| 6942 | 5458 |
| 6943 String get outerHtml { | 5459 String get outerHtml { |
| 6944 final container = new Element.tag("div"); | 5460 final container = new Element.tag("div"); |
| 6945 final SvgElement cloned = this.clone(true); | 5461 final SvgElement cloned = this.clone(true); |
| 6946 container.children.add(cloned); | 5462 container.children.add(cloned); |
| 6947 return container.innerHtml; | 5463 return container.innerHtml; |
| 6948 } | 5464 } |
| 6949 | 5465 |
| 6950 String get innerHtml { | 5466 String get innerHtml { |
| 6951 final container = new Element.tag("div"); | 5467 final container = new Element.tag("div"); |
| 6952 final SvgElement cloned = this.clone(true); | 5468 final SvgElement cloned = this.clone(true); |
| 6953 container.children.addAll(cloned.children); | 5469 container.children.addAll(cloned.children); |
| 6954 return container.innerHtml; | 5470 return container.innerHtml; |
| 6955 } | 5471 } |
| 6956 | 5472 |
| 6957 set innerHtml(String value) { | 5473 void set innerHtml(String value) { |
| 6958 this.setInnerHtml(value); | 5474 this.setInnerHtml(value); |
| 6959 } | 5475 } |
| 6960 | 5476 |
| 6961 DocumentFragment createFragment(String svg, | 5477 DocumentFragment createFragment(String svg, |
| 6962 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { | 5478 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { |
| 6963 | 5479 |
| 6964 if (treeSanitizer == null) { | 5480 if (treeSanitizer == null) { |
| 6965 if (validator == null) { | 5481 if (validator == null) { |
| 6966 validator = new NodeValidatorBuilder.common() | 5482 validator = new NodeValidatorBuilder.common() |
| 6967 ..allowSvg(); | 5483 ..allowSvg(); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7012 | 5528 |
| 7013 /** | 5529 /** |
| 7014 * Checks to see if the SVG element type is supported by the current platform. | 5530 * Checks to see if the SVG element type is supported by the current platform. |
| 7015 * | 5531 * |
| 7016 * The tag should be a valid SVG element tag name. | 5532 * The tag should be a valid SVG element tag name. |
| 7017 */ | 5533 */ |
| 7018 static bool isTagSupported(String tag) { | 5534 static bool isTagSupported(String tag) { |
| 7019 var e = new SvgElement.tag(tag); | 5535 var e = new SvgElement.tag(tag); |
| 7020 return e is SvgElement && !(e is UnknownElement); | 5536 return e is SvgElement && !(e is UnknownElement); |
| 7021 } | 5537 } |
| 7022 | |
| 7023 set _svgClassName(AnimatedString value) => | |
| 7024 _blink.BlinkSVGElement.instance.className_Setter_(unwrap_jso(this), unwrap
_jso(value)); | |
| 7025 | |
| 7026 String get className => _svgClassName.baseVal; | |
| 7027 | |
| 7028 // Unbelievable hack. We can't create an SvgAnimatedString, but we can get | |
| 7029 // the existing one and change its baseVal. Then we call the blink setter dire
ctly | |
| 7030 // TODO(alanknight): Handle suppressing the SVGAnimated<*> better | |
| 7031 set className(String s) { | |
| 7032 var oldClass = _svgClassName; | |
| 7033 oldClass.baseVal = s; | |
| 7034 _svgClassName = oldClass; | |
| 7035 } | |
| 7036 // To suppress missing implicit constructor warnings. | 5538 // To suppress missing implicit constructor warnings. |
| 7037 factory SvgElement._() { throw new UnsupportedError("Not supported"); } | 5539 factory SvgElement._() { throw new UnsupportedError("Not supported"); } |
| 7038 | 5540 |
| 7039 @DomName('SVGElement.abortEvent') | 5541 @DomName('SVGElement.abortEvent') |
| 7040 @DocsEditable() | 5542 @DocsEditable() |
| 7041 @Experimental() // untriaged | 5543 @Experimental() // untriaged |
| 7042 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider
<Event>('abort'); | 5544 static const EventStreamProvider<Event> abortEvent = const EventStreamProvider
<Event>('abort'); |
| 7043 | 5545 |
| 7044 @DomName('SVGElement.blurEvent') | 5546 @DomName('SVGElement.blurEvent') |
| 7045 @DocsEditable() | 5547 @DocsEditable() |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7288 | 5790 |
| 7289 @DomName('SVGElement.volumechangeEvent') | 5791 @DomName('SVGElement.volumechangeEvent') |
| 7290 @DocsEditable() | 5792 @DocsEditable() |
| 7291 @Experimental() // untriaged | 5793 @Experimental() // untriaged |
| 7292 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); | 5794 static const EventStreamProvider<Event> volumeChangeEvent = const EventStreamP
rovider<Event>('volumechange'); |
| 7293 | 5795 |
| 7294 @DomName('SVGElement.waitingEvent') | 5796 @DomName('SVGElement.waitingEvent') |
| 7295 @DocsEditable() | 5797 @DocsEditable() |
| 7296 @Experimental() // untriaged | 5798 @Experimental() // untriaged |
| 7297 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); | 5799 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid
er<Event>('waiting'); |
| 7298 | |
| 7299 | |
| 7300 static SvgElement internalCreateSvgElement() { | |
| 7301 return new SvgElement._internalWrap(); | |
| 7302 } | |
| 7303 | |
| 7304 factory SvgElement._internalWrap() { | |
| 7305 return new SvgElement.internal_(); | |
| 7306 } | |
| 7307 | |
| 7308 SvgElement.internal_() : super.internal_(); | |
| 7309 | |
| 7310 /** | 5800 /** |
| 7311 * Constructor instantiated by the DOM when a custom element has been created. | 5801 * Constructor instantiated by the DOM when a custom element has been created. |
| 7312 * | 5802 * |
| 7313 * This can only be called by subclasses from their created constructor. | 5803 * This can only be called by subclasses from their created constructor. |
| 7314 */ | 5804 */ |
| 7315 SvgElement.created() : super.created(); | 5805 SvgElement.created() : super.created(); |
| 7316 | 5806 |
| 7317 @DomName('SVGElement.className') | 5807 @DomName('SVGElement.className') |
| 7318 @DocsEditable() | 5808 @DocsEditable() |
| 7319 @Experimental() // untriaged | 5809 @Experimental() // untriaged |
| 7320 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c
lassName_Getter_(unwrap_jso(this))); | 5810 AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.c
lassName_Getter_(unwrap_jso(this))); |
| 7321 | 5811 |
| 7322 @DomName('SVGElement.ownerSVGElement') | 5812 @DomName('SVGElement.ownerSVGElement') |
| 7323 @DocsEditable() | 5813 @DocsEditable() |
| 7324 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.
ownerSVGElement_Getter_(unwrap_jso(this))); | 5814 SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.
ownerSVGElement_Getter_(unwrap_jso(this))); |
| 7325 | 5815 |
| 7326 @DomName('SVGElement.style') | 5816 @DomName('SVGElement.style') |
| 7327 @DocsEditable() | 5817 @DocsEditable() |
| 7328 @Experimental() // untriaged | 5818 @Experimental() // untriaged |
| 7329 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl
e_Getter_(unwrap_jso(this))); | 5819 CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.styl
e_Getter_(unwrap_jso(this))); |
| 7330 | 5820 |
| 7331 @DomName('SVGElement.tabIndex') | 5821 @DomName('SVGElement.tabIndex') |
| 7332 @DocsEditable() | 5822 @DocsEditable() |
| 7333 @Experimental() // untriaged | 5823 @Experimental() // untriaged |
| 7334 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js
o(this)); | 5824 int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_js
o(this)); |
| 7335 | 5825 |
| 7336 @DomName('SVGElement.tabIndex') | 5826 @DomName('SVGElement.tabIndex') |
| 7337 @DocsEditable() | 5827 @DocsEditable() |
| 7338 @Experimental() // untriaged | 5828 @Experimental() // untriaged |
| 7339 set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(un
wrap_jso(this), value); | 5829 void set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Sette
r_(unwrap_jso(this), value); |
| 7340 | 5830 |
| 7341 @DomName('SVGElement.viewportElement') | 5831 @DomName('SVGElement.viewportElement') |
| 7342 @DocsEditable() | 5832 @DocsEditable() |
| 7343 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie
wportElement_Getter_(unwrap_jso(this))); | 5833 SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.vie
wportElement_Getter_(unwrap_jso(this))); |
| 7344 | 5834 |
| 7345 @DomName('SVGElement.xmlbase') | 5835 @DomName('SVGElement.xmlbase') |
| 7346 @DocsEditable() | 5836 @DocsEditable() |
| 7347 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(unwrap_j
so(this)); | 5837 String get xmlbase => _blink.BlinkSVGElement.instance.xmlbase_Getter_(unwrap_j
so(this)); |
| 7348 | 5838 |
| 7349 @DomName('SVGElement.xmlbase') | 5839 @DomName('SVGElement.xmlbase') |
| 7350 @DocsEditable() | 5840 @DocsEditable() |
| 7351 set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Setter_(u
nwrap_jso(this), value); | 5841 void set xmlbase(String value) => _blink.BlinkSVGElement.instance.xmlbase_Sett
er_(unwrap_jso(this), value); |
| 7352 | 5842 |
| 7353 @DomName('SVGElement.xmllang') | 5843 @DomName('SVGElement.xmllang') |
| 7354 @DocsEditable() | 5844 @DocsEditable() |
| 7355 @Experimental() // untriaged | 5845 @Experimental() // untriaged |
| 7356 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(unwrap_j
so(this)); | 5846 String get xmllang => _blink.BlinkSVGElement.instance.xmllang_Getter_(unwrap_j
so(this)); |
| 7357 | 5847 |
| 7358 @DomName('SVGElement.xmllang') | 5848 @DomName('SVGElement.xmllang') |
| 7359 @DocsEditable() | 5849 @DocsEditable() |
| 7360 @Experimental() // untriaged | 5850 @Experimental() // untriaged |
| 7361 set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Setter_(u
nwrap_jso(this), value); | 5851 void set xmllang(String value) => _blink.BlinkSVGElement.instance.xmllang_Sett
er_(unwrap_jso(this), value); |
| 7362 | 5852 |
| 7363 @DomName('SVGElement.xmlspace') | 5853 @DomName('SVGElement.xmlspace') |
| 7364 @DocsEditable() | 5854 @DocsEditable() |
| 7365 @Experimental() // untriaged | 5855 @Experimental() // untriaged |
| 7366 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(unwrap
_jso(this)); | 5856 String get xmlspace => _blink.BlinkSVGElement.instance.xmlspace_Getter_(unwrap
_jso(this)); |
| 7367 | 5857 |
| 7368 @DomName('SVGElement.xmlspace') | 5858 @DomName('SVGElement.xmlspace') |
| 7369 @DocsEditable() | 5859 @DocsEditable() |
| 7370 @Experimental() // untriaged | 5860 @Experimental() // untriaged |
| 7371 set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Setter_
(unwrap_jso(this), value); | 5861 void set xmlspace(String value) => _blink.BlinkSVGElement.instance.xmlspace_Se
tter_(unwrap_jso(this), value); |
| 7372 | 5862 |
| 7373 @DomName('SVGElement.onabort') | 5863 @DomName('SVGElement.onabort') |
| 7374 @DocsEditable() | 5864 @DocsEditable() |
| 7375 @Experimental() // untriaged | 5865 @Experimental() // untriaged |
| 7376 ElementStream<Event> get onAbort => abortEvent.forElement(this); | 5866 ElementStream<Event> get onAbort => abortEvent.forElement(this); |
| 7377 | 5867 |
| 7378 @DomName('SVGElement.onblur') | 5868 @DomName('SVGElement.onblur') |
| 7379 @DocsEditable() | 5869 @DocsEditable() |
| 7380 @Experimental() // untriaged | 5870 @Experimental() // untriaged |
| 7381 ElementStream<Event> get onBlur => blurEvent.forElement(this); | 5871 ElementStream<Event> get onBlur => blurEvent.forElement(this); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7641 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ | 6131 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
{ |
| 7642 factory SvgSvgElement() { | 6132 factory SvgSvgElement() { |
| 7643 final el = new SvgElement.tag("svg"); | 6133 final el = new SvgElement.tag("svg"); |
| 7644 // The SVG spec requires the version attribute to match the spec version | 6134 // The SVG spec requires the version attribute to match the spec version |
| 7645 el.attributes['version'] = "1.1"; | 6135 el.attributes['version'] = "1.1"; |
| 7646 return el; | 6136 return el; |
| 7647 } | 6137 } |
| 7648 | 6138 |
| 7649 // To suppress missing implicit constructor warnings. | 6139 // To suppress missing implicit constructor warnings. |
| 7650 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } | 6140 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } |
| 7651 | |
| 7652 | |
| 7653 static SvgSvgElement internalCreateSvgSvgElement() { | |
| 7654 return new SvgSvgElement._internalWrap(); | |
| 7655 } | |
| 7656 | |
| 7657 factory SvgSvgElement._internalWrap() { | |
| 7658 return new SvgSvgElement.internal_(); | |
| 7659 } | |
| 7660 | |
| 7661 SvgSvgElement.internal_() : super.internal_(); | |
| 7662 | |
| 7663 /** | 6141 /** |
| 7664 * Constructor instantiated by the DOM when a custom element has been created. | 6142 * Constructor instantiated by the DOM when a custom element has been created. |
| 7665 * | 6143 * |
| 7666 * This can only be called by subclasses from their created constructor. | 6144 * This can only be called by subclasses from their created constructor. |
| 7667 */ | 6145 */ |
| 7668 SvgSvgElement.created() : super.created(); | 6146 SvgSvgElement.created() : super.created(); |
| 7669 | 6147 |
| 7670 @DomName('SVGSVGElement.currentScale') | 6148 @DomName('SVGSVGElement.currentScale') |
| 7671 @DocsEditable() | 6149 @DocsEditable() |
| 7672 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); | 6150 num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter
_(unwrap_jso(this)); |
| 7673 | 6151 |
| 7674 @DomName('SVGSVGElement.currentScale') | 6152 @DomName('SVGSVGElement.currentScale') |
| 7675 @DocsEditable() | 6153 @DocsEditable() |
| 7676 set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale
_Setter_(unwrap_jso(this), value); | 6154 void set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.current
Scale_Setter_(unwrap_jso(this), value); |
| 7677 | 6155 |
| 7678 @DomName('SVGSVGElement.currentTranslate') | 6156 @DomName('SVGSVGElement.currentTranslate') |
| 7679 @DocsEditable() | 6157 @DocsEditable() |
| 7680 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr
entTranslate_Getter_(unwrap_jso(this))); | 6158 Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.curr
entTranslate_Getter_(unwrap_jso(this))); |
| 7681 | 6159 |
| 7682 @DomName('SVGSVGElement.currentView') | 6160 @DomName('SVGSVGElement.currentView') |
| 7683 @DocsEditable() | 6161 @DocsEditable() |
| 7684 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren
tView_Getter_(unwrap_jso(this))); | 6162 ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.curren
tView_Getter_(unwrap_jso(this))); |
| 7685 | 6163 |
| 7686 @DomName('SVGSVGElement.height') | 6164 @DomName('SVGSVGElement.height') |
| 7687 @DocsEditable() | 6165 @DocsEditable() |
| 7688 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh
t_Getter_(unwrap_jso(this))); | 6166 AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
| 7689 | 6167 |
| 7690 @DomName('SVGSVGElement.pixelUnitToMillimeterX') | 6168 @DomName('SVGSVGElement.pixelUnitToMillimeterX') |
| 7691 @DocsEditable() | 6169 @DocsEditable() |
| 7692 num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnit
ToMillimeterX_Getter_(unwrap_jso(this)); | 6170 double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterX_Getter_(unwrap_jso(this)); |
| 7693 | 6171 |
| 7694 @DomName('SVGSVGElement.pixelUnitToMillimeterY') | 6172 @DomName('SVGSVGElement.pixelUnitToMillimeterY') |
| 7695 @DocsEditable() | 6173 @DocsEditable() |
| 7696 num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnit
ToMillimeterY_Getter_(unwrap_jso(this)); | 6174 double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelU
nitToMillimeterY_Getter_(unwrap_jso(this)); |
| 7697 | 6175 |
| 7698 @DomName('SVGSVGElement.screenPixelToMillimeterX') | 6176 @DomName('SVGSVGElement.screenPixelToMillimeterX') |
| 7699 @DocsEditable() | 6177 @DocsEditable() |
| 7700 num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenP
ixelToMillimeterX_Getter_(unwrap_jso(this)); | 6178 double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterX_Getter_(unwrap_jso(this)); |
| 7701 | 6179 |
| 7702 @DomName('SVGSVGElement.screenPixelToMillimeterY') | 6180 @DomName('SVGSVGElement.screenPixelToMillimeterY') |
| 7703 @DocsEditable() | 6181 @DocsEditable() |
| 7704 num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenP
ixelToMillimeterY_Getter_(unwrap_jso(this)); | 6182 double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.scre
enPixelToMillimeterY_Getter_(unwrap_jso(this)); |
| 7705 | 6183 |
| 7706 @DomName('SVGSVGElement.useCurrentView') | 6184 @DomName('SVGSVGElement.useCurrentView') |
| 7707 @DocsEditable() | 6185 @DocsEditable() |
| 7708 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(unwrap_jso(this)); | 6186 bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_G
etter_(unwrap_jso(this)); |
| 7709 | 6187 |
| 7710 @DomName('SVGSVGElement.viewport') | 6188 @DomName('SVGSVGElement.viewport') |
| 7711 @DocsEditable() | 6189 @DocsEditable() |
| 7712 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett
er_(unwrap_jso(this))); | 6190 Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Gett
er_(unwrap_jso(this))); |
| 7713 | 6191 |
| 7714 @DomName('SVGSVGElement.width') | 6192 @DomName('SVGSVGElement.width') |
| (...skipping 15 matching lines...) Expand all Loading... |
| 7730 @DomName('SVGSVGElement.checkEnclosure') | 6208 @DomName('SVGSVGElement.checkEnclosure') |
| 7731 @DocsEditable() | 6209 @DocsEditable() |
| 7732 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw
rap_jso(rect)); | 6210 bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElemen
t.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unw
rap_jso(rect)); |
| 7733 | 6211 |
| 7734 @DomName('SVGSVGElement.checkIntersection') | 6212 @DomName('SVGSVGElement.checkIntersection') |
| 7735 @DocsEditable() | 6213 @DocsEditable() |
| 7736 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element
), unwrap_jso(rect)); | 6214 bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGEle
ment.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element
), unwrap_jso(rect)); |
| 7737 | 6215 |
| 7738 @DomName('SVGSVGElement.createSVGAngle') | 6216 @DomName('SVGSVGElement.createSVGAngle') |
| 7739 @DocsEditable() | 6217 @DocsEditable() |
| 7740 Angle createSvgAngle() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV
GAngle_Callback_0_(unwrap_jso(this))); | 6218 Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Ca
llback_0_(unwrap_jso(this)); |
| 7741 | 6219 |
| 7742 @DomName('SVGSVGElement.createSVGLength') | 6220 @DomName('SVGSVGElement.createSVGLength') |
| 7743 @DocsEditable() | 6221 @DocsEditable() |
| 7744 Length createSvgLength() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGLength_Callback_0_(unwrap_jso(this))); | 6222 Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength
_Callback_0_(unwrap_jso(this)); |
| 7745 | 6223 |
| 7746 @DomName('SVGSVGElement.createSVGMatrix') | 6224 @DomName('SVGSVGElement.createSVGMatrix') |
| 7747 @DocsEditable() | 6225 @DocsEditable() |
| 7748 Matrix createSvgMatrix() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGMatrix_Callback_0_(unwrap_jso(this))); | 6226 Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix
_Callback_0_(unwrap_jso(this)); |
| 7749 | 6227 |
| 7750 @DomName('SVGSVGElement.createSVGNumber') | 6228 @DomName('SVGSVGElement.createSVGNumber') |
| 7751 @DocsEditable() | 6229 @DocsEditable() |
| 7752 Number createSvgNumber() => wrap_jso(_blink.BlinkSVGSVGElement.instance.create
SVGNumber_Callback_0_(unwrap_jso(this))); | 6230 Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber
_Callback_0_(unwrap_jso(this)); |
| 7753 | 6231 |
| 7754 @DomName('SVGSVGElement.createSVGPoint') | 6232 @DomName('SVGSVGElement.createSVGPoint') |
| 7755 @DocsEditable() | 6233 @DocsEditable() |
| 7756 Point createSvgPoint() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSV
GPoint_Callback_0_(unwrap_jso(this))); | 6234 Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Ca
llback_0_(unwrap_jso(this)); |
| 7757 | 6235 |
| 7758 @DomName('SVGSVGElement.createSVGRect') | 6236 @DomName('SVGSVGElement.createSVGRect') |
| 7759 @DocsEditable() | 6237 @DocsEditable() |
| 7760 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR
ect_Callback_0_(unwrap_jso(this))); | 6238 Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGR
ect_Callback_0_(unwrap_jso(this))); |
| 7761 | 6239 |
| 7762 @DomName('SVGSVGElement.createSVGTransform') | 6240 @DomName('SVGSVGElement.createSVGTransform') |
| 7763 @DocsEditable() | 6241 @DocsEditable() |
| 7764 Transform createSvgTransform() => wrap_jso(_blink.BlinkSVGSVGElement.instance.
createSVGTransform_Callback_0_(unwrap_jso(this))); | 6242 Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVG
Transform_Callback_0_(unwrap_jso(this)); |
| 7765 | 6243 |
| 7766 @DomName('SVGSVGElement.createSVGTransformFromMatrix') | 6244 @DomName('SVGSVGElement.createSVGTransformFromMatrix') |
| 7767 @DocsEditable() | 6245 @DocsEditable() |
| 7768 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink
SVGSVGElement.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this)
, unwrap_jso(matrix))); | 6246 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGEle
ment.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwrap_
jso(matrix)); |
| 7769 | 6247 |
| 7770 @DomName('SVGSVGElement.deselectAll') | 6248 @DomName('SVGSVGElement.deselectAll') |
| 7771 @DocsEditable() | 6249 @DocsEditable() |
| 7772 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(unwrap_jso(this)); | 6250 void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_
0_(unwrap_jso(this)); |
| 7773 | 6251 |
| 7774 @DomName('SVGSVGElement.forceRedraw') | 6252 @DomName('SVGSVGElement.forceRedraw') |
| 7775 @DocsEditable() | 6253 @DocsEditable() |
| 7776 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(unwrap_jso(this)); | 6254 void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_
0_(unwrap_jso(this)); |
| 7777 | 6255 |
| 7778 @DomName('SVGSVGElement.getCurrentTime') | 6256 @DomName('SVGSVGElement.getCurrentTime') |
| 7779 @DocsEditable() | 6257 @DocsEditable() |
| 7780 num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Call
back_0_(unwrap_jso(this)); | 6258 double getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_C
allback_0_(unwrap_jso(this)); |
| 7781 | 6259 |
| 7782 @DomName('SVGSVGElement.getElementById') | 6260 @DomName('SVGSVGElement.getElementById') |
| 7783 @DocsEditable() | 6261 @DocsEditable() |
| 7784 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement
.instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); | 6262 Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement
.instance.getElementById_Callback_1_(unwrap_jso(this), elementId)); |
| 7785 | 6263 |
| 7786 @DomName('SVGSVGElement.getEnclosureList') | 6264 @DomName('SVGSVGElement.getEnclosureList') |
| 7787 @DocsEditable() | 6265 @DocsEditable() |
| 7788 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js
o(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_jso(thi
s), unwrap_jso(rect), unwrap_jso(referenceElement))); | 6266 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_js
o_list(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_js
o(this), unwrap_jso(rect), unwrap_jso(referenceElement))); |
| 7789 | 6267 |
| 7790 @DomName('SVGSVGElement.getIntersectionList') | 6268 @DomName('SVGSVGElement.getIntersectionList') |
| 7791 @DocsEditable() | 6269 @DocsEditable() |
| 7792 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap
_jso(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unwrap_j
so(this), unwrap_jso(rect), unwrap_jso(referenceElement))); | 6270 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap
_jso_list(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unw
rap_jso(this), unwrap_jso(rect), unwrap_jso(referenceElement))); |
| 7793 | 6271 |
| 7794 @DomName('SVGSVGElement.pauseAnimations') | 6272 @DomName('SVGSVGElement.pauseAnimations') |
| 7795 @DocsEditable() | 6273 @DocsEditable() |
| 7796 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(unwrap_jso(this)); | 6274 void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_C
allback_0_(unwrap_jso(this)); |
| 7797 | 6275 |
| 7798 @DomName('SVGSVGElement.setCurrentTime') | 6276 @DomName('SVGSVGElement.setCurrentTime') |
| 7799 @DocsEditable() | 6277 @DocsEditable() |
| 7800 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(unwrap_jso(this), seconds); | 6278 void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurr
entTime_Callback_1_(unwrap_jso(this), seconds); |
| 7801 | 6279 |
| 7802 @DomName('SVGSVGElement.suspendRedraw') | 6280 @DomName('SVGSVGElement.suspendRedraw') |
| (...skipping 19 matching lines...) Expand all Loading... |
| 7822 @DomName('SVGSVGElement.viewBox') | 6300 @DomName('SVGSVGElement.viewBox') |
| 7823 @DocsEditable() | 6301 @DocsEditable() |
| 7824 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo
x_Getter_(unwrap_jso(this))); | 6302 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBo
x_Getter_(unwrap_jso(this))); |
| 7825 | 6303 |
| 7826 @DomName('SVGSVGElement.zoomAndPan') | 6304 @DomName('SVGSVGElement.zoomAndPan') |
| 7827 @DocsEditable() | 6305 @DocsEditable() |
| 7828 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un
wrap_jso(this)); | 6306 int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(un
wrap_jso(this)); |
| 7829 | 6307 |
| 7830 @DomName('SVGSVGElement.zoomAndPan') | 6308 @DomName('SVGSVGElement.zoomAndPan') |
| 7831 @DocsEditable() | 6309 @DocsEditable() |
| 7832 set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Set
ter_(unwrap_jso(this), value); | 6310 void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPa
n_Setter_(unwrap_jso(this), value); |
| 7833 | 6311 |
| 7834 } | 6312 } |
| 7835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7836 // for details. All rights reserved. Use of this source code is governed by a | 6314 // for details. All rights reserved. Use of this source code is governed by a |
| 7837 // BSD-style license that can be found in the LICENSE file. | 6315 // BSD-style license that can be found in the LICENSE file. |
| 7838 | 6316 |
| 7839 // WARNING: Do not edit - generated code. | 6317 // WARNING: Do not edit - generated code. |
| 7840 | 6318 |
| 7841 | 6319 |
| 7842 @DocsEditable() | 6320 @DocsEditable() |
| 7843 @DomName('SVGSwitchElement') | 6321 @DomName('SVGSwitchElement') |
| 7844 @Unstable() | 6322 @Unstable() |
| 7845 class SwitchElement extends GraphicsElement { | 6323 class SwitchElement extends GraphicsElement { |
| 7846 // To suppress missing implicit constructor warnings. | 6324 // To suppress missing implicit constructor warnings. |
| 7847 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } | 6325 factory SwitchElement._() { throw new UnsupportedError("Not supported"); } |
| 7848 | 6326 |
| 7849 @DomName('SVGSwitchElement.SVGSwitchElement') | 6327 @DomName('SVGSwitchElement.SVGSwitchElement') |
| 7850 @DocsEditable() | 6328 @DocsEditable() |
| 7851 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); | 6329 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw
itch"); |
| 7852 | |
| 7853 | |
| 7854 static SwitchElement internalCreateSwitchElement() { | |
| 7855 return new SwitchElement._internalWrap(); | |
| 7856 } | |
| 7857 | |
| 7858 factory SwitchElement._internalWrap() { | |
| 7859 return new SwitchElement.internal_(); | |
| 7860 } | |
| 7861 | |
| 7862 SwitchElement.internal_() : super.internal_(); | |
| 7863 | |
| 7864 /** | 6330 /** |
| 7865 * Constructor instantiated by the DOM when a custom element has been created. | 6331 * Constructor instantiated by the DOM when a custom element has been created. |
| 7866 * | 6332 * |
| 7867 * This can only be called by subclasses from their created constructor. | 6333 * This can only be called by subclasses from their created constructor. |
| 7868 */ | 6334 */ |
| 7869 SwitchElement.created() : super.created(); | 6335 SwitchElement.created() : super.created(); |
| 7870 | 6336 |
| 7871 } | 6337 } |
| 7872 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6338 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7873 // for details. All rights reserved. Use of this source code is governed by a | 6339 // for details. All rights reserved. Use of this source code is governed by a |
| 7874 // BSD-style license that can be found in the LICENSE file. | 6340 // BSD-style license that can be found in the LICENSE file. |
| 7875 | 6341 |
| 7876 // WARNING: Do not edit - generated code. | 6342 // WARNING: Do not edit - generated code. |
| 7877 | 6343 |
| 7878 | 6344 |
| 7879 @DocsEditable() | 6345 @DocsEditable() |
| 7880 @DomName('SVGSymbolElement') | 6346 @DomName('SVGSymbolElement') |
| 7881 @Unstable() | 6347 @Unstable() |
| 7882 class SymbolElement extends SvgElement implements FitToViewBox { | 6348 class SymbolElement extends SvgElement implements FitToViewBox { |
| 7883 // To suppress missing implicit constructor warnings. | 6349 // To suppress missing implicit constructor warnings. |
| 7884 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } | 6350 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } |
| 7885 | 6351 |
| 7886 @DomName('SVGSymbolElement.SVGSymbolElement') | 6352 @DomName('SVGSymbolElement.SVGSymbolElement') |
| 7887 @DocsEditable() | 6353 @DocsEditable() |
| 7888 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); | 6354 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy
mbol"); |
| 7889 | |
| 7890 | |
| 7891 static SymbolElement internalCreateSymbolElement() { | |
| 7892 return new SymbolElement._internalWrap(); | |
| 7893 } | |
| 7894 | |
| 7895 factory SymbolElement._internalWrap() { | |
| 7896 return new SymbolElement.internal_(); | |
| 7897 } | |
| 7898 | |
| 7899 SymbolElement.internal_() : super.internal_(); | |
| 7900 | |
| 7901 /** | 6355 /** |
| 7902 * Constructor instantiated by the DOM when a custom element has been created. | 6356 * Constructor instantiated by the DOM when a custom element has been created. |
| 7903 * | 6357 * |
| 7904 * This can only be called by subclasses from their created constructor. | 6358 * This can only be called by subclasses from their created constructor. |
| 7905 */ | 6359 */ |
| 7906 SymbolElement.created() : super.created(); | 6360 SymbolElement.created() : super.created(); |
| 7907 | 6361 |
| 7908 @DomName('SVGSymbolElement.preserveAspectRatio') | 6362 @DomName('SVGSymbolElement.preserveAspectRatio') |
| 7909 @DocsEditable() | 6363 @DocsEditable() |
| 7910 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); | 6364 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 7924 @DocsEditable() | 6378 @DocsEditable() |
| 7925 @DomName('SVGTSpanElement') | 6379 @DomName('SVGTSpanElement') |
| 7926 @Unstable() | 6380 @Unstable() |
| 7927 class TSpanElement extends TextPositioningElement { | 6381 class TSpanElement extends TextPositioningElement { |
| 7928 // To suppress missing implicit constructor warnings. | 6382 // To suppress missing implicit constructor warnings. |
| 7929 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } | 6383 factory TSpanElement._() { throw new UnsupportedError("Not supported"); } |
| 7930 | 6384 |
| 7931 @DomName('SVGTSpanElement.SVGTSpanElement') | 6385 @DomName('SVGTSpanElement.SVGTSpanElement') |
| 7932 @DocsEditable() | 6386 @DocsEditable() |
| 7933 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); | 6387 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp
an"); |
| 7934 | |
| 7935 | |
| 7936 static TSpanElement internalCreateTSpanElement() { | |
| 7937 return new TSpanElement._internalWrap(); | |
| 7938 } | |
| 7939 | |
| 7940 factory TSpanElement._internalWrap() { | |
| 7941 return new TSpanElement.internal_(); | |
| 7942 } | |
| 7943 | |
| 7944 TSpanElement.internal_() : super.internal_(); | |
| 7945 | |
| 7946 /** | 6388 /** |
| 7947 * Constructor instantiated by the DOM when a custom element has been created. | 6389 * Constructor instantiated by the DOM when a custom element has been created. |
| 7948 * | 6390 * |
| 7949 * This can only be called by subclasses from their created constructor. | 6391 * This can only be called by subclasses from their created constructor. |
| 7950 */ | 6392 */ |
| 7951 TSpanElement.created() : super.created(); | 6393 TSpanElement.created() : super.created(); |
| 7952 | 6394 |
| 7953 } | 6395 } |
| 7954 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6396 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7955 // for details. All rights reserved. Use of this source code is governed by a | 6397 // for details. All rights reserved. Use of this source code is governed by a |
| 7956 // BSD-style license that can be found in the LICENSE file. | 6398 // BSD-style license that can be found in the LICENSE file. |
| 7957 | 6399 |
| 7958 // WARNING: Do not edit - generated code. | 6400 // WARNING: Do not edit - generated code. |
| 7959 | 6401 |
| 7960 | 6402 |
| 7961 @DocsEditable() | 6403 @DocsEditable() |
| 7962 @DomName('SVGTests') | 6404 @DomName('SVGTests') |
| 7963 @Unstable() | 6405 @Unstable() |
| 7964 abstract class Tests extends NativeFieldWrapperClass2 { | 6406 abstract class Tests extends NativeFieldWrapperClass2 { |
| 7965 // To suppress missing implicit constructor warnings. | 6407 // To suppress missing implicit constructor warnings. |
| 7966 factory Tests._() { throw new UnsupportedError("Not supported"); } | 6408 factory Tests._() { throw new UnsupportedError("Not supported"); } |
| 7967 | 6409 |
| 7968 static Tests internalCreateTests() { | |
| 7969 return new Tests._internalWrap(); | |
| 7970 } | |
| 7971 | |
| 7972 js.JsObject blink_jsObject; | |
| 7973 | |
| 7974 factory Tests._internalWrap() { | |
| 7975 return new Tests.internal_(); | |
| 7976 } | |
| 7977 | |
| 7978 Tests.internal_() { } | |
| 7979 | |
| 7980 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 7981 int get hashCode => unwrap_jso(this).hashCode; | |
| 7982 | |
| 7983 @DomName('SVGTests.requiredExtensions') | 6410 @DomName('SVGTests.requiredExtensions') |
| 7984 @DocsEditable() | 6411 @DocsEditable() |
| 7985 StringList get requiredExtensions; | 6412 StringList get requiredExtensions; |
| 7986 | 6413 |
| 7987 @DomName('SVGTests.requiredFeatures') | 6414 @DomName('SVGTests.requiredFeatures') |
| 7988 @DocsEditable() | 6415 @DocsEditable() |
| 7989 StringList get requiredFeatures; | 6416 StringList get requiredFeatures; |
| 7990 | 6417 |
| 7991 @DomName('SVGTests.systemLanguage') | 6418 @DomName('SVGTests.systemLanguage') |
| 7992 @DocsEditable() | 6419 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 8003 | 6430 |
| 8004 // WARNING: Do not edit - generated code. | 6431 // WARNING: Do not edit - generated code. |
| 8005 | 6432 |
| 8006 | 6433 |
| 8007 @DocsEditable() | 6434 @DocsEditable() |
| 8008 @DomName('SVGTextContentElement') | 6435 @DomName('SVGTextContentElement') |
| 8009 @Unstable() | 6436 @Unstable() |
| 8010 class TextContentElement extends GraphicsElement { | 6437 class TextContentElement extends GraphicsElement { |
| 8011 // To suppress missing implicit constructor warnings. | 6438 // To suppress missing implicit constructor warnings. |
| 8012 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} | 6439 factory TextContentElement._() { throw new UnsupportedError("Not supported");
} |
| 8013 | |
| 8014 | |
| 8015 static TextContentElement internalCreateTextContentElement() { | |
| 8016 return new TextContentElement._internalWrap(); | |
| 8017 } | |
| 8018 | |
| 8019 factory TextContentElement._internalWrap() { | |
| 8020 return new TextContentElement.internal_(); | |
| 8021 } | |
| 8022 | |
| 8023 TextContentElement.internal_() : super.internal_(); | |
| 8024 | |
| 8025 /** | 6440 /** |
| 8026 * Constructor instantiated by the DOM when a custom element has been created. | 6441 * Constructor instantiated by the DOM when a custom element has been created. |
| 8027 * | 6442 * |
| 8028 * This can only be called by subclasses from their created constructor. | 6443 * This can only be called by subclasses from their created constructor. |
| 8029 */ | 6444 */ |
| 8030 TextContentElement.created() : super.created(); | 6445 TextContentElement.created() : super.created(); |
| 8031 | 6446 |
| 8032 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') | 6447 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
| 8033 @DocsEditable() | 6448 @DocsEditable() |
| 8034 static const int LENGTHADJUST_SPACING = 1; | 6449 static const int LENGTHADJUST_SPACING = 1; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 8048 @DomName('SVGTextContentElement.textLength') | 6463 @DomName('SVGTextContentElement.textLength') |
| 8049 @DocsEditable() | 6464 @DocsEditable() |
| 8050 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in
stance.textLength_Getter_(unwrap_jso(this))); | 6465 AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.in
stance.textLength_Getter_(unwrap_jso(this))); |
| 8051 | 6466 |
| 8052 @DomName('SVGTextContentElement.getCharNumAtPosition') | 6467 @DomName('SVGTextContentElement.getCharNumAtPosition') |
| 8053 @DocsEditable() | 6468 @DocsEditable() |
| 8054 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); | 6469 int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.ins
tance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point)); |
| 8055 | 6470 |
| 8056 @DomName('SVGTextContentElement.getComputedTextLength') | 6471 @DomName('SVGTextContentElement.getComputedTextLength') |
| 8057 @DocsEditable() | 6472 @DocsEditable() |
| 8058 num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getC
omputedTextLength_Callback_0_(unwrap_jso(this)); | 6473 double getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.g
etComputedTextLength_Callback_0_(unwrap_jso(this)); |
| 8059 | 6474 |
| 8060 @DomName('SVGTextContentElement.getEndPositionOfChar') | 6475 @DomName('SVGTextContentElement.getEndPositionOfChar') |
| 8061 @DocsEditable() | 6476 @DocsEditable() |
| 8062 Point getEndPositionOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentE
lement.instance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), offset)); | 6477 Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.in
stance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), offset); |
| 8063 | 6478 |
| 8064 @DomName('SVGTextContentElement.getExtentOfChar') | 6479 @DomName('SVGTextContentElement.getExtentOfChar') |
| 8065 @DocsEditable() | 6480 @DocsEditable() |
| 8066 Rect getExtentOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentElement
.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), offset)); | 6481 Rect getExtentOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextContentElement
.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), offset)); |
| 8067 | 6482 |
| 8068 @DomName('SVGTextContentElement.getNumberOfChars') | 6483 @DomName('SVGTextContentElement.getNumberOfChars') |
| 8069 @DocsEditable() | 6484 @DocsEditable() |
| 8070 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(unwrap_jso(this)); | 6485 int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumber
OfChars_Callback_0_(unwrap_jso(this)); |
| 8071 | 6486 |
| 8072 @DomName('SVGTextContentElement.getRotationOfChar') | 6487 @DomName('SVGTextContentElement.getRotationOfChar') |
| 8073 @DocsEditable() | 6488 @DocsEditable() |
| 8074 num getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.instanc
e.getRotationOfChar_Callback_1_(unwrap_jso(this), offset); | 6489 double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.inst
ance.getRotationOfChar_Callback_1_(unwrap_jso(this), offset); |
| 8075 | 6490 |
| 8076 @DomName('SVGTextContentElement.getStartPositionOfChar') | 6491 @DomName('SVGTextContentElement.getStartPositionOfChar') |
| 8077 @DocsEditable() | 6492 @DocsEditable() |
| 8078 Point getStartPositionOfChar(int offset) => wrap_jso(_blink.BlinkSVGTextConten
tElement.instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), offset)); | 6493 Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.
instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), offset); |
| 8079 | 6494 |
| 8080 @DomName('SVGTextContentElement.getSubStringLength') | 6495 @DomName('SVGTextContentElement.getSubStringLength') |
| 8081 @DocsEditable() | 6496 @DocsEditable() |
| 8082 num getSubStringLength(int offset, int length) => _blink.BlinkSVGTextContentEl
ement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), offset, length); | 6497 double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextConten
tElement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), offset, lengt
h); |
| 8083 | 6498 |
| 8084 @DomName('SVGTextContentElement.selectSubString') | 6499 @DomName('SVGTextContentElement.selectSubString') |
| 8085 @DocsEditable() | 6500 @DocsEditable() |
| 8086 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(unwrap_jso(this), offset, length); | 6501 void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElem
ent.instance.selectSubString_Callback_2_(unwrap_jso(this), offset, length); |
| 8087 | 6502 |
| 8088 } | 6503 } |
| 8089 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8090 // for details. All rights reserved. Use of this source code is governed by a | 6505 // for details. All rights reserved. Use of this source code is governed by a |
| 8091 // BSD-style license that can be found in the LICENSE file. | 6506 // BSD-style license that can be found in the LICENSE file. |
| 8092 | 6507 |
| 8093 // WARNING: Do not edit - generated code. | 6508 // WARNING: Do not edit - generated code. |
| 8094 | 6509 |
| 8095 | 6510 |
| 8096 @DocsEditable() | 6511 @DocsEditable() |
| 8097 @DomName('SVGTextElement') | 6512 @DomName('SVGTextElement') |
| 8098 @Unstable() | 6513 @Unstable() |
| 8099 class TextElement extends TextPositioningElement { | 6514 class TextElement extends TextPositioningElement { |
| 8100 // To suppress missing implicit constructor warnings. | 6515 // To suppress missing implicit constructor warnings. |
| 8101 factory TextElement._() { throw new UnsupportedError("Not supported"); } | 6516 factory TextElement._() { throw new UnsupportedError("Not supported"); } |
| 8102 | 6517 |
| 8103 @DomName('SVGTextElement.SVGTextElement') | 6518 @DomName('SVGTextElement.SVGTextElement') |
| 8104 @DocsEditable() | 6519 @DocsEditable() |
| 8105 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); | 6520 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text
"); |
| 8106 | |
| 8107 | |
| 8108 static TextElement internalCreateTextElement() { | |
| 8109 return new TextElement._internalWrap(); | |
| 8110 } | |
| 8111 | |
| 8112 factory TextElement._internalWrap() { | |
| 8113 return new TextElement.internal_(); | |
| 8114 } | |
| 8115 | |
| 8116 TextElement.internal_() : super.internal_(); | |
| 8117 | |
| 8118 /** | 6521 /** |
| 8119 * Constructor instantiated by the DOM when a custom element has been created. | 6522 * Constructor instantiated by the DOM when a custom element has been created. |
| 8120 * | 6523 * |
| 8121 * This can only be called by subclasses from their created constructor. | 6524 * This can only be called by subclasses from their created constructor. |
| 8122 */ | 6525 */ |
| 8123 TextElement.created() : super.created(); | 6526 TextElement.created() : super.created(); |
| 8124 | 6527 |
| 8125 } | 6528 } |
| 8126 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8127 // for details. All rights reserved. Use of this source code is governed by a | 6530 // for details. All rights reserved. Use of this source code is governed by a |
| 8128 // BSD-style license that can be found in the LICENSE file. | 6531 // BSD-style license that can be found in the LICENSE file. |
| 8129 | 6532 |
| 8130 // WARNING: Do not edit - generated code. | 6533 // WARNING: Do not edit - generated code. |
| 8131 | 6534 |
| 8132 | 6535 |
| 8133 @DocsEditable() | 6536 @DocsEditable() |
| 8134 @DomName('SVGTextPathElement') | 6537 @DomName('SVGTextPathElement') |
| 8135 @Unstable() | 6538 @Unstable() |
| 8136 class TextPathElement extends TextContentElement implements UriReference { | 6539 class TextPathElement extends TextContentElement implements UriReference { |
| 8137 // To suppress missing implicit constructor warnings. | 6540 // To suppress missing implicit constructor warnings. |
| 8138 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } | 6541 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } |
| 8139 | |
| 8140 | |
| 8141 static TextPathElement internalCreateTextPathElement() { | |
| 8142 return new TextPathElement._internalWrap(); | |
| 8143 } | |
| 8144 | |
| 8145 factory TextPathElement._internalWrap() { | |
| 8146 return new TextPathElement.internal_(); | |
| 8147 } | |
| 8148 | |
| 8149 TextPathElement.internal_() : super.internal_(); | |
| 8150 | |
| 8151 /** | 6542 /** |
| 8152 * Constructor instantiated by the DOM when a custom element has been created. | 6543 * Constructor instantiated by the DOM when a custom element has been created. |
| 8153 * | 6544 * |
| 8154 * This can only be called by subclasses from their created constructor. | 6545 * This can only be called by subclasses from their created constructor. |
| 8155 */ | 6546 */ |
| 8156 TextPathElement.created() : super.created(); | 6547 TextPathElement.created() : super.created(); |
| 8157 | 6548 |
| 8158 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') | 6549 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
| 8159 @DocsEditable() | 6550 @DocsEditable() |
| 8160 static const int TEXTPATH_METHODTYPE_ALIGN = 1; | 6551 static const int TEXTPATH_METHODTYPE_ALIGN = 1; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8202 | 6593 |
| 8203 // WARNING: Do not edit - generated code. | 6594 // WARNING: Do not edit - generated code. |
| 8204 | 6595 |
| 8205 | 6596 |
| 8206 @DocsEditable() | 6597 @DocsEditable() |
| 8207 @DomName('SVGTextPositioningElement') | 6598 @DomName('SVGTextPositioningElement') |
| 8208 @Unstable() | 6599 @Unstable() |
| 8209 class TextPositioningElement extends TextContentElement { | 6600 class TextPositioningElement extends TextContentElement { |
| 8210 // To suppress missing implicit constructor warnings. | 6601 // To suppress missing implicit constructor warnings. |
| 8211 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } | 6602 factory TextPositioningElement._() { throw new UnsupportedError("Not supported
"); } |
| 8212 | |
| 8213 | |
| 8214 static TextPositioningElement internalCreateTextPositioningElement() { | |
| 8215 return new TextPositioningElement._internalWrap(); | |
| 8216 } | |
| 8217 | |
| 8218 factory TextPositioningElement._internalWrap() { | |
| 8219 return new TextPositioningElement.internal_(); | |
| 8220 } | |
| 8221 | |
| 8222 TextPositioningElement.internal_() : super.internal_(); | |
| 8223 | |
| 8224 /** | 6603 /** |
| 8225 * Constructor instantiated by the DOM when a custom element has been created. | 6604 * Constructor instantiated by the DOM when a custom element has been created. |
| 8226 * | 6605 * |
| 8227 * This can only be called by subclasses from their created constructor. | 6606 * This can only be called by subclasses from their created constructor. |
| 8228 */ | 6607 */ |
| 8229 TextPositioningElement.created() : super.created(); | 6608 TextPositioningElement.created() : super.created(); |
| 8230 | 6609 |
| 8231 @DomName('SVGTextPositioningElement.dx') | 6610 @DomName('SVGTextPositioningElement.dx') |
| 8232 @DocsEditable() | 6611 @DocsEditable() |
| 8233 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); | 6612 AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.in
stance.dx_Getter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 8259 @DocsEditable() | 6638 @DocsEditable() |
| 8260 @DomName('SVGTitleElement') | 6639 @DomName('SVGTitleElement') |
| 8261 @Unstable() | 6640 @Unstable() |
| 8262 class TitleElement extends SvgElement { | 6641 class TitleElement extends SvgElement { |
| 8263 // To suppress missing implicit constructor warnings. | 6642 // To suppress missing implicit constructor warnings. |
| 8264 factory TitleElement._() { throw new UnsupportedError("Not supported"); } | 6643 factory TitleElement._() { throw new UnsupportedError("Not supported"); } |
| 8265 | 6644 |
| 8266 @DomName('SVGTitleElement.SVGTitleElement') | 6645 @DomName('SVGTitleElement.SVGTitleElement') |
| 8267 @DocsEditable() | 6646 @DocsEditable() |
| 8268 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); | 6647 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit
le"); |
| 8269 | |
| 8270 | |
| 8271 static TitleElement internalCreateTitleElement() { | |
| 8272 return new TitleElement._internalWrap(); | |
| 8273 } | |
| 8274 | |
| 8275 factory TitleElement._internalWrap() { | |
| 8276 return new TitleElement.internal_(); | |
| 8277 } | |
| 8278 | |
| 8279 TitleElement.internal_() : super.internal_(); | |
| 8280 | |
| 8281 /** | 6648 /** |
| 8282 * Constructor instantiated by the DOM when a custom element has been created. | 6649 * Constructor instantiated by the DOM when a custom element has been created. |
| 8283 * | 6650 * |
| 8284 * This can only be called by subclasses from their created constructor. | 6651 * This can only be called by subclasses from their created constructor. |
| 8285 */ | 6652 */ |
| 8286 TitleElement.created() : super.created(); | 6653 TitleElement.created() : super.created(); |
| 8287 | 6654 |
| 8288 } | 6655 } |
| 8289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6656 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8290 // for details. All rights reserved. Use of this source code is governed by a | 6657 // for details. All rights reserved. Use of this source code is governed by a |
| 8291 // BSD-style license that can be found in the LICENSE file. | 6658 // BSD-style license that can be found in the LICENSE file. |
| 8292 | 6659 |
| 8293 // WARNING: Do not edit - generated code. | 6660 // WARNING: Do not edit - generated code. |
| 8294 | 6661 |
| 8295 | 6662 |
| 8296 @DocsEditable() | 6663 @DocsEditable() |
| 8297 @DomName('SVGTransform') | 6664 @DomName('SVGTransform') |
| 8298 @Unstable() | 6665 @Unstable() |
| 8299 class Transform extends NativeFieldWrapperClass2 { | 6666 class Transform extends NativeFieldWrapperClass2 { |
| 8300 // To suppress missing implicit constructor warnings. | 6667 // To suppress missing implicit constructor warnings. |
| 8301 factory Transform._() { throw new UnsupportedError("Not supported"); } | 6668 factory Transform._() { throw new UnsupportedError("Not supported"); } |
| 8302 | 6669 |
| 8303 static Transform internalCreateTransform() { | |
| 8304 return new Transform._internalWrap(); | |
| 8305 } | |
| 8306 | |
| 8307 js.JsObject blink_jsObject; | |
| 8308 | |
| 8309 factory Transform._internalWrap() { | |
| 8310 return new Transform.internal_(); | |
| 8311 } | |
| 8312 | |
| 8313 Transform.internal_() { } | |
| 8314 | |
| 8315 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8316 int get hashCode => unwrap_jso(this).hashCode; | |
| 8317 | |
| 8318 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') | 6670 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') |
| 8319 @DocsEditable() | 6671 @DocsEditable() |
| 8320 static const int SVG_TRANSFORM_MATRIX = 1; | 6672 static const int SVG_TRANSFORM_MATRIX = 1; |
| 8321 | 6673 |
| 8322 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') | 6674 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') |
| 8323 @DocsEditable() | 6675 @DocsEditable() |
| 8324 static const int SVG_TRANSFORM_ROTATE = 4; | 6676 static const int SVG_TRANSFORM_ROTATE = 4; |
| 8325 | 6677 |
| 8326 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') | 6678 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') |
| 8327 @DocsEditable() | 6679 @DocsEditable() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 8338 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') | 6690 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE') |
| 8339 @DocsEditable() | 6691 @DocsEditable() |
| 8340 static const int SVG_TRANSFORM_TRANSLATE = 2; | 6692 static const int SVG_TRANSFORM_TRANSLATE = 2; |
| 8341 | 6693 |
| 8342 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') | 6694 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN') |
| 8343 @DocsEditable() | 6695 @DocsEditable() |
| 8344 static const int SVG_TRANSFORM_UNKNOWN = 0; | 6696 static const int SVG_TRANSFORM_UNKNOWN = 0; |
| 8345 | 6697 |
| 8346 @DomName('SVGTransform.angle') | 6698 @DomName('SVGTransform.angle') |
| 8347 @DocsEditable() | 6699 @DocsEditable() |
| 8348 num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso(th
is)); | 6700 double get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso
(this)); |
| 8349 | 6701 |
| 8350 @DomName('SVGTransform.matrix') | 6702 @DomName('SVGTransform.matrix') |
| 8351 @DocsEditable() | 6703 @DocsEditable() |
| 8352 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_
(unwrap_jso(this))); | 6704 Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_
(unwrap_jso(this))); |
| 8353 | 6705 |
| 8354 @DomName('SVGTransform.type') | 6706 @DomName('SVGTransform.type') |
| 8355 @DocsEditable() | 6707 @DocsEditable() |
| 8356 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this
)); | 6708 int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this
)); |
| 8357 | 6709 |
| 8358 @DomName('SVGTransform.setMatrix') | 6710 @DomName('SVGTransform.setMatrix') |
| (...skipping 24 matching lines...) Expand all Loading... |
| 8383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6735 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8384 // for details. All rights reserved. Use of this source code is governed by a | 6736 // for details. All rights reserved. Use of this source code is governed by a |
| 8385 // BSD-style license that can be found in the LICENSE file. | 6737 // BSD-style license that can be found in the LICENSE file. |
| 8386 | 6738 |
| 8387 // WARNING: Do not edit - generated code. | 6739 // WARNING: Do not edit - generated code. |
| 8388 | 6740 |
| 8389 | 6741 |
| 8390 @DocsEditable() | 6742 @DocsEditable() |
| 8391 @DomName('SVGTransformList') | 6743 @DomName('SVGTransformList') |
| 8392 @Unstable() | 6744 @Unstable() |
| 8393 class TransformList extends JsoNativeFieldWrapper with ListMixin<Transform>, Imm
utableListMixin<Transform> implements List<Transform> { | 6745 class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
ImmutableListMixin<Transform> implements List<Transform> { |
| 8394 // To suppress missing implicit constructor warnings. | 6746 // To suppress missing implicit constructor warnings. |
| 8395 factory TransformList._() { throw new UnsupportedError("Not supported"); } | 6747 factory TransformList._() { throw new UnsupportedError("Not supported"); } |
| 8396 | 6748 |
| 8397 static TransformList internalCreateTransformList() { | |
| 8398 return new TransformList._internalWrap(); | |
| 8399 } | |
| 8400 | |
| 8401 js.JsObject blink_jsObject; | |
| 8402 | |
| 8403 factory TransformList._internalWrap() { | |
| 8404 return new TransformList.internal_(); | |
| 8405 } | |
| 8406 | |
| 8407 TransformList.internal_() { } | |
| 8408 | |
| 8409 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8410 int get hashCode => unwrap_jso(this).hashCode; | |
| 8411 | |
| 8412 @DomName('SVGTransformList.length') | 6749 @DomName('SVGTransformList.length') |
| 8413 @DocsEditable() | 6750 @DocsEditable() |
| 8414 @Experimental() // untriaged | 6751 @Experimental() // untriaged |
| 8415 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); | 6752 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_
jso(this)); |
| 8416 | 6753 |
| 8417 @DomName('SVGTransformList.numberOfItems') | 6754 @DomName('SVGTransformList.numberOfItems') |
| 8418 @DocsEditable() | 6755 @DocsEditable() |
| 8419 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); | 6756 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G
etter_(unwrap_jso(this)); |
| 8420 | 6757 |
| 8421 Transform operator[](int index) { | 6758 Transform operator[](int index) { |
| 8422 if (index < 0 || index >= length) | 6759 if (index < 0 || index >= length) |
| 8423 throw new RangeError.index(index, this); | 6760 throw new RangeError.index(index, this); |
| 8424 return getItem(index); | 6761 return getItem(index); |
| 8425 } | 6762 } |
| 8426 | 6763 |
| 8427 void operator[]=(int index, Transform value) { | 6764 void operator[]=(int index, Transform value) { |
| 8428 throw new UnsupportedError("Cannot assign element of immutable List."); | 6765 throw new UnsupportedError("Cannot assign element of immutable List."); |
| 8429 } | 6766 } |
| 8430 // -- start List<Transform> mixins. | 6767 // -- start List<Transform> mixins. |
| 8431 // Transform is the element type. | 6768 // Transform is the element type. |
| 8432 | 6769 |
| 8433 | 6770 |
| 8434 set length(int value) { | 6771 void set length(int value) { |
| 8435 throw new UnsupportedError("Cannot resize immutable List."); | 6772 throw new UnsupportedError("Cannot resize immutable List."); |
| 8436 } | 6773 } |
| 8437 | 6774 |
| 8438 Transform get first { | 6775 Transform get first { |
| 8439 if (this.length > 0) { | 6776 if (this.length > 0) { |
| 8440 return getItem(0); | 6777 return getItem(0); |
| 8441 } | 6778 } |
| 8442 throw new StateError("No elements"); | 6779 throw new StateError("No elements"); |
| 8443 } | 6780 } |
| 8444 | 6781 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 8462 Transform elementAt(int index) => this[index]; | 6799 Transform elementAt(int index) => this[index]; |
| 8463 // -- end List<Transform> mixins. | 6800 // -- end List<Transform> mixins. |
| 8464 | 6801 |
| 8465 @DomName('SVGTransformList.__setter__') | 6802 @DomName('SVGTransformList.__setter__') |
| 8466 @DocsEditable() | 6803 @DocsEditable() |
| 8467 @Experimental() // untriaged | 6804 @Experimental() // untriaged |
| 8468 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); | 6805 void __setter__(int index, Transform value) => _blink.BlinkSVGTransformList.in
stance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(value)); |
| 8469 | 6806 |
| 8470 @DomName('SVGTransformList.appendItem') | 6807 @DomName('SVGTransformList.appendItem') |
| 8471 @DocsEditable() | 6808 @DocsEditable() |
| 8472 Transform appendItem(Transform item) => wrap_jso(_blink.BlinkSVGTransformList.
instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 6809 Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.instance.
appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 8473 | 6810 |
| 8474 @DomName('SVGTransformList.clear') | 6811 @DomName('SVGTransformList.clear') |
| 8475 @DocsEditable() | 6812 @DocsEditable() |
| 8476 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap
_jso(this)); | 6813 void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap
_jso(this)); |
| 8477 | 6814 |
| 8478 @DomName('SVGTransformList.consolidate') | 6815 @DomName('SVGTransformList.consolidate') |
| 8479 @DocsEditable() | 6816 @DocsEditable() |
| 8480 Transform consolidate() => wrap_jso(_blink.BlinkSVGTransformList.instance.cons
olidate_Callback_0_(unwrap_jso(this))); | 6817 Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_C
allback_0_(unwrap_jso(this)); |
| 8481 | 6818 |
| 8482 @DomName('SVGTransformList.createSVGTransformFromMatrix') | 6819 @DomName('SVGTransformList.createSVGTransformFromMatrix') |
| 8483 @DocsEditable() | 6820 @DocsEditable() |
| 8484 Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.Blink
SVGTransformList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(th
is), unwrap_jso(matrix))); | 6821 Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransf
ormList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwr
ap_jso(matrix)); |
| 8485 | 6822 |
| 8486 @DomName('SVGTransformList.getItem') | 6823 @DomName('SVGTransformList.getItem') |
| 8487 @DocsEditable() | 6824 @DocsEditable() |
| 8488 Transform getItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.instance
.getItem_Callback_1_(unwrap_jso(this), index)); | 6825 Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_
Callback_1_(unwrap_jso(this), index); |
| 8489 | 6826 |
| 8490 @DomName('SVGTransformList.initialize') | 6827 @DomName('SVGTransformList.initialize') |
| 8491 @DocsEditable() | 6828 @DocsEditable() |
| 8492 Transform initialize(Transform item) => wrap_jso(_blink.BlinkSVGTransformList.
instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item))); | 6829 Transform initialize(Transform item) => _blink.BlinkSVGTransformList.instance.
initialize_Callback_1_(unwrap_jso(this), unwrap_jso(item)); |
| 8493 | 6830 |
| 8494 @DomName('SVGTransformList.insertItemBefore') | 6831 @DomName('SVGTransformList.insertItemBefore') |
| 8495 @DocsEditable() | 6832 @DocsEditable() |
| 8496 Transform insertItemBefore(Transform item, int index) => wrap_jso(_blink.Blink
SVGTransformList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_
jso(item), index)); | 6833 Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransf
ormList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(item)
, index); |
| 8497 | 6834 |
| 8498 @DomName('SVGTransformList.removeItem') | 6835 @DomName('SVGTransformList.removeItem') |
| 8499 @DocsEditable() | 6836 @DocsEditable() |
| 8500 Transform removeItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.insta
nce.removeItem_Callback_1_(unwrap_jso(this), index)); | 6837 Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.remov
eItem_Callback_1_(unwrap_jso(this), index); |
| 8501 | 6838 |
| 8502 @DomName('SVGTransformList.replaceItem') | 6839 @DomName('SVGTransformList.replaceItem') |
| 8503 @DocsEditable() | 6840 @DocsEditable() |
| 8504 Transform replaceItem(Transform item, int index) => wrap_jso(_blink.BlinkSVGTr
ansformList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item),
index)); | 6841 Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformLi
st.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(item), index); |
| 8505 | 6842 |
| 8506 } | 6843 } |
| 8507 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6844 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8508 // for details. All rights reserved. Use of this source code is governed by a | 6845 // for details. All rights reserved. Use of this source code is governed by a |
| 8509 // BSD-style license that can be found in the LICENSE file. | 6846 // BSD-style license that can be found in the LICENSE file. |
| 8510 | 6847 |
| 8511 // WARNING: Do not edit - generated code. | 6848 // WARNING: Do not edit - generated code. |
| 8512 | 6849 |
| 8513 | 6850 |
| 8514 @DocsEditable() | 6851 @DocsEditable() |
| 8515 @DomName('SVGUnitTypes') | 6852 @DomName('SVGUnitTypes') |
| 8516 @Unstable() | 6853 @Unstable() |
| 8517 class UnitTypes extends NativeFieldWrapperClass2 { | 6854 class UnitTypes extends NativeFieldWrapperClass2 { |
| 8518 // To suppress missing implicit constructor warnings. | 6855 // To suppress missing implicit constructor warnings. |
| 8519 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } | 6856 factory UnitTypes._() { throw new UnsupportedError("Not supported"); } |
| 8520 | 6857 |
| 8521 static UnitTypes internalCreateUnitTypes() { | |
| 8522 return new UnitTypes._internalWrap(); | |
| 8523 } | |
| 8524 | |
| 8525 js.JsObject blink_jsObject; | |
| 8526 | |
| 8527 factory UnitTypes._internalWrap() { | |
| 8528 return new UnitTypes.internal_(); | |
| 8529 } | |
| 8530 | |
| 8531 UnitTypes.internal_() { } | |
| 8532 | |
| 8533 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8534 int get hashCode => unwrap_jso(this).hashCode; | |
| 8535 | |
| 8536 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') | 6858 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') |
| 8537 @DocsEditable() | 6859 @DocsEditable() |
| 8538 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; | 6860 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 8539 | 6861 |
| 8540 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') | 6862 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') |
| 8541 @DocsEditable() | 6863 @DocsEditable() |
| 8542 static const int SVG_UNIT_TYPE_UNKNOWN = 0; | 6864 static const int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 8543 | 6865 |
| 8544 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') | 6866 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') |
| 8545 @DocsEditable() | 6867 @DocsEditable() |
| 8546 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; | 6868 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 8547 | 6869 |
| 8548 } | 6870 } |
| 8549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6871 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8550 // for details. All rights reserved. Use of this source code is governed by a | 6872 // for details. All rights reserved. Use of this source code is governed by a |
| 8551 // BSD-style license that can be found in the LICENSE file. | 6873 // BSD-style license that can be found in the LICENSE file. |
| 8552 | 6874 |
| 8553 // WARNING: Do not edit - generated code. | 6875 // WARNING: Do not edit - generated code. |
| 8554 | 6876 |
| 8555 | 6877 |
| 8556 @DocsEditable() | 6878 @DocsEditable() |
| 8557 @DomName('SVGURIReference') | 6879 @DomName('SVGURIReference') |
| 8558 @Unstable() | 6880 @Unstable() |
| 8559 abstract class UriReference extends NativeFieldWrapperClass2 { | 6881 abstract class UriReference extends NativeFieldWrapperClass2 { |
| 8560 // To suppress missing implicit constructor warnings. | 6882 // To suppress missing implicit constructor warnings. |
| 8561 factory UriReference._() { throw new UnsupportedError("Not supported"); } | 6883 factory UriReference._() { throw new UnsupportedError("Not supported"); } |
| 8562 | 6884 |
| 8563 static UriReference internalCreateUriReference() { | |
| 8564 return new UriReference._internalWrap(); | |
| 8565 } | |
| 8566 | |
| 8567 js.JsObject blink_jsObject; | |
| 8568 | |
| 8569 factory UriReference._internalWrap() { | |
| 8570 return new UriReference.internal_(); | |
| 8571 } | |
| 8572 | |
| 8573 UriReference.internal_() { } | |
| 8574 | |
| 8575 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8576 int get hashCode => unwrap_jso(this).hashCode; | |
| 8577 | |
| 8578 @DomName('SVGURIReference.href') | 6885 @DomName('SVGURIReference.href') |
| 8579 @DocsEditable() | 6886 @DocsEditable() |
| 8580 AnimatedString get href; | 6887 AnimatedString get href; |
| 8581 | 6888 |
| 8582 } | 6889 } |
| 8583 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8584 // for details. All rights reserved. Use of this source code is governed by a | 6891 // for details. All rights reserved. Use of this source code is governed by a |
| 8585 // BSD-style license that can be found in the LICENSE file. | 6892 // BSD-style license that can be found in the LICENSE file. |
| 8586 | 6893 |
| 8587 // WARNING: Do not edit - generated code. | 6894 // WARNING: Do not edit - generated code. |
| 8588 | 6895 |
| 8589 | 6896 |
| 8590 @DocsEditable() | 6897 @DocsEditable() |
| 8591 @DomName('SVGUseElement') | 6898 @DomName('SVGUseElement') |
| 8592 @Unstable() | 6899 @Unstable() |
| 8593 class UseElement extends GraphicsElement implements UriReference { | 6900 class UseElement extends GraphicsElement implements UriReference { |
| 8594 // To suppress missing implicit constructor warnings. | 6901 // To suppress missing implicit constructor warnings. |
| 8595 factory UseElement._() { throw new UnsupportedError("Not supported"); } | 6902 factory UseElement._() { throw new UnsupportedError("Not supported"); } |
| 8596 | 6903 |
| 8597 @DomName('SVGUseElement.SVGUseElement') | 6904 @DomName('SVGUseElement.SVGUseElement') |
| 8598 @DocsEditable() | 6905 @DocsEditable() |
| 8599 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; | 6906 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use")
; |
| 8600 | |
| 8601 | |
| 8602 static UseElement internalCreateUseElement() { | |
| 8603 return new UseElement._internalWrap(); | |
| 8604 } | |
| 8605 | |
| 8606 factory UseElement._internalWrap() { | |
| 8607 return new UseElement.internal_(); | |
| 8608 } | |
| 8609 | |
| 8610 UseElement.internal_() : super.internal_(); | |
| 8611 | |
| 8612 /** | 6907 /** |
| 8613 * Constructor instantiated by the DOM when a custom element has been created. | 6908 * Constructor instantiated by the DOM when a custom element has been created. |
| 8614 * | 6909 * |
| 8615 * This can only be called by subclasses from their created constructor. | 6910 * This can only be called by subclasses from their created constructor. |
| 8616 */ | 6911 */ |
| 8617 UseElement.created() : super.created(); | 6912 UseElement.created() : super.created(); |
| 8618 | 6913 |
| 8619 @DomName('SVGUseElement.height') | 6914 @DomName('SVGUseElement.height') |
| 8620 @DocsEditable() | 6915 @DocsEditable() |
| 8621 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); | 6916 AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.heigh
t_Getter_(unwrap_jso(this))); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 8647 @DocsEditable() | 6942 @DocsEditable() |
| 8648 @DomName('SVGViewElement') | 6943 @DomName('SVGViewElement') |
| 8649 @Unstable() | 6944 @Unstable() |
| 8650 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { | 6945 class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan { |
| 8651 // To suppress missing implicit constructor warnings. | 6946 // To suppress missing implicit constructor warnings. |
| 8652 factory ViewElement._() { throw new UnsupportedError("Not supported"); } | 6947 factory ViewElement._() { throw new UnsupportedError("Not supported"); } |
| 8653 | 6948 |
| 8654 @DomName('SVGViewElement.SVGViewElement') | 6949 @DomName('SVGViewElement.SVGViewElement') |
| 8655 @DocsEditable() | 6950 @DocsEditable() |
| 8656 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); | 6951 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view
"); |
| 8657 | |
| 8658 | |
| 8659 static ViewElement internalCreateViewElement() { | |
| 8660 return new ViewElement._internalWrap(); | |
| 8661 } | |
| 8662 | |
| 8663 factory ViewElement._internalWrap() { | |
| 8664 return new ViewElement.internal_(); | |
| 8665 } | |
| 8666 | |
| 8667 ViewElement.internal_() : super.internal_(); | |
| 8668 | |
| 8669 /** | 6952 /** |
| 8670 * Constructor instantiated by the DOM when a custom element has been created. | 6953 * Constructor instantiated by the DOM when a custom element has been created. |
| 8671 * | 6954 * |
| 8672 * This can only be called by subclasses from their created constructor. | 6955 * This can only be called by subclasses from their created constructor. |
| 8673 */ | 6956 */ |
| 8674 ViewElement.created() : super.created(); | 6957 ViewElement.created() : super.created(); |
| 8675 | 6958 |
| 8676 @DomName('SVGViewElement.viewTarget') | 6959 @DomName('SVGViewElement.viewTarget') |
| 8677 @DocsEditable() | 6960 @DocsEditable() |
| 8678 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); | 6961 StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.view
Target_Getter_(unwrap_jso(this))); |
| 8679 | 6962 |
| 8680 @DomName('SVGViewElement.preserveAspectRatio') | 6963 @DomName('SVGViewElement.preserveAspectRatio') |
| 8681 @DocsEditable() | 6964 @DocsEditable() |
| 8682 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); | 6965 AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSV
GViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this))); |
| 8683 | 6966 |
| 8684 @DomName('SVGViewElement.viewBox') | 6967 @DomName('SVGViewElement.viewBox') |
| 8685 @DocsEditable() | 6968 @DocsEditable() |
| 8686 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB
ox_Getter_(unwrap_jso(this))); | 6969 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewB
ox_Getter_(unwrap_jso(this))); |
| 8687 | 6970 |
| 8688 @DomName('SVGViewElement.zoomAndPan') | 6971 @DomName('SVGViewElement.zoomAndPan') |
| 8689 @DocsEditable() | 6972 @DocsEditable() |
| 8690 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u
nwrap_jso(this)); | 6973 int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(u
nwrap_jso(this)); |
| 8691 | 6974 |
| 8692 @DomName('SVGViewElement.zoomAndPan') | 6975 @DomName('SVGViewElement.zoomAndPan') |
| 8693 @DocsEditable() | 6976 @DocsEditable() |
| 8694 set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Se
tter_(unwrap_jso(this), value); | 6977 void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndP
an_Setter_(unwrap_jso(this), value); |
| 8695 | 6978 |
| 8696 } | 6979 } |
| 8697 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8698 // for details. All rights reserved. Use of this source code is governed by a | 6981 // for details. All rights reserved. Use of this source code is governed by a |
| 8699 // BSD-style license that can be found in the LICENSE file. | 6982 // BSD-style license that can be found in the LICENSE file. |
| 8700 | 6983 |
| 8701 // WARNING: Do not edit - generated code. | 6984 // WARNING: Do not edit - generated code. |
| 8702 | 6985 |
| 8703 | 6986 |
| 8704 @DocsEditable() | 6987 @DocsEditable() |
| 8705 @DomName('SVGViewSpec') | 6988 @DomName('SVGViewSpec') |
| 8706 @Unstable() | 6989 @Unstable() |
| 8707 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { | 6990 class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
Pan { |
| 8708 // To suppress missing implicit constructor warnings. | 6991 // To suppress missing implicit constructor warnings. |
| 8709 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } | 6992 factory ViewSpec._() { throw new UnsupportedError("Not supported"); } |
| 8710 | 6993 |
| 8711 static ViewSpec internalCreateViewSpec() { | |
| 8712 return new ViewSpec._internalWrap(); | |
| 8713 } | |
| 8714 | |
| 8715 js.JsObject blink_jsObject; | |
| 8716 | |
| 8717 factory ViewSpec._internalWrap() { | |
| 8718 return new ViewSpec.internal_(); | |
| 8719 } | |
| 8720 | |
| 8721 ViewSpec.internal_() { } | |
| 8722 | |
| 8723 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8724 int get hashCode => unwrap_jso(this).hashCode; | |
| 8725 | |
| 8726 @DomName('SVGViewSpec.preserveAspectRatioString') | 6994 @DomName('SVGViewSpec.preserveAspectRatioString') |
| 8727 @DocsEditable() | 6995 @DocsEditable() |
| 8728 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); | 6996 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese
rveAspectRatioString_Getter_(unwrap_jso(this)); |
| 8729 | 6997 |
| 8730 @DomName('SVGViewSpec.transform') | 6998 @DomName('SVGViewSpec.transform') |
| 8731 @DocsEditable() | 6999 @DocsEditable() |
| 8732 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); | 7000 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans
form_Getter_(unwrap_jso(this))); |
| 8733 | 7001 |
| 8734 @DomName('SVGViewSpec.transformString') | 7002 @DomName('SVGViewSpec.transformString') |
| 8735 @DocsEditable() | 7003 @DocsEditable() |
| (...skipping 22 matching lines...) Expand all Loading... |
| 8758 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_
Getter_(unwrap_jso(this))); | 7026 AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_
Getter_(unwrap_jso(this))); |
| 8759 | 7027 |
| 8760 @DomName('SVGViewSpec.zoomAndPan') | 7028 @DomName('SVGViewSpec.zoomAndPan') |
| 8761 @DocsEditable() | 7029 @DocsEditable() |
| 8762 @Experimental() // nonstandard | 7030 @Experimental() // nonstandard |
| 8763 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr
ap_jso(this)); | 7031 int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwr
ap_jso(this)); |
| 8764 | 7032 |
| 8765 @DomName('SVGViewSpec.zoomAndPan') | 7033 @DomName('SVGViewSpec.zoomAndPan') |
| 8766 @DocsEditable() | 7034 @DocsEditable() |
| 8767 @Experimental() // nonstandard | 7035 @Experimental() // nonstandard |
| 8768 set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Sette
r_(unwrap_jso(this), value); | 7036 void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_
Setter_(unwrap_jso(this), value); |
| 8769 | 7037 |
| 8770 } | 7038 } |
| 8771 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8772 // for details. All rights reserved. Use of this source code is governed by a | 7040 // for details. All rights reserved. Use of this source code is governed by a |
| 8773 // BSD-style license that can be found in the LICENSE file. | 7041 // BSD-style license that can be found in the LICENSE file. |
| 8774 | 7042 |
| 8775 // WARNING: Do not edit - generated code. | 7043 // WARNING: Do not edit - generated code. |
| 8776 | 7044 |
| 8777 | 7045 |
| 8778 @DocsEditable() | 7046 @DocsEditable() |
| 8779 @DomName('SVGZoomAndPan') | 7047 @DomName('SVGZoomAndPan') |
| 8780 @Unstable() | 7048 @Unstable() |
| 8781 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { | 7049 abstract class ZoomAndPan extends NativeFieldWrapperClass2 { |
| 8782 // To suppress missing implicit constructor warnings. | 7050 // To suppress missing implicit constructor warnings. |
| 8783 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } | 7051 factory ZoomAndPan._() { throw new UnsupportedError("Not supported"); } |
| 8784 | 7052 |
| 8785 static ZoomAndPan internalCreateZoomAndPan() { | |
| 8786 return new ZoomAndPan._internalWrap(); | |
| 8787 } | |
| 8788 | |
| 8789 js.JsObject blink_jsObject; | |
| 8790 | |
| 8791 factory ZoomAndPan._internalWrap() { | |
| 8792 return new ZoomAndPan.internal_(); | |
| 8793 } | |
| 8794 | |
| 8795 ZoomAndPan.internal_() { } | |
| 8796 | |
| 8797 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | |
| 8798 int get hashCode => unwrap_jso(this).hashCode; | |
| 8799 | |
| 8800 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') | 7053 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') |
| 8801 @DocsEditable() | 7054 @DocsEditable() |
| 8802 static const int SVG_ZOOMANDPAN_DISABLE = 1; | 7055 static const int SVG_ZOOMANDPAN_DISABLE = 1; |
| 8803 | 7056 |
| 8804 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') | 7057 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') |
| 8805 @DocsEditable() | 7058 @DocsEditable() |
| 8806 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; | 7059 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 8807 | 7060 |
| 8808 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') | 7061 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') |
| 8809 @DocsEditable() | 7062 @DocsEditable() |
| 8810 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; | 7063 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; |
| 8811 | 7064 |
| 8812 @DomName('SVGZoomAndPan.zoomAndPan') | 7065 @DomName('SVGZoomAndPan.zoomAndPan') |
| 8813 @DocsEditable() | 7066 @DocsEditable() |
| 8814 int get zoomAndPan; | 7067 int get zoomAndPan; |
| 8815 | 7068 |
| 8816 @DomName('SVGZoomAndPan.zoomAndPan') | 7069 @DomName('SVGZoomAndPan.zoomAndPan') |
| 8817 @DocsEditable() | 7070 @DocsEditable() |
| 8818 set zoomAndPan(int value); | 7071 void set zoomAndPan(int value); |
| 8819 | 7072 |
| 8820 } | 7073 } |
| 8821 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7074 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8822 // for details. All rights reserved. Use of this source code is governed by a | 7075 // for details. All rights reserved. Use of this source code is governed by a |
| 8823 // BSD-style license that can be found in the LICENSE file. | 7076 // BSD-style license that can be found in the LICENSE file. |
| 8824 | 7077 |
| 8825 // WARNING: Do not edit - generated code. | 7078 // WARNING: Do not edit - generated code. |
| 8826 | 7079 |
| 8827 | 7080 |
| 8828 @DocsEditable() | 7081 @DocsEditable() |
| 8829 @DomName('SVGZoomEvent') | 7082 @DomName('SVGZoomEvent') |
| 8830 @Unstable() | 7083 @Unstable() |
| 8831 class ZoomEvent extends UIEvent { | 7084 class ZoomEvent extends UIEvent { |
| 8832 // To suppress missing implicit constructor warnings. | 7085 // To suppress missing implicit constructor warnings. |
| 8833 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } | 7086 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } |
| 8834 | 7087 |
| 8835 | |
| 8836 static ZoomEvent internalCreateZoomEvent() { | |
| 8837 return new ZoomEvent._internalWrap(); | |
| 8838 } | |
| 8839 | |
| 8840 factory ZoomEvent._internalWrap() { | |
| 8841 return new ZoomEvent.internal_(); | |
| 8842 } | |
| 8843 | |
| 8844 ZoomEvent.internal_() : super.internal_(); | |
| 8845 | |
| 8846 | |
| 8847 @DomName('SVGZoomEvent.newScale') | 7088 @DomName('SVGZoomEvent.newScale') |
| 8848 @DocsEditable() | 7089 @DocsEditable() |
| 8849 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_
jso(this)); | 7090 double get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwr
ap_jso(this)); |
| 8850 | 7091 |
| 8851 @DomName('SVGZoomEvent.newTranslate') | 7092 @DomName('SVGZoomEvent.newTranslate') |
| 8852 @DocsEditable() | 7093 @DocsEditable() |
| 8853 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); | 7094 Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTransl
ate_Getter_(unwrap_jso(this))); |
| 8854 | 7095 |
| 8855 @DomName('SVGZoomEvent.previousScale') | 7096 @DomName('SVGZoomEvent.previousScale') |
| 8856 @DocsEditable() | 7097 @DocsEditable() |
| 8857 num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Gette
r_(unwrap_jso(this)); | 7098 double get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Ge
tter_(unwrap_jso(this)); |
| 8858 | 7099 |
| 8859 @DomName('SVGZoomEvent.previousTranslate') | 7100 @DomName('SVGZoomEvent.previousTranslate') |
| 8860 @DocsEditable() | 7101 @DocsEditable() |
| 8861 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev
iousTranslate_Getter_(unwrap_jso(this))); | 7102 Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.prev
iousTranslate_Getter_(unwrap_jso(this))); |
| 8862 | 7103 |
| 8863 @DomName('SVGZoomEvent.zoomRectScreen') | 7104 @DomName('SVGZoomEvent.zoomRectScreen') |
| 8864 @DocsEditable() | 7105 @DocsEditable() |
| 8865 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect
Screen_Getter_(unwrap_jso(this))); | 7106 Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRect
Screen_Getter_(unwrap_jso(this))); |
| 8866 | 7107 |
| 8867 } | 7108 } |
| 8868 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7109 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8869 // for details. All rights reserved. Use of this source code is governed by a | 7110 // for details. All rights reserved. Use of this source code is governed by a |
| 8870 // BSD-style license that can be found in the LICENSE file. | 7111 // BSD-style license that can be found in the LICENSE file. |
| 8871 | 7112 |
| 8872 // WARNING: Do not edit - generated code. | 7113 // WARNING: Do not edit - generated code. |
| 8873 | 7114 |
| 8874 | 7115 |
| 8875 @DocsEditable() | 7116 @DocsEditable() |
| 8876 @DomName('SVGGradientElement') | 7117 @DomName('SVGGradientElement') |
| 8877 @Unstable() | 7118 @Unstable() |
| 8878 class _GradientElement extends SvgElement implements UriReference { | 7119 class _GradientElement extends SvgElement implements UriReference { |
| 8879 // To suppress missing implicit constructor warnings. | 7120 // To suppress missing implicit constructor warnings. |
| 8880 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } | 7121 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } |
| 8881 | |
| 8882 | |
| 8883 static _GradientElement internalCreate_GradientElement() { | |
| 8884 return new _GradientElement._internalWrap(); | |
| 8885 } | |
| 8886 | |
| 8887 factory _GradientElement._internalWrap() { | |
| 8888 return new _GradientElement.internal_(); | |
| 8889 } | |
| 8890 | |
| 8891 _GradientElement.internal_() : super.internal_(); | |
| 8892 | |
| 8893 /** | 7122 /** |
| 8894 * Constructor instantiated by the DOM when a custom element has been created. | 7123 * Constructor instantiated by the DOM when a custom element has been created. |
| 8895 * | 7124 * |
| 8896 * This can only be called by subclasses from their created constructor. | 7125 * This can only be called by subclasses from their created constructor. |
| 8897 */ | 7126 */ |
| 8898 _GradientElement.created() : super.created(); | 7127 _GradientElement.created() : super.created(); |
| 8899 | 7128 |
| 8900 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') | 7129 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
| 8901 @DocsEditable() | 7130 @DocsEditable() |
| 8902 static const int SVG_SPREADMETHOD_PAD = 1; | 7131 static const int SVG_SPREADMETHOD_PAD = 1; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 8933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8934 // for details. All rights reserved. Use of this source code is governed by a | 7163 // for details. All rights reserved. Use of this source code is governed by a |
| 8935 // BSD-style license that can be found in the LICENSE file. | 7164 // BSD-style license that can be found in the LICENSE file. |
| 8936 | 7165 |
| 8937 // WARNING: Do not edit - generated code. | 7166 // WARNING: Do not edit - generated code. |
| 8938 | 7167 |
| 8939 | 7168 |
| 8940 @DocsEditable() | 7169 @DocsEditable() |
| 8941 @DomName('SVGAltGlyphDefElement') | 7170 @DomName('SVGAltGlyphDefElement') |
| 8942 @Unstable() | 7171 @Unstable() |
| 8943 class _SVGAltGlyphDefElement extends SvgElement { | 7172 abstract class _SVGAltGlyphDefElement extends SvgElement { |
| 8944 // To suppress missing implicit constructor warnings. | 7173 // To suppress missing implicit constructor warnings. |
| 8945 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } | 7174 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported
"); } |
| 8946 | |
| 8947 | |
| 8948 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { | |
| 8949 return new _SVGAltGlyphDefElement._internalWrap(); | |
| 8950 } | |
| 8951 | |
| 8952 factory _SVGAltGlyphDefElement._internalWrap() { | |
| 8953 return new _SVGAltGlyphDefElement.internal_(); | |
| 8954 } | |
| 8955 | |
| 8956 _SVGAltGlyphDefElement.internal_() : super.internal_(); | |
| 8957 | |
| 8958 /** | 7175 /** |
| 8959 * Constructor instantiated by the DOM when a custom element has been created. | 7176 * Constructor instantiated by the DOM when a custom element has been created. |
| 8960 * | 7177 * |
| 8961 * This can only be called by subclasses from their created constructor. | 7178 * This can only be called by subclasses from their created constructor. |
| 8962 */ | 7179 */ |
| 8963 _SVGAltGlyphDefElement.created() : super.created(); | 7180 _SVGAltGlyphDefElement.created() : super.created(); |
| 8964 | 7181 |
| 8965 } | 7182 } |
| 8966 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8967 // for details. All rights reserved. Use of this source code is governed by a | 7184 // for details. All rights reserved. Use of this source code is governed by a |
| 8968 // BSD-style license that can be found in the LICENSE file. | 7185 // BSD-style license that can be found in the LICENSE file. |
| 8969 | 7186 |
| 8970 // WARNING: Do not edit - generated code. | 7187 // WARNING: Do not edit - generated code. |
| 8971 | 7188 |
| 8972 | 7189 |
| 8973 @DocsEditable() | 7190 @DocsEditable() |
| 8974 @DomName('SVGAltGlyphItemElement') | 7191 @DomName('SVGAltGlyphItemElement') |
| 8975 @Unstable() | 7192 @Unstable() |
| 8976 class _SVGAltGlyphItemElement extends SvgElement { | 7193 abstract class _SVGAltGlyphItemElement extends SvgElement { |
| 8977 // To suppress missing implicit constructor warnings. | 7194 // To suppress missing implicit constructor warnings. |
| 8978 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } | 7195 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 8979 | |
| 8980 | |
| 8981 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { | |
| 8982 return new _SVGAltGlyphItemElement._internalWrap(); | |
| 8983 } | |
| 8984 | |
| 8985 factory _SVGAltGlyphItemElement._internalWrap() { | |
| 8986 return new _SVGAltGlyphItemElement.internal_(); | |
| 8987 } | |
| 8988 | |
| 8989 _SVGAltGlyphItemElement.internal_() : super.internal_(); | |
| 8990 | |
| 8991 /** | 7196 /** |
| 8992 * Constructor instantiated by the DOM when a custom element has been created. | 7197 * Constructor instantiated by the DOM when a custom element has been created. |
| 8993 * | 7198 * |
| 8994 * This can only be called by subclasses from their created constructor. | 7199 * This can only be called by subclasses from their created constructor. |
| 8995 */ | 7200 */ |
| 8996 _SVGAltGlyphItemElement.created() : super.created(); | 7201 _SVGAltGlyphItemElement.created() : super.created(); |
| 8997 | 7202 |
| 8998 } | 7203 } |
| 8999 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9000 // for details. All rights reserved. Use of this source code is governed by a | 7205 // for details. All rights reserved. Use of this source code is governed by a |
| 9001 // BSD-style license that can be found in the LICENSE file. | 7206 // BSD-style license that can be found in the LICENSE file. |
| 9002 | 7207 |
| 9003 // WARNING: Do not edit - generated code. | 7208 // WARNING: Do not edit - generated code. |
| 9004 | 7209 |
| 9005 | 7210 |
| 9006 @DocsEditable() | 7211 @DocsEditable() |
| 9007 @DomName('SVGComponentTransferFunctionElement') | 7212 @DomName('SVGComponentTransferFunctionElement') |
| 9008 @Unstable() | 7213 @Unstable() |
| 9009 class _SVGComponentTransferFunctionElement extends SvgElement { | 7214 abstract class _SVGComponentTransferFunctionElement extends SvgElement { |
| 9010 // To suppress missing implicit constructor warnings. | 7215 // To suppress missing implicit constructor warnings. |
| 9011 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } | 7216 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError(
"Not supported"); } |
| 9012 | |
| 9013 | |
| 9014 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe
rFunctionElement() { | |
| 9015 return new _SVGComponentTransferFunctionElement._internalWrap(); | |
| 9016 } | |
| 9017 | |
| 9018 factory _SVGComponentTransferFunctionElement._internalWrap() { | |
| 9019 return new _SVGComponentTransferFunctionElement.internal_(); | |
| 9020 } | |
| 9021 | |
| 9022 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); | |
| 9023 | |
| 9024 /** | 7217 /** |
| 9025 * Constructor instantiated by the DOM when a custom element has been created. | 7218 * Constructor instantiated by the DOM when a custom element has been created. |
| 9026 * | 7219 * |
| 9027 * This can only be called by subclasses from their created constructor. | 7220 * This can only be called by subclasses from their created constructor. |
| 9028 */ | 7221 */ |
| 9029 _SVGComponentTransferFunctionElement.created() : super.created(); | 7222 _SVGComponentTransferFunctionElement.created() : super.created(); |
| 9030 | 7223 |
| 9031 } | 7224 } |
| 9032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9033 // for details. All rights reserved. Use of this source code is governed by a | 7226 // for details. All rights reserved. Use of this source code is governed by a |
| 9034 // BSD-style license that can be found in the LICENSE file. | 7227 // BSD-style license that can be found in the LICENSE file. |
| 9035 | 7228 |
| 9036 // WARNING: Do not edit - generated code. | 7229 // WARNING: Do not edit - generated code. |
| 9037 | 7230 |
| 9038 | 7231 |
| 9039 @DocsEditable() | 7232 @DocsEditable() |
| 9040 @DomName('SVGCursorElement') | 7233 @DomName('SVGCursorElement') |
| 9041 @Unstable() | 7234 @Unstable() |
| 9042 class _SVGCursorElement extends SvgElement implements UriReference, Tests { | 7235 abstract class _SVGCursorElement extends SvgElement implements UriReference, Tes
ts { |
| 9043 // To suppress missing implicit constructor warnings. | 7236 // To suppress missing implicit constructor warnings. |
| 9044 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } | 7237 factory _SVGCursorElement._() { throw new UnsupportedError("Not supported"); } |
| 9045 | 7238 |
| 9046 @DomName('SVGCursorElement.SVGCursorElement') | 7239 @DomName('SVGCursorElement.SVGCursorElement') |
| 9047 @DocsEditable() | 7240 @DocsEditable() |
| 9048 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); | 7241 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag
("cursor"); |
| 9049 | |
| 9050 | |
| 9051 static _SVGCursorElement internalCreate_SVGCursorElement() { | |
| 9052 return new _SVGCursorElement._internalWrap(); | |
| 9053 } | |
| 9054 | |
| 9055 factory _SVGCursorElement._internalWrap() { | |
| 9056 return new _SVGCursorElement.internal_(); | |
| 9057 } | |
| 9058 | |
| 9059 _SVGCursorElement.internal_() : super.internal_(); | |
| 9060 | |
| 9061 /** | 7242 /** |
| 9062 * Constructor instantiated by the DOM when a custom element has been created. | 7243 * Constructor instantiated by the DOM when a custom element has been created. |
| 9063 * | 7244 * |
| 9064 * This can only be called by subclasses from their created constructor. | 7245 * This can only be called by subclasses from their created constructor. |
| 9065 */ | 7246 */ |
| 9066 _SVGCursorElement.created() : super.created(); | 7247 _SVGCursorElement.created() : super.created(); |
| 9067 | 7248 |
| 9068 /// Checks if this type is supported on the current platform. | 7249 /// Checks if this type is supported on the current platform. |
| 9069 static bool get supported => true; | 7250 static bool get supported => true; |
| 9070 | 7251 |
| 9071 } | 7252 } |
| 9072 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9073 // for details. All rights reserved. Use of this source code is governed by a | 7254 // for details. All rights reserved. Use of this source code is governed by a |
| 9074 // BSD-style license that can be found in the LICENSE file. | 7255 // BSD-style license that can be found in the LICENSE file. |
| 9075 | 7256 |
| 9076 // WARNING: Do not edit - generated code. | 7257 // WARNING: Do not edit - generated code. |
| 9077 | 7258 |
| 9078 | 7259 |
| 9079 @DocsEditable() | 7260 @DocsEditable() |
| 9080 @DomName('SVGFEDropShadowElement') | 7261 @DomName('SVGFEDropShadowElement') |
| 9081 @Experimental() // nonstandard | 7262 @Experimental() // nonstandard |
| 9082 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand
ardAttributes { | 7263 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi
tiveStandardAttributes { |
| 9083 // To suppress missing implicit constructor warnings. | 7264 // To suppress missing implicit constructor warnings. |
| 9084 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } | 7265 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9085 | |
| 9086 | |
| 9087 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { | |
| 9088 return new _SVGFEDropShadowElement._internalWrap(); | |
| 9089 } | |
| 9090 | |
| 9091 factory _SVGFEDropShadowElement._internalWrap() { | |
| 9092 return new _SVGFEDropShadowElement.internal_(); | |
| 9093 } | |
| 9094 | |
| 9095 _SVGFEDropShadowElement.internal_() : super.internal_(); | |
| 9096 | |
| 9097 /** | 7266 /** |
| 9098 * Constructor instantiated by the DOM when a custom element has been created. | 7267 * Constructor instantiated by the DOM when a custom element has been created. |
| 9099 * | 7268 * |
| 9100 * This can only be called by subclasses from their created constructor. | 7269 * This can only be called by subclasses from their created constructor. |
| 9101 */ | 7270 */ |
| 9102 _SVGFEDropShadowElement.created() : super.created(); | 7271 _SVGFEDropShadowElement.created() : super.created(); |
| 9103 | 7272 |
| 9104 } | 7273 } |
| 9105 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9106 // for details. All rights reserved. Use of this source code is governed by a | 7275 // for details. All rights reserved. Use of this source code is governed by a |
| 9107 // BSD-style license that can be found in the LICENSE file. | 7276 // BSD-style license that can be found in the LICENSE file. |
| 9108 | 7277 |
| 9109 // WARNING: Do not edit - generated code. | 7278 // WARNING: Do not edit - generated code. |
| 9110 | 7279 |
| 9111 | 7280 |
| 9112 @DocsEditable() | 7281 @DocsEditable() |
| 9113 @DomName('SVGFontElement') | 7282 @DomName('SVGFontElement') |
| 9114 @Unstable() | 7283 @Unstable() |
| 9115 class _SVGFontElement extends SvgElement { | 7284 abstract class _SVGFontElement extends SvgElement { |
| 9116 // To suppress missing implicit constructor warnings. | 7285 // To suppress missing implicit constructor warnings. |
| 9117 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } | 7286 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } |
| 9118 | |
| 9119 | |
| 9120 static _SVGFontElement internalCreate_SVGFontElement() { | |
| 9121 return new _SVGFontElement._internalWrap(); | |
| 9122 } | |
| 9123 | |
| 9124 factory _SVGFontElement._internalWrap() { | |
| 9125 return new _SVGFontElement.internal_(); | |
| 9126 } | |
| 9127 | |
| 9128 _SVGFontElement.internal_() : super.internal_(); | |
| 9129 | |
| 9130 /** | 7287 /** |
| 9131 * Constructor instantiated by the DOM when a custom element has been created. | 7288 * Constructor instantiated by the DOM when a custom element has been created. |
| 9132 * | 7289 * |
| 9133 * This can only be called by subclasses from their created constructor. | 7290 * This can only be called by subclasses from their created constructor. |
| 9134 */ | 7291 */ |
| 9135 _SVGFontElement.created() : super.created(); | 7292 _SVGFontElement.created() : super.created(); |
| 9136 | 7293 |
| 9137 } | 7294 } |
| 9138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7295 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9139 // for details. All rights reserved. Use of this source code is governed by a | 7296 // for details. All rights reserved. Use of this source code is governed by a |
| 9140 // BSD-style license that can be found in the LICENSE file. | 7297 // BSD-style license that can be found in the LICENSE file. |
| 9141 | 7298 |
| 9142 // WARNING: Do not edit - generated code. | 7299 // WARNING: Do not edit - generated code. |
| 9143 | 7300 |
| 9144 | 7301 |
| 9145 @DocsEditable() | 7302 @DocsEditable() |
| 9146 @DomName('SVGFontFaceElement') | 7303 @DomName('SVGFontFaceElement') |
| 9147 @Unstable() | 7304 @Unstable() |
| 9148 class _SVGFontFaceElement extends SvgElement { | 7305 abstract class _SVGFontFaceElement extends SvgElement { |
| 9149 // To suppress missing implicit constructor warnings. | 7306 // To suppress missing implicit constructor warnings. |
| 9150 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} | 7307 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported");
} |
| 9151 | |
| 9152 | |
| 9153 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { | |
| 9154 return new _SVGFontFaceElement._internalWrap(); | |
| 9155 } | |
| 9156 | |
| 9157 factory _SVGFontFaceElement._internalWrap() { | |
| 9158 return new _SVGFontFaceElement.internal_(); | |
| 9159 } | |
| 9160 | |
| 9161 _SVGFontFaceElement.internal_() : super.internal_(); | |
| 9162 | |
| 9163 /** | 7308 /** |
| 9164 * Constructor instantiated by the DOM when a custom element has been created. | 7309 * Constructor instantiated by the DOM when a custom element has been created. |
| 9165 * | 7310 * |
| 9166 * This can only be called by subclasses from their created constructor. | 7311 * This can only be called by subclasses from their created constructor. |
| 9167 */ | 7312 */ |
| 9168 _SVGFontFaceElement.created() : super.created(); | 7313 _SVGFontFaceElement.created() : super.created(); |
| 9169 | 7314 |
| 9170 } | 7315 } |
| 9171 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9172 // for details. All rights reserved. Use of this source code is governed by a | 7317 // for details. All rights reserved. Use of this source code is governed by a |
| 9173 // BSD-style license that can be found in the LICENSE file. | 7318 // BSD-style license that can be found in the LICENSE file. |
| 9174 | 7319 |
| 9175 // WARNING: Do not edit - generated code. | 7320 // WARNING: Do not edit - generated code. |
| 9176 | 7321 |
| 9177 | 7322 |
| 9178 @DocsEditable() | 7323 @DocsEditable() |
| 9179 @DomName('SVGFontFaceFormatElement') | 7324 @DomName('SVGFontFaceFormatElement') |
| 9180 @Unstable() | 7325 @Unstable() |
| 9181 class _SVGFontFaceFormatElement extends SvgElement { | 7326 abstract class _SVGFontFaceFormatElement extends SvgElement { |
| 9182 // To suppress missing implicit constructor warnings. | 7327 // To suppress missing implicit constructor warnings. |
| 9183 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } | 7328 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor
ted"); } |
| 9184 | |
| 9185 | |
| 9186 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { | |
| 9187 return new _SVGFontFaceFormatElement._internalWrap(); | |
| 9188 } | |
| 9189 | |
| 9190 factory _SVGFontFaceFormatElement._internalWrap() { | |
| 9191 return new _SVGFontFaceFormatElement.internal_(); | |
| 9192 } | |
| 9193 | |
| 9194 _SVGFontFaceFormatElement.internal_() : super.internal_(); | |
| 9195 | |
| 9196 /** | 7329 /** |
| 9197 * Constructor instantiated by the DOM when a custom element has been created. | 7330 * Constructor instantiated by the DOM when a custom element has been created. |
| 9198 * | 7331 * |
| 9199 * This can only be called by subclasses from their created constructor. | 7332 * This can only be called by subclasses from their created constructor. |
| 9200 */ | 7333 */ |
| 9201 _SVGFontFaceFormatElement.created() : super.created(); | 7334 _SVGFontFaceFormatElement.created() : super.created(); |
| 9202 | 7335 |
| 9203 } | 7336 } |
| 9204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9205 // for details. All rights reserved. Use of this source code is governed by a | 7338 // for details. All rights reserved. Use of this source code is governed by a |
| 9206 // BSD-style license that can be found in the LICENSE file. | 7339 // BSD-style license that can be found in the LICENSE file. |
| 9207 | 7340 |
| 9208 // WARNING: Do not edit - generated code. | 7341 // WARNING: Do not edit - generated code. |
| 9209 | 7342 |
| 9210 | 7343 |
| 9211 @DocsEditable() | 7344 @DocsEditable() |
| 9212 @DomName('SVGFontFaceNameElement') | 7345 @DomName('SVGFontFaceNameElement') |
| 9213 @Unstable() | 7346 @Unstable() |
| 9214 class _SVGFontFaceNameElement extends SvgElement { | 7347 abstract class _SVGFontFaceNameElement extends SvgElement { |
| 9215 // To suppress missing implicit constructor warnings. | 7348 // To suppress missing implicit constructor warnings. |
| 9216 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } | 7349 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9217 | |
| 9218 | |
| 9219 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { | |
| 9220 return new _SVGFontFaceNameElement._internalWrap(); | |
| 9221 } | |
| 9222 | |
| 9223 factory _SVGFontFaceNameElement._internalWrap() { | |
| 9224 return new _SVGFontFaceNameElement.internal_(); | |
| 9225 } | |
| 9226 | |
| 9227 _SVGFontFaceNameElement.internal_() : super.internal_(); | |
| 9228 | |
| 9229 /** | 7350 /** |
| 9230 * Constructor instantiated by the DOM when a custom element has been created. | 7351 * Constructor instantiated by the DOM when a custom element has been created. |
| 9231 * | 7352 * |
| 9232 * This can only be called by subclasses from their created constructor. | 7353 * This can only be called by subclasses from their created constructor. |
| 9233 */ | 7354 */ |
| 9234 _SVGFontFaceNameElement.created() : super.created(); | 7355 _SVGFontFaceNameElement.created() : super.created(); |
| 9235 | 7356 |
| 9236 } | 7357 } |
| 9237 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7358 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9238 // for details. All rights reserved. Use of this source code is governed by a | 7359 // for details. All rights reserved. Use of this source code is governed by a |
| 9239 // BSD-style license that can be found in the LICENSE file. | 7360 // BSD-style license that can be found in the LICENSE file. |
| 9240 | 7361 |
| 9241 // WARNING: Do not edit - generated code. | 7362 // WARNING: Do not edit - generated code. |
| 9242 | 7363 |
| 9243 | 7364 |
| 9244 @DocsEditable() | 7365 @DocsEditable() |
| 9245 @DomName('SVGFontFaceSrcElement') | 7366 @DomName('SVGFontFaceSrcElement') |
| 9246 @Unstable() | 7367 @Unstable() |
| 9247 class _SVGFontFaceSrcElement extends SvgElement { | 7368 abstract class _SVGFontFaceSrcElement extends SvgElement { |
| 9248 // To suppress missing implicit constructor warnings. | 7369 // To suppress missing implicit constructor warnings. |
| 9249 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } | 7370 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported
"); } |
| 9250 | |
| 9251 | |
| 9252 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { | |
| 9253 return new _SVGFontFaceSrcElement._internalWrap(); | |
| 9254 } | |
| 9255 | |
| 9256 factory _SVGFontFaceSrcElement._internalWrap() { | |
| 9257 return new _SVGFontFaceSrcElement.internal_(); | |
| 9258 } | |
| 9259 | |
| 9260 _SVGFontFaceSrcElement.internal_() : super.internal_(); | |
| 9261 | |
| 9262 /** | 7371 /** |
| 9263 * Constructor instantiated by the DOM when a custom element has been created. | 7372 * Constructor instantiated by the DOM when a custom element has been created. |
| 9264 * | 7373 * |
| 9265 * This can only be called by subclasses from their created constructor. | 7374 * This can only be called by subclasses from their created constructor. |
| 9266 */ | 7375 */ |
| 9267 _SVGFontFaceSrcElement.created() : super.created(); | 7376 _SVGFontFaceSrcElement.created() : super.created(); |
| 9268 | 7377 |
| 9269 } | 7378 } |
| 9270 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7379 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9271 // for details. All rights reserved. Use of this source code is governed by a | 7380 // for details. All rights reserved. Use of this source code is governed by a |
| 9272 // BSD-style license that can be found in the LICENSE file. | 7381 // BSD-style license that can be found in the LICENSE file. |
| 9273 | 7382 |
| 9274 // WARNING: Do not edit - generated code. | 7383 // WARNING: Do not edit - generated code. |
| 9275 | 7384 |
| 9276 | 7385 |
| 9277 @DocsEditable() | 7386 @DocsEditable() |
| 9278 @DomName('SVGFontFaceUriElement') | 7387 @DomName('SVGFontFaceUriElement') |
| 9279 @Unstable() | 7388 @Unstable() |
| 9280 class _SVGFontFaceUriElement extends SvgElement { | 7389 abstract class _SVGFontFaceUriElement extends SvgElement { |
| 9281 // To suppress missing implicit constructor warnings. | 7390 // To suppress missing implicit constructor warnings. |
| 9282 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } | 7391 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported
"); } |
| 9283 | |
| 9284 | |
| 9285 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { | |
| 9286 return new _SVGFontFaceUriElement._internalWrap(); | |
| 9287 } | |
| 9288 | |
| 9289 factory _SVGFontFaceUriElement._internalWrap() { | |
| 9290 return new _SVGFontFaceUriElement.internal_(); | |
| 9291 } | |
| 9292 | |
| 9293 _SVGFontFaceUriElement.internal_() : super.internal_(); | |
| 9294 | |
| 9295 /** | 7392 /** |
| 9296 * Constructor instantiated by the DOM when a custom element has been created. | 7393 * Constructor instantiated by the DOM when a custom element has been created. |
| 9297 * | 7394 * |
| 9298 * This can only be called by subclasses from their created constructor. | 7395 * This can only be called by subclasses from their created constructor. |
| 9299 */ | 7396 */ |
| 9300 _SVGFontFaceUriElement.created() : super.created(); | 7397 _SVGFontFaceUriElement.created() : super.created(); |
| 9301 | 7398 |
| 9302 } | 7399 } |
| 9303 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9304 // for details. All rights reserved. Use of this source code is governed by a | 7401 // for details. All rights reserved. Use of this source code is governed by a |
| 9305 // BSD-style license that can be found in the LICENSE file. | 7402 // BSD-style license that can be found in the LICENSE file. |
| 9306 | 7403 |
| 9307 // WARNING: Do not edit - generated code. | 7404 // WARNING: Do not edit - generated code. |
| 9308 | 7405 |
| 9309 | 7406 |
| 9310 @DocsEditable() | 7407 @DocsEditable() |
| 9311 @DomName('SVGGlyphElement') | 7408 @DomName('SVGGlyphElement') |
| 9312 @Unstable() | 7409 @Unstable() |
| 9313 class _SVGGlyphElement extends SvgElement { | 7410 abstract class _SVGGlyphElement extends SvgElement { |
| 9314 // To suppress missing implicit constructor warnings. | 7411 // To suppress missing implicit constructor warnings. |
| 9315 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } | 7412 factory _SVGGlyphElement._() { throw new UnsupportedError("Not supported"); } |
| 9316 | 7413 |
| 9317 @DomName('SVGGlyphElement.SVGGlyphElement') | 7414 @DomName('SVGGlyphElement.SVGGlyphElement') |
| 9318 @DocsEditable() | 7415 @DocsEditable() |
| 9319 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); | 7416 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"glyph"); |
| 9320 | |
| 9321 | |
| 9322 static _SVGGlyphElement internalCreate_SVGGlyphElement() { | |
| 9323 return new _SVGGlyphElement._internalWrap(); | |
| 9324 } | |
| 9325 | |
| 9326 factory _SVGGlyphElement._internalWrap() { | |
| 9327 return new _SVGGlyphElement.internal_(); | |
| 9328 } | |
| 9329 | |
| 9330 _SVGGlyphElement.internal_() : super.internal_(); | |
| 9331 | |
| 9332 /** | 7417 /** |
| 9333 * Constructor instantiated by the DOM when a custom element has been created. | 7418 * Constructor instantiated by the DOM when a custom element has been created. |
| 9334 * | 7419 * |
| 9335 * This can only be called by subclasses from their created constructor. | 7420 * This can only be called by subclasses from their created constructor. |
| 9336 */ | 7421 */ |
| 9337 _SVGGlyphElement.created() : super.created(); | 7422 _SVGGlyphElement.created() : super.created(); |
| 9338 | 7423 |
| 9339 } | 7424 } |
| 9340 // 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 |
| 9341 // 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 |
| 9342 // BSD-style license that can be found in the LICENSE file. | 7427 // BSD-style license that can be found in the LICENSE file. |
| 9343 | 7428 |
| 9344 // WARNING: Do not edit - generated code. | 7429 // WARNING: Do not edit - generated code. |
| 9345 | 7430 |
| 9346 | 7431 |
| 9347 @DocsEditable() | 7432 @DocsEditable() |
| 9348 @DomName('SVGGlyphRefElement') | 7433 @DomName('SVGGlyphRefElement') |
| 9349 @Unstable() | 7434 @Unstable() |
| 9350 class _SVGGlyphRefElement extends SvgElement implements UriReference { | 7435 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { |
| 9351 // To suppress missing implicit constructor warnings. | 7436 // To suppress missing implicit constructor warnings. |
| 9352 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} | 7437 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported");
} |
| 9353 | |
| 9354 | |
| 9355 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { | |
| 9356 return new _SVGGlyphRefElement._internalWrap(); | |
| 9357 } | |
| 9358 | |
| 9359 factory _SVGGlyphRefElement._internalWrap() { | |
| 9360 return new _SVGGlyphRefElement.internal_(); | |
| 9361 } | |
| 9362 | |
| 9363 _SVGGlyphRefElement.internal_() : super.internal_(); | |
| 9364 | |
| 9365 /** | 7438 /** |
| 9366 * Constructor instantiated by the DOM when a custom element has been created. | 7439 * Constructor instantiated by the DOM when a custom element has been created. |
| 9367 * | 7440 * |
| 9368 * This can only be called by subclasses from their created constructor. | 7441 * This can only be called by subclasses from their created constructor. |
| 9369 */ | 7442 */ |
| 9370 _SVGGlyphRefElement.created() : super.created(); | 7443 _SVGGlyphRefElement.created() : super.created(); |
| 9371 | 7444 |
| 9372 } | 7445 } |
| 9373 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9374 // for details. All rights reserved. Use of this source code is governed by a | 7447 // for details. All rights reserved. Use of this source code is governed by a |
| 9375 // BSD-style license that can be found in the LICENSE file. | 7448 // BSD-style license that can be found in the LICENSE file. |
| 9376 | 7449 |
| 9377 // WARNING: Do not edit - generated code. | 7450 // WARNING: Do not edit - generated code. |
| 9378 | 7451 |
| 9379 | 7452 |
| 9380 @DocsEditable() | 7453 @DocsEditable() |
| 9381 @DomName('SVGHKernElement') | 7454 @DomName('SVGHKernElement') |
| 9382 @Unstable() | 7455 @Unstable() |
| 9383 class _SVGHKernElement extends SvgElement { | 7456 abstract class _SVGHKernElement extends SvgElement { |
| 9384 // To suppress missing implicit constructor warnings. | 7457 // To suppress missing implicit constructor warnings. |
| 9385 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } | 7458 factory _SVGHKernElement._() { throw new UnsupportedError("Not supported"); } |
| 9386 | 7459 |
| 9387 @DomName('SVGHKernElement.SVGHKernElement') | 7460 @DomName('SVGHKernElement.SVGHKernElement') |
| 9388 @DocsEditable() | 7461 @DocsEditable() |
| 9389 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); | 7462 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"hkern"); |
| 9390 | |
| 9391 | |
| 9392 static _SVGHKernElement internalCreate_SVGHKernElement() { | |
| 9393 return new _SVGHKernElement._internalWrap(); | |
| 9394 } | |
| 9395 | |
| 9396 factory _SVGHKernElement._internalWrap() { | |
| 9397 return new _SVGHKernElement.internal_(); | |
| 9398 } | |
| 9399 | |
| 9400 _SVGHKernElement.internal_() : super.internal_(); | |
| 9401 | |
| 9402 /** | 7463 /** |
| 9403 * Constructor instantiated by the DOM when a custom element has been created. | 7464 * Constructor instantiated by the DOM when a custom element has been created. |
| 9404 * | 7465 * |
| 9405 * This can only be called by subclasses from their created constructor. | 7466 * This can only be called by subclasses from their created constructor. |
| 9406 */ | 7467 */ |
| 9407 _SVGHKernElement.created() : super.created(); | 7468 _SVGHKernElement.created() : super.created(); |
| 9408 | 7469 |
| 9409 } | 7470 } |
| 9410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9411 // for details. All rights reserved. Use of this source code is governed by a | 7472 // for details. All rights reserved. Use of this source code is governed by a |
| 9412 // BSD-style license that can be found in the LICENSE file. | 7473 // BSD-style license that can be found in the LICENSE file. |
| 9413 | 7474 |
| 9414 // WARNING: Do not edit - generated code. | 7475 // WARNING: Do not edit - generated code. |
| 9415 | 7476 |
| 9416 | 7477 |
| 9417 @DocsEditable() | 7478 @DocsEditable() |
| 9418 @DomName('SVGMPathElement') | 7479 @DomName('SVGMPathElement') |
| 9419 class _SVGMPathElement extends SvgElement implements UriReference { | 7480 abstract class _SVGMPathElement extends SvgElement implements UriReference { |
| 9420 // To suppress missing implicit constructor warnings. | 7481 // To suppress missing implicit constructor warnings. |
| 9421 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } | 7482 factory _SVGMPathElement._() { throw new UnsupportedError("Not supported"); } |
| 9422 | 7483 |
| 9423 @DomName('SVGMPathElement.SVGMPathElement') | 7484 @DomName('SVGMPathElement.SVGMPathElement') |
| 9424 @DocsEditable() | 7485 @DocsEditable() |
| 9425 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); | 7486 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"mpath"); |
| 9426 | |
| 9427 | |
| 9428 static _SVGMPathElement internalCreate_SVGMPathElement() { | |
| 9429 return new _SVGMPathElement._internalWrap(); | |
| 9430 } | |
| 9431 | |
| 9432 factory _SVGMPathElement._internalWrap() { | |
| 9433 return new _SVGMPathElement.internal_(); | |
| 9434 } | |
| 9435 | |
| 9436 _SVGMPathElement.internal_() : super.internal_(); | |
| 9437 | |
| 9438 /** | 7487 /** |
| 9439 * Constructor instantiated by the DOM when a custom element has been created. | 7488 * Constructor instantiated by the DOM when a custom element has been created. |
| 9440 * | 7489 * |
| 9441 * This can only be called by subclasses from their created constructor. | 7490 * This can only be called by subclasses from their created constructor. |
| 9442 */ | 7491 */ |
| 9443 _SVGMPathElement.created() : super.created(); | 7492 _SVGMPathElement.created() : super.created(); |
| 9444 | 7493 |
| 9445 } | 7494 } |
| 9446 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9447 // for details. All rights reserved. Use of this source code is governed by a | 7496 // for details. All rights reserved. Use of this source code is governed by a |
| 9448 // BSD-style license that can be found in the LICENSE file. | 7497 // BSD-style license that can be found in the LICENSE file. |
| 9449 | 7498 |
| 9450 // WARNING: Do not edit - generated code. | 7499 // WARNING: Do not edit - generated code. |
| 9451 | 7500 |
| 9452 | 7501 |
| 9453 @DocsEditable() | 7502 @DocsEditable() |
| 9454 @DomName('SVGMissingGlyphElement') | 7503 @DomName('SVGMissingGlyphElement') |
| 9455 @Unstable() | 7504 @Unstable() |
| 9456 class _SVGMissingGlyphElement extends SvgElement { | 7505 abstract class _SVGMissingGlyphElement extends SvgElement { |
| 9457 // To suppress missing implicit constructor warnings. | 7506 // To suppress missing implicit constructor warnings. |
| 9458 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } | 7507 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte
d"); } |
| 9459 | |
| 9460 | |
| 9461 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { | |
| 9462 return new _SVGMissingGlyphElement._internalWrap(); | |
| 9463 } | |
| 9464 | |
| 9465 factory _SVGMissingGlyphElement._internalWrap() { | |
| 9466 return new _SVGMissingGlyphElement.internal_(); | |
| 9467 } | |
| 9468 | |
| 9469 _SVGMissingGlyphElement.internal_() : super.internal_(); | |
| 9470 | |
| 9471 /** | 7508 /** |
| 9472 * Constructor instantiated by the DOM when a custom element has been created. | 7509 * Constructor instantiated by the DOM when a custom element has been created. |
| 9473 * | 7510 * |
| 9474 * This can only be called by subclasses from their created constructor. | 7511 * This can only be called by subclasses from their created constructor. |
| 9475 */ | 7512 */ |
| 9476 _SVGMissingGlyphElement.created() : super.created(); | 7513 _SVGMissingGlyphElement.created() : super.created(); |
| 9477 | 7514 |
| 9478 } | 7515 } |
| 9479 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9480 // for details. All rights reserved. Use of this source code is governed by a | 7517 // for details. All rights reserved. Use of this source code is governed by a |
| 9481 // BSD-style license that can be found in the LICENSE file. | 7518 // BSD-style license that can be found in the LICENSE file. |
| 9482 | 7519 |
| 9483 // WARNING: Do not edit - generated code. | 7520 // WARNING: Do not edit - generated code. |
| 9484 | 7521 |
| 9485 | 7522 |
| 9486 @DocsEditable() | 7523 @DocsEditable() |
| 9487 @DomName('SVGVKernElement') | 7524 @DomName('SVGVKernElement') |
| 9488 @Unstable() | 7525 @Unstable() |
| 9489 class _SVGVKernElement extends SvgElement { | 7526 abstract class _SVGVKernElement extends SvgElement { |
| 9490 // To suppress missing implicit constructor warnings. | 7527 // To suppress missing implicit constructor warnings. |
| 9491 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } | 7528 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } |
| 9492 | 7529 |
| 9493 @DomName('SVGVKernElement.SVGVKernElement') | 7530 @DomName('SVGVKernElement.SVGVKernElement') |
| 9494 @DocsEditable() | 7531 @DocsEditable() |
| 9495 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7532 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 9496 | |
| 9497 | |
| 9498 static _SVGVKernElement internalCreate_SVGVKernElement() { | |
| 9499 return new _SVGVKernElement._internalWrap(); | |
| 9500 } | |
| 9501 | |
| 9502 factory _SVGVKernElement._internalWrap() { | |
| 9503 return new _SVGVKernElement.internal_(); | |
| 9504 } | |
| 9505 | |
| 9506 _SVGVKernElement.internal_() : super.internal_(); | |
| 9507 | |
| 9508 /** | 7533 /** |
| 9509 * Constructor instantiated by the DOM when a custom element has been created. | 7534 * Constructor instantiated by the DOM when a custom element has been created. |
| 9510 * | 7535 * |
| 9511 * This can only be called by subclasses from their created constructor. | 7536 * This can only be called by subclasses from their created constructor. |
| 9512 */ | 7537 */ |
| 9513 _SVGVKernElement.created() : super.created(); | 7538 _SVGVKernElement.created() : super.created(); |
| 9514 | 7539 |
| 9515 } | 7540 } |
| OLD | NEW |