This appendix contains the complete OMG IDL for the SVG Document Object Model definitions.
// File: svg.idl #ifndef _SVG_IDL_ #define _SVG_IDL_ // For access to DOM2 core #include "dom.idl" // For access to DOM2 events #include "events.idl" // For access to those parts from DOM2 CSS OM used by SVG DOM. #include "css.idl" #pragma prefix "dom.w3c.org" #pragma javaPackage "org.w3c.dom" module svg { typedef dom::DOMString DOMString; typedef dom::DOMException DOMException; typedef dom::Element Element; typedef dom::Document Document; typedef dom::NodeList NodeList; // Predeclarations interface SVGElement; interface SVGList; interface SVGLangSpace; interface SVGExternalResourcesRequired; interface SVGTests; interface SVGFitToViewBox; interface SVGZoomAndPan; interface SVGViewSpec; interface SVGURIReference; interface SVGPoint; interface SVGMatrix; interface SVGPreserveAspectRatio; interface SVGAnimatedPreserveAspectRatio; interface SVGTransformList; interface SVGAnimatedTransformList; interface SVGTransform; interface SVGICCColor; interface SVGColor; interface SVGPaint; interface SVGTransformable; interface SVGDocument; interface SVGSVGElement; interface SVGElementInstance; interface SVGElementInstanceList; exception SVGException { unsigned short code; }; // SVGExceptionCode const unsigned short SVG_WRONG_TYPE_ERR = 0; const unsigned short SVG_INVALID_VALUE_ERR = 1; const unsigned short SVG_MATRIX_NOT_INVERTABLE = 2; interface SVGElement : Element { attribute DOMString id; // raises DOMException on setting readonly attribute SVGSVGElement ownerSVGElement; readonly attribute SVGElement viewportElement; }; interface SVGList { readonly attribute unsigned long numberOfItems; void clear ( ) raises( DOMException ); Object initialize ( in Object newItem ) raises( DOMException, SVGException ); Object createItem ( ); Object getItem ( in unsigned long index ) raises( DOMException ); Object insertItemBefore ( in Object newItem, in unsigned long index ) raises( DOMException, SVGException ); Object replaceItem ( in Object newItem, in unsigned long index ) raises( DOMException, SVGException ); Object removeItem ( in unsigned long index ) raises( DOMException ); Object appendItem ( in Object newItem ) raises( DOMException, SVGException ); }; interface SVGLengthList : SVGList {}; interface SVGAnimatedLengthList { attribute SVGLengthList baseVal; // raises DOMException on setting readonly attribute SVGLengthList animVal; }; interface SVGAnimatedString { attribute DOMString baseVal; // raises DOMException on setting readonly attribute DOMString animVal; }; interface SVGAnimatedBoolean { attribute boolean baseVal; // raises DOMException on setting readonly attribute boolean animVal; }; interface SVGAnimatedEnumeration { attribute unsigned short baseVal; // raises DOMException on setting readonly attribute unsigned short animVal; }; interface SVGAngle { // Angle Unit Types const unsigned short SVG_ANGLETYPE_UNKNOWN = 0; const unsigned short SVG_ANGLETYPE_UNSPECIFIED = 1; const unsigned short SVG_ANGLETYPE_DEG = 2; const unsigned short SVG_ANGLETYPE_RAD = 3; const unsigned short SVG_ANGLETYPE_GRAD = 4; readonly attribute unsigned short unitType; attribute float value; // raises DOMException on setting attribute float valueInSpecifiedUnits; // raises DOMException on setting attribute DOMString valueAsString; // raises DOMException on setting void newValueSpecifiedUnits ( in unsigned short unitType, in float valueInSpecifiedUnits ); void convertToSpecifiedUnits ( in unsigned short unitType ); }; interface SVGAnimatedAngle { attribute SVGAngle baseVal; // raises DOMException on setting readonly attribute SVGAngle animVal; }; interface SVGColor { // Color Types const unsigned short SVG_COLORTYPE_UNKNOWN = 0; const unsigned short SVG_COLORTYPE_RGBCOLOR = 1; const unsigned short SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; readonly attribute unsigned short colorType; readonly attribute css::RGBColor rgbColor; readonly attribute SVGICCColor iccColor; void setRGBColor ( in css::RGBColor rgbColor ); void setRGBColorICCColor ( in css::RGBColor rgbColor, in SVGICCColor iccColor ); css::RGBColor createRGBColor ( ); SVGICCColor createSVGICCColor ( ); }; interface SVGICCColor { attribute DOMString colorProfile; // raises DOMException on setting readonly attribute SVGList colors; }; interface SVGAnimatedInteger { attribute long baseVal; // raises DOMException on setting readonly attribute long animVal; }; interface SVGLength { // Length Unit Types const unsigned short SVG_LENGTHTYPE_UNKNOWN = 0; const unsigned short SVG_LENGTHTYPE_NUMBER = 1; const unsigned short SVG_LENGTHTYPE_PERCENTAGE = 2; const unsigned short SVG_LENGTHTYPE_EMS = 3; const unsigned short SVG_LENGTHTYPE_EXS = 4; const unsigned short SVG_LENGTHTYPE_PX = 5; const unsigned short SVG_LENGTHTYPE_CM = 6; const unsigned short SVG_LENGTHTYPE_MM = 7; const unsigned short SVG_LENGTHTYPE_IN = 8; const unsigned short SVG_LENGTHTYPE_PT = 9; const unsigned short SVG_LENGTHTYPE_PC = 10; readonly attribute unsigned short unitType; attribute float value; // raises DOMException on setting attribute float valueInSpecifiedUnits; // raises DOMException on setting attribute DOMString valueAsString; // raises DOMException on setting void newValueSpecifiedUnits ( in unsigned short unitType, in float valueInSpecifiedUnits ); void convertToSpecifiedUnits ( in unsigned short unitType ); }; interface SVGAnimatedLength { attribute SVGLength baseVal; // raises DOMException on setting readonly attribute SVGLength animVal; }; interface SVGAnimatedNumber { attribute float baseVal; // raises DOMException on setting readonly attribute float animVal; }; interface SVGNumberList : SVGList {}; interface SVGAnimatedNumberList { attribute SVGNumberList baseVal; // raises DOMException on setting readonly attribute SVGNumberList animVal; }; interface SVGRect { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float width; // raises DOMException on setting attribute float height; // raises DOMException on setting }; interface SVGAnimatedRect { attribute SVGRect baseVal; // raises DOMException on setting readonly attribute SVGRect animVal; }; interface SVGUnitTypes { // Unit Types const unsigned short SVG_UNIT_TYPE_UNKNOWN = 0; const unsigned short SVG_UNIT_TYPE_USERSPACEONUSE = 1; const unsigned short SVG_UNIT_TYPE_USERSPACE = 2; const unsigned short SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 3; }; interface SVGStylable { attribute SVGAnimatedString className; // raises DOMException on setting readonly attribute css::CSSStyleDeclaration style; css::CSSValue getPresentationAttribute ( in DOMString name ); css::CSSValue getAnimatedPresentationAttribute ( in DOMString name ); }; interface SVGTransformable { readonly attribute SVGElement nearestViewportElement; readonly attribute SVGElement farthestViewportElement; attribute SVGAnimatedTransformList transform; // raises DOMException on setting SVGRect getBBox ( ); SVGMatrix getCTM ( ); SVGMatrix getScreenCTM ( ); SVGMatrix getTransformToElement ( in SVGElement element ) raises( SVGException ); }; interface SVGTests { attribute SVGList requiredFeatures; // raises DOMException on setting attribute SVGList requiredExtensions; // raises DOMException on setting attribute SVGList systemLanguage; // raises DOMException on setting boolean hasExtension ( in DOMString extension ); }; interface SVGLangSpace { attribute DOMString xmllang; // raises DOMException on setting attribute DOMString xmlspace; // raises DOMException on setting }; interface SVGExternalResourcesRequired { attribute SVGAnimatedBoolean externalResourcesRequired; // raises DOMException on setting }; interface SVGFitToViewBox { attribute SVGAnimatedRect viewBox; // raises DOMException on setting attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio; // raises DOMException on setting }; interface SVGZoomAndPan { // Zoom and Pan Types const unsigned short SVG_ZOOMANDPAN_UNKNOWN = 0; const unsigned short SVG_ZOOMANDPAN_DISABLE = 1; const unsigned short SVG_ZOOMANDPAN_MAGNIFY = 2; const unsigned short SVG_ZOOMANDPAN_ZOOM = 3; attribute unsigned short zoomAndPan; // raises DOMException on setting }; interface SVGViewSpec : SVGZoomAndPan, SVGFitToViewBox { attribute SVGTransformList transform; // raises DOMException on setting attribute SVGElement viewTarget; // raises DOMException on setting readonly attribute DOMString viewBoxString; readonly attribute DOMString preserveAspectRatioString; readonly attribute DOMString transformString; readonly attribute DOMString viewTargetString; }; interface SVGURIReference { attribute DOMString xlinkType; // raises DOMException on setting attribute DOMString xlinkRole; // raises DOMException on setting attribute DOMString xlinkTitle; // raises DOMException on setting attribute DOMString xlinkShow; // raises DOMException on setting attribute DOMString xlinkActuate; // raises DOMException on setting attribute SVGAnimatedString href; // raises DOMException on setting }; interface SVGCSSRule : css::CSSRule { // Additional CSS RuleType to support ICC color specifications const unsigned short COLOR_PROFILE_RULE = 7; }; interface SVGRenderingIntent { // Rendering Intent Types const unsigned short RENDERING_INTENT_UNKNOWN = 0; const unsigned short RENDERING_INTENT_AUTO = 1; const unsigned short RENDERING_INTENT_PERCEPTUAL = 2; const unsigned short RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; const unsigned short RENDERING_INTENT_SATURATION = 4; const unsigned short RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; }; interface SVGDocument : Document, events::DocumentEvent { attribute DOMString title; // raises DOMException on setting readonly attribute DOMString referrer; readonly attribute DOMString domain; readonly attribute DOMString URL; readonly attribute SVGSVGElement rootElement; }; interface SVGSVGElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox, SVGZoomAndPan, events::EventTarget, events::DocumentEvent { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting attribute DOMString contentScriptType; // raises DOMException on setting attribute DOMString contentStyleType; // raises DOMException on setting readonly attribute SVGRect viewport; readonly attribute float pixelUnitToMillimeterX; readonly attribute float pixelUnitToMillimeterY; readonly attribute float screenPixelToMillimeterX; readonly attribute float screenPixelToMillimeterY; attribute boolean useCurrentView; // raises DOMException on setting readonly attribute SVGViewSpec currentView; attribute float currentScale; // raises DOMException on setting attribute SVGPoint currentTranslate; // raises DOMException on setting unsigned long suspendRedraw ( in unsigned long max_wait_milliseconds ); void unsuspendRedraw ( in unsigned long suspend_handle_id ) raises( DOMException ); void unsuspendRedrawAll ( ); void forceRedraw ( ); void pauseAnimations ( ); void unpauseAnimations ( ); boolean animationsPaused ( ); float getCurrentTime ( ); void setCurrentTime ( in float seconds ); NodeList getIntersectionList ( in SVGRect rect, in SVGElement referenceElement ); NodeList getEnclosureList ( in SVGRect rect, in SVGElement referenceElement ); boolean checkIntersection ( in SVGElement element, in SVGRect rect ); boolean checkEnclosure ( in SVGElement element, in SVGRect rect ); void deSelectAll ( ); SVGLength createSVGLength ( ); SVGAngle createSVGAngle ( ); SVGPoint createSVGPoint ( ); SVGMatrix createSVGMatrix ( ); SVGRect createSVGRect ( ); SVGTransform createSVGTransform ( ); SVGTransform createSVGTransformFromMatrix ( in SVGMatrix matrix ); SVGICCColor createSVGICCColor ( ); SVGColor createSVGColor ( ); SVGPaint createSVGPaint ( ); Element getElementById ( in DOMString elementId ); }; interface SVGGElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget {}; interface SVGDefsElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget {}; interface SVGDescElement : SVGElement, SVGLangSpace, SVGStylable {}; interface SVGTitleElement : SVGElement, SVGLangSpace, SVGStylable {}; interface SVGSymbolElement : SVGElement, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox, events::EventTarget {}; interface SVGUseElement : SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting readonly attribute SVGElementInstance instanceRoot; readonly attribute SVGElementInstance animatedInstanceRoot; }; interface SVGElementInstance : events::EventTarget { readonly attribute SVGElement correspondingElement; readonly attribute SVGUseElement correspondingUseElement; readonly attribute SVGElementInstance parentNode; readonly attribute SVGElementInstanceList childNodes; readonly attribute SVGElementInstance firstChild; readonly attribute SVGElementInstance lastChild; readonly attribute SVGElementInstance previousSibling; readonly attribute SVGElementInstance nextSibling; }; interface SVGElementInstanceList { readonly attribute SVGElementInstance length; SVGElementInstance item ( in unsigned long index ); }; interface SVGImageElement : SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting }; interface SVGSwitchElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget {}; interface GetSVGDocument { SVGDocument getSVGDocument ( ) raises( DOMException ); }; interface SVGStyleElement : SVGElement { attribute DOMString xmlspace; // raises DOMException on setting attribute DOMString type; // raises DOMException on setting attribute DOMString media; // raises DOMException on setting attribute DOMString title; // raises DOMException on setting }; interface SVGPoint { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting SVGPoint matrixTransform ( in SVGMatrix matrix ); }; interface SVGMatrix { attribute float a; // raises DOMException on setting attribute float b; // raises DOMException on setting attribute float c; // raises DOMException on setting attribute float d; // raises DOMException on setting attribute float e; // raises DOMException on setting attribute float f; // raises DOMException on setting SVGMatrix multiply ( in SVGMatrix secondMatrix ); SVGMatrix inverse ( ) raises( SVGException ); SVGMatrix translate ( in float x, in float y ); SVGMatrix scale ( in float scaleFactor ); SVGMatrix scaleNonUniform ( in float scaleFactorX, in float scaleFactorY ); SVGMatrix rotate ( in float angle ); SVGMatrix rotateFromVector ( in float x, in float y ) raises( SVGException ); SVGMatrix flipX ( ); SVGMatrix flipY ( ); SVGMatrix skewX ( in float angle ); SVGMatrix skewY ( in float angle ); }; interface SVGTransformList : SVGList { SVGTransform createSVGTransformFromMatrix ( in SVGMatrix matrix ); SVGTransform consolidate ( ); }; interface SVGAnimatedTransformList { attribute SVGTransformList baseVal; // raises DOMException on setting readonly attribute SVGTransformList animVal; }; interface SVGTransform { // Transform Types const unsigned short SVG_TRANSFORM_UNKNOWN = 0; const unsigned short SVG_TRANSFORM_MATRIX = 1; const unsigned short SVG_TRANSFORM_TRANSLATE = 2; const unsigned short SVG_TRANSFORM_SCALE = 3; const unsigned short SVG_TRANSFORM_ROTATE = 4; const unsigned short SVG_TRANSFORM_SKEWX = 5; const unsigned short SVG_TRANSFORM_SKEWY = 6; readonly attribute unsigned short type; readonly attribute SVGMatrix matrix; readonly attribute float angle; void setMatrix ( in SVGMatrix matrix ); void setTranslate ( in float tx, in float ty ); void setScale ( in float sx, in float sy ); void setRotate ( in float angle ); void setSkewX ( in float angle ); void setSkewY ( in float angle ); }; interface SVGPreserveAspectRatio { // Alignment Types const unsigned short SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; const unsigned short SVG_PRESERVEASPECTRATIO_NONE = 1; const unsigned short SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; const unsigned short SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; const unsigned short SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; const unsigned short SVG_PRESERVEASPECTRATIO_XMINYMID = 5; const unsigned short SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; const unsigned short SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; const unsigned short SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; const unsigned short SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; const unsigned short SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; // Meet-or-slice Types const unsigned short SVG_MEETORSLICE_UNKNOWN = 0; const unsigned short SVG_MEETORSLICE_MEET = 1; const unsigned short SVG_MEETORSLICE_SLICE = 2; attribute unsigned short align; // raises DOMException on setting attribute unsigned short meetOrSlice; // raises DOMException on setting }; interface SVGAnimatedPreserveAspectRatio { attribute SVGPreserveAspectRatio baseVal; // raises DOMException on setting readonly attribute SVGPreserveAspectRatio animVal; }; interface SVGPathSeg { // Path Segment Types const unsigned short PATHSEG_UNKNOWN = 0; const unsigned short PATHSEG_CLOSEPATH = 1; const unsigned short PATHSEG_MOVETO_ABS = 2; const unsigned short PATHSEG_MOVETO_REL = 3; const unsigned short PATHSEG_LINETO_ABS = 4; const unsigned short PATHSEG_LINETO_REL = 5; const unsigned short PATHSEG_CURVETO_CUBIC_ABS = 6; const unsigned short PATHSEG_CURVETO_CUBIC_REL = 7; const unsigned short PATHSEG_CURVETO_QUADRATIC_ABS = 8; const unsigned short PATHSEG_CURVETO_QUADRATIC_REL = 9; const unsigned short PATHSEG_ARC_ABS = 10; const unsigned short PATHSEG_ARC_REL = 11; const unsigned short PATHSEG_LINETO_HORIZONTAL_ABS = 12; const unsigned short PATHSEG_LINETO_HORIZONTAL_REL = 13; const unsigned short PATHSEG_LINETO_VERTICAL_ABS = 14; const unsigned short PATHSEG_LINETO_VERTICAL_REL = 15; const unsigned short PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; const unsigned short PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; const unsigned short PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; const unsigned short PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; readonly attribute unsigned short pathSegType; readonly attribute DOMString pathSegTypeAsLetter; }; interface SVGPathSegClosePath : SVGPathSeg {}; interface SVGPathSegMovetoAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGPathSegMovetoRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGPathSegLinetoAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGPathSegLinetoRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGPathSegCurvetoCubicAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x1; // raises DOMException on setting attribute float y1; // raises DOMException on setting attribute float x2; // raises DOMException on setting attribute float y2; // raises DOMException on setting }; interface SVGPathSegCurvetoCubicRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x1; // raises DOMException on setting attribute float y1; // raises DOMException on setting attribute float x2; // raises DOMException on setting attribute float y2; // raises DOMException on setting }; interface SVGPathSegCurvetoQuadraticAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x1; // raises DOMException on setting attribute float y1; // raises DOMException on setting }; interface SVGPathSegCurvetoQuadraticRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x1; // raises DOMException on setting attribute float y1; // raises DOMException on setting }; interface SVGPathSegArcAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float r1; // raises DOMException on setting attribute float r2; // raises DOMException on setting attribute float angle; // raises DOMException on setting attribute boolean largeArcFlag; // raises DOMException on setting attribute boolean sweepFlag; // raises DOMException on setting }; interface SVGPathSegArcRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float r1; // raises DOMException on setting attribute float r2; // raises DOMException on setting attribute float angle; // raises DOMException on setting attribute boolean largeArcFlag; // raises DOMException on setting attribute boolean sweepFlag; // raises DOMException on setting }; interface SVGPathSegLinetoHorizontalAbs : SVGPathSeg { attribute float x; // raises DOMException on setting }; interface SVGPathSegLinetoHorizontalRel : SVGPathSeg { attribute float x; // raises DOMException on setting }; interface SVGPathSegLinetoVerticalAbs : SVGPathSeg { attribute float y; // raises DOMException on setting }; interface SVGPathSegLinetoVerticalRel : SVGPathSeg { attribute float y; // raises DOMException on setting }; interface SVGPathSegCurvetoCubicSmoothAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x2; // raises DOMException on setting attribute float y2; // raises DOMException on setting }; interface SVGPathSegCurvetoCubicSmoothRel : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting attribute float x2; // raises DOMException on setting attribute float y2; // raises DOMException on setting }; interface SVGPathSegCurvetoQuadraticSmoothAbs : SVGPathSeg { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGPathSegCurvetoQuadraticSmoothRel { attribute float x; // raises DOMException on setting attribute float y; // raises DOMException on setting }; interface SVGAnimatedPathData : SVGPathSeg { readonly attribute SVGList pathSegList; readonly attribute SVGList normalizedPathSegList; readonly attribute SVGList animatedPathSegList; readonly attribute SVGList animatedNormalizedPathSegList; }; interface SVGPathElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget, SVGAnimatedPathData { attribute SVGAnimatedNumber pathLength; // raises DOMException on setting float getTotalLength ( ); SVGPoint getPointAtLength ( in float distance ); unsigned long getPathSegAtLength ( in float distance ); SVGPathSegClosePath createSVGPathSegClosePath ( ); SVGPathSegMovetoAbs createSVGPathSegMovetoAbs ( in float x, in float y ); SVGPathSegMovetoRel createSVGPathSegMovetoRel ( in float x, in float y ); SVGPathSegLinetoAbs createSVGPathSegLinetoAbs ( in float x, in float y ); SVGPathSegLinetoRel createSVGPathSegLinetoRel ( in float x, in float y ); SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs ( in float x, in float y, in float x1, in float y1, in float x2, in float y2 ); SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel ( in float x, in float y, in float x1, in float y1, in float x2, in float y2 ); SVGPathSegCurvetoQuadraticAbs createSVGPathSegCurvetoQuadraticAbs ( in float x, in float y, in float x1, in float y1 ); SVGPathSegCurvetoQuadraticRel createSVGPathSegCurvetoQuadraticRel ( in float x, in float y, in float x1, in float y1 ); SVGPathSegArcAbs createSVGPathSegArcAbs ( in float x, in float y, in float r1, in float r2, in float angle, in boolean largeArcFlag, in boolean sweepFlag ); SVGPathSegArcRel createSVGPathSegArcRel ( in float x, in float y, in float r1, in float r2, in float angle, in boolean largeArcFlag, in boolean sweepFlag ); SVGPathSegLinetoHorizontalAbs createSVGPathSegLinetoHorizontalAbs ( in float x ); SVGPathSegLinetoHorizontalRel createSVGPathSegLinetoHorizontalRel ( in float x ); SVGPathSegLinetoVerticalAbs createSVGPathSegLinetoVerticalAbs ( in float y ); SVGPathSegLinetoVerticalRel createSVGPathSegLinetoVerticalRel ( in float y ); SVGPathSegCurvetoCubicSmoothAbs createSVGPathSegCurvetoCubicSmoothAbs ( in float x, in float y, in float x2, in float y2 ); SVGPathSegCurvetoCubicSmoothRel createSVGPathSegCurvetoCubicSmoothRel ( in float x, in float y, in float x2, in float y2 ); SVGPathSegCurvetoQuadraticSmoothAbs createSVGPathSegCurvetoQuadraticSmoothAbs ( in float x, in float y ); SVGPathSegCurvetoQuadraticSmoothRel createSVGPathSegCurvetoQuadraticSmoothRel ( in float x, in float y ); }; interface SVGRectElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting attribute SVGAnimatedLength rx; // raises DOMException on setting attribute SVGAnimatedLength ry; // raises DOMException on setting }; interface SVGCircleElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength cx; // raises DOMException on setting attribute SVGAnimatedLength cy; // raises DOMException on setting attribute SVGAnimatedLength r; // raises DOMException on setting }; interface SVGEllipseElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength cx; // raises DOMException on setting attribute SVGAnimatedLength cy; // raises DOMException on setting attribute SVGAnimatedLength rx; // raises DOMException on setting attribute SVGAnimatedLength ry; // raises DOMException on setting }; interface SVGLineElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength x1; // raises DOMException on setting attribute SVGAnimatedLength y1; // raises DOMException on setting attribute SVGAnimatedLength x2; // raises DOMException on setting attribute SVGAnimatedLength y2; // raises DOMException on setting }; interface SVGAnimatedPoints { readonly attribute SVGList points; readonly attribute SVGList animatedPoints; }; interface SVGPolylineElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget, SVGAnimatedPoints {}; interface SVGPolygonElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget, SVGAnimatedPoints {}; interface SVGTextContentElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, events::EventTarget { // lengthAdjust Types const unsigned short LENGTHADJUST_UNKNOWN = 0; const unsigned short LENGTHADJUST_SPACING = 1; const unsigned short LENGTHADJUST_SPACINGANDGLYPHS = 2; attribute SVGAnimatedLength textLength; // raises DOMException on setting attribute SVGAnimatedEnumeration lengthAdjust; // raises DOMException on setting long getNumberOfChars ( ); float getComputedTextLength ( ); float getSubStringLength ( in unsigned long charnum, in unsigned long nchars ) raises( DOMException ); SVGPoint getStartPositionOfChar ( in unsigned long charnum ) raises( DOMException ); SVGPoint getEndPositionOfChar ( in unsigned long charnum ) raises( DOMException ); SVGRect getExtentOfChar ( in unsigned long charnum ) raises( DOMException ); float getRotationOfChar ( in unsigned long charnum ) raises( DOMException ); long getCharNumAtPosition ( in SVGPoint point ); void selectSubString ( in unsigned long charnum, in unsigned long nchars ) raises( DOMException ); }; interface SVGTextElement : SVGTextContentElement, SVGTransformable { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting }; interface SVGTextRotate { // rotate types const unsigned short ROTATE_UNKNOWN = 0; const unsigned short ROTATE_AUTO = 1; const unsigned short ROTATE_ANGLES = 2; attribute unsigned short rotateValueType; // raises DOMException on setting attribute SVGList angles; // raises DOMException on setting }; interface SVGAnimatedTextRotate { attribute SVGTextRotate baseVal; // raises DOMException on setting readonly attribute SVGTextRotate animVal; }; interface SVGTextPositioningElement : SVGTextContentElement { attribute SVGAnimatedLengthList x; // raises DOMException on setting attribute SVGAnimatedLengthList y; // raises DOMException on setting attribute SVGAnimatedLengthList dx; // raises DOMException on setting attribute SVGAnimatedLengthList dy; // raises DOMException on setting attribute SVGAnimatedTextRotate rotate; // raises DOMException on setting }; interface SVGTSpanElement : SVGTextPositioningElement {}; interface SVGTRefElement : SVGTextPositioningElement, SVGURIReference {}; interface SVGGlyphRunElement : SVGTextPositioningElement { readonly attribute SVGAnimatedNumberList glyphOrder; }; interface SVGTextPathElement : SVGTextPositioningElement, SVGURIReference { // textPath Method Types const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0; const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1; const unsigned short TEXTPATH_METHODTYPE_STRETCH = 2; // textPath Spacing Types const unsigned short TEXTPATH_SPACINGTYPE_UNKNOWN = 0; const unsigned short TEXTPATH_SPACINGTYPE_AUTO = 1; const unsigned short TEXTPATH_SPACINGTYPE_EXACT = 2; attribute SVGAnimatedLength startOffset; // raises DOMException on setting attribute SVGAnimatedEnumeration method; // raises DOMException on setting attribute SVGAnimatedEnumeration spacing; // raises DOMException on setting }; interface SVGAltGlyphElement : SVGTextContentElement, SVGURIReference {}; interface SVGAltGlyphDefElement : SVGElement {}; interface SVGAltGlyphItemElement : SVGElement {}; interface SVGGlyphRefElement : SVGElement, SVGURIReference, SVGStylable { attribute DOMString glyphRef; // raises DOMException on setting attribute DOMString format; // raises DOMException on setting }; interface SVGPaint : SVGColor { // Paint Types const unsigned short SVG_PAINTTYPE_UNKNOWN = 0; const unsigned short SVG_PAINTTYPE_RGBCOLOR = 1; const unsigned short SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; const unsigned short SVG_PAINTTYPE_NONE = 101; const unsigned short SVG_PAINTTYPE_CURRENTCOLOR = 102; const unsigned short SVG_PAINTTYPE_URI_NONE = 103; const unsigned short SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; const unsigned short SVG_PAINTTYPE_URI_RGBCOLOR = 105; const unsigned short SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; readonly attribute unsigned short paintType; readonly attribute DOMString uri; void setUri ( in DOMString uri ); void setPaint ( in unsigned short paintType, in DOMString uri, in css::RGBColor rgbColor, in SVGICCColor iccColor ); }; interface SVGMarkerElement : SVGElement, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox { // Marker Unit Types const unsigned short SVG_MARKERUNITS_UNKNOWN = 0; const unsigned short SVG_MARKERUNITS_USERSPACEONUSE = 1; const unsigned short SVG_MARKERUNITS_USERSPACE = 2; const unsigned short SVG_MARKERUNITS_STROKEWIDTH = 3; // Marker Orientation Types const unsigned short SVG_MARKER_ORIENT_UNKNOWN = 0; const unsigned short SVG_MARKER_ORIENT_AUTO = 1; const unsigned short SVG_MARKER_ORIENT_ANGLE = 2; attribute SVGAnimatedLength refX; // raises DOMException on setting attribute SVGAnimatedLength refY; // raises DOMException on setting attribute SVGAnimatedEnumeration markerUnits; // raises DOMException on setting attribute SVGAnimatedLength markerWidth; // raises DOMException on setting attribute SVGAnimatedLength markerHeight; // raises DOMException on setting readonly attribute SVGAnimatedEnumeration orientType; readonly attribute SVGAnimatedAngle orientAngle; void setOrientToAuto ( ); void setOrientToAngle ( in SVGAngle angle ); }; interface SVGColorProfileElement : SVGElement, SVGRenderingIntent { attribute DOMString name; // raises DOMException on setting attribute unsigned short renderingIntent; // raises DOMException on setting }; interface SVGColorProfileSrcElement : SVGElement, SVGURIReference {}; interface SVGColorProfileRule : SVGCSSRule, SVGRenderingIntent { attribute DOMString src; // raises DOMException on setting attribute DOMString name; // raises DOMException on setting attribute unsigned short renderingIntent; // raises DOMException on setting }; interface SVGGradientElement : SVGElement, SVGURIReference, SVGExternalResourcesRequired, SVGUnitTypes { // Spread Method Types const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0; const unsigned short SVG_SPREADMETHOD_PAD = 1; const unsigned short SVG_SPREADMETHOD_REFLECT = 2; const unsigned short SVG_SPREADMETHOD_REPEAT = 3; attribute SVGAnimatedEnumeration gradientUnits; // raises DOMException on setting attribute SVGAnimatedTransformList gradientTransform; // raises DOMException on setting attribute SVGAnimatedEnumeration spreadMethod; // raises DOMException on setting }; interface SVGLinearGradientElement : SVGGradientElement { attribute SVGAnimatedLength x1; // raises DOMException on setting attribute SVGAnimatedLength y1; // raises DOMException on setting attribute SVGAnimatedLength x2; // raises DOMException on setting attribute SVGAnimatedLength y2; // raises DOMException on setting }; interface SVGRadialGradientElement : SVGGradientElement { attribute SVGAnimatedLength cx; // raises DOMException on setting attribute SVGAnimatedLength cy; // raises DOMException on setting attribute SVGAnimatedLength r; // raises DOMException on setting attribute SVGAnimatedLength fx; // raises DOMException on setting attribute SVGAnimatedLength fy; // raises DOMException on setting }; interface SVGStopElement : SVGElement, SVGStylable { attribute SVGAnimatedNumber offset; // raises DOMException on setting }; interface SVGPatternElement : SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox, SVGUnitTypes { attribute SVGAnimatedEnumeration patternUnits; // raises DOMException on setting attribute SVGAnimatedTransformList patternTransform; // raises DOMException on setting attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting }; interface SVGClipPathElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, SVGUnitTypes { attribute SVGAnimatedEnumeration clipPathUnits; // raises DOMException on setting }; interface SVGMaskElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, SVGUnitTypes { attribute SVGAnimatedEnumeration maskUnits; // raises DOMException on setting attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting }; interface SVGFilterElement : SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGUnitTypes { attribute SVGAnimatedEnumeration filterUnits; // raises DOMException on setting attribute SVGAnimatedEnumeration primitiveUnits; // raises DOMException on setting attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting attribute SVGAnimatedInteger filterResX; // raises DOMException on setting attribute SVGAnimatedInteger filterResY; // raises DOMException on setting void setFilterRes ( in unsigned long filterResX, in unsigned long filterResY ); }; interface SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting attribute SVGAnimatedString result; // raises DOMException on setting }; interface SVGFEBlendElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Blend Mode Types const unsigned short SVG_FEBLEND_MODE_UNKNOWN = 0; const unsigned short SVG_FEBLEND_MODE_NORMAL = 1; const unsigned short SVG_FEBLEND_MODE_MULTIPLY = 2; const unsigned short SVG_FEBLEND_MODE_SCREEN = 3; const unsigned short SVG_FEBLEND_MODE_DARKEN = 4; const unsigned short SVG_FEBLEND_MODE_LIGHTEN = 5; attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedString in2; // raises DOMException on setting attribute SVGAnimatedEnumeration mode; // raises DOMException on setting }; interface SVGFEColorMatrixElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Color Matrix Types const unsigned short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; const unsigned short SVG_FECOLORMATRIX_TYPE_MATRIX = 1; const unsigned short SVG_FECOLORMATRIX_TYPE_SATURATE = 2; const unsigned short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; const unsigned short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedEnumeration type; // raises DOMException on setting readonly attribute SVGAnimatedNumberList values; }; interface SVGFEComponentTransferElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting }; interface SVGComponentTransferFunctionElement : SVGElement { // Component Transfer Types const unsigned short SVG_FECOMPONENTTRANFER_TYPE_UNKNOWN = 0; const unsigned short SVG_FECOMPONENTTRANFER_TYPE_IDENTITY = 1; const unsigned short SVG_FECOMPONENTTRANFER_TYPE_TABLE = 2; const unsigned short SVG_FECOMPONENTTRANFER_TYPE_DISCRETE = 3; const unsigned short SVG_FECOMPONENTTRANFER_TYPE_LINEAR = 4; const unsigned short SVG_FECOMPONENTTRANFER_TYPE_GAMMA = 5; attribute SVGAnimatedEnumeration type; // raises DOMException on setting readonly attribute SVGAnimatedNumberList tableValues; attribute SVGAnimatedNumber slope; // raises DOMException on setting attribute SVGAnimatedNumber intercept; // raises DOMException on setting attribute SVGAnimatedNumber amplitude; // raises DOMException on setting attribute SVGAnimatedNumber exponent; // raises DOMException on setting attribute SVGAnimatedNumber offset; // raises DOMException on setting }; interface SVGFEFuncRElement : SVGComponentTransferFunctionElement {}; interface SVGFEFuncGElement : SVGComponentTransferFunctionElement {}; interface SVGFEFuncBElement : SVGComponentTransferFunctionElement {}; interface SVGFEFuncAElement : SVGComponentTransferFunctionElement {}; interface SVGFECompositeElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Composite Operators const unsigned short SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; const unsigned short SVG_FECOMPOSITE_OPERATOR_OVER = 1; const unsigned short SVG_FECOMPOSITE_OPERATOR_IN = 2; const unsigned short SVG_FECOMPOSITE_OPERATOR_OUT = 3; const unsigned short SVG_FECOMPOSITE_OPERATOR_ATOP = 4; const unsigned short SVG_FECOMPOSITE_OPERATOR_XOR = 5; const unsigned short SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedString in2; // raises DOMException on setting attribute SVGAnimatedEnumeration operator; // raises DOMException on setting attribute SVGAnimatedNumber k1; // raises DOMException on setting attribute SVGAnimatedNumber k2; // raises DOMException on setting attribute SVGAnimatedNumber k3; // raises DOMException on setting attribute SVGAnimatedNumber k4; // raises DOMException on setting }; interface SVGFEConvolveMatrixElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Edge Mode Values const unsigned short SVG_EDGEMODE_UNKNOWN = 0; const unsigned short SVG_EDGEMODE_DUPLICATE = 1; const unsigned short SVG_EDGEMODE_WRAP = 2; const unsigned short SVG_EDGEMODE_NONE = 3; attribute SVGAnimatedInteger orderX; // raises DOMException on setting attribute SVGAnimatedInteger orderY; // raises DOMException on setting readonly attribute SVGAnimatedNumberList kernelMatrix; attribute SVGAnimatedNumber divisor; // raises DOMException on setting attribute SVGAnimatedNumber bias; // raises DOMException on setting attribute SVGAnimatedInteger targetX; // raises DOMException on setting attribute SVGAnimatedInteger targetY; // raises DOMException on setting attribute SVGAnimatedEnumeration edgeMode; // raises DOMException on setting attribute SVGAnimatedLength kernelUnitLengthX; // raises DOMException on setting attribute SVGAnimatedLength kernelUnitLengthY; // raises DOMException on setting attribute SVGAnimatedBoolean preserveAlpha; // raises DOMException on setting }; interface SVGFEDiffuseLightingElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedNumber surfaceScale; // raises DOMException on setting attribute SVGAnimatedNumber diffuseConstant; // raises DOMException on setting }; interface SVGFEDistantLightElement : SVGElement { attribute SVGAnimatedNumber azimuth; // raises DOMException on setting attribute SVGAnimatedNumber elevation; // raises DOMException on setting }; interface SVGFEPointLightElement : SVGElement { attribute SVGAnimatedNumber x; // raises DOMException on setting attribute SVGAnimatedNumber y; // raises DOMException on setting attribute SVGAnimatedNumber z; // raises DOMException on setting }; interface SVGFESpotLightElement : SVGElement { attribute SVGAnimatedNumber x; // raises DOMException on setting attribute SVGAnimatedNumber y; // raises DOMException on setting attribute SVGAnimatedNumber z; // raises DOMException on setting attribute SVGAnimatedNumber pointsAtX; // raises DOMException on setting attribute SVGAnimatedNumber pointsAtY; // raises DOMException on setting attribute SVGAnimatedNumber pointsAtZ; // raises DOMException on setting attribute SVGAnimatedNumber specularExponent; // raises DOMException on setting attribute SVGAnimatedNumber limitingConeAngle; // raises DOMException on setting }; interface SVGFEDisplacementMapElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Channel Selectors const unsigned short SVG_CHANNEL_UNKNOWN = 0; const unsigned short SVG_CHANNEL_R = 1; const unsigned short SVG_CHANNEL_G = 2; const unsigned short SVG_CHANNEL_B = 3; const unsigned short SVG_CHANNEL_A = 4; attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedString in2; // raises DOMException on setting attribute SVGAnimatedNumber scale; // raises DOMException on setting attribute SVGAnimatedEnumeration xChannelSelector; // raises DOMException on setting attribute SVGAnimatedEnumeration yChannelSelector; // raises DOMException on setting }; interface SVGFEFloodElement : SVGElement, SVGStylable, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting }; interface SVGFEGaussianBlurElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedNumber stdDeviationX; // raises DOMException on setting attribute SVGAnimatedNumber stdDeviationY; // raises DOMException on setting void setStdDeviation ( in SVGLength stdDeviationX, in SVGLength stdDeviationY ); }; interface SVGFEImageElement : SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, SVGFilterPrimitiveStandardAttributes {}; interface SVGFEMergeElement : SVGElement, SVGFilterPrimitiveStandardAttributes {}; interface SVGFEMergeNodeElement : SVGElement { attribute SVGAnimatedString in1; // raises DOMException on setting }; interface SVGFEMorphologyElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Morphology Operators const unsigned short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; const unsigned short SVG_MORPHOLOGY_OPERATOR_ERODE = 1; const unsigned short SVG_MORPHOLOGY_OPERATOR_DILATE = 2; attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedEnumeration operator; // raises DOMException on setting attribute SVGAnimatedLength radiusX; // raises DOMException on setting attribute SVGAnimatedLength radiusY; // raises DOMException on setting }; interface SVGFEOffsetElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedLength dx; // raises DOMException on setting attribute SVGAnimatedLength dy; // raises DOMException on setting }; interface SVGFESpecularLightingElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting attribute SVGAnimatedNumber surfaceScale; // raises DOMException on setting attribute SVGAnimatedNumber specularConstant; // raises DOMException on setting attribute SVGAnimatedNumber specularExponent; // raises DOMException on setting }; interface SVGFETileElement : SVGElement, SVGFilterPrimitiveStandardAttributes { attribute SVGAnimatedString in1; // raises DOMException on setting }; interface SVGFETurbulenceElement : SVGElement, SVGFilterPrimitiveStandardAttributes { // Turbulence Types const unsigned short SVG_TURBULENCE_TYPE_UNKNOWN = 0; const unsigned short SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; const unsigned short SVG_TURBULENCE_TYPE_TURBULENCE = 2; // Stitch Options const unsigned short SVG_STITCHTYPE_UNKNOWN = 0; const unsigned short SVG_STITCHTYPE_STITCH = 1; const unsigned short SVG_STITCHTYPE_NOSTITCH = 2; attribute SVGAnimatedNumber baseFrequencyX; // raises DOMException on setting attribute SVGAnimatedNumber baseFrequencyY; // raises DOMException on setting attribute SVGAnimatedInteger numOctaves; // raises DOMException on setting attribute SVGAnimatedNumber seed; // raises DOMException on setting attribute SVGAnimatedEnumeration stitchTiles; // raises DOMException on setting attribute SVGAnimatedEnumeration type; // raises DOMException on setting }; interface SVGCursorElement : SVGElement, SVGURIReference, SVGTests, SVGExternalResourcesRequired { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting }; interface SVGAElement : SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedString target; // raises DOMException on setting }; interface SVGViewElement : SVGElement, SVGExternalResourcesRequired, SVGFitToViewBox, SVGZoomAndPan { attribute SVGElement viewTarget; // raises DOMException on setting }; interface SVGScriptElement : SVGElement, SVGURIReference, SVGExternalResourcesRequired { attribute DOMString type; // raises DOMException on setting }; interface SVGZoomEvent : events::UIEvent { attribute SVGRect zoomRectScreen; // raises DOMException on setting attribute float previousScale; // raises DOMException on setting attribute SVGPoint previousTranslate; // raises DOMException on setting attribute float newScale; // raises DOMException on setting attribute SVGPoint newTranslate; // raises DOMException on setting }; interface ElementTimeControl { boolean beginElement ( ) raises( DOMException ); boolean beginElementAt ( in float offset ) raises( DOMException ); boolean endElement ( ) raises( DOMException ); boolean endElementAt ( in float offset ) raises( DOMException ); }; interface SVGAnimationElement : SVGElement, SVGTests, SVGExternalResourcesRequired, ElementTimeControl { readonly attribute SVGElement targetElement; float getStartTime ( ); float getCurrentTime ( ); float getSimpleDuration ( ) raises( DOMException ); }; interface SVGAnimateElement : SVGAnimationElement {}; interface SVGSetElement : SVGAnimationElement {}; interface SVGAnimateMotionElement : SVGAnimationElement {}; interface SVGAnimateTransformElement : SVGAnimationElement {}; interface TimeEvent : events::Event { readonly attribute views::AbstractView view; readonly attribute long detail; void initTimeEvent ( in DOMString typeArg, in views::AbstractView viewArg, in long detailArg ); }; interface SVGFontElement : SVGElement, SVGExternalResourcesRequired, SVGStylable {}; interface SVGGlyphElement : SVGElement, SVGStylable {}; interface SVGMissingGlyphElement : SVGElement, SVGStylable {}; interface SVGHKernElement : SVGElement {}; interface SVGVKernElement : SVGElement {}; interface SVGFontFaceElement : SVGElement {}; interface SVGFontFaceSrcElement : SVGElement {}; interface SVGFontFaceUriElement : SVGElement {}; interface SVGFontFaceFormatElement : SVGElement {}; interface SVGFontFaceNameElement : SVGElement {}; interface SVGDefinitionSrcElement : SVGElement {}; interface SVGMetadataElement : SVGElement {}; interface SVGForeignObjectElement : SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, events::EventTarget { attribute SVGAnimatedLength x; // raises DOMException on setting attribute SVGAnimatedLength y; // raises DOMException on setting attribute SVGAnimatedLength width; // raises DOMException on setting attribute SVGAnimatedLength height; // raises DOMException on setting }; }; #endif // _SVG_IDL_