blob: 785f717b76660ea6fd401ee0061dc5cbbcc26669 [file] [log] [blame]
library dart.dom.svg;
import 'dart:async';
import 'dart:collection';
import 'dart:_collection-dev' hide deprecated;
import 'dart:html';
import 'dart:html_common';
import 'dart:nativewrappers';
// DO NOT EDIT
// Auto-generated dart:svg library.
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class _SvgElementFactoryProvider {
static SvgElement createSvgElement_tag(String tag) {
final Element temp =
document.createElementNS("http://www.w3.org/2000/svg", tag);
return temp;
}
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAElement')
@Unstable()
class AElement extends GraphicsElement implements UriReference, ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory AElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAElement.SVGAElement')
@DocsEditable()
factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AElement.created() : super.created();
@DomName('SVGAElement.target')
@DocsEditable()
AnimatedString get target native "SVGAElement_target_Getter";
@DomName('SVGAElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGAElement_externalResourcesRequired_Getter";
@DomName('SVGAElement.href')
@DocsEditable()
AnimatedString get href native "SVGAElement_href_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAltGlyphElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class AltGlyphElement extends TextPositioningElement implements UriReference {
// To suppress missing implicit constructor warnings.
factory AltGlyphElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAltGlyphElement.SVGAltGlyphElement')
@DocsEditable()
factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("altGlyph");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AltGlyphElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGAltGlyphElement.format')
@DocsEditable()
String get format native "SVGAltGlyphElement_format_Getter";
@DomName('SVGAltGlyphElement.format')
@DocsEditable()
void set format(String value) native "SVGAltGlyphElement_format_Setter";
@DomName('SVGAltGlyphElement.glyphRef')
@DocsEditable()
String get glyphRef native "SVGAltGlyphElement_glyphRef_Getter";
@DomName('SVGAltGlyphElement.glyphRef')
@DocsEditable()
void set glyphRef(String value) native "SVGAltGlyphElement_glyphRef_Setter";
@DomName('SVGAltGlyphElement.href')
@DocsEditable()
AnimatedString get href native "SVGAltGlyphElement_href_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAngle')
@Unstable()
class Angle extends NativeFieldWrapperClass1 {
@DomName('SVGAngle.SVG_ANGLETYPE_DEG')
@DocsEditable()
static const int SVG_ANGLETYPE_DEG = 2;
@DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
@DocsEditable()
static const int SVG_ANGLETYPE_GRAD = 4;
@DomName('SVGAngle.SVG_ANGLETYPE_RAD')
@DocsEditable()
static const int SVG_ANGLETYPE_RAD = 3;
@DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
@DocsEditable()
static const int SVG_ANGLETYPE_UNKNOWN = 0;
@DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
@DocsEditable()
static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
@DomName('SVGAngle.unitType')
@DocsEditable()
int get unitType native "SVGAngle_unitType_Getter";
@DomName('SVGAngle.value')
@DocsEditable()
num get value native "SVGAngle_value_Getter";
@DomName('SVGAngle.value')
@DocsEditable()
void set value(num value) native "SVGAngle_value_Setter";
@DomName('SVGAngle.valueAsString')
@DocsEditable()
String get valueAsString native "SVGAngle_valueAsString_Getter";
@DomName('SVGAngle.valueAsString')
@DocsEditable()
void set valueAsString(String value) native "SVGAngle_valueAsString_Setter";
@DomName('SVGAngle.valueInSpecifiedUnits')
@DocsEditable()
num get valueInSpecifiedUnits native "SVGAngle_valueInSpecifiedUnits_Getter";
@DomName('SVGAngle.valueInSpecifiedUnits')
@DocsEditable()
void set valueInSpecifiedUnits(num value) native "SVGAngle_valueInSpecifiedUnits_Setter";
@DomName('SVGAngle.convertToSpecifiedUnits')
@DocsEditable()
void convertToSpecifiedUnits(int unitType) native "SVGAngle_convertToSpecifiedUnits_Callback";
@DomName('SVGAngle.newValueSpecifiedUnits')
@DocsEditable()
void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native "SVGAngle_newValueSpecifiedUnits_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimateElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class AnimateElement extends AnimationElement {
// To suppress missing implicit constructor warnings.
factory AnimateElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAnimateElement.SVGAnimateElement')
@DocsEditable()
factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("animate");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AnimateElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimateMotionElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class AnimateMotionElement extends AnimationElement {
// To suppress missing implicit constructor warnings.
factory AnimateMotionElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
@DocsEditable()
factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_tag("animateMotion");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AnimateMotionElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimateTransformElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class AnimateTransformElement extends AnimationElement {
// To suppress missing implicit constructor warnings.
factory AnimateTransformElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
@DocsEditable()
factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgElement_tag("animateTransform");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AnimateTransformElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedAngle')
@Unstable()
class AnimatedAngle extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedAngle.animVal')
@DocsEditable()
Angle get animVal native "SVGAnimatedAngle_animVal_Getter";
@DomName('SVGAnimatedAngle.baseVal')
@DocsEditable()
Angle get baseVal native "SVGAnimatedAngle_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedBoolean')
@Unstable()
class AnimatedBoolean extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedBoolean.animVal')
@DocsEditable()
bool get animVal native "SVGAnimatedBoolean_animVal_Getter";
@DomName('SVGAnimatedBoolean.baseVal')
@DocsEditable()
bool get baseVal native "SVGAnimatedBoolean_baseVal_Getter";
@DomName('SVGAnimatedBoolean.baseVal')
@DocsEditable()
void set baseVal(bool value) native "SVGAnimatedBoolean_baseVal_Setter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedEnumeration')
@Unstable()
class AnimatedEnumeration extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedEnumeration.animVal')
@DocsEditable()
int get animVal native "SVGAnimatedEnumeration_animVal_Getter";
@DomName('SVGAnimatedEnumeration.baseVal')
@DocsEditable()
int get baseVal native "SVGAnimatedEnumeration_baseVal_Getter";
@DomName('SVGAnimatedEnumeration.baseVal')
@DocsEditable()
void set baseVal(int value) native "SVGAnimatedEnumeration_baseVal_Setter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedInteger')
@Unstable()
class AnimatedInteger extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedInteger.animVal')
@DocsEditable()
int get animVal native "SVGAnimatedInteger_animVal_Getter";
@DomName('SVGAnimatedInteger.baseVal')
@DocsEditable()
int get baseVal native "SVGAnimatedInteger_baseVal_Getter";
@DomName('SVGAnimatedInteger.baseVal')
@DocsEditable()
void set baseVal(int value) native "SVGAnimatedInteger_baseVal_Setter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedLength')
@Unstable()
class AnimatedLength extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedLength.animVal')
@DocsEditable()
Length get animVal native "SVGAnimatedLength_animVal_Getter";
@DomName('SVGAnimatedLength.baseVal')
@DocsEditable()
Length get baseVal native "SVGAnimatedLength_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedLengthList')
@Unstable()
class AnimatedLengthList extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedLengthList.animVal')
@DocsEditable()
LengthList get animVal native "SVGAnimatedLengthList_animVal_Getter";
@DomName('SVGAnimatedLengthList.baseVal')
@DocsEditable()
LengthList get baseVal native "SVGAnimatedLengthList_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedNumber')
@Unstable()
class AnimatedNumber extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedNumber.animVal')
@DocsEditable()
double get animVal native "SVGAnimatedNumber_animVal_Getter";
@DomName('SVGAnimatedNumber.baseVal')
@DocsEditable()
num get baseVal native "SVGAnimatedNumber_baseVal_Getter";
@DomName('SVGAnimatedNumber.baseVal')
@DocsEditable()
void set baseVal(num value) native "SVGAnimatedNumber_baseVal_Setter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedNumberList')
@Unstable()
class AnimatedNumberList extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedNumberList.animVal')
@DocsEditable()
NumberList get animVal native "SVGAnimatedNumberList_animVal_Getter";
@DomName('SVGAnimatedNumberList.baseVal')
@DocsEditable()
NumberList get baseVal native "SVGAnimatedNumberList_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedPreserveAspectRatio')
@Unstable()
class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedPreserveAspectRatio.animVal')
@DocsEditable()
PreserveAspectRatio get animVal native "SVGAnimatedPreserveAspectRatio_animVal_Getter";
@DomName('SVGAnimatedPreserveAspectRatio.baseVal')
@DocsEditable()
PreserveAspectRatio get baseVal native "SVGAnimatedPreserveAspectRatio_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedRect')
@Unstable()
class AnimatedRect extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedRect.animVal')
@DocsEditable()
Rect get animVal native "SVGAnimatedRect_animVal_Getter";
@DomName('SVGAnimatedRect.baseVal')
@DocsEditable()
Rect get baseVal native "SVGAnimatedRect_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedString')
@Unstable()
class AnimatedString extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedString.animVal')
@DocsEditable()
String get animVal native "SVGAnimatedString_animVal_Getter";
@DomName('SVGAnimatedString.baseVal')
@DocsEditable()
String get baseVal native "SVGAnimatedString_baseVal_Getter";
@DomName('SVGAnimatedString.baseVal')
@DocsEditable()
void set baseVal(String value) native "SVGAnimatedString_baseVal_Setter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimatedTransformList')
@Unstable()
class AnimatedTransformList extends NativeFieldWrapperClass1 {
@DomName('SVGAnimatedTransformList.animVal')
@DocsEditable()
TransformList get animVal native "SVGAnimatedTransformList_animVal_Getter";
@DomName('SVGAnimatedTransformList.baseVal')
@DocsEditable()
TransformList get baseVal native "SVGAnimatedTransformList_baseVal_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGAnimationElement')
@Unstable()
class AnimationElement extends SvgElement implements ExternalResourcesRequired, Tests {
// To suppress missing implicit constructor warnings.
factory AnimationElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGAnimationElement.SVGAnimationElement')
@DocsEditable()
factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag("animation");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
AnimationElement.created() : super.created();
@DomName('SVGAnimationElement.targetElement')
@DocsEditable()
SvgElement get targetElement native "SVGAnimationElement_targetElement_Getter";
@DomName('SVGAnimationElement.beginElement')
@DocsEditable()
void beginElement() native "SVGAnimationElement_beginElement_Callback";
@DomName('SVGAnimationElement.beginElementAt')
@DocsEditable()
void beginElementAt(num offset) native "SVGAnimationElement_beginElementAt_Callback";
@DomName('SVGAnimationElement.endElement')
@DocsEditable()
void endElement() native "SVGAnimationElement_endElement_Callback";
@DomName('SVGAnimationElement.endElementAt')
@DocsEditable()
void endElementAt(num offset) native "SVGAnimationElement_endElementAt_Callback";
@DomName('SVGAnimationElement.getCurrentTime')
@DocsEditable()
double getCurrentTime() native "SVGAnimationElement_getCurrentTime_Callback";
@DomName('SVGAnimationElement.getSimpleDuration')
@DocsEditable()
double getSimpleDuration() native "SVGAnimationElement_getSimpleDuration_Callback";
@DomName('SVGAnimationElement.getStartTime')
@DocsEditable()
double getStartTime() native "SVGAnimationElement_getStartTime_Callback";
@DomName('SVGAnimationElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGAnimationElement_externalResourcesRequired_Getter";
@DomName('SVGAnimationElement.requiredExtensions')
@DocsEditable()
StringList get requiredExtensions native "SVGAnimationElement_requiredExtensions_Getter";
@DomName('SVGAnimationElement.requiredFeatures')
@DocsEditable()
StringList get requiredFeatures native "SVGAnimationElement_requiredFeatures_Getter";
@DomName('SVGAnimationElement.systemLanguage')
@DocsEditable()
StringList get systemLanguage native "SVGAnimationElement_systemLanguage_Getter";
@DomName('SVGAnimationElement.hasExtension')
@DocsEditable()
bool hasExtension(String extension) native "SVGAnimationElement_hasExtension_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGCircleElement')
@Unstable()
class CircleElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory CircleElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGCircleElement.SVGCircleElement')
@DocsEditable()
factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("circle");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
CircleElement.created() : super.created();
@DomName('SVGCircleElement.cx')
@DocsEditable()
AnimatedLength get cx native "SVGCircleElement_cx_Getter";
@DomName('SVGCircleElement.cy')
@DocsEditable()
AnimatedLength get cy native "SVGCircleElement_cy_Getter";
@DomName('SVGCircleElement.r')
@DocsEditable()
AnimatedLength get r native "SVGCircleElement_r_Getter";
@DomName('SVGCircleElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGCircleElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGClipPathElement')
@Unstable()
class ClipPathElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory ClipPathElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGClipPathElement.SVGClipPathElement')
@DocsEditable()
factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("clipPath");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
ClipPathElement.created() : super.created();
@DomName('SVGClipPathElement.clipPathUnits')
@DocsEditable()
AnimatedEnumeration get clipPathUnits native "SVGClipPathElement_clipPathUnits_Getter";
@DomName('SVGClipPathElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGClipPathElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGDefsElement')
@Unstable()
class DefsElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory DefsElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGDefsElement.SVGDefsElement')
@DocsEditable()
factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
DefsElement.created() : super.created();
@DomName('SVGDefsElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGDefsElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGDescElement')
@Unstable()
class DescElement extends SvgElement {
// To suppress missing implicit constructor warnings.
factory DescElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGDescElement.SVGDescElement')
@DocsEditable()
factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
DescElement.created() : super.created();
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGElementInstance')
@Unstable()
class ElementInstance extends EventTarget {
// To suppress missing implicit constructor warnings.
factory ElementInstance._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGElementInstance.abortEvent')
@DocsEditable()
static const EventStreamProvider<Event> abortEvent = const EventStreamProvider<Event>('abort');
@DomName('SVGElementInstance.beforecopyEvent')
@DocsEditable()
static const EventStreamProvider<Event> beforeCopyEvent = const EventStreamProvider<Event>('beforecopy');
@DomName('SVGElementInstance.beforecutEvent')
@DocsEditable()
static const EventStreamProvider<Event> beforeCutEvent = const EventStreamProvider<Event>('beforecut');
@DomName('SVGElementInstance.beforepasteEvent')
@DocsEditable()
static const EventStreamProvider<Event> beforePasteEvent = const EventStreamProvider<Event>('beforepaste');
@DomName('SVGElementInstance.blurEvent')
@DocsEditable()
static const EventStreamProvider<Event> blurEvent = const EventStreamProvider<Event>('blur');
@DomName('SVGElementInstance.changeEvent')
@DocsEditable()
static const EventStreamProvider<Event> changeEvent = const EventStreamProvider<Event>('change');
@DomName('SVGElementInstance.clickEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> clickEvent = const EventStreamProvider<MouseEvent>('click');
@DomName('SVGElementInstance.contextmenuEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> contextMenuEvent = const EventStreamProvider<MouseEvent>('contextmenu');
@DomName('SVGElementInstance.copyEvent')
@DocsEditable()
static const EventStreamProvider<Event> copyEvent = const EventStreamProvider<Event>('copy');
@DomName('SVGElementInstance.cutEvent')
@DocsEditable()
static const EventStreamProvider<Event> cutEvent = const EventStreamProvider<Event>('cut');
@DomName('SVGElementInstance.dblclickEvent')
@DocsEditable()
static const EventStreamProvider<Event> doubleClickEvent = const EventStreamProvider<Event>('dblclick');
@DomName('SVGElementInstance.dragEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragEvent = const EventStreamProvider<MouseEvent>('drag');
@DomName('SVGElementInstance.dragendEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragEndEvent = const EventStreamProvider<MouseEvent>('dragend');
@DomName('SVGElementInstance.dragenterEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragEnterEvent = const EventStreamProvider<MouseEvent>('dragenter');
@DomName('SVGElementInstance.dragleaveEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragLeaveEvent = const EventStreamProvider<MouseEvent>('dragleave');
@DomName('SVGElementInstance.dragoverEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragOverEvent = const EventStreamProvider<MouseEvent>('dragover');
@DomName('SVGElementInstance.dragstartEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dragStartEvent = const EventStreamProvider<MouseEvent>('dragstart');
@DomName('SVGElementInstance.dropEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> dropEvent = const EventStreamProvider<MouseEvent>('drop');
@DomName('SVGElementInstance.errorEvent')
@DocsEditable()
static const EventStreamProvider<Event> errorEvent = const EventStreamProvider<Event>('error');
@DomName('SVGElementInstance.focusEvent')
@DocsEditable()
static const EventStreamProvider<Event> focusEvent = const EventStreamProvider<Event>('focus');
@DomName('SVGElementInstance.inputEvent')
@DocsEditable()
static const EventStreamProvider<Event> inputEvent = const EventStreamProvider<Event>('input');
@DomName('SVGElementInstance.keydownEvent')
@DocsEditable()
static const EventStreamProvider<KeyboardEvent> keyDownEvent = const EventStreamProvider<KeyboardEvent>('keydown');
@DomName('SVGElementInstance.keypressEvent')
@DocsEditable()
static const EventStreamProvider<KeyboardEvent> keyPressEvent = const EventStreamProvider<KeyboardEvent>('keypress');
@DomName('SVGElementInstance.keyupEvent')
@DocsEditable()
static const EventStreamProvider<KeyboardEvent> keyUpEvent = const EventStreamProvider<KeyboardEvent>('keyup');
@DomName('SVGElementInstance.loadEvent')
@DocsEditable()
static const EventStreamProvider<Event> loadEvent = const EventStreamProvider<Event>('load');
@DomName('SVGElementInstance.mousedownEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> mouseDownEvent = const EventStreamProvider<MouseEvent>('mousedown');
@DomName('SVGElementInstance.mouseenterEvent')
@DocsEditable()
@Experimental() // untriaged
static const EventStreamProvider<MouseEvent> mouseEnterEvent = const EventStreamProvider<MouseEvent>('mouseenter');
@DomName('SVGElementInstance.mouseleaveEvent')
@DocsEditable()
@Experimental() // untriaged
static const EventStreamProvider<MouseEvent> mouseLeaveEvent = const EventStreamProvider<MouseEvent>('mouseleave');
@DomName('SVGElementInstance.mousemoveEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> mouseMoveEvent = const EventStreamProvider<MouseEvent>('mousemove');
@DomName('SVGElementInstance.mouseoutEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> mouseOutEvent = const EventStreamProvider<MouseEvent>('mouseout');
@DomName('SVGElementInstance.mouseoverEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> mouseOverEvent = const EventStreamProvider<MouseEvent>('mouseover');
@DomName('SVGElementInstance.mouseupEvent')
@DocsEditable()
static const EventStreamProvider<MouseEvent> mouseUpEvent = const EventStreamProvider<MouseEvent>('mouseup');
@DomName('SVGElementInstance.mousewheelEvent')
@DocsEditable()
static const EventStreamProvider<WheelEvent> mouseWheelEvent = const EventStreamProvider<WheelEvent>('mousewheel');
@DomName('SVGElementInstance.pasteEvent')
@DocsEditable()
static const EventStreamProvider<Event> pasteEvent = const EventStreamProvider<Event>('paste');
@DomName('SVGElementInstance.resetEvent')
@DocsEditable()
static const EventStreamProvider<Event> resetEvent = const EventStreamProvider<Event>('reset');
@DomName('SVGElementInstance.resizeEvent')
@DocsEditable()
static const EventStreamProvider<Event> resizeEvent = const EventStreamProvider<Event>('resize');
@DomName('SVGElementInstance.scrollEvent')
@DocsEditable()
static const EventStreamProvider<Event> scrollEvent = const EventStreamProvider<Event>('scroll');
@DomName('SVGElementInstance.searchEvent')
@DocsEditable()
// http://www.w3.org/TR/html-markup/input.search.html
@Experimental()
static const EventStreamProvider<Event> searchEvent = const EventStreamProvider<Event>('search');
@DomName('SVGElementInstance.selectEvent')
@DocsEditable()
static const EventStreamProvider<Event> selectEvent = const EventStreamProvider<Event>('select');
@DomName('SVGElementInstance.selectstartEvent')
@DocsEditable()
static const EventStreamProvider<Event> selectStartEvent = const EventStreamProvider<Event>('selectstart');
@DomName('SVGElementInstance.submitEvent')
@DocsEditable()
static const EventStreamProvider<Event> submitEvent = const EventStreamProvider<Event>('submit');
@DomName('SVGElementInstance.unloadEvent')
@DocsEditable()
static const EventStreamProvider<Event> unloadEvent = const EventStreamProvider<Event>('unload');
@DomName('SVGElementInstance.childNodes')
@DocsEditable()
List<ElementInstance> get childNodes native "SVGElementInstance_childNodes_Getter";
@DomName('SVGElementInstance.correspondingElement')
@DocsEditable()
SvgElement get correspondingElement native "SVGElementInstance_correspondingElement_Getter";
@DomName('SVGElementInstance.correspondingUseElement')
@DocsEditable()
UseElement get correspondingUseElement native "SVGElementInstance_correspondingUseElement_Getter";
@DomName('SVGElementInstance.firstChild')
@DocsEditable()
ElementInstance get firstChild native "SVGElementInstance_firstChild_Getter";
@DomName('SVGElementInstance.lastChild')
@DocsEditable()
ElementInstance get lastChild native "SVGElementInstance_lastChild_Getter";
@DomName('SVGElementInstance.nextSibling')
@DocsEditable()
ElementInstance get nextSibling native "SVGElementInstance_nextSibling_Getter";
@DomName('SVGElementInstance.parentNode')
@DocsEditable()
ElementInstance get parentNode native "SVGElementInstance_parentNode_Getter";
@DomName('SVGElementInstance.previousSibling')
@DocsEditable()
ElementInstance get previousSibling native "SVGElementInstance_previousSibling_Getter";
@DomName('SVGElementInstance.addEventListener')
@DocsEditable()
@Experimental() // untriaged
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "SVGElementInstance_addEventListener_Callback";
@DomName('SVGElementInstance.dispatchEvent')
@DocsEditable()
@Experimental() // untriaged
bool dispatchEvent(Event event) native "SVGElementInstance_dispatchEvent_Callback";
@DomName('SVGElementInstance.removeEventListener')
@DocsEditable()
@Experimental() // untriaged
void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native "SVGElementInstance_removeEventListener_Callback";
@DomName('SVGElementInstance.onabort')
@DocsEditable()
Stream<Event> get onAbort => abortEvent.forTarget(this);
@DomName('SVGElementInstance.onbeforecopy')
@DocsEditable()
Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this);
@DomName('SVGElementInstance.onbeforecut')
@DocsEditable()
Stream<Event> get onBeforeCut => beforeCutEvent.forTarget(this);
@DomName('SVGElementInstance.onbeforepaste')
@DocsEditable()
Stream<Event> get onBeforePaste => beforePasteEvent.forTarget(this);
@DomName('SVGElementInstance.onblur')
@DocsEditable()
Stream<Event> get onBlur => blurEvent.forTarget(this);
@DomName('SVGElementInstance.onchange')
@DocsEditable()
Stream<Event> get onChange => changeEvent.forTarget(this);
@DomName('SVGElementInstance.onclick')
@DocsEditable()
Stream<MouseEvent> get onClick => clickEvent.forTarget(this);
@DomName('SVGElementInstance.oncontextmenu')
@DocsEditable()
Stream<MouseEvent> get onContextMenu => contextMenuEvent.forTarget(this);
@DomName('SVGElementInstance.oncopy')
@DocsEditable()
Stream<Event> get onCopy => copyEvent.forTarget(this);
@DomName('SVGElementInstance.oncut')
@DocsEditable()
Stream<Event> get onCut => cutEvent.forTarget(this);
@DomName('SVGElementInstance.ondblclick')
@DocsEditable()
Stream<Event> get onDoubleClick => doubleClickEvent.forTarget(this);
@DomName('SVGElementInstance.ondrag')
@DocsEditable()
Stream<MouseEvent> get onDrag => dragEvent.forTarget(this);
@DomName('SVGElementInstance.ondragend')
@DocsEditable()
Stream<MouseEvent> get onDragEnd => dragEndEvent.forTarget(this);
@DomName('SVGElementInstance.ondragenter')
@DocsEditable()
Stream<MouseEvent> get onDragEnter => dragEnterEvent.forTarget(this);
@DomName('SVGElementInstance.ondragleave')
@DocsEditable()
Stream<MouseEvent> get onDragLeave => dragLeaveEvent.forTarget(this);
@DomName('SVGElementInstance.ondragover')
@DocsEditable()
Stream<MouseEvent> get onDragOver => dragOverEvent.forTarget(this);
@DomName('SVGElementInstance.ondragstart')
@DocsEditable()
Stream<MouseEvent> get onDragStart => dragStartEvent.forTarget(this);
@DomName('SVGElementInstance.ondrop')
@DocsEditable()
Stream<MouseEvent> get onDrop => dropEvent.forTarget(this);
@DomName('SVGElementInstance.onerror')
@DocsEditable()
Stream<Event> get onError => errorEvent.forTarget(this);
@DomName('SVGElementInstance.onfocus')
@DocsEditable()
Stream<Event> get onFocus => focusEvent.forTarget(this);
@DomName('SVGElementInstance.oninput')
@DocsEditable()
Stream<Event> get onInput => inputEvent.forTarget(this);
@DomName('SVGElementInstance.onkeydown')
@DocsEditable()
Stream<KeyboardEvent> get onKeyDown => keyDownEvent.forTarget(this);
@DomName('SVGElementInstance.onkeypress')
@DocsEditable()
Stream<KeyboardEvent> get onKeyPress => keyPressEvent.forTarget(this);
@DomName('SVGElementInstance.onkeyup')
@DocsEditable()
Stream<KeyboardEvent> get onKeyUp => keyUpEvent.forTarget(this);
@DomName('SVGElementInstance.onload')
@DocsEditable()
Stream<Event> get onLoad => loadEvent.forTarget(this);
@DomName('SVGElementInstance.onmousedown')
@DocsEditable()
Stream<MouseEvent> get onMouseDown => mouseDownEvent.forTarget(this);
@DomName('SVGElementInstance.onmouseenter')
@DocsEditable()
@Experimental() // untriaged
Stream<MouseEvent> get onMouseEnter => mouseEnterEvent.forTarget(this);
@DomName('SVGElementInstance.onmouseleave')
@DocsEditable()
@Experimental() // untriaged
Stream<MouseEvent> get onMouseLeave => mouseLeaveEvent.forTarget(this);
@DomName('SVGElementInstance.onmousemove')
@DocsEditable()
Stream<MouseEvent> get onMouseMove => mouseMoveEvent.forTarget(this);
@DomName('SVGElementInstance.onmouseout')
@DocsEditable()
Stream<MouseEvent> get onMouseOut => mouseOutEvent.forTarget(this);
@DomName('SVGElementInstance.onmouseover')
@DocsEditable()
Stream<MouseEvent> get onMouseOver => mouseOverEvent.forTarget(this);
@DomName('SVGElementInstance.onmouseup')
@DocsEditable()
Stream<MouseEvent> get onMouseUp => mouseUpEvent.forTarget(this);
@DomName('SVGElementInstance.onmousewheel')
@DocsEditable()
Stream<WheelEvent> get onMouseWheel => mouseWheelEvent.forTarget(this);
@DomName('SVGElementInstance.onpaste')
@DocsEditable()
Stream<Event> get onPaste => pasteEvent.forTarget(this);
@DomName('SVGElementInstance.onreset')
@DocsEditable()
Stream<Event> get onReset => resetEvent.forTarget(this);
@DomName('SVGElementInstance.onresize')
@DocsEditable()
Stream<Event> get onResize => resizeEvent.forTarget(this);
@DomName('SVGElementInstance.onscroll')
@DocsEditable()
Stream<Event> get onScroll => scrollEvent.forTarget(this);
@DomName('SVGElementInstance.onsearch')
@DocsEditable()
// http://www.w3.org/TR/html-markup/input.search.html
@Experimental()
Stream<Event> get onSearch => searchEvent.forTarget(this);
@DomName('SVGElementInstance.onselect')
@DocsEditable()
Stream<Event> get onSelect => selectEvent.forTarget(this);
@DomName('SVGElementInstance.onselectstart')
@DocsEditable()
Stream<Event> get onSelectStart => selectStartEvent.forTarget(this);
@DomName('SVGElementInstance.onsubmit')
@DocsEditable()
Stream<Event> get onSubmit => submitEvent.forTarget(this);
@DomName('SVGElementInstance.onunload')
@DocsEditable()
Stream<Event> get onUnload => unloadEvent.forTarget(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGEllipseElement')
@Unstable()
class EllipseElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory EllipseElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGEllipseElement.SVGEllipseElement')
@DocsEditable()
factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("ellipse");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
EllipseElement.created() : super.created();
@DomName('SVGEllipseElement.cx')
@DocsEditable()
AnimatedLength get cx native "SVGEllipseElement_cx_Getter";
@DomName('SVGEllipseElement.cy')
@DocsEditable()
AnimatedLength get cy native "SVGEllipseElement_cy_Getter";
@DomName('SVGEllipseElement.rx')
@DocsEditable()
AnimatedLength get rx native "SVGEllipseElement_rx_Getter";
@DomName('SVGEllipseElement.ry')
@DocsEditable()
AnimatedLength get ry native "SVGEllipseElement_ry_Getter";
@DomName('SVGEllipseElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGEllipseElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGExternalResourcesRequired')
@Unstable()
abstract class ExternalResourcesRequired extends NativeFieldWrapperClass1 {
/// Checks if this type is supported on the current platform.
static bool supported(SvgElement element) => true;
@DomName('SVGExternalResourcesRequired.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGExternalResourcesRequired_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEBlendElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEBlendElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEBlendElement.SVGFEBlendElement')
@DocsEditable()
factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("feBlend");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEBlendElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
@DocsEditable()
static const int SVG_FEBLEND_MODE_DARKEN = 4;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN')
@DocsEditable()
static const int SVG_FEBLEND_MODE_LIGHTEN = 5;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_MULTIPLY')
@DocsEditable()
static const int SVG_FEBLEND_MODE_MULTIPLY = 2;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_NORMAL')
@DocsEditable()
static const int SVG_FEBLEND_MODE_NORMAL = 1;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
@DocsEditable()
static const int SVG_FEBLEND_MODE_SCREEN = 3;
@DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
@DocsEditable()
static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
@DomName('SVGFEBlendElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEBlendElement_in1_Getter";
@DomName('SVGFEBlendElement.in2')
@DocsEditable()
AnimatedString get in2 native "SVGFEBlendElement_in2_Getter";
@DomName('SVGFEBlendElement.mode')
@DocsEditable()
AnimatedEnumeration get mode native "SVGFEBlendElement_mode_Getter";
@DomName('SVGFEBlendElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEBlendElement_height_Getter";
@DomName('SVGFEBlendElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEBlendElement_result_Getter";
@DomName('SVGFEBlendElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEBlendElement_width_Getter";
@DomName('SVGFEBlendElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEBlendElement_x_Getter";
@DomName('SVGFEBlendElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEBlendElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEColorMatrixElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
@DocsEditable()
factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_tag("feColorMatrix");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEColorMatrixElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
@DocsEditable()
static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
@DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA')
@DocsEditable()
static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
@DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_MATRIX')
@DocsEditable()
static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
@DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
@DocsEditable()
static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
@DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
@DocsEditable()
static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
@DomName('SVGFEColorMatrixElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter";
@DomName('SVGFEColorMatrixElement.type')
@DocsEditable()
AnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter";
@DomName('SVGFEColorMatrixElement.values')
@DocsEditable()
AnimatedNumberList get values native "SVGFEColorMatrixElement_values_Getter";
@DomName('SVGFEColorMatrixElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEColorMatrixElement_height_Getter";
@DomName('SVGFEColorMatrixElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEColorMatrixElement_result_Getter";
@DomName('SVGFEColorMatrixElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEColorMatrixElement_width_Getter";
@DomName('SVGFEColorMatrixElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEColorMatrixElement_x_Getter";
@DomName('SVGFEColorMatrixElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEColorMatrixElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEComponentTransferElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEComponentTransferElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEComponentTransferElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
@DocsEditable()
factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgElement_tag("feComponentTransfer");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEComponentTransferElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEComponentTransferElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEComponentTransferElement_in1_Getter";
@DomName('SVGFEComponentTransferElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEComponentTransferElement_height_Getter";
@DomName('SVGFEComponentTransferElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEComponentTransferElement_result_Getter";
@DomName('SVGFEComponentTransferElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEComponentTransferElement_width_Getter";
@DomName('SVGFEComponentTransferElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEComponentTransferElement_x_Getter";
@DomName('SVGFEComponentTransferElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEComponentTransferElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFECompositeElement')
@Unstable()
class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FECompositeElement.created() : super.created();
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_IN = 2;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OUT')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
@DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
@DocsEditable()
static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
@DomName('SVGFECompositeElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFECompositeElement_in1_Getter";
@DomName('SVGFECompositeElement.in2')
@DocsEditable()
AnimatedString get in2 native "SVGFECompositeElement_in2_Getter";
@DomName('SVGFECompositeElement.k1')
@DocsEditable()
AnimatedNumber get k1 native "SVGFECompositeElement_k1_Getter";
@DomName('SVGFECompositeElement.k2')
@DocsEditable()
AnimatedNumber get k2 native "SVGFECompositeElement_k2_Getter";
@DomName('SVGFECompositeElement.k3')
@DocsEditable()
AnimatedNumber get k3 native "SVGFECompositeElement_k3_Getter";
@DomName('SVGFECompositeElement.k4')
@DocsEditable()
AnimatedNumber get k4 native "SVGFECompositeElement_k4_Getter";
@DomName('SVGFECompositeElement.operator')
@DocsEditable()
AnimatedEnumeration get operator native "SVGFECompositeElement_operator_Getter";
@DomName('SVGFECompositeElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFECompositeElement_height_Getter";
@DomName('SVGFECompositeElement.result')
@DocsEditable()
AnimatedString get result native "SVGFECompositeElement_result_Getter";
@DomName('SVGFECompositeElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFECompositeElement_width_Getter";
@DomName('SVGFECompositeElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFECompositeElement_x_Getter";
@DomName('SVGFECompositeElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFECompositeElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEConvolveMatrixElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
@DocsEditable()
factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgElement_tag("feConvolveMatrix");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEConvolveMatrixElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
@DocsEditable()
static const int SVG_EDGEMODE_DUPLICATE = 1;
@DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE')
@DocsEditable()
static const int SVG_EDGEMODE_NONE = 3;
@DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
@DocsEditable()
static const int SVG_EDGEMODE_UNKNOWN = 0;
@DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
@DocsEditable()
static const int SVG_EDGEMODE_WRAP = 2;
@DomName('SVGFEConvolveMatrixElement.bias')
@DocsEditable()
AnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter";
@DomName('SVGFEConvolveMatrixElement.divisor')
@DocsEditable()
AnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Getter";
@DomName('SVGFEConvolveMatrixElement.edgeMode')
@DocsEditable()
AnimatedEnumeration get edgeMode native "SVGFEConvolveMatrixElement_edgeMode_Getter";
@DomName('SVGFEConvolveMatrixElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEConvolveMatrixElement_in1_Getter";
@DomName('SVGFEConvolveMatrixElement.kernelMatrix')
@DocsEditable()
AnimatedNumberList get kernelMatrix native "SVGFEConvolveMatrixElement_kernelMatrix_Getter";
@DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
@DocsEditable()
AnimatedNumber get kernelUnitLengthX native "SVGFEConvolveMatrixElement_kernelUnitLengthX_Getter";
@DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
@DocsEditable()
AnimatedNumber get kernelUnitLengthY native "SVGFEConvolveMatrixElement_kernelUnitLengthY_Getter";
@DomName('SVGFEConvolveMatrixElement.orderX')
@DocsEditable()
AnimatedInteger get orderX native "SVGFEConvolveMatrixElement_orderX_Getter";
@DomName('SVGFEConvolveMatrixElement.orderY')
@DocsEditable()
AnimatedInteger get orderY native "SVGFEConvolveMatrixElement_orderY_Getter";
@DomName('SVGFEConvolveMatrixElement.preserveAlpha')
@DocsEditable()
AnimatedBoolean get preserveAlpha native "SVGFEConvolveMatrixElement_preserveAlpha_Getter";
@DomName('SVGFEConvolveMatrixElement.targetX')
@DocsEditable()
AnimatedInteger get targetX native "SVGFEConvolveMatrixElement_targetX_Getter";
@DomName('SVGFEConvolveMatrixElement.targetY')
@DocsEditable()
AnimatedInteger get targetY native "SVGFEConvolveMatrixElement_targetY_Getter";
@DomName('SVGFEConvolveMatrixElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEConvolveMatrixElement_height_Getter";
@DomName('SVGFEConvolveMatrixElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEConvolveMatrixElement_result_Getter";
@DomName('SVGFEConvolveMatrixElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEConvolveMatrixElement_width_Getter";
@DomName('SVGFEConvolveMatrixElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEConvolveMatrixElement_x_Getter";
@DomName('SVGFEConvolveMatrixElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEConvolveMatrixElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEDiffuseLightingElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
@DocsEditable()
factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElement_tag("feDiffuseLighting");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEDiffuseLightingElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEDiffuseLightingElement.diffuseConstant')
@DocsEditable()
AnimatedNumber get diffuseConstant native "SVGFEDiffuseLightingElement_diffuseConstant_Getter";
@DomName('SVGFEDiffuseLightingElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEDiffuseLightingElement_in1_Getter";
@DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
@DocsEditable()
AnimatedNumber get kernelUnitLengthX native "SVGFEDiffuseLightingElement_kernelUnitLengthX_Getter";
@DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
@DocsEditable()
AnimatedNumber get kernelUnitLengthY native "SVGFEDiffuseLightingElement_kernelUnitLengthY_Getter";
@DomName('SVGFEDiffuseLightingElement.surfaceScale')
@DocsEditable()
AnimatedNumber get surfaceScale native "SVGFEDiffuseLightingElement_surfaceScale_Getter";
@DomName('SVGFEDiffuseLightingElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEDiffuseLightingElement_height_Getter";
@DomName('SVGFEDiffuseLightingElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEDiffuseLightingElement_result_Getter";
@DomName('SVGFEDiffuseLightingElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEDiffuseLightingElement_width_Getter";
@DomName('SVGFEDiffuseLightingElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEDiffuseLightingElement_x_Getter";
@DomName('SVGFEDiffuseLightingElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEDiffuseLightingElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEDisplacementMapElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEDisplacementMapElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
@DocsEditable()
factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElement_tag("feDisplacementMap");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEDisplacementMapElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
@DocsEditable()
static const int SVG_CHANNEL_A = 4;
@DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B')
@DocsEditable()
static const int SVG_CHANNEL_B = 3;
@DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_G')
@DocsEditable()
static const int SVG_CHANNEL_G = 2;
@DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
@DocsEditable()
static const int SVG_CHANNEL_R = 1;
@DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
@DocsEditable()
static const int SVG_CHANNEL_UNKNOWN = 0;
@DomName('SVGFEDisplacementMapElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter";
@DomName('SVGFEDisplacementMapElement.in2')
@DocsEditable()
AnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter";
@DomName('SVGFEDisplacementMapElement.scale')
@DocsEditable()
AnimatedNumber get scale native "SVGFEDisplacementMapElement_scale_Getter";
@DomName('SVGFEDisplacementMapElement.xChannelSelector')
@DocsEditable()
AnimatedEnumeration get xChannelSelector native "SVGFEDisplacementMapElement_xChannelSelector_Getter";
@DomName('SVGFEDisplacementMapElement.yChannelSelector')
@DocsEditable()
AnimatedEnumeration get yChannelSelector native "SVGFEDisplacementMapElement_yChannelSelector_Getter";
@DomName('SVGFEDisplacementMapElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEDisplacementMapElement_height_Getter";
@DomName('SVGFEDisplacementMapElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEDisplacementMapElement_result_Getter";
@DomName('SVGFEDisplacementMapElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEDisplacementMapElement_width_Getter";
@DomName('SVGFEDisplacementMapElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEDisplacementMapElement_x_Getter";
@DomName('SVGFEDisplacementMapElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEDisplacementMapElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEDistantLightElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEDistantLightElement extends SvgElement {
// To suppress missing implicit constructor warnings.
factory FEDistantLightElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEDistantLightElement.SVGFEDistantLightElement')
@DocsEditable()
factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement_tag("feDistantLight");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEDistantLightElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEDistantLightElement.azimuth')
@DocsEditable()
AnimatedNumber get azimuth native "SVGFEDistantLightElement_azimuth_Getter";
@DomName('SVGFEDistantLightElement.elevation')
@DocsEditable()
AnimatedNumber get elevation native "SVGFEDistantLightElement_elevation_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEFloodElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEFloodElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEFloodElement.SVGFEFloodElement')
@DocsEditable()
factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("feFlood");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEFloodElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEFloodElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEFloodElement_height_Getter";
@DomName('SVGFEFloodElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEFloodElement_result_Getter";
@DomName('SVGFEFloodElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEFloodElement_width_Getter";
@DomName('SVGFEFloodElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEFloodElement_x_Getter";
@DomName('SVGFEFloodElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEFloodElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEFuncAElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEFuncAElement extends _SVGComponentTransferFunctionElement {
// To suppress missing implicit constructor warnings.
factory FEFuncAElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEFuncAElement.SVGFEFuncAElement')
@DocsEditable()
factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("feFuncA");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEFuncAElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEFuncBElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEFuncBElement extends _SVGComponentTransferFunctionElement {
// To suppress missing implicit constructor warnings.
factory FEFuncBElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEFuncBElement.SVGFEFuncBElement')
@DocsEditable()
factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("feFuncB");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEFuncBElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEFuncGElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEFuncGElement extends _SVGComponentTransferFunctionElement {
// To suppress missing implicit constructor warnings.
factory FEFuncGElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEFuncGElement.SVGFEFuncGElement')
@DocsEditable()
factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("feFuncG");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEFuncGElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEFuncRElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEFuncRElement extends _SVGComponentTransferFunctionElement {
// To suppress missing implicit constructor warnings.
factory FEFuncRElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEFuncRElement.SVGFEFuncRElement')
@DocsEditable()
factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("feFuncR");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEFuncRElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEGaussianBlurElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
@DocsEditable()
factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement_tag("feGaussianBlur");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEGaussianBlurElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEGaussianBlurElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEGaussianBlurElement_in1_Getter";
@DomName('SVGFEGaussianBlurElement.stdDeviationX')
@DocsEditable()
AnimatedNumber get stdDeviationX native "SVGFEGaussianBlurElement_stdDeviationX_Getter";
@DomName('SVGFEGaussianBlurElement.stdDeviationY')
@DocsEditable()
AnimatedNumber get stdDeviationY native "SVGFEGaussianBlurElement_stdDeviationY_Getter";
@DomName('SVGFEGaussianBlurElement.setStdDeviation')
@DocsEditable()
void setStdDeviation(num stdDeviationX, num stdDeviationY) native "SVGFEGaussianBlurElement_setStdDeviation_Callback";
@DomName('SVGFEGaussianBlurElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEGaussianBlurElement_height_Getter";
@DomName('SVGFEGaussianBlurElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEGaussianBlurElement_result_Getter";
@DomName('SVGFEGaussianBlurElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEGaussianBlurElement_width_Getter";
@DomName('SVGFEGaussianBlurElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEGaussianBlurElement_x_Getter";
@DomName('SVGFEGaussianBlurElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEGaussianBlurElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEImageElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttributes, UriReference, ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEImageElement.SVGFEImageElement')
@DocsEditable()
factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("feImage");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEImageElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEImageElement.preserveAspectRatio')
@DocsEditable()
AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFEImageElement_preserveAspectRatio_Getter";
@DomName('SVGFEImageElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGFEImageElement_externalResourcesRequired_Getter";
@DomName('SVGFEImageElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEImageElement_height_Getter";
@DomName('SVGFEImageElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEImageElement_result_Getter";
@DomName('SVGFEImageElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEImageElement_width_Getter";
@DomName('SVGFEImageElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEImageElement_x_Getter";
@DomName('SVGFEImageElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEImageElement_y_Getter";
@DomName('SVGFEImageElement.href')
@DocsEditable()
AnimatedString get href native "SVGFEImageElement_href_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEMergeElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEMergeElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEMergeElement.SVGFEMergeElement')
@DocsEditable()
factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("feMerge");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEMergeElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEMergeElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEMergeElement_height_Getter";
@DomName('SVGFEMergeElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEMergeElement_result_Getter";
@DomName('SVGFEMergeElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEMergeElement_width_Getter";
@DomName('SVGFEMergeElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEMergeElement_x_Getter";
@DomName('SVGFEMergeElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEMergeElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEMergeNodeElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEMergeNodeElement extends SvgElement {
// To suppress missing implicit constructor warnings.
factory FEMergeNodeElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement')
@DocsEditable()
factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_tag("feMergeNode");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEMergeNodeElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEMergeNodeElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEMergeNodeElement_in1_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEMorphologyElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEMorphologyElement.created() : super.created();
@DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
@DocsEditable()
static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
@DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
@DocsEditable()
static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
@DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
@DocsEditable()
static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
@DomName('SVGFEMorphologyElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter";
@DomName('SVGFEMorphologyElement.operator')
@DocsEditable()
AnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Getter";
@DomName('SVGFEMorphologyElement.radiusX')
@DocsEditable()
AnimatedNumber get radiusX native "SVGFEMorphologyElement_radiusX_Getter";
@DomName('SVGFEMorphologyElement.radiusY')
@DocsEditable()
AnimatedNumber get radiusY native "SVGFEMorphologyElement_radiusY_Getter";
@DomName('SVGFEMorphologyElement.setRadius')
@DocsEditable()
void setRadius(num radiusX, num radiusY) native "SVGFEMorphologyElement_setRadius_Callback";
@DomName('SVGFEMorphologyElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEMorphologyElement_height_Getter";
@DomName('SVGFEMorphologyElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEMorphologyElement_result_Getter";
@DomName('SVGFEMorphologyElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEMorphologyElement_width_Getter";
@DomName('SVGFEMorphologyElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEMorphologyElement_x_Getter";
@DomName('SVGFEMorphologyElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEMorphologyElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEOffsetElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEOffsetElement.SVGFEOffsetElement')
@DocsEditable()
factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag("feOffset");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEOffsetElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEOffsetElement.dx')
@DocsEditable()
AnimatedNumber get dx native "SVGFEOffsetElement_dx_Getter";
@DomName('SVGFEOffsetElement.dy')
@DocsEditable()
AnimatedNumber get dy native "SVGFEOffsetElement_dy_Getter";
@DomName('SVGFEOffsetElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFEOffsetElement_in1_Getter";
@DomName('SVGFEOffsetElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFEOffsetElement_height_Getter";
@DomName('SVGFEOffsetElement.result')
@DocsEditable()
AnimatedString get result native "SVGFEOffsetElement_result_Getter";
@DomName('SVGFEOffsetElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFEOffsetElement_width_Getter";
@DomName('SVGFEOffsetElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFEOffsetElement_x_Getter";
@DomName('SVGFEOffsetElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFEOffsetElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFEPointLightElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FEPointLightElement extends SvgElement {
// To suppress missing implicit constructor warnings.
factory FEPointLightElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFEPointLightElement.SVGFEPointLightElement')
@DocsEditable()
factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_tag("fePointLight");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FEPointLightElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFEPointLightElement.x')
@DocsEditable()
AnimatedNumber get x native "SVGFEPointLightElement_x_Getter";
@DomName('SVGFEPointLightElement.y')
@DocsEditable()
AnimatedNumber get y native "SVGFEPointLightElement_y_Getter";
@DomName('SVGFEPointLightElement.z')
@DocsEditable()
AnimatedNumber get z native "SVGFEPointLightElement_z_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFESpecularLightingElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FESpecularLightingElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FESpecularLightingElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
@DocsEditable()
factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgElement_tag("feSpecularLighting");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FESpecularLightingElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFESpecularLightingElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFESpecularLightingElement_in1_Getter";
@DomName('SVGFESpecularLightingElement.specularConstant')
@DocsEditable()
AnimatedNumber get specularConstant native "SVGFESpecularLightingElement_specularConstant_Getter";
@DomName('SVGFESpecularLightingElement.specularExponent')
@DocsEditable()
AnimatedNumber get specularExponent native "SVGFESpecularLightingElement_specularExponent_Getter";
@DomName('SVGFESpecularLightingElement.surfaceScale')
@DocsEditable()
AnimatedNumber get surfaceScale native "SVGFESpecularLightingElement_surfaceScale_Getter";
@DomName('SVGFESpecularLightingElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFESpecularLightingElement_height_Getter";
@DomName('SVGFESpecularLightingElement.result')
@DocsEditable()
AnimatedString get result native "SVGFESpecularLightingElement_result_Getter";
@DomName('SVGFESpecularLightingElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFESpecularLightingElement_width_Getter";
@DomName('SVGFESpecularLightingElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFESpecularLightingElement_x_Getter";
@DomName('SVGFESpecularLightingElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFESpecularLightingElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFESpotLightElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FESpotLightElement extends SvgElement {
// To suppress missing implicit constructor warnings.
factory FESpotLightElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFESpotLightElement.SVGFESpotLightElement')
@DocsEditable()
factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_tag("feSpotLight");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FESpotLightElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFESpotLightElement.limitingConeAngle')
@DocsEditable()
AnimatedNumber get limitingConeAngle native "SVGFESpotLightElement_limitingConeAngle_Getter";
@DomName('SVGFESpotLightElement.pointsAtX')
@DocsEditable()
AnimatedNumber get pointsAtX native "SVGFESpotLightElement_pointsAtX_Getter";
@DomName('SVGFESpotLightElement.pointsAtY')
@DocsEditable()
AnimatedNumber get pointsAtY native "SVGFESpotLightElement_pointsAtY_Getter";
@DomName('SVGFESpotLightElement.pointsAtZ')
@DocsEditable()
AnimatedNumber get pointsAtZ native "SVGFESpotLightElement_pointsAtZ_Getter";
@DomName('SVGFESpotLightElement.specularExponent')
@DocsEditable()
AnimatedNumber get specularExponent native "SVGFESpotLightElement_specularExponent_Getter";
@DomName('SVGFESpotLightElement.x')
@DocsEditable()
AnimatedNumber get x native "SVGFESpotLightElement_x_Getter";
@DomName('SVGFESpotLightElement.y')
@DocsEditable()
AnimatedNumber get y native "SVGFESpotLightElement_y_Getter";
@DomName('SVGFESpotLightElement.z')
@DocsEditable()
AnimatedNumber get z native "SVGFESpotLightElement_z_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFETileElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FETileElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FETileElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFETileElement.SVGFETileElement')
@DocsEditable()
factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("feTile");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FETileElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFETileElement.in1')
@DocsEditable()
AnimatedString get in1 native "SVGFETileElement_in1_Getter";
@DomName('SVGFETileElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFETileElement_height_Getter";
@DomName('SVGFETileElement.result')
@DocsEditable()
AnimatedString get result native "SVGFETileElement_result_Getter";
@DomName('SVGFETileElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFETileElement_width_Getter";
@DomName('SVGFETileElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFETileElement_x_Getter";
@DomName('SVGFETileElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFETileElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFETurbulenceElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardAttributes {
// To suppress missing implicit constructor warnings.
factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
@DocsEditable()
factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_tag("feTurbulence");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FETurbulenceElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
@DocsEditable()
static const int SVG_STITCHTYPE_NOSTITCH = 2;
@DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH')
@DocsEditable()
static const int SVG_STITCHTYPE_STITCH = 1;
@DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_UNKNOWN')
@DocsEditable()
static const int SVG_STITCHTYPE_UNKNOWN = 0;
@DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_FRACTALNOISE')
@DocsEditable()
static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
@DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
@DocsEditable()
static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
@DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
@DocsEditable()
static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
@DomName('SVGFETurbulenceElement.baseFrequencyX')
@DocsEditable()
AnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFrequencyX_Getter";
@DomName('SVGFETurbulenceElement.baseFrequencyY')
@DocsEditable()
AnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFrequencyY_Getter";
@DomName('SVGFETurbulenceElement.numOctaves')
@DocsEditable()
AnimatedInteger get numOctaves native "SVGFETurbulenceElement_numOctaves_Getter";
@DomName('SVGFETurbulenceElement.seed')
@DocsEditable()
AnimatedNumber get seed native "SVGFETurbulenceElement_seed_Getter";
@DomName('SVGFETurbulenceElement.stitchTiles')
@DocsEditable()
AnimatedEnumeration get stitchTiles native "SVGFETurbulenceElement_stitchTiles_Getter";
@DomName('SVGFETurbulenceElement.type')
@DocsEditable()
AnimatedEnumeration get type native "SVGFETurbulenceElement_type_Getter";
@DomName('SVGFETurbulenceElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFETurbulenceElement_height_Getter";
@DomName('SVGFETurbulenceElement.result')
@DocsEditable()
AnimatedString get result native "SVGFETurbulenceElement_result_Getter";
@DomName('SVGFETurbulenceElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFETurbulenceElement_width_Getter";
@DomName('SVGFETurbulenceElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFETurbulenceElement_x_Getter";
@DomName('SVGFETurbulenceElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFETurbulenceElement_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFilterElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class FilterElement extends SvgElement implements UriReference, ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory FilterElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGFilterElement.SVGFilterElement')
@DocsEditable()
factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("filter");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
FilterElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGFilterElement.filterResX')
@DocsEditable()
AnimatedInteger get filterResX native "SVGFilterElement_filterResX_Getter";
@DomName('SVGFilterElement.filterResY')
@DocsEditable()
AnimatedInteger get filterResY native "SVGFilterElement_filterResY_Getter";
@DomName('SVGFilterElement.filterUnits')
@DocsEditable()
AnimatedEnumeration get filterUnits native "SVGFilterElement_filterUnits_Getter";
@DomName('SVGFilterElement.height')
@DocsEditable()
AnimatedLength get height native "SVGFilterElement_height_Getter";
@DomName('SVGFilterElement.primitiveUnits')
@DocsEditable()
AnimatedEnumeration get primitiveUnits native "SVGFilterElement_primitiveUnits_Getter";
@DomName('SVGFilterElement.width')
@DocsEditable()
AnimatedLength get width native "SVGFilterElement_width_Getter";
@DomName('SVGFilterElement.x')
@DocsEditable()
AnimatedLength get x native "SVGFilterElement_x_Getter";
@DomName('SVGFilterElement.y')
@DocsEditable()
AnimatedLength get y native "SVGFilterElement_y_Getter";
@DomName('SVGFilterElement.setFilterRes')
@DocsEditable()
void setFilterRes(int filterResX, int filterResY) native "SVGFilterElement_setFilterRes_Callback";
@DomName('SVGFilterElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGFilterElement_externalResourcesRequired_Getter";
@DomName('SVGFilterElement.href')
@DocsEditable()
AnimatedString get href native "SVGFilterElement_href_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFilterPrimitiveStandardAttributes')
@Unstable()
abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 {
@DomName('SVGFilterPrimitiveStandardAttributes.height')
@DocsEditable()
AnimatedLength get height native "SVGFilterPrimitiveStandardAttributes_height_Getter";
@DomName('SVGFilterPrimitiveStandardAttributes.result')
@DocsEditable()
AnimatedString get result native "SVGFilterPrimitiveStandardAttributes_result_Getter";
@DomName('SVGFilterPrimitiveStandardAttributes.width')
@DocsEditable()
AnimatedLength get width native "SVGFilterPrimitiveStandardAttributes_width_Getter";
@DomName('SVGFilterPrimitiveStandardAttributes.x')
@DocsEditable()
AnimatedLength get x native "SVGFilterPrimitiveStandardAttributes_x_Getter";
@DomName('SVGFilterPrimitiveStandardAttributes.y')
@DocsEditable()
AnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGFitToViewBox')
@Unstable()
abstract class FitToViewBox extends NativeFieldWrapperClass1 {
@DomName('SVGFitToViewBox.preserveAspectRatio')
@DocsEditable()
AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGFitToViewBox_preserveAspectRatio_Getter";
@DomName('SVGFitToViewBox.viewBox')
@DocsEditable()
AnimatedRect get viewBox native "SVGFitToViewBox_viewBox_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGForeignObjectElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Unstable()
class ForeignObjectElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory ForeignObjectElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGForeignObjectElement.SVGForeignObjectElement')
@DocsEditable()
factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_tag("foreignObject");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
ForeignObjectElement.created() : super.created();
/// Checks if this type is supported on the current platform.
static bool get supported => true;
@DomName('SVGForeignObjectElement.height')
@DocsEditable()
AnimatedLength get height native "SVGForeignObjectElement_height_Getter";
@DomName('SVGForeignObjectElement.width')
@DocsEditable()
AnimatedLength get width native "SVGForeignObjectElement_width_Getter";
@DomName('SVGForeignObjectElement.x')
@DocsEditable()
AnimatedLength get x native "SVGForeignObjectElement_x_Getter";
@DomName('SVGForeignObjectElement.y')
@DocsEditable()
AnimatedLength get y native "SVGForeignObjectElement_y_Getter";
@DomName('SVGForeignObjectElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGForeignObjectElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGGElement')
@Unstable()
class GElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory GElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGGElement.SVGGElement')
@DocsEditable()
factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
GElement.created() : super.created();
@DomName('SVGGElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGGElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGGraphicsElement')
@Experimental() // untriaged
class GraphicsElement extends SvgElement implements Tests {
// To suppress missing implicit constructor warnings.
factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
GraphicsElement.created() : super.created();
@DomName('SVGGraphicsElement.farthestViewportElement')
@DocsEditable()
@Experimental() // untriaged
SvgElement get farthestViewportElement native "SVGGraphicsElement_farthestViewportElement_Getter";
@DomName('SVGGraphicsElement.nearestViewportElement')
@DocsEditable()
@Experimental() // untriaged
SvgElement get nearestViewportElement native "SVGGraphicsElement_nearestViewportElement_Getter";
@DomName('SVGGraphicsElement.transform')
@DocsEditable()
@Experimental() // untriaged
AnimatedTransformList get transform native "SVGGraphicsElement_transform_Getter";
@DomName('SVGGraphicsElement.getBBox')
@DocsEditable()
@Experimental() // untriaged
Rect getBBox() native "SVGGraphicsElement_getBBox_Callback";
@DomName('SVGGraphicsElement.getCTM')
@DocsEditable()
@Experimental() // untriaged
Matrix getCtm() native "SVGGraphicsElement_getCTM_Callback";
@DomName('SVGGraphicsElement.getScreenCTM')
@DocsEditable()
@Experimental() // untriaged
Matrix getScreenCtm() native "SVGGraphicsElement_getScreenCTM_Callback";
@DomName('SVGGraphicsElement.getTransformToElement')
@DocsEditable()
@Experimental() // untriaged
Matrix getTransformToElement(SvgElement element) native "SVGGraphicsElement_getTransformToElement_Callback";
@DomName('SVGGraphicsElement.requiredExtensions')
@DocsEditable()
@Experimental() // untriaged
StringList get requiredExtensions native "SVGGraphicsElement_requiredExtensions_Getter";
@DomName('SVGGraphicsElement.requiredFeatures')
@DocsEditable()
@Experimental() // untriaged
StringList get requiredFeatures native "SVGGraphicsElement_requiredFeatures_Getter";
@DomName('SVGGraphicsElement.systemLanguage')
@DocsEditable()
@Experimental() // untriaged
StringList get systemLanguage native "SVGGraphicsElement_systemLanguage_Getter";
@DomName('SVGGraphicsElement.hasExtension')
@DocsEditable()
@Experimental() // untriaged
bool hasExtension(String extension) native "SVGGraphicsElement_hasExtension_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGImageElement')
@Unstable()
class ImageElement extends GraphicsElement implements UriReference, ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory ImageElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGImageElement.SVGImageElement')
@DocsEditable()
factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("image");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
ImageElement.created() : super.created();
@DomName('SVGImageElement.height')
@DocsEditable()
AnimatedLength get height native "SVGImageElement_height_Getter";
@DomName('SVGImageElement.preserveAspectRatio')
@DocsEditable()
AnimatedPreserveAspectRatio get preserveAspectRatio native "SVGImageElement_preserveAspectRatio_Getter";
@DomName('SVGImageElement.width')
@DocsEditable()
AnimatedLength get width native "SVGImageElement_width_Getter";
@DomName('SVGImageElement.x')
@DocsEditable()
AnimatedLength get x native "SVGImageElement_x_Getter";
@DomName('SVGImageElement.y')
@DocsEditable()
AnimatedLength get y native "SVGImageElement_y_Getter";
@DomName('SVGImageElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGImageElement_externalResourcesRequired_Getter";
@DomName('SVGImageElement.href')
@DocsEditable()
AnimatedString get href native "SVGImageElement_href_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGLength')
@Unstable()
class Length extends NativeFieldWrapperClass1 {
@DomName('SVGLength.SVG_LENGTHTYPE_CM')
@DocsEditable()
static const int SVG_LENGTHTYPE_CM = 6;
@DomName('SVGLength.SVG_LENGTHTYPE_EMS')
@DocsEditable()
static const int SVG_LENGTHTYPE_EMS = 3;
@DomName('SVGLength.SVG_LENGTHTYPE_EXS')
@DocsEditable()
static const int SVG_LENGTHTYPE_EXS = 4;
@DomName('SVGLength.SVG_LENGTHTYPE_IN')
@DocsEditable()
static const int SVG_LENGTHTYPE_IN = 8;
@DomName('SVGLength.SVG_LENGTHTYPE_MM')
@DocsEditable()
static const int SVG_LENGTHTYPE_MM = 7;
@DomName('SVGLength.SVG_LENGTHTYPE_NUMBER')
@DocsEditable()
static const int SVG_LENGTHTYPE_NUMBER = 1;
@DomName('SVGLength.SVG_LENGTHTYPE_PC')
@DocsEditable()
static const int SVG_LENGTHTYPE_PC = 10;
@DomName('SVGLength.SVG_LENGTHTYPE_PERCENTAGE')
@DocsEditable()
static const int SVG_LENGTHTYPE_PERCENTAGE = 2;
@DomName('SVGLength.SVG_LENGTHTYPE_PT')
@DocsEditable()
static const int SVG_LENGTHTYPE_PT = 9;
@DomName('SVGLength.SVG_LENGTHTYPE_PX')
@DocsEditable()
static const int SVG_LENGTHTYPE_PX = 5;
@DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
@DocsEditable()
static const int SVG_LENGTHTYPE_UNKNOWN = 0;
@DomName('SVGLength.unitType')
@DocsEditable()
int get unitType native "SVGLength_unitType_Getter";
@DomName('SVGLength.value')
@DocsEditable()
num get value native "SVGLength_value_Getter";
@DomName('SVGLength.value')
@DocsEditable()
void set value(num value) native "SVGLength_value_Setter";
@DomName('SVGLength.valueAsString')
@DocsEditable()
String get valueAsString native "SVGLength_valueAsString_Getter";
@DomName('SVGLength.valueAsString')
@DocsEditable()
void set valueAsString(String value) native "SVGLength_valueAsString_Setter";
@DomName('SVGLength.valueInSpecifiedUnits')
@DocsEditable()
num get valueInSpecifiedUnits native "SVGLength_valueInSpecifiedUnits_Getter";
@DomName('SVGLength.valueInSpecifiedUnits')
@DocsEditable()
void set valueInSpecifiedUnits(num value) native "SVGLength_valueInSpecifiedUnits_Setter";
@DomName('SVGLength.convertToSpecifiedUnits')
@DocsEditable()
void convertToSpecifiedUnits(int unitType) native "SVGLength_convertToSpecifiedUnits_Callback";
@DomName('SVGLength.newValueSpecifiedUnits')
@DocsEditable()
void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native "SVGLength_newValueSpecifiedUnits_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGLengthList')
@Unstable()
class LengthList extends NativeFieldWrapperClass1 with ListMixin<Length>, ImmutableListMixin<Length> implements List<Length> {
@DomName('SVGLengthList.numberOfItems')
@DocsEditable()
int get numberOfItems native "SVGLengthList_numberOfItems_Getter";
Length operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
return getItem(index);
}
void operator[]=(int index, Length value) {
throw new UnsupportedError("Cannot assign element of immutable List.");
}
// -- start List<Length> mixins.
// Length is the element type.
// SVG Collections expose numberOfItems rather than length.
int get length => numberOfItems;
void set length(int value) {
throw new UnsupportedError("Cannot resize immutable List.");
}
Length get first {
if (this.length > 0) {
return getItem(0);
}
throw new StateError("No elements");
}
Length get last {
int len = this.length;
if (len > 0) {
return getItem(len - 1);
}
throw new StateError("No elements");
}
Length get single {
int len = this.length;
if (len == 1) {
return getItem(0);
}
if (len == 0) throw new StateError("No elements");
throw new StateError("More than one element");
}
Length elementAt(int index) => this[index];
// -- end List<Length> mixins.
@DomName('SVGLengthList.appendItem')
@DocsEditable()
Length appendItem(Length item) native "SVGLengthList_appendItem_Callback";
@DomName('SVGLengthList.clear')
@DocsEditable()
void clear() native "SVGLengthList_clear_Callback";
@DomName('SVGLengthList.getItem')
@DocsEditable()
Length getItem(int index) native "SVGLengthList_getItem_Callback";
@DomName('SVGLengthList.initialize')
@DocsEditable()
Length initialize(Length item) native "SVGLengthList_initialize_Callback";
@DomName('SVGLengthList.insertItemBefore')
@DocsEditable()
Length insertItemBefore(Length item, int index) native "SVGLengthList_insertItemBefore_Callback";
@DomName('SVGLengthList.removeItem')
@DocsEditable()
Length removeItem(int index) native "SVGLengthList_removeItem_Callback";
@DomName('SVGLengthList.replaceItem')
@DocsEditable()
Length replaceItem(Length item, int index) native "SVGLengthList_replaceItem_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGLineElement')
@Unstable()
class LineElement extends GraphicsElement implements ExternalResourcesRequired {
// To suppress missing implicit constructor warnings.
factory LineElement._() { throw new UnsupportedError("Not supported"); }
@DomName('SVGLineElement.SVGLineElement')
@DocsEditable()
factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line");
/**
* Constructor instantiated by the DOM when a custom element has been created.
*
* This can only be called by subclasses from their created constructor.
*/
LineElement.created() : super.created();
@DomName('SVGLineElement.x1')
@DocsEditable()
AnimatedLength get x1 native "SVGLineElement_x1_Getter";
@DomName('SVGLineElement.x2')
@DocsEditable()
AnimatedLength get x2 native "SVGLineElement_x2_Getter";
@DomName('SVGLineElement.y1')
@DocsEditable()
AnimatedLength get y1 native "SVGLineElement_y1_Getter";
@DomName('SVGLineElement.y2')
@DocsEditable()
AnimatedLength get y2 native "SVGLineElement_y2_Getter";
@DomName('SVGLineElement.externalResourcesRequired')
@DocsEditable()
AnimatedBoolean get externalResourcesRequired native "SVGLineElement_externalResourcesRequired_Getter";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// WARNING: Do not edit - generated code.
@DocsEditable()
@DomName('SVGLinearGradientElement')