Index: sdk/lib/svg/dartium/svg_dartium.dart |
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart |
index 2201493d29a2ff14a5c2fce76945c4c9f96655e1..785f717b76660ea6fd401ee0061dc5cbbcc26669 100644 |
--- a/sdk/lib/svg/dartium/svg_dartium.dart |
+++ b/sdk/lib/svg/dartium/svg_dartium.dart |
@@ -42,6 +42,12 @@ class AElement extends GraphicsElement implements UriReference, ExternalResource |
@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() |
@@ -76,6 +82,12 @@ class AltGlyphElement extends TextPositioningElement implements UriReference { |
@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; |
@@ -190,6 +202,12 @@ class AnimateElement extends AnimationElement { |
@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; |
@@ -215,6 +233,12 @@ class AnimateMotionElement extends AnimationElement { |
@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; |
@@ -240,6 +264,12 @@ class AnimateTransformElement extends AnimationElement { |
@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; |
@@ -534,6 +564,12 @@ class AnimationElement extends SvgElement implements ExternalResourcesRequired, |
@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() |
@@ -605,6 +641,12 @@ class CircleElement extends GraphicsElement implements ExternalResourcesRequired |
@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() |
@@ -640,6 +682,12 @@ class ClipPathElement extends GraphicsElement implements ExternalResourcesRequir |
@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() |
@@ -667,6 +715,12 @@ class DefsElement extends GraphicsElement implements ExternalResourcesRequired { |
@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() |
@@ -690,6 +744,12 @@ class DescElement extends SvgElement { |
@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 |
@@ -1115,6 +1175,12 @@ class EllipseElement extends GraphicsElement implements ExternalResourcesRequire |
@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() |
@@ -1178,6 +1244,12 @@ class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib |
@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; |
@@ -1260,6 +1332,12 @@ class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard |
@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; |
@@ -1338,6 +1416,12 @@ class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt |
@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; |
@@ -1380,6 +1464,12 @@ class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt |
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() |
@@ -1479,6 +1569,12 @@ class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand |
@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; |
@@ -1589,6 +1685,12 @@ class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan |
@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; |
@@ -1655,6 +1757,12 @@ class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan |
@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; |
@@ -1741,6 +1849,12 @@ class FEDistantLightElement extends SvgElement { |
@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; |
@@ -1775,6 +1889,12 @@ class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib |
@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; |
@@ -1821,6 +1941,12 @@ class FEFuncAElement extends _SVGComponentTransferFunctionElement { |
@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; |
@@ -1847,6 +1973,12 @@ class FEFuncBElement extends _SVGComponentTransferFunctionElement { |
@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; |
@@ -1873,6 +2005,12 @@ class FEFuncGElement extends _SVGComponentTransferFunctionElement { |
@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; |
@@ -1899,6 +2037,12 @@ class FEFuncRElement extends _SVGComponentTransferFunctionElement { |
@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; |
@@ -1925,6 +2069,12 @@ class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar |
@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; |
@@ -1987,6 +2137,12 @@ class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib |
@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; |
@@ -2045,6 +2201,12 @@ class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib |
@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; |
@@ -2091,6 +2253,12 @@ class FEMergeNodeElement extends SvgElement { |
@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; |
@@ -2117,6 +2285,12 @@ class FEMergeNodeElement extends SvgElement { |
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() |
@@ -2192,6 +2366,12 @@ class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri |
@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; |
@@ -2250,6 +2430,12 @@ class FEPointLightElement extends SvgElement { |
@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; |
@@ -2288,6 +2474,12 @@ class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta |
@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; |
@@ -2350,6 +2542,12 @@ class FESpotLightElement extends SvgElement { |
@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; |
@@ -2408,6 +2606,12 @@ class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu |
@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; |
@@ -2458,6 +2662,12 @@ class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA |
@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; |
@@ -2552,6 +2762,12 @@ class FilterElement extends SvgElement implements UriReference, ExternalResource |
@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; |
@@ -2675,6 +2891,12 @@ class ForeignObjectElement extends GraphicsElement implements ExternalResourcesR |
@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; |
@@ -2717,6 +2939,12 @@ class GElement extends GraphicsElement implements ExternalResourcesRequired { |
@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() |
@@ -2736,6 +2964,12 @@ class GElement extends GraphicsElement implements ExternalResourcesRequired { |
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() |
@@ -2810,6 +3044,12 @@ class ImageElement extends GraphicsElement implements UriReference, ExternalReso |
@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() |
@@ -3041,6 +3281,12 @@ class LineElement extends GraphicsElement implements ExternalResourcesRequired { |
@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() |
@@ -3080,6 +3326,12 @@ class LinearGradientElement extends _GradientElement { |
@DomName('SVGLinearGradientElement.SVGLinearGradientElement') |
@DocsEditable() |
factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement_tag("linearGradient"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ LinearGradientElement.created() : super.created(); |
@DomName('SVGLinearGradientElement.x1') |
@DocsEditable() |
@@ -3115,6 +3367,12 @@ class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource |
@DomName('SVGMarkerElement.SVGMarkerElement') |
@DocsEditable() |
factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("marker"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ MarkerElement.created() : super.created(); |
@DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') |
@DocsEditable() |
@@ -3206,6 +3464,12 @@ class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests |
@DomName('SVGMaskElement.SVGMaskElement') |
@DocsEditable() |
factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ MaskElement.created() : super.created(); |
@DomName('SVGMaskElement.height') |
@DocsEditable() |
@@ -3370,6 +3634,12 @@ class Matrix extends NativeFieldWrapperClass1 { |
class MetadataElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory MetadataElement._() { 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. |
+ */ |
+ MetadataElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -3501,6 +3771,12 @@ class PathElement extends GraphicsElement implements ExternalResourcesRequired { |
@DomName('SVGPathElement.SVGPathElement') |
@DocsEditable() |
factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ PathElement.created() : super.created(); |
@DomName('SVGPathElement.animatedNormalizedPathSegList') |
@DocsEditable() |
@@ -4573,6 +4849,12 @@ class PatternElement extends SvgElement implements FitToViewBox, UriReference, E |
@DomName('SVGPatternElement.SVGPatternElement') |
@DocsEditable() |
factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("pattern"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ PatternElement.created() : super.created(); |
@DomName('SVGPatternElement.height') |
@DocsEditable() |
@@ -4730,6 +5012,12 @@ class PolygonElement extends GraphicsElement implements ExternalResourcesRequire |
@DomName('SVGPolygonElement.SVGPolygonElement') |
@DocsEditable() |
factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("polygon"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ PolygonElement.created() : super.created(); |
@DomName('SVGPolygonElement.animatedPoints') |
@DocsEditable() |
@@ -4761,6 +5049,12 @@ class PolylineElement extends GraphicsElement implements ExternalResourcesRequir |
@DomName('SVGPolylineElement.SVGPolylineElement') |
@DocsEditable() |
factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag("polyline"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ PolylineElement.created() : super.created(); |
@DomName('SVGPolylineElement.animatedPoints') |
@DocsEditable() |
@@ -4877,6 +5171,12 @@ class RadialGradientElement extends _GradientElement { |
@DomName('SVGRadialGradientElement.SVGRadialGradientElement') |
@DocsEditable() |
factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement_tag("radialGradient"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ RadialGradientElement.created() : super.created(); |
@DomName('SVGRadialGradientElement.cx') |
@DocsEditable() |
@@ -4965,6 +5265,12 @@ class RectElement extends GraphicsElement implements ExternalResourcesRequired { |
@DomName('SVGRectElement.SVGRectElement') |
@DocsEditable() |
factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ RectElement.created() : super.created(); |
@DomName('SVGRectElement.height') |
@DocsEditable() |
@@ -5049,6 +5355,12 @@ class ScriptElement extends SvgElement implements UriReference, ExternalResource |
@DomName('SVGScriptElement.SVGScriptElement') |
@DocsEditable() |
factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("script"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ ScriptElement.created() : super.created(); |
@DomName('SVGScriptElement.type') |
@DocsEditable() |
@@ -5087,6 +5399,12 @@ class SetElement extends AnimationElement { |
@DomName('SVGSetElement.SVGSetElement') |
@DocsEditable() |
factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ SetElement.created() : super.created(); |
/// Checks if this type is supported on the current platform. |
static bool get supported => true; |
@@ -5109,6 +5427,12 @@ class StopElement extends SvgElement { |
@DomName('SVGStopElement.SVGStopElement') |
@DocsEditable() |
factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ StopElement.created() : super.created(); |
@DomName('SVGStopElement.offset') |
@DocsEditable() |
@@ -5224,6 +5548,12 @@ class StyleElement extends SvgElement { |
@DomName('SVGStyleElement.SVGStyleElement') |
@DocsEditable() |
factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("style"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ StyleElement.created() : super.created(); |
@DomName('SVGStyleElement.disabled') |
@DocsEditable() |
@@ -5434,6 +5764,12 @@ class SvgElement extends Element { |
} |
// To suppress missing implicit constructor warnings. |
factory SvgElement._() { 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. |
+ */ |
+ SvgElement.created() : super.created(); |
@DomName('SVGElement.className') |
@DocsEditable() |
@@ -5499,6 +5835,12 @@ class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes |
// To suppress missing implicit constructor warnings. |
factory SvgSvgElement._() { 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. |
+ */ |
+ SvgSvgElement.created() : super.created(); |
@DomName('SVGSVGElement.contentScriptType') |
@DocsEditable() |
@@ -5702,6 +6044,12 @@ class SwitchElement extends GraphicsElement implements ExternalResourcesRequired |
@DomName('SVGSwitchElement.SVGSwitchElement') |
@DocsEditable() |
factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("switch"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ SwitchElement.created() : super.created(); |
@DomName('SVGSwitchElement.externalResourcesRequired') |
@DocsEditable() |
@@ -5725,6 +6073,12 @@ class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource |
@DomName('SVGSymbolElement.SVGSymbolElement') |
@DocsEditable() |
factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("symbol"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ SymbolElement.created() : super.created(); |
@DomName('SVGSymbolElement.externalResourcesRequired') |
@DocsEditable() |
@@ -5756,6 +6110,12 @@ class TSpanElement extends TextPositioningElement { |
@DomName('SVGTSpanElement.SVGTSpanElement') |
@DocsEditable() |
factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tspan"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ TSpanElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -5800,6 +6160,12 @@ abstract class Tests extends NativeFieldWrapperClass1 { |
class TextContentElement extends GraphicsElement implements ExternalResourcesRequired { |
// To suppress missing implicit constructor warnings. |
factory TextContentElement._() { 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. |
+ */ |
+ TextContentElement.created() : super.created(); |
@DomName('SVGTextContentElement.LENGTHADJUST_SPACING') |
@DocsEditable() |
@@ -5879,6 +6245,12 @@ class TextElement extends TextPositioningElement { |
@DomName('SVGTextElement.SVGTextElement') |
@DocsEditable() |
factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ TextElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -5894,6 +6266,12 @@ class TextElement extends TextPositioningElement { |
class TextPathElement extends TextContentElement implements UriReference { |
// To suppress missing implicit constructor warnings. |
factory TextPathElement._() { 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. |
+ */ |
+ TextPathElement.created() : super.created(); |
@DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN') |
@DocsEditable() |
@@ -5949,6 +6327,12 @@ class TextPathElement extends TextContentElement implements UriReference { |
class TextPositioningElement extends TextContentElement { |
// To suppress missing implicit constructor warnings. |
factory TextPositioningElement._() { 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. |
+ */ |
+ TextPositioningElement.created() : super.created(); |
@DomName('SVGTextPositioningElement.dx') |
@DocsEditable() |
@@ -5988,6 +6372,12 @@ class TitleElement extends SvgElement { |
@DomName('SVGTitleElement.SVGTitleElement') |
@DocsEditable() |
factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("title"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ TitleElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6225,6 +6615,12 @@ class UseElement extends GraphicsElement implements UriReference, ExternalResour |
@DomName('SVGUseElement.SVGUseElement') |
@DocsEditable() |
factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ UseElement.created() : super.created(); |
@DomName('SVGUseElement.animatedInstanceRoot') |
@DocsEditable() |
@@ -6292,6 +6688,12 @@ class ViewElement extends SvgElement implements FitToViewBox, ExternalResourcesR |
@DomName('SVGViewElement.SVGViewElement') |
@DocsEditable() |
factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ ViewElement.created() : super.created(); |
@DomName('SVGViewElement.viewTarget') |
@DocsEditable() |
@@ -6522,6 +6924,12 @@ class _ElementInstanceList extends NativeFieldWrapperClass1 with ListMixin<Eleme |
class _GradientElement extends SvgElement implements UriReference, ExternalResourcesRequired { |
// To suppress missing implicit constructor warnings. |
factory _GradientElement._() { 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. |
+ */ |
+ _GradientElement.created() : super.created(); |
@DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') |
@DocsEditable() |
@@ -6573,6 +6981,12 @@ class _GradientElement extends SvgElement implements UriReference, ExternalResou |
abstract class _SVGAltGlyphDefElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGAltGlyphDefElement._() { 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. |
+ */ |
+ _SVGAltGlyphDefElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6588,6 +7002,12 @@ abstract class _SVGAltGlyphDefElement extends SvgElement { |
abstract class _SVGAltGlyphItemElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGAltGlyphItemElement._() { 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. |
+ */ |
+ _SVGAltGlyphItemElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6603,6 +7023,12 @@ abstract class _SVGAltGlyphItemElement extends SvgElement { |
abstract class _SVGAnimateColorElement extends AnimationElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGAnimateColorElement._() { 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. |
+ */ |
+ _SVGAnimateColorElement.created() : super.created(); |
} |
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
@@ -6631,6 +7057,12 @@ abstract class _SVGColor { |
abstract class _SVGComponentTransferFunctionElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGComponentTransferFunctionElement._() { 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. |
+ */ |
+ _SVGComponentTransferFunctionElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6650,6 +7082,12 @@ abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext |
@DomName('SVGCursorElement.SVGCursorElement') |
@DocsEditable() |
factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag("cursor"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGCursorElement.created() : super.created(); |
/// Checks if this type is supported on the current platform. |
static bool get supported => true; |
@@ -6668,6 +7106,12 @@ abstract class _SVGCursorElement extends SvgElement implements UriReference, Ext |
abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStandardAttributes { |
// To suppress missing implicit constructor warnings. |
factory _SVGFEDropShadowElement._() { 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. |
+ */ |
+ _SVGFEDropShadowElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6683,6 +7127,12 @@ abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi |
abstract class _SVGFontElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontElement._() { 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. |
+ */ |
+ _SVGFontElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6698,6 +7148,12 @@ abstract class _SVGFontElement extends SvgElement { |
abstract class _SVGFontFaceElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontFaceElement._() { 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. |
+ */ |
+ _SVGFontFaceElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6713,6 +7169,12 @@ abstract class _SVGFontFaceElement extends SvgElement { |
abstract class _SVGFontFaceFormatElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontFaceFormatElement._() { 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. |
+ */ |
+ _SVGFontFaceFormatElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6728,6 +7190,12 @@ abstract class _SVGFontFaceFormatElement extends SvgElement { |
abstract class _SVGFontFaceNameElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontFaceNameElement._() { 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. |
+ */ |
+ _SVGFontFaceNameElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6743,6 +7211,12 @@ abstract class _SVGFontFaceNameElement extends SvgElement { |
abstract class _SVGFontFaceSrcElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontFaceSrcElement._() { 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. |
+ */ |
+ _SVGFontFaceSrcElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6758,6 +7232,12 @@ abstract class _SVGFontFaceSrcElement extends SvgElement { |
abstract class _SVGFontFaceUriElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGFontFaceUriElement._() { 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. |
+ */ |
+ _SVGFontFaceUriElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6777,6 +7257,12 @@ abstract class _SVGGlyphElement extends SvgElement { |
@DomName('SVGGlyphElement.SVGGlyphElement') |
@DocsEditable() |
factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag("glyph"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGGlyphElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6792,6 +7278,12 @@ abstract class _SVGGlyphElement extends SvgElement { |
abstract class _SVGGlyphRefElement extends SvgElement implements UriReference { |
// To suppress missing implicit constructor warnings. |
factory _SVGGlyphRefElement._() { 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. |
+ */ |
+ _SVGGlyphRefElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6811,6 +7303,12 @@ abstract class _SVGHKernElement extends SvgElement { |
@DomName('SVGHKernElement.SVGHKernElement') |
@DocsEditable() |
factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("hkern"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGHKernElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6829,6 +7327,12 @@ abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte |
@DomName('SVGMPathElement.SVGMPathElement') |
@DocsEditable() |
factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag("mpath"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGMPathElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6844,6 +7348,12 @@ abstract class _SVGMPathElement extends SvgElement implements UriReference, Exte |
abstract class _SVGMissingGlyphElement extends SvgElement { |
// To suppress missing implicit constructor warnings. |
factory _SVGMissingGlyphElement._() { 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. |
+ */ |
+ _SVGMissingGlyphElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6878,6 +7388,12 @@ abstract class _SVGTRefElement extends TextPositioningElement implements UriRefe |
@DomName('SVGTRefElement.SVGTRefElement') |
@DocsEditable() |
factory _SVGTRefElement() => _SvgElementFactoryProvider.createSvgElement_tag("tref"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGTRefElement.created() : super.created(); |
} |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
@@ -6897,5 +7413,11 @@ abstract class _SVGVKernElement extends SvgElement { |
@DomName('SVGVKernElement.SVGVKernElement') |
@DocsEditable() |
factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag("vkern"); |
+ /** |
+ * Constructor instantiated by the DOM when a custom element has been created. |
+ * |
+ * This can only be called by subclasses from their created constructor. |
+ */ |
+ _SVGVKernElement.created() : super.created(); |
} |