From d0f94898d3069a24c7e8d9cd7da6287872757760 Mon Sep 17 00:00:00 2001 From: "eric@webkit.org" Date: Fri, 24 Feb 2012 02:04:40 +0000 Subject: [PATCH] Move SVG element constructors out of DOMWindow.idl into a new DOMWindowSVG.idl suplemental https://bugs.webkit.org/show_bug.cgi?id=79379 Reviewed by Adam Barth. * CMakeLists.txt: * DerivedSources.make: * DerivedSources.pri: * GNUmakefile.list.am: * WebCore.gypi: * WebCore.xcodeproj/project.pbxproj: * page/DOMWindow.idl: * svg/DOMWindowSVG.idl: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108709 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/CMakeLists.txt | 1 + Source/WebCore/ChangeLog | 16 ++ Source/WebCore/DerivedSources.make | 1 + Source/WebCore/DerivedSources.pri | 1 + Source/WebCore/GNUmakefile.list.am | 1 + Source/WebCore/WebCore.gypi | 1 + Source/WebCore/WebCore.xcodeproj/project.pbxproj | 2 + Source/WebCore/page/DOMWindow.idl | 157 ------------------- Source/WebCore/svg/DOMWindowSVG.idl | 187 +++++++++++++++++++++++ 9 files changed, 210 insertions(+), 157 deletions(-) create mode 100644 Source/WebCore/svg/DOMWindowSVG.idl diff --git a/Source/WebCore/CMakeLists.txt b/Source/WebCore/CMakeLists.txt index 0aee208..061c794 100644 --- a/Source/WebCore/CMakeLists.txt +++ b/Source/WebCore/CMakeLists.txt @@ -1714,6 +1714,7 @@ IF (ENABLE_SVG) rendering/svg/SVGTextMetricsBuilder.cpp rendering/svg/SVGTextQuery.cpp svg/ColorDistance.cpp + svg/DOMWindowSVG.idl svg/SVGAElement.cpp svg/SVGAltGlyphDefElement.cpp svg/SVGAltGlyphElement.cpp diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 8d22eca..ef86647 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,19 @@ +2012-02-23 Eric Seidel + + Move SVG element constructors out of DOMWindow.idl into a new DOMWindowSVG.idl suplemental + https://bugs.webkit.org/show_bug.cgi?id=79379 + + Reviewed by Adam Barth. + + * CMakeLists.txt: + * DerivedSources.make: + * DerivedSources.pri: + * GNUmakefile.list.am: + * WebCore.gypi: + * WebCore.xcodeproj/project.pbxproj: + * page/DOMWindow.idl: + * svg/DOMWindowSVG.idl: Added. + 2012-02-23 Jonathan Backer [chromium] Plumb video damage to the damage tracker. diff --git a/Source/WebCore/DerivedSources.make b/Source/WebCore/DerivedSources.make index df08d1e..bced3cb 100644 --- a/Source/WebCore/DerivedSources.make +++ b/Source/WebCore/DerivedSources.make @@ -377,6 +377,7 @@ BINDING_IDLS = \ $(WebCore)/storage/StorageInfoErrorCallback.idl \ $(WebCore)/storage/StorageInfoQuotaCallback.idl \ $(WebCore)/storage/StorageInfoUsageCallback.idl \ + $(WebCore)/svg/DOMWindowSVG.idl \ $(WebCore)/svg/ElementTimeControl.idl \ $(WebCore)/svg/SVGAElement.idl \ $(WebCore)/svg/SVGAltGlyphDefElement.idl \ diff --git a/Source/WebCore/DerivedSources.pri b/Source/WebCore/DerivedSources.pri index b932219..373b3ed 100644 --- a/Source/WebCore/DerivedSources.pri +++ b/Source/WebCore/DerivedSources.pri @@ -456,6 +456,7 @@ v8 { contains(DEFINES, ENABLE_SVG=1) { IDL_BINDINGS += \ + $$PWD/svg/DOMWindowSVG.idl \ $$PWD/svg/SVGZoomEvent.idl \ $$PWD/svg/SVGAElement.idl \ $$PWD/svg/SVGAltGlyphDefElement.idl \ diff --git a/Source/WebCore/GNUmakefile.list.am b/Source/WebCore/GNUmakefile.list.am index faa44e3..5b8d3bc 100644 --- a/Source/WebCore/GNUmakefile.list.am +++ b/Source/WebCore/GNUmakefile.list.am @@ -5166,6 +5166,7 @@ webcore_built_sources += \ DerivedSources/WebCore/JSSVGZoomEvent.h dom_binding_idls += \ + $(WebCore)/svg/DOMWindowSVG.idl \ $(WebCore)/svg/SVGAElement.idl \ $(WebCore)/svg/SVGAltGlyphDefElement.idl \ $(WebCore)/svg/SVGAltGlyphElement.idl \ diff --git a/Source/WebCore/WebCore.gypi b/Source/WebCore/WebCore.gypi index 9ddf915..b5da7bb 100644 --- a/Source/WebCore/WebCore.gypi +++ b/Source/WebCore/WebCore.gypi @@ -1121,6 +1121,7 @@ 'xml/XSLTProcessor.idl', ], 'webcore_svg_bindings_idl_files': [ + 'svg/DOMWindowSVG.idl', 'svg/ElementTimeControl.idl', 'svg/SVGAElement.idl', 'svg/SVGAltGlyphElement.idl', diff --git a/Source/WebCore/WebCore.xcodeproj/project.pbxproj b/Source/WebCore/WebCore.xcodeproj/project.pbxproj index 6a31327..e48cc2e 100644 --- a/Source/WebCore/WebCore.xcodeproj/project.pbxproj +++ b/Source/WebCore/WebCore.xcodeproj/project.pbxproj @@ -10780,6 +10780,7 @@ A88DD4880B4629B000C02990 /* PathTraversalState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PathTraversalState.cpp; sourceTree = ""; }; A89943260B42338700D7C802 /* BitmapImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BitmapImage.h; sourceTree = ""; }; A89943270B42338700D7C802 /* BitmapImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BitmapImage.cpp; sourceTree = ""; }; + A89AACD514F6C12700C1FA4A /* DOMWindowSVG.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMWindowSVG.idl; sourceTree = ""; }; A89CCC500F44E98100B5DA10 /* ReplaceNodeWithSpanCommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ReplaceNodeWithSpanCommand.cpp; sourceTree = ""; }; A89CCC510F44E98100B5DA10 /* ReplaceNodeWithSpanCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReplaceNodeWithSpanCommand.h; sourceTree = ""; }; A8BC04911214F69600B5F122 /* HTMLEntityTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLEntityTable.cpp; sourceTree = ""; }; @@ -18325,6 +18326,7 @@ 081CDFBD126ECFE800D215CA /* properties */, B22277CB0D00BF1F0071B782 /* ColorDistance.cpp */, B22277CC0D00BF1F0071B782 /* ColorDistance.h */, + A89AACD514F6C12700C1FA4A /* DOMWindowSVG.idl */, E415F1830D9A1A830033CE97 /* ElementTimeControl.h */, E415F10C0D9A05870033CE97 /* ElementTimeControl.idl */, B22277CD0D00BF1F0071B782 /* GradientAttributes.h */, diff --git a/Source/WebCore/page/DOMWindow.idl b/Source/WebCore/page/DOMWindow.idl index c4587a0..5fae6f3 100644 --- a/Source/WebCore/page/DOMWindow.idl +++ b/Source/WebCore/page/DOMWindow.idl @@ -519,7 +519,6 @@ module window { attribute WebKitTransitionEventConstructor WebKitTransitionEvent; attribute WheelEventConstructor WheelEvent; attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent; - attribute [Conditional=SVG] SVGZoomEventConstructor SVGZoomEvent; attribute [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] DeviceMotionEventConstructor DeviceMotionEvent; attribute [Conditional=DEVICE_ORIENTATION, V8EnabledAtRuntime] DeviceOrientationEventConstructor DeviceOrientationEvent; attribute [Conditional=TOUCH_EVENTS] TouchEventConstructor TouchEvent; @@ -613,162 +612,6 @@ module window { attribute XPathResultConstructor XPathResult; attribute XPathExceptionConstructor XPathException; -#if defined(ENABLE_SVG) && ENABLE_SVG - // Expose all implemented SVG 1.1 interfaces, excluding the SVG MI interfaces: - // SVGAnimatedPathData, SVGAnimatedPoints, SVGExternalResourcesRequired, - // SVGFilterPrimitiveStandardAttributes, SVGFitToViewBox, SVGLangSpace, SVGLocatable - // SVGStylable, SVGTests, SVGTransformable, SVGURIReference, SVGZoomAndPan - attribute SVGAElementConstructor SVGAElement; - attribute SVGAngleConstructor SVGAngle; - attribute SVGAnimatedAngleConstructor SVGAnimatedAngle; - attribute SVGAnimatedBooleanConstructor SVGAnimatedBoolean; - attribute SVGAnimatedEnumerationConstructor SVGAnimatedEnumeration; - attribute SVGAnimatedIntegerConstructor SVGAnimatedInteger; - attribute SVGAnimatedLengthConstructor SVGAnimatedLength; - attribute SVGAnimatedLengthListConstructor SVGAnimatedLengthList; - attribute SVGAnimatedNumberConstructor SVGAnimatedNumber; - attribute SVGAnimatedNumberListConstructor SVGAnimatedNumberList; - attribute SVGAnimatedPreserveAspectRatioConstructor SVGAnimatedPreserveAspectRatio; - attribute SVGAnimatedRectConstructor SVGAnimatedRect; - attribute SVGAnimatedStringConstructor SVGAnimatedString; - attribute SVGAnimatedTransformListConstructor SVGAnimatedTransformList; - attribute SVGCircleElementConstructor SVGCircleElement; - attribute SVGClipPathElementConstructor SVGClipPathElement; - attribute SVGColorConstructor SVGColor; - attribute SVGCursorElementConstructor SVGCursorElement; -// attribute SVGCSSRuleConstructor SVGCSSRule; - attribute SVGDefsElementConstructor SVGDefsElement; - attribute SVGDescElementConstructor SVGDescElement; - attribute SVGDocumentConstructor SVGDocument; - attribute SVGElementConstructor SVGElement; - attribute SVGElementInstanceConstructor SVGElementInstance; - attribute SVGElementInstanceListConstructor SVGElementInstanceList; - attribute SVGEllipseElementConstructor SVGEllipseElement; - attribute SVGForeignObjectElementConstructor SVGForeignObjectElement; - attribute SVGExceptionConstructor SVGException; - attribute SVGGElementConstructor SVGGElement; - attribute SVGGradientElementConstructor SVGGradientElement; - attribute SVGImageElementConstructor SVGImageElement; - attribute SVGLengthConstructor SVGLength; - attribute SVGLengthListConstructor SVGLengthList; - attribute SVGLinearGradientElementConstructor SVGLinearGradientElement; - attribute SVGLineElementConstructor SVGLineElement; - attribute SVGMarkerElementConstructor SVGMarkerElement; - attribute SVGMaskElementConstructor SVGMaskElement; - attribute SVGMatrixConstructor SVGMatrix; - attribute SVGMetadataElementConstructor SVGMetadataElement; - attribute SVGNumberConstructor SVGNumber; - attribute SVGNumberListConstructor SVGNumberList; - attribute SVGPaintConstructor SVGPaint; - attribute SVGPathElementConstructor SVGPathElement; - attribute SVGPathSegConstructor SVGPathSeg; - attribute SVGPathSegArcAbsConstructor SVGPathSegArcAbs; - attribute SVGPathSegArcRelConstructor SVGPathSegArcRel; - attribute SVGPathSegClosePathConstructor SVGPathSegClosePath; - attribute SVGPathSegCurvetoCubicAbsConstructor SVGPathSegCurvetoCubicAbs; - attribute SVGPathSegCurvetoCubicRelConstructor SVGPathSegCurvetoCubicRel; - attribute SVGPathSegCurvetoCubicSmoothAbsConstructor SVGPathSegCurvetoCubicSmoothAbs; - attribute SVGPathSegCurvetoCubicSmoothRelConstructor SVGPathSegCurvetoCubicSmoothRel; - attribute SVGPathSegCurvetoQuadraticAbsConstructor SVGPathSegCurvetoQuadraticAbs; - attribute SVGPathSegCurvetoQuadraticRelConstructor SVGPathSegCurvetoQuadraticRel; - attribute SVGPathSegCurvetoQuadraticSmoothAbsConstructor SVGPathSegCurvetoQuadraticSmoothAbs; - attribute SVGPathSegCurvetoQuadraticSmoothRelConstructor SVGPathSegCurvetoQuadraticSmoothRel; - attribute SVGPathSegLinetoAbsConstructor SVGPathSegLinetoAbs; - attribute SVGPathSegLinetoHorizontalAbsConstructor SVGPathSegLinetoHorizontalAbs; - attribute SVGPathSegLinetoHorizontalRelConstructor SVGPathSegLinetoHorizontalRel; - attribute SVGPathSegLinetoRelConstructor SVGPathSegLinetoRel; - attribute SVGPathSegLinetoVerticalAbsConstructor SVGPathSegLinetoVerticalAbs; - attribute SVGPathSegLinetoVerticalRelConstructor SVGPathSegLinetoVerticalRel; - attribute SVGPathSegListConstructor SVGPathSegList; - attribute SVGPathSegMovetoAbsConstructor SVGPathSegMovetoAbs; - attribute SVGPathSegMovetoRelConstructor SVGPathSegMovetoRel; - attribute SVGPatternElementConstructor SVGPatternElement; - attribute SVGPointConstructor SVGPoint; - attribute SVGPointListConstructor SVGPointList; - attribute SVGPolygonElementConstructor SVGPolygonElement; - attribute SVGPolylineElementConstructor SVGPolylineElement; - attribute SVGPreserveAspectRatioConstructor SVGPreserveAspectRatio; - attribute SVGRadialGradientElementConstructor SVGRadialGradientElement; - attribute SVGRectConstructor SVGRect; - attribute SVGRectElementConstructor SVGRectElement; - attribute SVGRenderingIntentConstructor SVGRenderingIntent; - attribute SVGScriptElementConstructor SVGScriptElement; - attribute SVGStopElementConstructor SVGStopElement; - attribute SVGStringListConstructor SVGStringList; - attribute SVGStyleElementConstructor SVGStyleElement; - attribute SVGSVGElementConstructor SVGSVGElement; - attribute SVGSwitchElementConstructor SVGSwitchElement; - attribute SVGSymbolElementConstructor SVGSymbolElement; - attribute SVGTextContentElementConstructor SVGTextContentElement; - attribute SVGTextElementConstructor SVGTextElement; - attribute SVGTextPathElementConstructor SVGTextPathElement; - attribute SVGTextPositioningElementConstructor SVGTextPositioningElement; - attribute SVGTitleElementConstructor SVGTitleElement; - attribute SVGTransformConstructor SVGTransform; - attribute SVGTransformListConstructor SVGTransformList; - attribute SVGTRefElementConstructor SVGTRefElement; - attribute SVGTSpanElementConstructor SVGTSpanElement; - attribute SVGUnitTypesConstructor SVGUnitTypes; - attribute SVGUseElementConstructor SVGUseElement; - attribute SVGViewElementConstructor SVGViewElement; -// attribute SVGViewSpecConstructor SVGViewSpec; - - attribute SVGAnimateColorElementConstructor SVGAnimateColorElement; - attribute SVGAnimateElementConstructor SVGAnimateElement; - attribute SVGAnimateMotionElementConstructor SVGAnimateMotionElement; - attribute SVGAnimateTransformElementConstructor SVGAnimateTransformElement; - attribute SVGMPathElementConstructor SVGMPathElement; - attribute SVGSetElementConstructor SVGSetElement; - -#if defined(ENABLE_SVG_FONTS) && ENABLE_SVG_FONTS - attribute SVGAltGlyphDefElementConstructor SVGAltGlyphDefElement; - attribute SVGAltGlyphElementConstructor SVGAltGlyphElement; - attribute SVGAltGlyphItemElementConstructor SVGAltGlyphItemElement; -// attribute SVGDefinitionSrcElementConstructor SVGDefinitionSrcElement; - attribute SVGFontElementConstructor SVGFontElement; - attribute SVGFontFaceElementConstructor SVGFontFaceElement; - attribute SVGFontFaceFormatElementConstructor SVGFontFaceFormatElement; - attribute SVGFontFaceNameElementConstructor SVGFontFaceNameElement; - attribute SVGFontFaceSrcElementConstructor SVGFontFaceSrcElement; - attribute SVGFontFaceUriElementConstructor SVGFontFaceUriElement; - attribute SVGGlyphElementConstructor SVGGlyphElement; - attribute SVGGlyphRefElementConstructor SVGGlyphRefElement; - attribute SVGHKernElementConstructor SVGHKernElement; - attribute SVGMissingGlyphElementConstructor SVGMissingGlyphElement; - attribute SVGVKernElementConstructor SVGVKernElement; -#endif - -#if defined(ENABLE_FILTERS) && ENABLE_FILTERS - attribute SVGComponentTransferFunctionElementConstructor SVGComponentTransferFunctionElement; - attribute SVGFEBlendElementConstructor SVGFEBlendElement; - attribute SVGFEColorMatrixElementConstructor SVGFEColorMatrixElement; - attribute SVGFEComponentTransferElementConstructor SVGFEComponentTransferElement; - attribute SVGFECompositeElementConstructor SVGFECompositeElement; - attribute SVGFEConvolveMatrixElementConstructor SVGFEConvolveMatrixElement; - attribute SVGFEDiffuseLightingElementConstructor SVGFEDiffuseLightingElement; - attribute SVGFEDisplacementMapElementConstructor SVGFEDisplacementMapElement; - attribute SVGFEDistantLightElementConstructor SVGFEDistantLightElement; - attribute SVGFEDropShadowElementConstructor SVGFEDropShadowElement; - attribute SVGFEFloodElementConstructor SVGFEFloodElement; - attribute SVGFEFuncAElementConstructor SVGFEFuncAElement; - attribute SVGFEFuncBElementConstructor SVGFEFuncBElement; - attribute SVGFEFuncGElementConstructor SVGFEFuncGElement; - attribute SVGFEFuncRElementConstructor SVGFEFuncRElement; - attribute SVGFEGaussianBlurElementConstructor SVGFEGaussianBlurElement; - attribute SVGFEImageElementConstructor SVGFEImageElement; - attribute SVGFEMergeElementConstructor SVGFEMergeElement; - attribute SVGFEMergeNodeElementConstructor SVGFEMergeNodeElement; - attribute SVGFEMorphologyElementConstructor SVGFEMorphologyElement; - attribute SVGFEOffsetElementConstructor SVGFEOffsetElement; - attribute SVGFEPointLightElementConstructor SVGFEPointLightElement; - attribute SVGFESpecularLightingElementConstructor SVGFESpecularLightingElement; - attribute SVGFESpotLightElementConstructor SVGFESpotLightElement; - attribute SVGFETileElementConstructor SVGFETileElement; - attribute SVGFETurbulenceElementConstructor SVGFETurbulenceElement; - attribute SVGFilterElementConstructor SVGFilterElement; -#endif -#endif - attribute DOMFormDataConstructor FormData; attribute [Conditional=BLOB|FILE_SYSTEM] FileErrorConstructor FileError; diff --git a/Source/WebCore/svg/DOMWindowSVG.idl b/Source/WebCore/svg/DOMWindowSVG.idl new file mode 100644 index 0000000..cc90713 --- /dev/null +++ b/Source/WebCore/svg/DOMWindowSVG.idl @@ -0,0 +1,187 @@ +/* + * Copyright (C) 2012 Google Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +module window { + + // FIXME: Most of this could/should be generated from make_names.pl/SVGNames.in + // to reduce the chance that we forget a constructor when adding a new element. + interface [ + Conditional=SVG, + Supplemental=DOMWindow + ] DOMWindowSVG { + + attribute SVGZoomEventConstructor SVGZoomEvent; + + // Expose all implemented SVG 1.1 interfaces, excluding the SVG MI interfaces: + // SVGAnimatedPathData, SVGAnimatedPoints, SVGExternalResourcesRequired, + // SVGFilterPrimitiveStandardAttributes, SVGFitToViewBox, SVGLangSpace, SVGLocatable + // SVGStylable, SVGTests, SVGTransformable, SVGURIReference, SVGZoomAndPan + attribute SVGAElementConstructor SVGAElement; + attribute SVGAngleConstructor SVGAngle; + attribute SVGAnimatedAngleConstructor SVGAnimatedAngle; + attribute SVGAnimatedBooleanConstructor SVGAnimatedBoolean; + attribute SVGAnimatedEnumerationConstructor SVGAnimatedEnumeration; + attribute SVGAnimatedIntegerConstructor SVGAnimatedInteger; + attribute SVGAnimatedLengthConstructor SVGAnimatedLength; + attribute SVGAnimatedLengthListConstructor SVGAnimatedLengthList; + attribute SVGAnimatedNumberConstructor SVGAnimatedNumber; + attribute SVGAnimatedNumberListConstructor SVGAnimatedNumberList; + attribute SVGAnimatedPreserveAspectRatioConstructor SVGAnimatedPreserveAspectRatio; + attribute SVGAnimatedRectConstructor SVGAnimatedRect; + attribute SVGAnimatedStringConstructor SVGAnimatedString; + attribute SVGAnimatedTransformListConstructor SVGAnimatedTransformList; + attribute SVGCircleElementConstructor SVGCircleElement; + attribute SVGClipPathElementConstructor SVGClipPathElement; + attribute SVGColorConstructor SVGColor; + attribute SVGCursorElementConstructor SVGCursorElement; +// attribute SVGCSSRuleConstructor SVGCSSRule; + attribute SVGDefsElementConstructor SVGDefsElement; + attribute SVGDescElementConstructor SVGDescElement; + attribute SVGDocumentConstructor SVGDocument; + attribute SVGElementConstructor SVGElement; + attribute SVGElementInstanceConstructor SVGElementInstance; + attribute SVGElementInstanceListConstructor SVGElementInstanceList; + attribute SVGEllipseElementConstructor SVGEllipseElement; + attribute SVGForeignObjectElementConstructor SVGForeignObjectElement; + attribute SVGExceptionConstructor SVGException; + attribute SVGGElementConstructor SVGGElement; + attribute SVGGradientElementConstructor SVGGradientElement; + attribute SVGImageElementConstructor SVGImageElement; + attribute SVGLengthConstructor SVGLength; + attribute SVGLengthListConstructor SVGLengthList; + attribute SVGLinearGradientElementConstructor SVGLinearGradientElement; + attribute SVGLineElementConstructor SVGLineElement; + attribute SVGMarkerElementConstructor SVGMarkerElement; + attribute SVGMaskElementConstructor SVGMaskElement; + attribute SVGMatrixConstructor SVGMatrix; + attribute SVGMetadataElementConstructor SVGMetadataElement; + attribute SVGNumberConstructor SVGNumber; + attribute SVGNumberListConstructor SVGNumberList; + attribute SVGPaintConstructor SVGPaint; + attribute SVGPathElementConstructor SVGPathElement; + attribute SVGPathSegConstructor SVGPathSeg; + attribute SVGPathSegArcAbsConstructor SVGPathSegArcAbs; + attribute SVGPathSegArcRelConstructor SVGPathSegArcRel; + attribute SVGPathSegClosePathConstructor SVGPathSegClosePath; + attribute SVGPathSegCurvetoCubicAbsConstructor SVGPathSegCurvetoCubicAbs; + attribute SVGPathSegCurvetoCubicRelConstructor SVGPathSegCurvetoCubicRel; + attribute SVGPathSegCurvetoCubicSmoothAbsConstructor SVGPathSegCurvetoCubicSmoothAbs; + attribute SVGPathSegCurvetoCubicSmoothRelConstructor SVGPathSegCurvetoCubicSmoothRel; + attribute SVGPathSegCurvetoQuadraticAbsConstructor SVGPathSegCurvetoQuadraticAbs; + attribute SVGPathSegCurvetoQuadraticRelConstructor SVGPathSegCurvetoQuadraticRel; + attribute SVGPathSegCurvetoQuadraticSmoothAbsConstructor SVGPathSegCurvetoQuadraticSmoothAbs; + attribute SVGPathSegCurvetoQuadraticSmoothRelConstructor SVGPathSegCurvetoQuadraticSmoothRel; + attribute SVGPathSegLinetoAbsConstructor SVGPathSegLinetoAbs; + attribute SVGPathSegLinetoHorizontalAbsConstructor SVGPathSegLinetoHorizontalAbs; + attribute SVGPathSegLinetoHorizontalRelConstructor SVGPathSegLinetoHorizontalRel; + attribute SVGPathSegLinetoRelConstructor SVGPathSegLinetoRel; + attribute SVGPathSegLinetoVerticalAbsConstructor SVGPathSegLinetoVerticalAbs; + attribute SVGPathSegLinetoVerticalRelConstructor SVGPathSegLinetoVerticalRel; + attribute SVGPathSegListConstructor SVGPathSegList; + attribute SVGPathSegMovetoAbsConstructor SVGPathSegMovetoAbs; + attribute SVGPathSegMovetoRelConstructor SVGPathSegMovetoRel; + attribute SVGPatternElementConstructor SVGPatternElement; + attribute SVGPointConstructor SVGPoint; + attribute SVGPointListConstructor SVGPointList; + attribute SVGPolygonElementConstructor SVGPolygonElement; + attribute SVGPolylineElementConstructor SVGPolylineElement; + attribute SVGPreserveAspectRatioConstructor SVGPreserveAspectRatio; + attribute SVGRadialGradientElementConstructor SVGRadialGradientElement; + attribute SVGRectConstructor SVGRect; + attribute SVGRectElementConstructor SVGRectElement; + attribute SVGRenderingIntentConstructor SVGRenderingIntent; + attribute SVGScriptElementConstructor SVGScriptElement; + attribute SVGStopElementConstructor SVGStopElement; + attribute SVGStringListConstructor SVGStringList; + attribute SVGStyleElementConstructor SVGStyleElement; + attribute SVGSVGElementConstructor SVGSVGElement; + attribute SVGSwitchElementConstructor SVGSwitchElement; + attribute SVGSymbolElementConstructor SVGSymbolElement; + attribute SVGTextContentElementConstructor SVGTextContentElement; + attribute SVGTextElementConstructor SVGTextElement; + attribute SVGTextPathElementConstructor SVGTextPathElement; + attribute SVGTextPositioningElementConstructor SVGTextPositioningElement; + attribute SVGTitleElementConstructor SVGTitleElement; + attribute SVGTransformConstructor SVGTransform; + attribute SVGTransformListConstructor SVGTransformList; + attribute SVGTRefElementConstructor SVGTRefElement; + attribute SVGTSpanElementConstructor SVGTSpanElement; + attribute SVGUnitTypesConstructor SVGUnitTypes; + attribute SVGUseElementConstructor SVGUseElement; + attribute SVGViewElementConstructor SVGViewElement; +// attribute SVGViewSpecConstructor SVGViewSpec; + + attribute SVGAnimateColorElementConstructor SVGAnimateColorElement; + attribute SVGAnimateElementConstructor SVGAnimateElement; + attribute SVGAnimateMotionElementConstructor SVGAnimateMotionElement; + attribute SVGAnimateTransformElementConstructor SVGAnimateTransformElement; + attribute SVGMPathElementConstructor SVGMPathElement; + attribute SVGSetElementConstructor SVGSetElement; + +#if defined(ENABLE_SVG_FONTS) && ENABLE_SVG_FONTS + attribute SVGAltGlyphDefElementConstructor SVGAltGlyphDefElement; + attribute SVGAltGlyphElementConstructor SVGAltGlyphElement; + attribute SVGAltGlyphItemElementConstructor SVGAltGlyphItemElement; +// attribute SVGDefinitionSrcElementConstructor SVGDefinitionSrcElement; + attribute SVGFontElementConstructor SVGFontElement; + attribute SVGFontFaceElementConstructor SVGFontFaceElement; + attribute SVGFontFaceFormatElementConstructor SVGFontFaceFormatElement; + attribute SVGFontFaceNameElementConstructor SVGFontFaceNameElement; + attribute SVGFontFaceSrcElementConstructor SVGFontFaceSrcElement; + attribute SVGFontFaceUriElementConstructor SVGFontFaceUriElement; + attribute SVGGlyphElementConstructor SVGGlyphElement; + attribute SVGGlyphRefElementConstructor SVGGlyphRefElement; + attribute SVGHKernElementConstructor SVGHKernElement; + attribute SVGMissingGlyphElementConstructor SVGMissingGlyphElement; + attribute SVGVKernElementConstructor SVGVKernElement; +#endif + +#if defined(ENABLE_FILTERS) && ENABLE_FILTERS + attribute SVGComponentTransferFunctionElementConstructor SVGComponentTransferFunctionElement; + attribute SVGFEBlendElementConstructor SVGFEBlendElement; + attribute SVGFEColorMatrixElementConstructor SVGFEColorMatrixElement; + attribute SVGFEComponentTransferElementConstructor SVGFEComponentTransferElement; + attribute SVGFECompositeElementConstructor SVGFECompositeElement; + attribute SVGFEConvolveMatrixElementConstructor SVGFEConvolveMatrixElement; + attribute SVGFEDiffuseLightingElementConstructor SVGFEDiffuseLightingElement; + attribute SVGFEDisplacementMapElementConstructor SVGFEDisplacementMapElement; + attribute SVGFEDistantLightElementConstructor SVGFEDistantLightElement; + attribute SVGFEDropShadowElementConstructor SVGFEDropShadowElement; + attribute SVGFEFloodElementConstructor SVGFEFloodElement; + attribute SVGFEFuncAElementConstructor SVGFEFuncAElement; + attribute SVGFEFuncBElementConstructor SVGFEFuncBElement; + attribute SVGFEFuncGElementConstructor SVGFEFuncGElement; + attribute SVGFEFuncRElementConstructor SVGFEFuncRElement; + attribute SVGFEGaussianBlurElementConstructor SVGFEGaussianBlurElement; + attribute SVGFEImageElementConstructor SVGFEImageElement; + attribute SVGFEMergeElementConstructor SVGFEMergeElement; + attribute SVGFEMergeNodeElementConstructor SVGFEMergeNodeElement; + attribute SVGFEMorphologyElementConstructor SVGFEMorphologyElement; + attribute SVGFEOffsetElementConstructor SVGFEOffsetElement; + attribute SVGFEPointLightElementConstructor SVGFEPointLightElement; + attribute SVGFESpecularLightingElementConstructor SVGFESpecularLightingElement; + attribute SVGFESpotLightElementConstructor SVGFESpotLightElement; + attribute SVGFETileElementConstructor SVGFETileElement; + attribute SVGFETurbulenceElementConstructor SVGFETurbulenceElement; + attribute SVGFilterElementConstructor SVGFilterElement; +#endif + + }; + +} -- 2.7.4